navigation
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 300
phpNavigation 0.0.2
phpNavigation provides a navigation system for Web sites. more>>
phpNavigation provides a navigation system for Web sites.
phpNavigation is a PHP3 script that allows you to easily add navigation menus to your Web site.
It allows you to create, edit, and delete nested navigation.
It also includes simple code snippets for integrating navigation into your site using one of three choices of view mode: path, menu, or sitemap.
<<lessphpNavigation is a PHP3 script that allows you to easily add navigation menus to your Web site.
It allows you to create, edit, and delete nested navigation.
It also includes simple code snippets for integrating navigation into your site using one of three choices of view mode: path, menu, or sitemap.
Download (0.019MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
PloneSimpleNavigation 1.0
PloneSimpleNavigation provides a simple Plone site navigation system. more>>
PloneSimpleNavigation provides a simple Plone site navigation system.
This product allows you to manage a simple dynamic site structure navigation, with options that you can set through the "Manage navigation" configuration page.
Note that, as of today, it is more usefull for Plone 2.0 users.
Main features:
- Select exactly which objects you want to display inside the portlet;
- Select meta types you want to display inside the portlet;
- You can use "OrderedFolder" interface to sort object inside navigation portlet, from the control panel or from the "folder_contents" view;
- LinguaPlone compatibility.
<<lessThis product allows you to manage a simple dynamic site structure navigation, with options that you can set through the "Manage navigation" configuration page.
Note that, as of today, it is more usefull for Plone 2.0 users.
Main features:
- Select exactly which objects you want to display inside the portlet;
- Select meta types you want to display inside the portlet;
- You can use "OrderedFolder" interface to sort object inside navigation portlet, from the control panel or from the "folder_contents" view;
- LinguaPlone compatibility.
Download (0.016MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
Flight Navigation Planner 104
Flight Navigation Planner project is a tool for making flight plans based on known airports. more>>
Flight Navigation Planner project is a tool for making flight plans based on known airports.
Flight Navigation Planner lets you make flight plans based on known airports, navaids, fixes, or cities.
You can use the sectional charts, wacs, or the vector/terrain planning charts.
It calculates headings, winds, time, and fuel. It features Airways-based Auto-Routing, Climb and Descent calculations (a/c type based), Fuel Stop Planning, Auto-Route around MOAS and Restricted Airspace, Hi-Res Weather Radar Overlay, Viewing of current sectional, wac, and IFR charts, the ability to see a route over TFRs, detailed nexrad radar overlays over your routes, Terrain Profiles with cloud ceilings, and the ability to upload flight plans to GPS.
<<lessFlight Navigation Planner lets you make flight plans based on known airports, navaids, fixes, or cities.
You can use the sectional charts, wacs, or the vector/terrain planning charts.
It calculates headings, winds, time, and fuel. It features Airways-based Auto-Routing, Climb and Descent calculations (a/c type based), Fuel Stop Planning, Auto-Route around MOAS and Restricted Airspace, Hi-Res Weather Radar Overlay, Viewing of current sectional, wac, and IFR charts, the ability to see a route over TFRs, detailed nexrad radar overlays over your routes, Terrain Profiles with cloud ceilings, and the ability to upload flight plans to GPS.
Download (1.2MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1112 downloads
WE_Frontend::Plugin::Navigation 0.097_01
WE_Frontend::Plugin::Navigation Perl module contains utilities for navigation creation. more>>
WE_Frontend::Plugin::Navigation Perl module contains utilities for navigation creation.
SYNOPSIS
my $t = Template->new({PLUGIN_BASE => "WE_Frontend::Plugin"});
[% USE Navigation %]
The WE_Frontend::Plugin::Navigation object corresponds somewhat to the WE::DB::Obj database. Most of the methods described below return WE_Frontend::Plugin::Navigation::Object objects, which correspond to WE::Obj objects.
METHODS
new
This method is normally not called directly, but only as part of the USE directive:
[% USE Navigation %]
[% USE n = Navigation %]
You can pass the named parameter objid to set the object id for this context.
[% USE n = Navigation(objid = 10) %]
Or you can use the name parameter:
[% USE n = Navigation(name = "rootcollection") %]
You can pass the named parameter objid to set the object id for this context.
When calling the process() method of Template-Toolkit the value for objdb (a reference to the WE::DB::Obj database) should be set or rootdb (a reference to the WE::DB database) XXX rootdb prefered if content access. Also, if objid is not set in the USE directive, it may be supplied to the process() method.
my $t = Template->new(
{PLUGIN_BASE => "WE_Frontend::Plugin"}
);
$t->process(
$template,
{
objdb => $objdb,
rootdb => $rootdb,
objid => $objid,
config => $c,
langstring => &WE::Util::LangString::langstring
},
$output
);
The return value of the USE Navigation directive (the n variable in the examples above) is a WE_Frontend::Plugin::Navigation::Object of the current object supplied with the objid key.
ancestors([[objid = id | name = name], fromlevel => level, tolevel => level, restrict = restrictmethod])
Return a list of ancestors of the current object. The oldest (top-most) ancestor is first in the list. If objid is given, then return the ancestors for the object with this object identifier. If fromlevel and/or tolevel are given, then restrict the ancestor list for these levels. The topmost level is numbered with 1. The root itself is numbered with 0, this can be used for a "home" link on top of the list. The list may be restricted by specifying restrict. If tolevel is less than fromlevel, then an empty list is returned.
parent([[objid = id | name = name]])
Return the parent of the current object, or of the object with id objid. Note that it is possible in the WE::DB::Obj database to have more than one parent, nevertheless only one parent is returned.
level([[objid = id | name = name]])
Return the level of the current object, or of the object with id objid. The root of the site has level = 0.
toplevel_children([sort = sortmethod, restrict = restrictmethod])
Return a list of sorted toplevel children. Normally, the sequence order is used but the sorting can be changed by specifying sort. The list may be restricted by specifying restrict.
siblings([[objid = id | name = name], level = level, sort = sortmethod, restrict => restrictmethod])
Get the siblings of the current object, or of the object with id objid. The siblings are sorted by the sortmethod in sort and can be restricted with restrict.
If level is specified, the siblings of the ancestor of the current object in the specified level are returned. The level can also be specified as a negative number; this means how many levels up from the current position should be used.
children([[objid = id | name = name], sort = sortmethod, restrict => restrictmethod])
Get the children of the current object, or of the object with id objid. The children are sorted by the sortmethod in sort and can be restricted with restrict.
siblings_or_children([...]);
Often, siblings are used if the object is a document and children are used if the object is a folder. This convenience method uses the appropriate method. The arguments are the same as in siblings or children.
restrict($params, $listref)
Internal method to restrict the passed array reference according to the > subroutine.
The value of the restrict parameter should be the name of a method in the WE_Frontend::Plugin::Navigation::Object class. The object is accepted if the returned value is true. Example for an user-defined method (although subclassing would be the cleaner solution):
package WE_Frontend::Plugin::Navigation::Object;
sub my_restrict {
my $o = shift;
# restrict to objects with Id less than 5
$o->o->Id < 5;
}
sort($params, $listref)
Internal method to sort the passed array reference according to the > subroutine.
The value of the sort parameter should be the name of a method in the WE_Frontend::Plugin::Navigation class. This method takes to arguments $a and $b, both WE_Frontend::Plugin::Navigation::Object objects which should be compared. The returned value should be -1, 0, or 1, just as in the sort function. Example for an user-defined method (although subclassing would be the cleaner solution):
package WE_Frontend::Plugin::Navigation;
sub my_sort {
my($self, $a, $b) = @_;
# sort by title
WE::Util::LangString::langstring($a->o->Title) cmp WE::Util::LangString::langstring($b->o->Title);
}
current_object([[objid = id | name = name]])
Return the current active object as a WE::Obj object. See also the self method.
current_id([[objid = id | name = name]])
Return the current active id. The object is identified in this order:
objid in this method call
name in this method call
objid parameter in the Navigation USE directive
objid template variable (as specified in the Template->new call)
self([[objid = id | name = name]])
Return the current active object as a ...::Navigation::Object object.
get_object([[objid = id | name = name]])
This is an alias for self, but uses a more "logical" name if an object is retrieved by id or name.
is_self([$testobj | $testobjid], [[objid = id | name = name]])
Return true if the given $testobj (object) or $testobjid (id) is the current object. You can pass another objid instead of the current object. =cut
equals([$testobj | $testobjid], [objid = id | name = name])
The same as is_self, only that either objid or name are mandatory.
Example:
[% IF n.equals(testobjid, objid = otherobjid) %]
is_ancestor([$testobj | $testobjid], [objid => id])
Return true if the given $testobj (object) or $testobjid (id) is an ancestor of the current object. You can pass another objid instead of the current object. The current object is not considered an ancestor of itself.
object_by_name($name)
Return an object by $name.
Root
Return reference to root database.
ObjDB
Return reference to the object database.
Object
Return the class name for the navigation objects. This can be overridden in inherited classes.
<<lessSYNOPSIS
my $t = Template->new({PLUGIN_BASE => "WE_Frontend::Plugin"});
[% USE Navigation %]
The WE_Frontend::Plugin::Navigation object corresponds somewhat to the WE::DB::Obj database. Most of the methods described below return WE_Frontend::Plugin::Navigation::Object objects, which correspond to WE::Obj objects.
METHODS
new
This method is normally not called directly, but only as part of the USE directive:
[% USE Navigation %]
[% USE n = Navigation %]
You can pass the named parameter objid to set the object id for this context.
[% USE n = Navigation(objid = 10) %]
Or you can use the name parameter:
[% USE n = Navigation(name = "rootcollection") %]
You can pass the named parameter objid to set the object id for this context.
When calling the process() method of Template-Toolkit the value for objdb (a reference to the WE::DB::Obj database) should be set or rootdb (a reference to the WE::DB database) XXX rootdb prefered if content access. Also, if objid is not set in the USE directive, it may be supplied to the process() method.
my $t = Template->new(
{PLUGIN_BASE => "WE_Frontend::Plugin"}
);
$t->process(
$template,
{
objdb => $objdb,
rootdb => $rootdb,
objid => $objid,
config => $c,
langstring => &WE::Util::LangString::langstring
},
$output
);
The return value of the USE Navigation directive (the n variable in the examples above) is a WE_Frontend::Plugin::Navigation::Object of the current object supplied with the objid key.
ancestors([[objid = id | name = name], fromlevel => level, tolevel => level, restrict = restrictmethod])
Return a list of ancestors of the current object. The oldest (top-most) ancestor is first in the list. If objid is given, then return the ancestors for the object with this object identifier. If fromlevel and/or tolevel are given, then restrict the ancestor list for these levels. The topmost level is numbered with 1. The root itself is numbered with 0, this can be used for a "home" link on top of the list. The list may be restricted by specifying restrict. If tolevel is less than fromlevel, then an empty list is returned.
parent([[objid = id | name = name]])
Return the parent of the current object, or of the object with id objid. Note that it is possible in the WE::DB::Obj database to have more than one parent, nevertheless only one parent is returned.
level([[objid = id | name = name]])
Return the level of the current object, or of the object with id objid. The root of the site has level = 0.
toplevel_children([sort = sortmethod, restrict = restrictmethod])
Return a list of sorted toplevel children. Normally, the sequence order is used but the sorting can be changed by specifying sort. The list may be restricted by specifying restrict.
siblings([[objid = id | name = name], level = level, sort = sortmethod, restrict => restrictmethod])
Get the siblings of the current object, or of the object with id objid. The siblings are sorted by the sortmethod in sort and can be restricted with restrict.
If level is specified, the siblings of the ancestor of the current object in the specified level are returned. The level can also be specified as a negative number; this means how many levels up from the current position should be used.
children([[objid = id | name = name], sort = sortmethod, restrict => restrictmethod])
Get the children of the current object, or of the object with id objid. The children are sorted by the sortmethod in sort and can be restricted with restrict.
siblings_or_children([...]);
Often, siblings are used if the object is a document and children are used if the object is a folder. This convenience method uses the appropriate method. The arguments are the same as in siblings or children.
restrict($params, $listref)
Internal method to restrict the passed array reference according to the > subroutine.
The value of the restrict parameter should be the name of a method in the WE_Frontend::Plugin::Navigation::Object class. The object is accepted if the returned value is true. Example for an user-defined method (although subclassing would be the cleaner solution):
package WE_Frontend::Plugin::Navigation::Object;
sub my_restrict {
my $o = shift;
# restrict to objects with Id less than 5
$o->o->Id < 5;
}
sort($params, $listref)
Internal method to sort the passed array reference according to the > subroutine.
The value of the sort parameter should be the name of a method in the WE_Frontend::Plugin::Navigation class. This method takes to arguments $a and $b, both WE_Frontend::Plugin::Navigation::Object objects which should be compared. The returned value should be -1, 0, or 1, just as in the sort function. Example for an user-defined method (although subclassing would be the cleaner solution):
package WE_Frontend::Plugin::Navigation;
sub my_sort {
my($self, $a, $b) = @_;
# sort by title
WE::Util::LangString::langstring($a->o->Title) cmp WE::Util::LangString::langstring($b->o->Title);
}
current_object([[objid = id | name = name]])
Return the current active object as a WE::Obj object. See also the self method.
current_id([[objid = id | name = name]])
Return the current active id. The object is identified in this order:
objid in this method call
name in this method call
objid parameter in the Navigation USE directive
objid template variable (as specified in the Template->new call)
self([[objid = id | name = name]])
Return the current active object as a ...::Navigation::Object object.
get_object([[objid = id | name = name]])
This is an alias for self, but uses a more "logical" name if an object is retrieved by id or name.
is_self([$testobj | $testobjid], [[objid = id | name = name]])
Return true if the given $testobj (object) or $testobjid (id) is the current object. You can pass another objid instead of the current object. =cut
equals([$testobj | $testobjid], [objid = id | name = name])
The same as is_self, only that either objid or name are mandatory.
Example:
[% IF n.equals(testobjid, objid = otherobjid) %]
is_ancestor([$testobj | $testobjid], [objid => id])
Return true if the given $testobj (object) or $testobjid (id) is an ancestor of the current object. You can pass another objid instead of the current object. The current object is not considered an ancestor of itself.
object_by_name($name)
Return an object by $name.
Root
Return reference to root database.
ObjDB
Return reference to the object database.
Object
Return the class name for the navigation objects. This can be overridden in inherited classes.
Download (0.32MB)
Added: 2007-08-20 License: Perl Artistic License Price:
795 downloads
TruStudio foundation 1.0.0
Set of plugins based on Eclipse and xored::TruStudio IDE for PHP, Python, and ECMAScript development. more>>
TruStudio Foundation is an open source project and a foundation for development tools for scripting languages.
TruStudio inherits comprehensive set of Eclipse editing, debugging and deployment tools and introduces state-of-the-art features for PHP, Python, and other open source technologies.
TruStudio is a comprehensive environment that has indepth understanding of your code and thoroughly knows the programming language you are using.
Main features:
- Code Editing
- Navigation
- Code Inspection
- User Interface
- Launching and Debugging
- Web Development and Design
<<lessTruStudio inherits comprehensive set of Eclipse editing, debugging and deployment tools and introduces state-of-the-art features for PHP, Python, and other open source technologies.
TruStudio is a comprehensive environment that has indepth understanding of your code and thoroughly knows the programming language you are using.
Main features:
- Code Editing
- Navigation
- Code Inspection
- User Interface
- Launching and Debugging
- Web Development and Design
Download (39.1MB)
Added: 2005-04-18 License: QPL (QT Public License) Price:
1649 downloads
Echo Web Application Framework 1.1.4
Echo Web Application Framework is an object-oriented, event-driven Web application framework. more>>
Echo is a framework for developing object-oriented, event-driven Web applications.
Echo removes the developer from having to think in terms of "page-based" applications and enables him/her to develop applications using the conventional object-oriented and event-driven paradigm for user interface development.
Knowledge of HTML, HTTP, and JavaScript is not required. Echo is open-source software distributed under the terms of the Mozilla Public License or the GNU LGPL License.
Enhancements:
- Version 1.1.4 adds support for specifying the order of tab-based navigation of components. The release also fixes bugs reported in previous versions, including the issues discovered with setting component focus.
<<lessEcho removes the developer from having to think in terms of "page-based" applications and enables him/her to develop applications using the conventional object-oriented and event-driven paradigm for user interface development.
Knowledge of HTML, HTTP, and JavaScript is not required. Echo is open-source software distributed under the terms of the Mozilla Public License or the GNU LGPL License.
Enhancements:
- Version 1.1.4 adds support for specifying the order of tab-based navigation of components. The release also fixes bugs reported in previous versions, including the issues discovered with setting component focus.
Download (0.80MB)
Added: 2005-05-05 License: LGPL (GNU Lesser General Public License) Price:
1635 downloads
Extended Path Index 2.4
Extended Path Index provides an extended index type based on the Zope index type that has additional query methods. more>>
Extended Path Index provides an extended index type based on the Zope index type that has additional query methods that are especially suited to generating navigation trees, site maps - and also supports querying a single folder, something the standard PathIndex cant do.
Note: You normally dont need to install this separately, as it ships as a standard part of Plone 2.1 and up. This download is for people wanting to use it outside of Plone or in earlier releases of Plone.
This index supports depth limiting, and the ability to build a structure usable for navtrees and sitemaps. The actual navtree implementations are not (and should not) be in this Product, this is the index implementation only.
Main features:
- Can construct a site map with a single catalog query
- Can construct a navigation tree with a single catalog query
- Doesnt wake up any objects
- Much lower RAM consumption
- Massively improved performance
- Catalog based instead of traversal based
Works with:
- Plone 2.5.1
- Plone 2.5
- Plone 2.1.4
- Plone 2.1.3
- Plone 2.1.2
- Plone 2.1.1
- Plone 2.1
Enhancements:
- A minor release for Plone 2.5.1
<<lessNote: You normally dont need to install this separately, as it ships as a standard part of Plone 2.1 and up. This download is for people wanting to use it outside of Plone or in earlier releases of Plone.
This index supports depth limiting, and the ability to build a structure usable for navtrees and sitemaps. The actual navtree implementations are not (and should not) be in this Product, this is the index implementation only.
Main features:
- Can construct a site map with a single catalog query
- Can construct a navigation tree with a single catalog query
- Doesnt wake up any objects
- Much lower RAM consumption
- Massively improved performance
- Catalog based instead of traversal based
Works with:
- Plone 2.5.1
- Plone 2.5
- Plone 2.1.4
- Plone 2.1.3
- Plone 2.1.2
- Plone 2.1.1
- Plone 2.1
Enhancements:
- A minor release for Plone 2.5.1
Download (0.014MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
940 downloads
IsaViz 2.1
IsaViz is a visual environment for browsing and authoring Resource Description Framework (RDF) models represented as graphs. more>>
IsaViz is a visual environment for browsing and authoring Resource Description Framework (RDF) models represented as graphs. Since version 2.0, IsaViz can render RDF graphs using GSS (Graph Stylesheets), a stylesheet language derived from CSS and SVG for styling RDF models represented as node-link diagrams. In addition to the Sesame 2.0 implementation of FSL, there is now a Sesame 1.2.2 implementation from Ryan Lee from project Simile.
Main features:
- a 2.5D user interface allowing smooth zooming and navigation in the graph
- creation and editing of graphs by drawing ellipses, boxes and arcs
- RDF/XML, Notation 3 and N-Triple import
- RDF/XML, Notation 3 and N-Triple export, but also SVG and PNG export
<<lessMain features:
- a 2.5D user interface allowing smooth zooming and navigation in the graph
- creation and editing of graphs by drawing ellipses, boxes and arcs
- RDF/XML, Notation 3 and N-Triple import
- RDF/XML, Notation 3 and N-Triple export, but also SVG and PNG export
Download (9.46MB)
Added: 2006-07-29 License: (FDL) GNU Free Documentation License Price:
1184 downloads
GUatu 0.872
GUatu is a GTK/OpenGL-based comic book viewer. more>>
GUatu is a really, really fast (hardware accelerated) GTK/OpenGL-based comic book viewer for .cbz/.cbr files in all formats supported by GdkPixbuf (jpg, gif, xpm, tiff, pnm, bmp, ras, png). It uses an intuitive click-and-drag interface for navigation.
Main features:
- Hardware rendering for fast image display
- Image precaching for even faster image display
- Intuitive click-and-drag navigation interface
- Hardware rotation and zooming via bilinear interpolation
- Zoom to arbitrary amounts, by steps of 10%, or fit to window width, height, or size
- Cool name
<<lessMain features:
- Hardware rendering for fast image display
- Image precaching for even faster image display
- Intuitive click-and-drag navigation interface
- Hardware rotation and zooming via bilinear interpolation
- Zoom to arbitrary amounts, by steps of 10%, or fit to window width, height, or size
- Cool name
Download (0.48MB)
Added: 2005-07-30 License: GPL (GNU General Public License) Price:
1546 downloads
Seagull PHP Application Framework 0.6.2
Seagull is an OO PHP framework with the core modules licensed under BSD. more>>
Seagull is an OO PHP framework with the core modules licensed under BSD, and has the following design goals:
- independence of data, logic & presentation layers
- extensible component architecture
- reduction of repetitive programming tasks
- simplifying data access
- comprehensive error handling
- action request workflow
- simplified form handling
- component reuse
- authentication management
- integration with PEAR libraries
- PHP coding standards
- platform/PHP version/browser independence
- self-generating documentation
- quality end user docs
There are some default modules that come with the framework, these handle tasks related to:
- user/group management
- content management
- document management
- category management
- messaging
- navigation
<<less- independence of data, logic & presentation layers
- extensible component architecture
- reduction of repetitive programming tasks
- simplifying data access
- comprehensive error handling
- action request workflow
- simplified form handling
- component reuse
- authentication management
- integration with PEAR libraries
- PHP coding standards
- platform/PHP version/browser independence
- self-generating documentation
- quality end user docs
There are some default modules that come with the framework, these handle tasks related to:
- user/group management
- content management
- document management
- category management
- messaging
- navigation
Download (3.7MB)
Added: 2007-05-05 License: BSD License Price:
903 downloads
Heilan 0.12
Heilan is a cross-platform OpenGL X3D browser written in C++ and designed for audio work. more>>
Heilan is a cross-platform OpenGL X3D browser written in C++ and designed for audio work. Specifically, it forms the environment within which I am developing an audiovisual instrument for my PhD. As such, it has a number of features not commonly found in X3D browsers:
Low latency audio courtesy of PortAudio (ASIO, DirectX, MME on Windows; Jack, ALSA, OSS on Linux; CoreAudio on OSX).
A 1st order B-format Ambisonic audio engine, allowing for full 3d sound, capable of accommodating virtually any speaker configuration (at the moment this is limited to preset configurations, but that will change in the future).
Open Sound Control support for all nodes, allowing a nodes attributes to be manipulated in realtime, potentially by multiple users.
A multi-threaded audio engine, able to split off different nodes audio processing into separate threads (and potentially, separate cpus/cores). This can be configured by the scene author.
Heilan aims to conform to the X3D Interchange profile, with additional support for certain nodes such as Sound and NurbsPatchSurface. It may be extended with libraries which can provide extra nodes, navigation types, and sound file loaders. It comes with a library containing my own experimental audiovisual nodes, and a couple of extra navigation types.
The browser itself is a command line program designed to be used offline (theres no browser plugin or http/ftp support), though there is a GUI frontend available as well (included in the binary package). Both are open source, licensed under the GPL.
Enhancements:
- This release has the EXAMINE navigation type implemented correctly for the first time, and multitexturing is now implemented.
- Basic support for GLSL shaders is also included via the ProgramShader and ShaderProgram X3D nodes.
- Some new nodes have been added to libheilanextras, and a number of minor bugs have been fixed.
<<lessLow latency audio courtesy of PortAudio (ASIO, DirectX, MME on Windows; Jack, ALSA, OSS on Linux; CoreAudio on OSX).
A 1st order B-format Ambisonic audio engine, allowing for full 3d sound, capable of accommodating virtually any speaker configuration (at the moment this is limited to preset configurations, but that will change in the future).
Open Sound Control support for all nodes, allowing a nodes attributes to be manipulated in realtime, potentially by multiple users.
A multi-threaded audio engine, able to split off different nodes audio processing into separate threads (and potentially, separate cpus/cores). This can be configured by the scene author.
Heilan aims to conform to the X3D Interchange profile, with additional support for certain nodes such as Sound and NurbsPatchSurface. It may be extended with libraries which can provide extra nodes, navigation types, and sound file loaders. It comes with a library containing my own experimental audiovisual nodes, and a couple of extra navigation types.
The browser itself is a command line program designed to be used offline (theres no browser plugin or http/ftp support), though there is a GUI frontend available as well (included in the binary package). Both are open source, licensed under the GPL.
Enhancements:
- This release has the EXAMINE navigation type implemented correctly for the first time, and multitexturing is now implemented.
- Basic support for GLSL shaders is also included via the ProgramShader and ShaderProgram X3D nodes.
- Some new nodes have been added to libheilanextras, and a number of minor bugs have been fixed.
Download (0.87MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
919 downloads
Facetnav 0.5
Facetnav is an indexing, free text search, and faceted navigation engine. more>>
Facetnav is an indexing, free text search, and faceted navigation engine. It is usable as an independent service.
The project is usable in high traffic environments with huge amounts of data, along the lines of more than 100 searches a second with a data set of 100,000 objects with 10 facets
<<lessThe project is usable in high traffic environments with huge amounts of data, along the lines of more than 100 searches a second with a data set of 100,000 objects with 10 facets
Download (0.049MB)
Added: 2007-04-25 License: LGPL (GNU Lesser General Public License) Price:
913 downloads
rdigikam 0.2
rdigikam is a flickr like interface to Digikam. more>>
rdigikam is a flickr like interface to Digikam.
Main features:
- tags navigation
- album navigation
- date navigation with a calendar page
- cool iPhoto like zooming effect
To install follow these steps:
as root, you need to run:
gem install sqlite3-ruby
gem install rmagick
gem install calendar_grid
calendar_grid can be found here http://rubyforge.org/frs/?group_id=786
Once youve got all that installed:
uncompress the tarball, that should give you another tarball and a bash script script
run the script ./setup.sh as normal user
Ok now youre almost done:
edit the file rdigikam/app/helpers/application_helper.rb
edit the two variables on top. You might have something like:
@rdigikampath="/home/user/rdigikam-0.1/rdigikam" if you uncompressed the original tarball in your home.
and @mydigikampath="/home/user/Pictures"
Usage:
cd rdigikam
script/server
then open your browser to http://localhost:3000/tags
Enhancements:
- small UI improvement on Mozilla, now the tag list appear below the two navigation thumbs just like in konq
<<lessMain features:
- tags navigation
- album navigation
- date navigation with a calendar page
- cool iPhoto like zooming effect
To install follow these steps:
as root, you need to run:
gem install sqlite3-ruby
gem install rmagick
gem install calendar_grid
calendar_grid can be found here http://rubyforge.org/frs/?group_id=786
Once youve got all that installed:
uncompress the tarball, that should give you another tarball and a bash script script
run the script ./setup.sh as normal user
Ok now youre almost done:
edit the file rdigikam/app/helpers/application_helper.rb
edit the two variables on top. You might have something like:
@rdigikampath="/home/user/rdigikam-0.1/rdigikam" if you uncompressed the original tarball in your home.
and @mydigikampath="/home/user/Pictures"
Usage:
cd rdigikam
script/server
then open your browser to http://localhost:3000/tags
Enhancements:
- small UI improvement on Mozilla, now the tag list appear below the two navigation thumbs just like in konq
Download (0.068MB)
Added: 2006-09-03 License: GPL (GNU General Public License) Price:
1146 downloads
Newega 0.7.2
Newega is a Usenet reader with a Web-based interface. more>>
Newega is a Usenet reader with a Web-based interface. Newega is a stand-alone program (no Web or database server needed), is cross-platform, and has support for themes using HTML templates.
Main features:
- Basic: Subscribing, Sorting and searching newsgroups, Threads
- Theme support using HTML templates
- Keyboard navigation (requires javascript)
- Support multiple architectures
- MultiTask
- Support for non english character encodings
Enhancements:
- New features include advanced filters and flagging rules, remote use with access restriction based on IP and/or password, support for downloading of large binary files, group folders, and more.
<<lessMain features:
- Basic: Subscribing, Sorting and searching newsgroups, Threads
- Theme support using HTML templates
- Keyboard navigation (requires javascript)
- Support multiple architectures
- MultiTask
- Support for non english character encodings
Enhancements:
- New features include advanced filters and flagging rules, remote use with access restriction based on IP and/or password, support for downloading of large binary files, group folders, and more.
Download (1.9MB)
Added: 2006-03-08 License: Free for non-commercial use Price:
1325 downloads
Web Search Aggregator 1.2.0
Web Search Aggregator (WSA) provides multiple Web searches from one place. more>>
Web Search Aggregator (WSA) provides multiple Web searches from one place. It features multiple categories and the display of results from many sites with a single search.
Your last search and the state of the tabs are remembered. Tabs can be navigated with the keyboard.
Enhancements:
- Mouse navigation has been added (hold down the Ctrl key).
- History of searches has been added (+statistics).
<<lessYour last search and the state of the tabs are remembered. Tabs can be navigated with the keyboard.
Enhancements:
- Mouse navigation has been added (hold down the Ctrl key).
- History of searches has been added (+statistics).
Download (0.005MB)
Added: 2006-07-15 License: BSD License Price:
1196 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above navigation search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed