netscape isp homepage
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 359
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
Netscape::Bookmarks 1.94
Netscape::Bookmarks is a Perl module to parse, manipulate, or create Netscape Bookmarks files. more>>
Netscape::Bookmarks is a Perl module to parse, manipulate, or create Netscape Bookmarks files.
SYNOPSIS
use Netscape::Bookmarks;
# parse an existing file
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
# -- OR --
# start a new Bookmarks structure
my $bookmarks = Netscape::Bookmarks->new;
# print a Netscape compatible file
print $bookmarks->as_string;
[ Note: I wrote this a long time ago. Although this should still work with "Netscape" browsers, Mozilla browsers do the same thing. When the docs say "Netscape", I mean either branch of browsers. ]
The Netscape bookmarks file has several basic components:
title
folders (henceforth called categories)
links
aliases
separators
On disk, Netscape browsers store this information in HTML. In the browser, it is displayed under the "Bookmarks" menu. The data can be manipulated through the browser interface.
This module allows one to manipulate the bookmarks file programmatically. One can parse an existing bookmarks file, manipulate the information, and write it as a bookmarks file again. Furthermore, one can skip the parsing step to create a new bookmarks file and write it in the proper format to be used by a Netscape browser.
The Bookmarks module simply parses the bookmarks file passed to it as the only argument to the constructor:
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
The returned object is a Netscape::Bookmarks::Category object, since the bookmark file is simply a collection of categories that contain any of the components listed above. The top level (i.e. root) category is treated specially and defines the title of the bookmarks file.
HTML::Parser is used behind the scenes to build the data structure (a simple list of lists (of lists ...)). Netscape::Bookmarks::Category, Netscape::Bookmarks::Link, Netscape::Bookmarks::Alias, or Netscape::Bookmarks::Separator objects can be stored in a Netscape::Bookmarks::Category object. Netscape::Bookmarks::Alias objects are treated as references to Netscape::Bookmarks::Link objects, so changes to one affect the other.
Methods for manipulating this object are in the Netscape::Bookmarks::Category module. Methods for dealing with the objects contained in a Netscape::Bookmarks::Category object are in their appropriate modules.
new( [filename] )
The constructor takes a filename as its single (optional) argument. If you do not give new an argument, an empty Netscape::Bookmarks::Category object is returned so that you can start to build up your new Bookmarks file. If the file that you name does not exist, undef is returned in scalar context and an empty list is returned in list context. If the file does exist it is parsed with HTML::Parser with the internal parser subclass defined in the same package as new. If the parsing finishes without error a Netscape::Bookmarks::Category object is returned.
parse_string
Method for HTML::Parser subclass method
start
Method for HTML::Parser subclass method
text
Method for HTML::Parser subclass method
end
Method for HTML::Parser subclass method
my_init
Method for HTML::Parser subclass method
<<lessSYNOPSIS
use Netscape::Bookmarks;
# parse an existing file
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
# -- OR --
# start a new Bookmarks structure
my $bookmarks = Netscape::Bookmarks->new;
# print a Netscape compatible file
print $bookmarks->as_string;
[ Note: I wrote this a long time ago. Although this should still work with "Netscape" browsers, Mozilla browsers do the same thing. When the docs say "Netscape", I mean either branch of browsers. ]
The Netscape bookmarks file has several basic components:
title
folders (henceforth called categories)
links
aliases
separators
On disk, Netscape browsers store this information in HTML. In the browser, it is displayed under the "Bookmarks" menu. The data can be manipulated through the browser interface.
This module allows one to manipulate the bookmarks file programmatically. One can parse an existing bookmarks file, manipulate the information, and write it as a bookmarks file again. Furthermore, one can skip the parsing step to create a new bookmarks file and write it in the proper format to be used by a Netscape browser.
The Bookmarks module simply parses the bookmarks file passed to it as the only argument to the constructor:
my $bookmarks = Netscape::Bookmarks->new( $bookmarks_file );
The returned object is a Netscape::Bookmarks::Category object, since the bookmark file is simply a collection of categories that contain any of the components listed above. The top level (i.e. root) category is treated specially and defines the title of the bookmarks file.
HTML::Parser is used behind the scenes to build the data structure (a simple list of lists (of lists ...)). Netscape::Bookmarks::Category, Netscape::Bookmarks::Link, Netscape::Bookmarks::Alias, or Netscape::Bookmarks::Separator objects can be stored in a Netscape::Bookmarks::Category object. Netscape::Bookmarks::Alias objects are treated as references to Netscape::Bookmarks::Link objects, so changes to one affect the other.
Methods for manipulating this object are in the Netscape::Bookmarks::Category module. Methods for dealing with the objects contained in a Netscape::Bookmarks::Category object are in their appropriate modules.
new( [filename] )
The constructor takes a filename as its single (optional) argument. If you do not give new an argument, an empty Netscape::Bookmarks::Category object is returned so that you can start to build up your new Bookmarks file. If the file that you name does not exist, undef is returned in scalar context and an empty list is returned in list context. If the file does exist it is parsed with HTML::Parser with the internal parser subclass defined in the same package as new. If the parsing finishes without error a Netscape::Bookmarks::Category object is returned.
parse_string
Method for HTML::Parser subclass method
start
Method for HTML::Parser subclass method
text
Method for HTML::Parser subclass method
end
Method for HTML::Parser subclass method
my_init
Method for HTML::Parser subclass method
Download (0.023MB)
Added: 2007-03-24 License: Perl Artistic License Price:
947 downloads
Netscape::Cache 0.45
Netscape::Cache is a Perl object class for accessing Netscape cache files. more>>
Netscape::Cache is a Perl object class for accessing Netscape cache files.
SYNOPSIS
The object oriented interface:
use Netscape::Cache;
$cache = new Netscape::Cache;
while (defined($url = $cache->next_url)) {
print $url, "n";
}
while (defined($o = $cache->next_object)) {
print
$o->{URL}, "n",
$o->{CACHEFILE}, "n",
$o->{LAST_MODIFIED}, "n",
$o->{MIME_TYPE}, "n";
}
The TIEHASH interface:
use Netscape::Cache;
tie %cache, Netscape::Cache;
foreach (sort keys %cache) {
print $cache{$_}->{URL}, "n";
}
The Netscape::Cache module implements an object class for accessing the filenames and URLs of the cache files used by the Netscape web browser.
Note: You can also use the undocumented pseudo-URLs about:cache, about:memory-cache and about:global-history to access your disk cache, memory cache and global history.
There is also an interface for using tied hashes.
Netscape uses the old Berkeley DB format (version 1.85) for its cache index index.db. Version 2.x.x is incompatible with the old format (db_intro(3)), so you have either to downgrade or to convert the database using db_dump185 and db_load. See convert_185_2xx for a (experimental) converter function.
<<lessSYNOPSIS
The object oriented interface:
use Netscape::Cache;
$cache = new Netscape::Cache;
while (defined($url = $cache->next_url)) {
print $url, "n";
}
while (defined($o = $cache->next_object)) {
$o->{URL}, "n",
$o->{CACHEFILE}, "n",
$o->{LAST_MODIFIED}, "n",
$o->{MIME_TYPE}, "n";
}
The TIEHASH interface:
use Netscape::Cache;
tie %cache, Netscape::Cache;
foreach (sort keys %cache) {
print $cache{$_}->{URL}, "n";
}
The Netscape::Cache module implements an object class for accessing the filenames and URLs of the cache files used by the Netscape web browser.
Note: You can also use the undocumented pseudo-URLs about:cache, about:memory-cache and about:global-history to access your disk cache, memory cache and global history.
There is also an interface for using tied hashes.
Netscape uses the old Berkeley DB format (version 1.85) for its cache index index.db. Version 2.x.x is incompatible with the old format (db_intro(3)), so you have either to downgrade or to convert the database using db_dump185 and db_load. See convert_185_2xx for a (experimental) converter function.
Download (0.016MB)
Added: 2007-03-24 License: Perl Artistic License Price:
945 downloads
Netscapes Digg Tracker 1.0.3
Netscapes Digg Tracker helps you keep tabs on what stories your Digg friends are digging, submitting, and commenting on. more>>
Netscapes Digg Tracker is a the Firefox extension that helps you keep tabs on what stories your Digg friends are digging, submitting, and commenting on. A new toolbar button (shown in the preview image) features the Digg digger. When there is new activity by your friends (i.e., a new comment or a new story submission), the button will be activated and the digger will be shown with his trusty shovel.
Clicking on the activated button will open a list of your friends activity in the sidebar, allowing you to easily browse the stories theyve submitted, commented on, and dugg. Each time you view your friends activity, you will only be shown activity that is new since the last time you opened the sidebar.
In addition, the top 5 stories from Netscape.com will be shown below your friends activity. At any time, you can click the toolbar button to view these links, even if there is no new activity to display.
Note: The sidebar limits activity to five stories/comments/diggs for each friend. If there are more than five items to show, a link to the friends full history will be displayed.
This extension is based on the Netscape Friends Activity Sidebar.
<<lessClicking on the activated button will open a list of your friends activity in the sidebar, allowing you to easily browse the stories theyve submitted, commented on, and dugg. Each time you view your friends activity, you will only be shown activity that is new since the last time you opened the sidebar.
In addition, the top 5 stories from Netscape.com will be shown below your friends activity. At any time, you can click the toolbar button to view these links, even if there is no new activity to display.
Note: The sidebar limits activity to five stories/comments/diggs for each friend. If there are more than five items to show, a link to the friends full history will be displayed.
This extension is based on the Netscape Friends Activity Sidebar.
Download (0.020MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
876 downloads
Netscape Navigator 9.0 Beta 1
Netscape Navigator offers improved pop-up blocking and enhanced security. more>>
Netscape Navigator offers improved pop-up blocking and enhanced security. Netscape Navigator 9 is available as a standalone installation for Linux, Mac OS, and Windows.
The automatic update feature in your current Netscape browser will not upgrade to 9.0. Please download the new version now for the newest updates.
Main features:
Social Integration
- Share and vote for webpages that you find interesting.
- Add friends and get their favorite stories in your sidebar.
News in the Browser
- Follow the latest news directly from your browser.
- Customize your News menu to only show your favorite sections.
URL correction
- Let Navigator fix common typing mistakes in URLs.
- No more .cmo, .ogr, or htp:// !
Link Pad
- Save interesting links for later without cluttering your bookmarks.
<<lessThe automatic update feature in your current Netscape browser will not upgrade to 9.0. Please download the new version now for the newest updates.
Main features:
Social Integration
- Share and vote for webpages that you find interesting.
- Add friends and get their favorite stories in your sidebar.
News in the Browser
- Follow the latest news directly from your browser.
- Customize your News menu to only show your favorite sections.
URL correction
- Let Navigator fix common typing mistakes in URLs.
- No more .cmo, .ogr, or htp:// !
Link Pad
- Save interesting links for later without cluttering your bookmarks.
Download (8.9MB)
Added: 2007-06-05 License: NPL (Netscape Public License) Price:
169492 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
Netscape Friends Activity Sidebar 1.1
Netscape Friends Activity Sidebar is a Firefox extension that helps you keep tabs about your friends stories on Netscape... more>>
Netscape Friends Activity Sidebar is a Firefox extension that helps you keep tabs on what stories your Netscape friends are submitting, commenting, and voting on. A new toolbar button (shown in the extension preview image) features Chad, the older, more mature brother of AOLs little yellow chat mascot. When there is new activity by your friends (i.e., a new comment, story submission, or vote, depending on your settings), the button will be activated and Chad will send a friendly wave your way. Clicking on the activated button will open a list of your friends activity in the sidebar, allowing you to easily browse their stories and comments. Each time you view your friends activity, you will only be shown activity that is new since the last time you opened the sidebar.
Note: The sidebar limits activity to five items for each friend. If there are more than five items to view, a "View all of Chads activity" link will be shown at the bottom of the friends section. You can always view all of a friends activity by clicking on their name or avatar.
To make use of this extension, you must be logged into Netscape.com. If you do not have a Netscape.com account, sign up at http://www.netscape.com/signup Accounts are free, and it only takes a few minutes to create one. Once you have a Netscape.com account, you can submit stories and videos, vote for other peoples stories, rate comments, comment on stories you find interesting, as well as use this extension.
<<lessNote: The sidebar limits activity to five items for each friend. If there are more than five items to view, a "View all of Chads activity" link will be shown at the bottom of the friends section. You can always view all of a friends activity by clicking on their name or avatar.
To make use of this extension, you must be logged into Netscape.com. If you do not have a Netscape.com account, sign up at http://www.netscape.com/signup Accounts are free, and it only takes a few minutes to create one. Once you have a Netscape.com account, you can submit stories and videos, vote for other peoples stories, rate comments, comment on stories you find interesting, as well as use this extension.
Download (0.016MB)
Added: 2007-05-29 License: MPL (Mozilla Public License) Price:
878 downloads
Minitools - Add to Google Reader/homepage 0.1.1
Minitools - Add to Google Reader/homepage is a javascript for Minitools that parses a html page and finds all the RSS/Atom feeds more>>
Minitools - Add to Google Reader/homepage is a small javascript for Minitools that parses a html page, finds all the rss/atom-feeds, asks which one you want to add to Google Reader/homepage.
Main features:
- Open konqueror (web browsing profile)
- Click Tools->Minitools->Edit Minitoola
- Create a new bookmark (Bookmark-New Bookmark in the menu)
- Enter a name for the script (I have "Add to google reader")
- Copy the code from the textfile youve downloaded, paste into the "Location"-field.
- Close the bookmark editor
Enhancements:
- Small fix for when href in the meta tag doesnt contain the full url.
<<lessMain features:
- Open konqueror (web browsing profile)
- Click Tools->Minitools->Edit Minitoola
- Create a new bookmark (Bookmark-New Bookmark in the menu)
- Enter a name for the script (I have "Add to google reader")
- Copy the code from the textfile youve downloaded, paste into the "Location"-field.
- Close the bookmark editor
Enhancements:
- Small fix for when href in the meta tag doesnt contain the full url.
Download (MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
826 downloads

Netscape Navigator for Linux 9.0b2
Surf the Web quickly and securely with Netscape Navigator for Linux. more>> Surf the Web quickly and securely with Netscape Navigator for Linux.
In addition to high-speed browsing and instant-messaging capabilities, Netscape features one-click searching from the address bar; Quick Launch, which reduces the browser start-up time; Click-to-Search, which allows users to select a word within a Web page and search; improved instant messaging, including support for buddy icons, file transfers, and buddy alerts; and tabbed browsing, which allows users to view multiple Web pages in a single browser window.
Version 9.0b2 adds URL correction for common typos, in-browser voting on popular, a sidebar minibrowser, and compatibility with Firefox 2 extensions.<<less
Download (8.86MB)
Added: 2009-04-26 License: Freeware Price: Free
180 downloads
Netscape Address Book Recovery 0.1.0
A tool to take that corrupted Netscape Address Book and get your information out of it more>>
A tool to take that corrupted Netscape Address Book and get your information out of it. This is a tool to take that corrupted Netscape Address Book and get your information out of it. After the third time my book got corrupted, I gave up trying to fix it by hand and wrote this program. This program attempts to get as much information out of the address book as is possible. But as with all programs of this type, it will always need to change to keep track of the different ways in which the address book can be corrupted. It can output .csv (Comma Separated Values) or .ldi (LDAP Date Interchange Format) files.Dont output .csv files, you will lose all mailing list information.
Enhancements:
- Major bugfixes with handling indexes
- Major bugfixes with handling edits
- Added LDIF support
- Added support for mailling lists
<<lessEnhancements:
- Major bugfixes with handling indexes
- Major bugfixes with handling edits
- Added LDIF support
- Added support for mailling lists
Download (0.047MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1224 downloads
NScache 0.6
NScache provides a simple manager and browser for Netscape(tm) cache directories. more>>
NScache provides a simple manager and browser for Netscape(tm) cache directories.
nscache is a simple program to browse the Netscape cache directory with a GTK UI. It shows the contents of the browser cache in a three level hierarchy of files: protocols, servers and documents or in sorted list.
nscache permits you to view files from the cache, remove files, or gather various information about specific files.
<<lessnscache is a simple program to browse the Netscape cache directory with a GTK UI. It shows the contents of the browser cache in a three level hierarchy of files: protocols, servers and documents or in sorted list.
nscache permits you to view files from the cache, remove files, or gather various information about specific files.
Download (0.093MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
921 downloads
Homepage Randomizer 1.0.1
Homepage Randomizer allows you to set multiple homepages in firefox. more>>
Homepage Randomizer allows you to set multiple homepages in firefox.
ll you have to do is separate your websites by a pipe "|" character.
Now this works fine if you like multiple tabs to open every time the browser is started or the home button is clicked; however, this can slow up your browser startup. If your aim is to keep track of a few different pages throughout the day, but not necessarily all at once then this extension is for you.
Homepage Randomizer is extremely lightweight and has a clean user interface. It adds a checkbox in the startup preferences section in Firefox (Tools -> Options -> Main) . Simply add your multiple homepages as described above and enable the checkbox.
<<lessll you have to do is separate your websites by a pipe "|" character.
Now this works fine if you like multiple tabs to open every time the browser is started or the home button is clicked; however, this can slow up your browser startup. If your aim is to keep track of a few different pages throughout the day, but not necessarily all at once then this extension is for you.
Homepage Randomizer is extremely lightweight and has a clean user interface. It adds a checkbox in the startup preferences section in Firefox (Tools -> Options -> Main) . Simply add your multiple homepages as described above and enable the checkbox.
Download (0.012MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
927 downloads
GTransferManager 0.4.12
GTransferManager is a GNOME download manager. more>>
GTM allows the user to retrieve multiple files from the web. These files can be retrieved in multiple parts and each part retrieved on a separate session that the user is connected to the Internet.
This is most useful to users with dialup connections. The program performs these tasks using wget as its back-end.
The program supports CORBA. This makes it easy for other programs to use GTransferManager to handle the transfer of files from the Internet.
The program also has an applet which communicates with program using CORBA. The applet can launch the program, request for a new download or accept drops of URLs from netscape, gFTP, gmc and give these URLs to GTM.
<<lessThis is most useful to users with dialup connections. The program performs these tasks using wget as its back-end.
The program supports CORBA. This makes it easy for other programs to use GTransferManager to handle the transfer of files from the Internet.
The program also has an applet which communicates with program using CORBA. The applet can launch the program, request for a new download or accept drops of URLs from netscape, gFTP, gmc and give these URLs to GTM.
Download (0.48MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1642 downloads
TuxBox ISPWorks 0.7
TuxBox ISPWorks provides an ISP management system. more>>
TuxBox ISPWorks provides an ISP management system.
TuxBox ISPWorks is a full-blown Internet Service Provider Management System based on Open Source Software.
It allows you to manage DNS, mail, Web, FTP, and much more, and it can handle multiple servers.
Customers can log in to this system and manage their own domains, accounts, and mail aliases.
Users can log in and change their password and other things.
<<lessTuxBox ISPWorks is a full-blown Internet Service Provider Management System based on Open Source Software.
It allows you to manage DNS, mail, Web, FTP, and much more, and it can handle multiple servers.
Customers can log in to this system and manage their own domains, accounts, and mail aliases.
Users can log in and change their password and other things.
Download (0.061MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
989 downloads
Inner Peace 4.05.11
Inner Peace project is a self-help chatterbot to help you achieve more inner peace. more>>
Inner Peace project is a self-help chatterbot to help you achieve more inner peace.
Inner Peace helps you let go of the issues that interfere with your inner peace and replace them with states that support your inner peace.
Inner Peace runs on any platform with a Javascript 1.1 browser, such as Netscape 3 or higher. It generates over 100 HTML pages with one Javascript/HTML file.
It can also be adapted for use as an advanced Javascript authoring tool. The online version and the download version are identical.
<<lessInner Peace helps you let go of the issues that interfere with your inner peace and replace them with states that support your inner peace.
Inner Peace runs on any platform with a Javascript 1.1 browser, such as Netscape 3 or higher. It generates over 100 HTML pages with one Javascript/HTML file.
It can also be adapted for use as an advanced Javascript authoring tool. The online version and the download version are identical.
Download (0.042MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1088 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 netscape isp homepage 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