browsing history
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 807
browser-history 2.8
Browser-history is a small and efficient daemon that keeps your browser history, independent of the browser you use. more>>
Browser-history is a small and efficient daemon that keeps your browser history, independent of the browser you use.
Browser-history came from the will to overcome a Netscape bug: there was no global history, and if you close a window, its whole history is lost. For people browsing lots of sites, having a possibility to track back where one has been before means that you dont have to put everything in your bookmarks file. If you are not sure if a site may be worth remebering, dont add it in your bookmarks. If you need it later, just browse your history files.
Later, it came to our minds that this also could be a valuable add-on to people writing experimental browsers, so they dont have to add this functionality to their browser itself, and to users able thus to track their web history regardless of the browser they used.
Browser-history is a small and efficient daemon. Real user services could be built on top of the log files it maintains for more possibilities (graphical representation, advanced search options, collective histories). It can be seen as a quick-and-dirty hack wrt to the general solution of using a personal proxy to provide this history and housekeeping facilities. For now, it is easy to use and it works very good.
And now that Netscape has a semi-decent history, browser-history is still valuable, as it is difficult to search in the netscape history, its file format is not defined, and entries expire after some time.
Enhancements:
- bugfix: since 2.6, internal links of default generated headers were false
<<lessBrowser-history came from the will to overcome a Netscape bug: there was no global history, and if you close a window, its whole history is lost. For people browsing lots of sites, having a possibility to track back where one has been before means that you dont have to put everything in your bookmarks file. If you are not sure if a site may be worth remebering, dont add it in your bookmarks. If you need it later, just browse your history files.
Later, it came to our minds that this also could be a valuable add-on to people writing experimental browsers, so they dont have to add this functionality to their browser itself, and to users able thus to track their web history regardless of the browser they used.
Browser-history is a small and efficient daemon. Real user services could be built on top of the log files it maintains for more possibilities (graphical representation, advanced search options, collective histories). It can be seen as a quick-and-dirty hack wrt to the general solution of using a personal proxy to provide this history and housekeeping facilities. For now, it is easy to use and it works very good.
And now that Netscape has a semi-decent history, browser-history is still valuable, as it is difficult to search in the netscape history, its file format is not defined, and entries expire after some time.
Enhancements:
- bugfix: since 2.6, internal links of default generated headers were false
Download (0.019MB)
Added: 2006-06-22 License: Freeware Price:
698 downloads
Browser History Viewer 0.0.10
Browser History Viewer allows you to examine the contents of web browser history files and export the data. more>>
Browser History Viewer allows you to examine the contents of web browser history files and export the data.
Currently it supports Internet Explorer and Mozilla/Firefox.
Browser History Viewer meant to be a forensics tool. It meant to be a forensics tool.
BHV is licensed under the terms of the GNU General Public License (GPL).
<<lessCurrently it supports Internet Explorer and Mozilla/Firefox.
Browser History Viewer meant to be a forensics tool. It meant to be a forensics tool.
BHV is licensed under the terms of the GNU General Public License (GPL).
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1239 downloads
CVS History 0.8.0
CVS History is a Web application for searching the history of CVS actions. more>>
CVS History is a Web application for searching the history of CVS actions. It parses the output of the CVS history command and imports it into a MySQL database for ease of manipulation by the PHP front-end.
Its advantage over other CVS history viewing applications is that it only needs anonymous CVS access to the repository.
Main features:
- Tested on Firefox and IE
- XHTML and CSS validated code
- RSS feed of the search query results
- Export the output of search query to other formats (e.g. CSV file)
- Searches can be bookmarked
- History entries can be linked to a ViewVC installation of the same repository
<<lessIts advantage over other CVS history viewing applications is that it only needs anonymous CVS access to the repository.
Main features:
- Tested on Firefox and IE
- XHTML and CSS validated code
- RSS feed of the search query results
- Export the output of search query to other formats (e.g. CSV file)
- Searches can be bookmarked
- History entries can be linked to a ViewVC installation of the same repository
Download (0.10MB)
Added: 2005-11-29 License: GPL (GNU General Public License) Price:
1425 downloads
kio_history 0.1
kio_history is a protocol to access Konquerors browsing history. more>>
kio_history is a protocol to access Konquerors browsing history. It is mostly experimental in nature.
Known bugs:
-Cannot delete entries / clear history.
-Does not receive real-time updates, must be refreshed.
-Folder URLS (e.g. svn://anonsvn.kde.org/home/kde) do not open correctly.
Ideas for the future?
-All of the above bugs could be fixed by modifying KonqHistoryManager.
-Display favicons.
-Store previews of all history entries?
<<lessKnown bugs:
-Cannot delete entries / clear history.
-Does not receive real-time updates, must be refreshed.
-Folder URLS (e.g. svn://anonsvn.kde.org/home/kde) do not open correctly.
Ideas for the future?
-All of the above bugs could be fixed by modifying KonqHistoryManager.
-Display favicons.
-Store previews of all history entries?
Download (0.38MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1082 downloads
Rails History Plugin 0.2
Rails History Plugin is a Ruby on Rails plugin that stores user actions (i.e. URLs that the user has recently visited). more>>
Rails History Plugin is a Ruby on Rails plugin that stores user actions (i.e. URLs that the user has recently visited).
It avoids storage of POST and AJAX requests, and it provides a manual way to specify which actions not to store.
Installation:
Unpack into the vendor/plugin and that should be it.
Usage:
In your app/controllers/application_controller.rb, add a history line like this:
class ApplicationController < ActionController::Base
history :default => "http://default.url.com/",
:max => 10
end
The history function accepts a hash of options
:default, the default URL to redirect
:max, the maximum locations to remember (five by defaults).
None of the parameters are required. If somebody knows of a better way to obtain the default URL, he is welcomed to tell me how.
You can use the method history_skip in your controller if you want to avoid certain location to be stored in the history. By default, action resulting from a POST, PUT, DELETE request or an Ajax request are not stored in the history.
class FooController < ApplicationController
history_skip :action_to_skip
def action_to_skip
# I will not be stored in the history
end
end
In your actions, you can then use the following methods:
last_location: returns the last visited location, can be used with one numeric argument precising how many locations to go back in the history (1 by default),
peek_last_location: like last_location but dont remove it from the history,
redirect_back: redirect the user to the last location in history, it takes the same arguments as last_location,
store_location(force = false): stores the current location in the history, set force parameter to true to store location even if it would be skipped.
Note that if you want to use the plugin to create a "back" link on a page, you must go back two times. For example, using this controller
class HistoryController < ApplicationController
def foo
end
def bar
end
def back
redirect_back(2)
end
end
Ill try to explain clearly why. Lets say that in your bar view, you create a back link wich links to the back action. Now a user visits foo then bar. What you want is your user being redirected to foo when clicking your "back" link. Now your user hits the link. The controller will call the back action. From its point of view, you are in the back action so going back one time would take you to the bar action.
Enhancements:
- This release fixes a bug where a user variable was stored in a class variable instead of a session one, so a user going back would make another one skip a page in its history.
- The plugin no longer stores PUT and DELETE requests.
- A peek_last_location method was added to look at the history without modifying it, and a "force" parameter was added to the store_location method to force storing of a location even if it would normally be skipped.
<<lessIt avoids storage of POST and AJAX requests, and it provides a manual way to specify which actions not to store.
Installation:
Unpack into the vendor/plugin and that should be it.
Usage:
In your app/controllers/application_controller.rb, add a history line like this:
class ApplicationController < ActionController::Base
history :default => "http://default.url.com/",
:max => 10
end
The history function accepts a hash of options
:default, the default URL to redirect
:max, the maximum locations to remember (five by defaults).
None of the parameters are required. If somebody knows of a better way to obtain the default URL, he is welcomed to tell me how.
You can use the method history_skip in your controller if you want to avoid certain location to be stored in the history. By default, action resulting from a POST, PUT, DELETE request or an Ajax request are not stored in the history.
class FooController < ApplicationController
history_skip :action_to_skip
def action_to_skip
# I will not be stored in the history
end
end
In your actions, you can then use the following methods:
last_location: returns the last visited location, can be used with one numeric argument precising how many locations to go back in the history (1 by default),
peek_last_location: like last_location but dont remove it from the history,
redirect_back: redirect the user to the last location in history, it takes the same arguments as last_location,
store_location(force = false): stores the current location in the history, set force parameter to true to store location even if it would be skipped.
Note that if you want to use the plugin to create a "back" link on a page, you must go back two times. For example, using this controller
class HistoryController < ApplicationController
def foo
end
def bar
end
def back
redirect_back(2)
end
end
Ill try to explain clearly why. Lets say that in your bar view, you create a back link wich links to the back action. Now a user visits foo then bar. What you want is your user being redirected to foo when clicking your "back" link. Now your user hits the link. The controller will call the back action. From its point of view, you are in the back action so going back one time would take you to the bar action.
Enhancements:
- This release fixes a bug where a user variable was stored in a class variable instead of a session one, so a user going back would make another one skip a page in its history.
- The plugin no longer stores PUT and DELETE requests.
- A peek_last_location method was added to look at the history without modifying it, and a "force" parameter was added to the store_location method to force storing of a location even if it would normally be skipped.
Download (0.011MB)
Added: 2006-06-29 License: MIT/X Consortium License Price:
1213 downloads
History links 1.3
This class can be used to keep track of the pages navigated by a user, so it can generate back or next links. more>>
This class can be used to keep track of the pages navigated by a user, so it can generate back or next links providing a similar effect to the use of the Javascript history.go() function.
It uses sessions to store an array variable that holds the URL of each page of a site that the user accesses. It can limit the number of pages that are kept in the history array.
It may also ignore pages accessed with the POST method or with certain URLs based on options that define exclusion regular expressions. The class can generate links to go back to the last page or the first page that was recorded.
Enhancements:
- The class is completely changed.
- This release adds creation of several objects of a class, a predefined start page, an expanded list of exceptions, and the methods get_history_back, get_history_next, is_history_back (check back one page), is_history_next (check the next page), get_history_backs (go to the first page), get_history_nexts (go to the last page), and get_history_header (go to the previous and next pages using external parameters).
- It adds history "always", and has more compatibility with javascript:history.go() (no checking previous and next pages).
- New methods have been added for the manipulation of history "always".
<<lessIt uses sessions to store an array variable that holds the URL of each page of a site that the user accesses. It can limit the number of pages that are kept in the history array.
It may also ignore pages accessed with the POST method or with certain URLs based on options that define exclusion regular expressions. The class can generate links to go back to the last page or the first page that was recorded.
Enhancements:
- The class is completely changed.
- This release adds creation of several objects of a class, a predefined start page, an expanded list of exceptions, and the methods get_history_back, get_history_next, is_history_back (check back one page), is_history_next (check the next page), get_history_backs (go to the first page), get_history_nexts (go to the last page), and get_history_header (go to the previous and next pages using external parameters).
- It adds history "always", and has more compatibility with javascript:history.go() (no checking previous and next pages).
- New methods have been added for the manipulation of history "always".
Download (0.006MB)
Added: 2005-10-03 License: GPL (GNU General Public License) Price:
1482 downloads
Netscape::History 3.01
Netscape::History is a Perl object class for accessing Netscape history database. more>>
Netscape::History is a Perl object class for accessing Netscape history database.
SYNOPSIS
use Netscape::History;
$history = new Netscape::History();
while (defined($url = $history->next_url() ))
{
}
The Netscape::History module implements an object class for accessing the history database maintained by the Netscape web browser. The history database keeps a list of all URLs you have visited, and is used by Netscape to change the color of URLs which you have previously visited, for example.
With this module, you can get at the URLs stored in a Netscape history file, delete URLs, and add new ones. With the associated Netscape::HistoryURL module you can access the information which is associated with each URL.
Please Note: the database format for the browser history was changed with Netscape 4. Previously only the time of most recent visit was available; now you can also get at the time of your first visit, the number of visits, the title of the referenced page, and another value.
<<lessSYNOPSIS
use Netscape::History;
$history = new Netscape::History();
while (defined($url = $history->next_url() ))
{
}
The Netscape::History module implements an object class for accessing the history database maintained by the Netscape web browser. The history database keeps a list of all URLs you have visited, and is used by Netscape to change the color of URLs which you have previously visited, for example.
With this module, you can get at the URLs stored in a Netscape history file, delete URLs, and add new ones. With the associated Netscape::HistoryURL module you can access the information which is associated with each URL.
Please Note: the database format for the browser history was changed with Netscape 4. Previously only the time of most recent visit was available; now you can also get at the time of your first visit, the number of visits, the title of the referenced page, and another value.
Download (0.009MB)
Added: 2007-03-24 License: Perl Artistic License Price:
949 downloads
BrowseX 2.0.0
BrowseX is a free Open Source, cross-platform Web Browser, Mail Program, Talk/Chat client and more. more>>
BrowseX is a free Open Source, cross-platform Web Browser, Mail Program, Talk/Chat client and more. There is a database interface, SQLite, and BrowseX is easily extensible via an API. BrowseX has been written primarily in C and Tcl and clearly demonstrates that Linux applications can indeed bridge to Windows. The user can also dynamically configure any widget, even form fields in web pages, on the fly using Shift-Control-mousebutton. You may also want to look at TML, a CGI and Web Script that BrowseX has built-in. The http://dev.browsex.com/ site now uses the TML CGI to display the BrowseX documentation as TML directly.
For the user, BrowseX has two principle characteristics: resilience and responsiveness. The first comes really as a side effect of using Tcl for all highlevel algorithms. Errors result in popup dialogs rather than crashes. Responsiveness is probably due to lightweight and the widget based implementation which forced clean interfaces between parts.
Precompiled binaries are currently provided for Linux and Win32. The binary is a single standalone executable, but which also contains the Tcl scripts: See Packaging. There is also a unified build script for Linux, for rebuilding from scratch.
Main features:
- HTML 3.2+ via tkhtml, with extensions (eg. Frames)
- Support for Safe-Tcl scripts embedded within HTML pages (popups, etc).
- A tcl-macro preprocessor for both client and server side.
- A built in Postgres Database client available from Safe-Tcl
- Image handling for gifs, jpeg, and png (+ disable/control Animated gifs)
- Background images and Image maps
- Multiple views, Frames, and Forms
- Cookies and basic authentication
- FTP and Local filesystem browsing
- Downloads: Http, ftp, and Image Save-as
- Proxy: FTP and HTTP
- View/search/save html and plain text
- Caching: web pages/gifs, and DNS lookups
- Go backward/forward, and the usual Netscape style key bindings
- Page History, and browse whole cache
- Bookmarks (minus bookmark editor)
- Printing to text/postscript output
- Applications: Editor, Calculator, Database (pgaccess)
- Mail with pop and local support: Mime and folder management
- Preferences/configuration
- Tcl Security Control: by domain or host
- Quick-Search: launch searches in 1 web operation, instead of 2+.
- SSL/TLS (minus certificate management)
- International Language Encodings (72)
<<lessFor the user, BrowseX has two principle characteristics: resilience and responsiveness. The first comes really as a side effect of using Tcl for all highlevel algorithms. Errors result in popup dialogs rather than crashes. Responsiveness is probably due to lightweight and the widget based implementation which forced clean interfaces between parts.
Precompiled binaries are currently provided for Linux and Win32. The binary is a single standalone executable, but which also contains the Tcl scripts: See Packaging. There is also a unified build script for Linux, for rebuilding from scratch.
Main features:
- HTML 3.2+ via tkhtml, with extensions (eg. Frames)
- Support for Safe-Tcl scripts embedded within HTML pages (popups, etc).
- A tcl-macro preprocessor for both client and server side.
- A built in Postgres Database client available from Safe-Tcl
- Image handling for gifs, jpeg, and png (+ disable/control Animated gifs)
- Background images and Image maps
- Multiple views, Frames, and Forms
- Cookies and basic authentication
- FTP and Local filesystem browsing
- Downloads: Http, ftp, and Image Save-as
- Proxy: FTP and HTTP
- View/search/save html and plain text
- Caching: web pages/gifs, and DNS lookups
- Go backward/forward, and the usual Netscape style key bindings
- Page History, and browse whole cache
- Bookmarks (minus bookmark editor)
- Printing to text/postscript output
- Applications: Editor, Calculator, Database (pgaccess)
- Mail with pop and local support: Mime and folder management
- Preferences/configuration
- Tcl Security Control: by domain or host
- Quick-Search: launch searches in 1 web operation, instead of 2+.
- SSL/TLS (minus certificate management)
- International Language Encodings (72)
Download (4MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1234 downloads
Netscape::HistoryURL 3.01
Netscape::HistoryURL is a URI::URL subclass with Netscape history information. more>>
Netscape::HistoryURL is a URI::URL subclass with Netscape history information.
SYNOPSIS
use Netscape::HistoryURL;
$url = new Netscape::HistoryURL(http://foobar.com/,
LAST, FIRST, COUNT, EXPIRE, TITLE);
The Netscape::HistoryURL module subclasses URI::URL to provide a URL class with methods for accessing the information which is stored in Netscapes history database.
The history database is used to keep track of all URLs you have visited. This is used to color previously visited URLs different, for example. The information stored in the history database depends on the version of Netscape being used.
<<lessSYNOPSIS
use Netscape::HistoryURL;
$url = new Netscape::HistoryURL(http://foobar.com/,
LAST, FIRST, COUNT, EXPIRE, TITLE);
The Netscape::HistoryURL module subclasses URI::URL to provide a URL class with methods for accessing the information which is stored in Netscapes history database.
The history database is used to keep track of all URLs you have visited. This is used to color previously visited URLs different, for example. The information stored in the history database depends on the version of Netscape being used.
Download (0.008MB)
Added: 2007-03-24 License: Perl Artistic License Price:
945 downloads
LinkBrowser 0.3
LinkBrowser is a program for browsing the links in HTML documents. more>>
LinkBrowser is a program for browsing the links in HTML documents and downloading the files that they reference.
Basically, this program is like a normal Web browser, but instead of rendering the HTML it just shows a table of all the files that the html references. The files can be downloaded in batches.
Enhancements:
- URL parsing has been enhanced and build issues with Java 1.5 have been fixed.
<<lessBasically, this program is like a normal Web browser, but instead of rendering the HTML it just shows a table of all the files that the html references. The files can be downloaded in batches.
Enhancements:
- URL parsing has been enhanced and build issues with Java 1.5 have been fixed.
Download (0.22MB)
Added: 2005-09-15 License: GPL (GNU General Public License) Price:
1503 downloads
Improved offline web browsing 0.6
Improved offline web browsing package contains many fixes for offline browsing for Konqueror. more>>
Improved offline web browsing package contains:
- improved / bug-fixed offline browsing for Konqueror and other application that use kde http io slaves.
- Improved / bug-fixed web browsing for low-bandwidth connections.
- Improved / bug-fixed detection of cross-domain requests
- Referer-Urls are not send cross-domain (configurable)
Requires sources for kdelibs, kdebase and kdeaddons. If you use German localization, you will probably want sources for kde-i18n-de, too.
Webpages with enabled javascript may not work 100% when browsing offline completely.
Version restrictions:
- None that are not present in the original http slave.
- Webpages with javascript enabled may not work with offline browsing.
<<less- improved / bug-fixed offline browsing for Konqueror and other application that use kde http io slaves.
- Improved / bug-fixed web browsing for low-bandwidth connections.
- Improved / bug-fixed detection of cross-domain requests
- Referer-Urls are not send cross-domain (configurable)
Requires sources for kdelibs, kdebase and kdeaddons. If you use German localization, you will probably want sources for kde-i18n-de, too.
Webpages with enabled javascript may not work 100% when browsing offline completely.
Version restrictions:
- None that are not present in the original http slave.
- Webpages with javascript enabled may not work with offline browsing.
Download (0.019MB)
Added: 2007-05-09 License: LGPL (GNU Lesser General Public License) Price:
900 downloads
Califone Listening Center 1.0
School Desk search toolbar from Mcdonalds Direct designed for Firefox to improve browsing experience, and aid in the search of school and office furn... more>> <<less
Download (504KB)
Added: 2009-04-21 License: Freeware Price: Free
190 downloads
QtSQL Browser 0.85
QtSQL Browser is a generic GUI database browsing frontend. more>>
The purpose of this project is to provide a simple, generic GUI database browsing frontend. The tool is a very simple aggregation of the Qt database classes.
The database abstraction is provided by the Qt database drivers. So far, the drivers for PostgreSQL and MySQL have been found to work well.
In principle, there is no reason why ODBC drivers for popular databases such as Oracle, DB2, Informix as well as Firebird and SAP/DB shouldnt work via the Qt ODBC3 abstraction layer.
However, some preliminary tests with these have not been promising. It may be that the only way to get some of these working is to create a native Qt database driver. This is something Ill be looking into much later.
At the moment, it is only possible to build the system on Unix and similar systems. Since Trolltech have released a version of Qt for OSX under the GPL and have announced their intention to do likewise for Win32, it should be possible to provide ports for both of these platforms. For the moment though, I just provide the source.
Main features:
- Tree browser for databases and tables
- Display of table descriptions
- Display of table contents in main window
- Execution of ad-hoc SQL queries in the query tab
- Command line history in the query tab
- Retrieval of database connection details from XML config file
- Retrieval of other configuration parameters from XML config file
- Prompting for connection password
- Addition of new connections via GUI to the running application and the config file
- Display database views with a separate icon
- Create a connection name independent of the database name
- A "Test" button when creating a new connection
- Dynamically generate a list of available drivers
- Configuration via autoconf
- Fixed bug with executing updates/inserts twice
- Refreshing of a DB connection
- Deleting of connections via the GUI
- Editting of connections via the GUI
- Check for the existence of ~/.qtsql
- Creation of skeleton config file
- Auto saving/restoring of history
- Loading of queries
- Saving of results
- Keyboard shortcuts
<<lessThe database abstraction is provided by the Qt database drivers. So far, the drivers for PostgreSQL and MySQL have been found to work well.
In principle, there is no reason why ODBC drivers for popular databases such as Oracle, DB2, Informix as well as Firebird and SAP/DB shouldnt work via the Qt ODBC3 abstraction layer.
However, some preliminary tests with these have not been promising. It may be that the only way to get some of these working is to create a native Qt database driver. This is something Ill be looking into much later.
At the moment, it is only possible to build the system on Unix and similar systems. Since Trolltech have released a version of Qt for OSX under the GPL and have announced their intention to do likewise for Win32, it should be possible to provide ports for both of these platforms. For the moment though, I just provide the source.
Main features:
- Tree browser for databases and tables
- Display of table descriptions
- Display of table contents in main window
- Execution of ad-hoc SQL queries in the query tab
- Command line history in the query tab
- Retrieval of database connection details from XML config file
- Retrieval of other configuration parameters from XML config file
- Prompting for connection password
- Addition of new connections via GUI to the running application and the config file
- Display database views with a separate icon
- Create a connection name independent of the database name
- A "Test" button when creating a new connection
- Dynamically generate a list of available drivers
- Configuration via autoconf
- Fixed bug with executing updates/inserts twice
- Refreshing of a DB connection
- Deleting of connections via the GUI
- Editting of connections via the GUI
- Check for the existence of ~/.qtsql
- Creation of skeleton config file
- Auto saving/restoring of history
- Loading of queries
- Saving of results
- Keyboard shortcuts
Download (0.025MB)
Added: 2005-05-24 License: GPL (GNU General Public License) Price:
1619 downloads
ibrouteur 1.0
ibrouteur is a Web-based image gallery software. more>>
ibrouteur is a Web-based photo gallery software. The image repository is parsed into a database used for querying.
Queries are done via the URLs, and the system offers multiple indexes for efficient browsing.
<<lessQueries are done via the URLs, and the system offers multiple indexes for efficient browsing.
Download (0.014MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1276 downloads
Puppet::VcsTools::History 1.004
Puppet::VcsTools::History provides a TK GUI for VcsTools::History. more>>
Puppet::VcsTools::History provides a TK GUI for VcsTools::History.
This class provides a GUI to the VcsTools::History class.
It contains a GraphWidget to draw the history tree and some key bindings to read the log informations from the tree drawing .
Main features:
- A canvas to draw a revision tree.
- A revision list. If you double click on a revision of this list, History will draw the revision tree starting from this revision.
- A text window to display informations related to the revision tree.
<<lessThis class provides a GUI to the VcsTools::History class.
It contains a GraphWidget to draw the history tree and some key bindings to read the log informations from the tree drawing .
Main features:
- A canvas to draw a revision tree.
- A revision list. If you double click on a revision of this list, History will draw the revision tree starting from this revision.
- A text window to display informations related to the revision tree.
Download (0.007MB)
Added: 2007-03-30 License: Perl Artistic License Price:
938 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 browsing history 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