created this page
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7748
AT Media Page 0.1.14
AT Media Page provides a simple and easy to use Plone Page which can contain ATImages. more>>
AT Media Page provides a simple and easy to use Plone Page which can contain ATImages.
<<less Download (0.019MB)
Added: 2007-05-27 License: GPL (GNU General Public License) Price:
881 downloads
Spyce - Python Server Pages 2.1.3
Spyce - Python Server Pages is a Python-based dynamic HTML server engine. more>>
SPYCE is a server-side language that supports simple and efficient Python-based dynamic HTML generation, otherwise called Python Server Pages (PSP).
Those who are familiar with JSP, PHP, or ASP and like Python, should have a look at Spyce. Its modular design makes it very flexible and extensible. Spyce - Python Server Pages can also be used as a command-line utility for static text pre-processing or as a web-server proxy.
The supported adapters are:
* Fast CGI:The default Spyce integration with Apache is acheived via FastCGI, a CGI-like interface that is relatively fast, because it does not incur the large process startup overhead on each request.
* mod_python: If you really must have the fastest Spyce implementation (see the performance numbers), it is currently through an Apache module called mod_python. Spyce has been tested with mod_python version 2.7.6 (and version 3.0.3 with apache 2.0.37). You can try to find some mod_python rpms here, but in general one must compile mod_python from sources. The reason for this is because mod_python links with the Python library it finds on your system at compile time. Thus, even if you have the correct Python version installed on your system, mod_python will be using the Python library version on the system where it was compiled. Also, note that mod_python (or rather Apache) needs a Python that has been compiled without threading, so you may need to recompile Python as well for this reason. The process is not very difficult (just the usual: ./configure; make; make install dance), but hopefully someone will suggest a better route in time. In any case, make sure you can first get mod_python running on your system, if that is that is your chosen Apache integration route.
* Web server: Another fast alternative is to serve Spyce files via a proxy. This involves running Spyce in web-server mode, and configuring the main web server to forward the appropriate requests. The built-in Spyce web server can also be used to serve requests directly, but this is highly discouraged for production environments.
* CGI: Failing these alternatives you can always process requests via regular CGI, but this alternative is the slowest option and is intended primarily for those who do not have much control over their web environments.
* Command line: Lastly, one can use Spyce as a command-line tool for pre-processing Spyce pages and creating static HTML files.
<<lessThose who are familiar with JSP, PHP, or ASP and like Python, should have a look at Spyce. Its modular design makes it very flexible and extensible. Spyce - Python Server Pages can also be used as a command-line utility for static text pre-processing or as a web-server proxy.
The supported adapters are:
* Fast CGI:The default Spyce integration with Apache is acheived via FastCGI, a CGI-like interface that is relatively fast, because it does not incur the large process startup overhead on each request.
* mod_python: If you really must have the fastest Spyce implementation (see the performance numbers), it is currently through an Apache module called mod_python. Spyce has been tested with mod_python version 2.7.6 (and version 3.0.3 with apache 2.0.37). You can try to find some mod_python rpms here, but in general one must compile mod_python from sources. The reason for this is because mod_python links with the Python library it finds on your system at compile time. Thus, even if you have the correct Python version installed on your system, mod_python will be using the Python library version on the system where it was compiled. Also, note that mod_python (or rather Apache) needs a Python that has been compiled without threading, so you may need to recompile Python as well for this reason. The process is not very difficult (just the usual: ./configure; make; make install dance), but hopefully someone will suggest a better route in time. In any case, make sure you can first get mod_python running on your system, if that is that is your chosen Apache integration route.
* Web server: Another fast alternative is to serve Spyce files via a proxy. This involves running Spyce in web-server mode, and configuring the main web server to forward the appropriate requests. The built-in Spyce web server can also be used to serve requests directly, but this is highly discouraged for production environments.
* CGI: Failing these alternatives you can always process requests via regular CGI, but this alternative is the slowest option and is intended primarily for those who do not have much control over their web environments.
* Command line: Lastly, one can use Spyce as a command-line tool for pre-processing Spyce pages and creating static HTML files.
Download (0.44MB)
Added: 2006-11-18 License: GPL (GNU General Public License) Price:
1073 downloads
mainfo.org - Easy Page Edit 1.0
Easily change the content of a web page inside your browser. A firefox extensions that allows you to edit page content and locally save changes.... more>> <<less
Download (3KB)
Added: 2009-04-20 License: Freeware Price: Free
187 downloads
Data::Page 2.00
Data::Page is a Perl module that helps when paging through sets of results. more>>
Data::Page is a Perl module that helps when paging through sets of results.
SYNOPSIS
use Data::Page;
my $page = Data::Page->new();
$page->total_entries($total_entries);
$page->entries_per_page($entries_per_page);
$page->current_page($current_page);
print " First page: ", $page->first_page, "n";
print " Last page: ", $page->last_page, "n";
print "First entry on page: ", $page->first, "n";
print " Last entry on page: ", $page->last, "n";
When searching through large amounts of data, it is often the case that a result set is returned that is larger than we want to display on one page. This results in wanting to page through various pages of data. The maths behind this is unfortunately fiddly, hence this module.
The main concept is that you pass in the number of total entries, the number of entries per page, and the current page number. You can then call methods to find out how many pages of information there are, and what number the first and last entries on the current page really are.
For example, say we wished to page through the integers from 1 to 100 with 20 entries per page. The first page would consist of 1-20, the second page from 21-40, the third page from 41-60, the fourth page from 61-80 and the fifth page from 81-100. This module would help you work this out.
<<lessSYNOPSIS
use Data::Page;
my $page = Data::Page->new();
$page->total_entries($total_entries);
$page->entries_per_page($entries_per_page);
$page->current_page($current_page);
print " First page: ", $page->first_page, "n";
print " Last page: ", $page->last_page, "n";
print "First entry on page: ", $page->first, "n";
print " Last entry on page: ", $page->last, "n";
When searching through large amounts of data, it is often the case that a result set is returned that is larger than we want to display on one page. This results in wanting to page through various pages of data. The maths behind this is unfortunately fiddly, hence this module.
The main concept is that you pass in the number of total entries, the number of entries per page, and the current page number. You can then call methods to find out how many pages of information there are, and what number the first and last entries on the current page really are.
For example, say we wished to page through the integers from 1 to 100 with 20 entries per page. The first page would consist of 1-20, the second page from 21-40, the third page from 41-60, the fourth page from 61-80 and the fifth page from 81-100. This module would help you work this out.
Download (0.006MB)
Added: 2006-10-31 License: Perl Artistic License Price:
1088 downloads
Rails Page Cache Test Plugin 0.2
Rails Page Cache Test Plugin adds two assertions to the Test::Units::TestCase class of Ruby on Rails. more>>
Rails Page Cache Test Plugin adds two assertions to the Test::Units::TestCase class of Ruby on Rails to check the caching and expiring of pages in integration tests.
Installation:
Unpack into the vendor/plugin and that should be it.
Usage:
First create an integration test. Then, to test caching of the "/pages/about" and "/pages/contact" pages, add a method like this:
def test_caching
assert_cache("/pages/about", "/pages/contact")
end
The assert_cache method will
- first make sure that the urls are not cached,
- execute a get on each request,
- assert that the corresponding cache files have been created.
You can also give a block to the assert_cache method. Instead of executing a get on each url, it will yield the urls. For example:
def test_caching
assert_cache("/pages/about",
"/pages/contact") do |url_about, url_contact|
post url_about
post url_contact
end
end
You will also certainly want (and thats really the most interesting part) to check if your cached pages expires when the user is doing some action. For that, here is the assert_expire method:
def test_expiring
assert_expire("/news/list", "/news/show/1") do |*urls|
post "/news/delete/1"
end
end
Here the assert_expire method will
- check that the urls are cached,
- execute the post request,
- and assert that the urls are no more cached.
This is great for testing your cache sweepers logic.
Enhancements:
- This release adds a test for action and fragment caching.
- The plugin does not look at the filesystem anymore to see if page are cached or not.
- It hijacks the ActionController::Base page caching methods to store which pages are cached and expired, and uses that information for the assertions.
<<lessInstallation:
Unpack into the vendor/plugin and that should be it.
Usage:
First create an integration test. Then, to test caching of the "/pages/about" and "/pages/contact" pages, add a method like this:
def test_caching
assert_cache("/pages/about", "/pages/contact")
end
The assert_cache method will
- first make sure that the urls are not cached,
- execute a get on each request,
- assert that the corresponding cache files have been created.
You can also give a block to the assert_cache method. Instead of executing a get on each url, it will yield the urls. For example:
def test_caching
assert_cache("/pages/about",
"/pages/contact") do |url_about, url_contact|
post url_about
post url_contact
end
end
You will also certainly want (and thats really the most interesting part) to check if your cached pages expires when the user is doing some action. For that, here is the assert_expire method:
def test_expiring
assert_expire("/news/list", "/news/show/1") do |*urls|
post "/news/delete/1"
end
end
Here the assert_expire method will
- check that the urls are cached,
- execute the post request,
- and assert that the urls are no more cached.
This is great for testing your cache sweepers logic.
Enhancements:
- This release adds a test for action and fragment caching.
- The plugin does not look at the filesystem anymore to see if page are cached or not.
- It hijacks the ActionController::Base page caching methods to store which pages are cached and expired, and uses that information for the assertions.
Download (0.010MB)
Added: 2006-10-18 License: MIT/X Consortium License Price:
1102 downloads
GraphicsEx 0.1.2.0
GraphicsEx Firefox extension allows you to create local images of web pages and submit its to snissa.com as well. more>>
GraphicsEx Firefox extension allows you to create local images of web pages and submit them to snissa.com as well.
The extension adds several menu items to File and Page Context menus. Use item Save Page As Image... to create a PNG image of the current web page displayed. Use item Webshot Page to snissa.com to share the image with other people.
OS supported are: Linux, MacOSX and Windows.
<<lessThe extension adds several menu items to File and Page Context menus. Use item Save Page As Image... to create a PNG image of the current web page displayed. Use item Webshot Page to snissa.com to share the image with other people.
OS supported are: Linux, MacOSX and Windows.
Download (0.38MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
876 downloads
WWW::Patent::Page::Response 0.07
WWW::Patent::Page::Response is an object holding a patent page or document. more>>
WWW::Patent::Page::Response is an object holding a patent page or document (e.g. htm, pdf, tif) from selected source (e.g. from United States Patent and Trademark Office (USPTO) website or the European Patent Office (ESPACE_EP), as constructed by WWW::Patent::Page, in passing analogy to LWP::UserAgent and HTTP::Response.
SYNOPSIS
Please see the test suite for working examples. The following is not guaranteed to be working or up-to-date.
$ perl -I. -MWWW::Patent::Page -e print $WWW::Patent::Page::VERSION,"n"
0.02
use WWW::Patent::Page;
print $WWW::Patent::Page::VERSION,"n";
my $patent_browser = WWW::Patent::Page->new(); # new object
my $document1 = $patent_document->get(6,123,456);
# defaults:
# office => ESPACE_EP,
# country => US,
# format => pdf,
# page => all,
# and usual defaults of LWP::UserAgent (subclassed)
my $document2 = $patent_document->provide_doc(US6123456,
office => ESPACE_EP ,
format => pdf,
page => 2 ,
);
my $pages_known = $patent_document->pages_available( # e.g. TIFF
document=> 6123456,
);
Intent: Use public sources to retrieve patent documents such as TIFF images of patent pages, html of patents, pdf, etc. Expandable for your office of interest by writing new submodules..
<<lessSYNOPSIS
Please see the test suite for working examples. The following is not guaranteed to be working or up-to-date.
$ perl -I. -MWWW::Patent::Page -e print $WWW::Patent::Page::VERSION,"n"
0.02
use WWW::Patent::Page;
print $WWW::Patent::Page::VERSION,"n";
my $patent_browser = WWW::Patent::Page->new(); # new object
my $document1 = $patent_document->get(6,123,456);
# defaults:
# office => ESPACE_EP,
# country => US,
# format => pdf,
# page => all,
# and usual defaults of LWP::UserAgent (subclassed)
my $document2 = $patent_document->provide_doc(US6123456,
office => ESPACE_EP ,
format => pdf,
page => 2 ,
);
my $pages_known = $patent_document->pages_available( # e.g. TIFF
document=> 6123456,
);
Intent: Use public sources to retrieve patent documents such as TIFF images of patent pages, html of patents, pdf, etc. Expandable for your office of interest by writing new submodules..
Download (0.034MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1095 downloads
pHEAR WiKI .02
pHEAR WiKI provides a small wiki for a personal Website. more>>
pHEAR WiKI provides a small wiki for a personal Website.
Features include easy editing and creating of pages, the ability to assign keywords that are highlighted in other wiki pages, URL archiving, and a full range of administration abilities.
Main features:
- Administration abilities:
- easy backup and restore of Wiki data files
- database compacting
- page deletion
- page version control (restore old versions of pages),
- Easy to edit and create new pages (thats what its all about afterall)
- Keyword highlighting: assign keywords to a page that are highlighted in other pages
- Simple keyword searching
- URL Archiving
- Embedable commands for enhanced Wikiing
- Easy template system to fit wiki into your site
Enhancements:
- Added a check for conflicting page saves. A conflict occurs when two user are updating the same page at the same time. A merge is automatically performed in this case.
- Did a security audit of the code. Probably a necessary thing if I plan to give this out and expect people to use it. Should be okay now. If you haver version 01 I can think of another reason to call it phear wiki.
- Added check for wether or not a title was entered. If no title was entered then a default title is used.
- Changed the way saved entries are sent to the server
- this allows pages of virtually unlimited size to be edited and mantained.
<<lessFeatures include easy editing and creating of pages, the ability to assign keywords that are highlighted in other wiki pages, URL archiving, and a full range of administration abilities.
Main features:
- Administration abilities:
- easy backup and restore of Wiki data files
- database compacting
- page deletion
- page version control (restore old versions of pages),
- Easy to edit and create new pages (thats what its all about afterall)
- Keyword highlighting: assign keywords to a page that are highlighted in other pages
- Simple keyword searching
- URL Archiving
- Embedable commands for enhanced Wikiing
- Easy template system to fit wiki into your site
Enhancements:
- Added a check for conflicting page saves. A conflict occurs when two user are updating the same page at the same time. A merge is automatically performed in this case.
- Did a security audit of the code. Probably a necessary thing if I plan to give this out and expect people to use it. Should be okay now. If you haver version 01 I can think of another reason to call it phear wiki.
- Added check for wether or not a title was entered. If no title was entered then a default title is used.
- Changed the way saved entries are sent to the server
- this allows pages of virtually unlimited size to be edited and mantained.
Download (0.014MB)
Added: 2007-01-25 License: Artistic License Price:
1004 downloads
Catalyst::Plugin::Email::Page 0.26
Catalyst::Plugin::Email::Page is a Perl module to email your Catalyst page. more>>
Catalyst::Plugin::Email::Page is a Perl module to email your Catalyst page.
SYNOPSIS
use Catalyst::Plugin::Email::Page;
__PACKAGE__->config->{email_page}{
email = q{webmaster@example.com},
subject = q{User Report for},
link_text = q{Report Page},
};
# In your Template
[% c.email_page_url %]
This is a simple plugin that lets a developer set and forget e-mail links in Catalyst
INTERFACE
email_page_url
Returns a link in the form of: mailto:webmaster@example.com?subject=User Report for http://yours.com/
The mailto subject is escaped using uri_escape_utf8 from URI::Escape and http://yours.com/ is the current pages uri
email_page_body
Allows you to e-mail the whole page to someone once you have the right template. Used the same way as email_page_url
To do.
email_page_anchor
Allows you to e-mail a page anchor. Used the same way as email_page_url
To do.
_construct_url
Internal routine.
Reads in the various configuration settings and constructs the mailto link. See "CONFIGURATION AND ENVIRONMENT"
<<lessSYNOPSIS
use Catalyst::Plugin::Email::Page;
__PACKAGE__->config->{email_page}{
email = q{webmaster@example.com},
subject = q{User Report for},
link_text = q{Report Page},
};
# In your Template
[% c.email_page_url %]
This is a simple plugin that lets a developer set and forget e-mail links in Catalyst
INTERFACE
email_page_url
Returns a link in the form of: mailto:webmaster@example.com?subject=User Report for http://yours.com/
The mailto subject is escaped using uri_escape_utf8 from URI::Escape and http://yours.com/ is the current pages uri
email_page_body
Allows you to e-mail the whole page to someone once you have the right template. Used the same way as email_page_url
To do.
email_page_anchor
Allows you to e-mail a page anchor. Used the same way as email_page_url
To do.
_construct_url
Internal routine.
Reads in the various configuration settings and constructs the mailto link. See "CONFIGURATION AND ENVIRONMENT"
Download (0.021MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1010 downloads
Deluxe Tabs 2.4
Deluxe Tabs is a versatile solution to create DHTML navigation systems for Web sites and Web applications. more>>
Deluxe Tabs is a versatile solution to create DHTML navigation systems for Web sites and Web applications. Deluxe Tabs is a very space-saving way to present the information. Now you dont have got to puzzle over the problem how to design the page in the best way.
If you have a large volume of data and your page needs to be scrolled down too much - Deluxe Tabs is your choice! Just divide the information and distribute it among the tabs so that your visitors could reach the next piece of information with one single click. No more uncomfortable reading with scrolling! Various types of data can be placed on one page. So, your visitors need no more reload a large number of pages to find the information they want.
Deluxe Tabs will really lighten the process of site building as it allows to place much information within one page without creating many others. But for all that, all the information is parted and structured. You are free to create tabs containing text, images and practically all kinds of information in various combinations. You may also create any desirable design inside the tab with HTML. And you can add as many tabs as you wish!
Enhancements:
- An easy-to-use GUI wizard was added.
- It is called Deluxe Tuner and it allows you to generate and test the menu.
- Fixes were made for absolute positioning.
<<lessIf you have a large volume of data and your page needs to be scrolled down too much - Deluxe Tabs is your choice! Just divide the information and distribute it among the tabs so that your visitors could reach the next piece of information with one single click. No more uncomfortable reading with scrolling! Various types of data can be placed on one page. So, your visitors need no more reload a large number of pages to find the information they want.
Deluxe Tabs will really lighten the process of site building as it allows to place much information within one page without creating many others. But for all that, all the information is parted and structured. You are free to create tabs containing text, images and practically all kinds of information in various combinations. You may also create any desirable design inside the tab with HTML. And you can add as many tabs as you wish!
Enhancements:
- An easy-to-use GUI wizard was added.
- It is called Deluxe Tuner and it allows you to generate and test the menu.
- Fixes were made for absolute positioning.
Download (4.4MB)
Added: 2007-02-20 License: Free for non-commercial use Price:
979 downloads
script4rss 0.4b
script4rss provides easily create scripts to convert HTML pages to RSS feeds. more>>
script4rss provides easily create scripts to convert HTML pages to RSS feeds.
Some news Web sites dont work with RSS feeds yet. As a workaround, some feed readers offer the ability to run these sites through custom-written filters. Script4rss is a tool to aid in the creation of these filters.
A lot of sites however, dont have this ability (yet?!) As a workaround, some desktop aggregators like liferea and snownews offer the possibilty to convert HTML pages on-the-fly to feeds using customized filters. These filters are stand-alone programs which take the HTML code as input and spit out RSS code. While it is not really hard for even moderate programmers (like me) to create such filters, it can always be made easier.
Script4rss takes a plain text file which holds a description for how the particular site should be converted and creates a perl script which is able to do that in the most fast and efficient way (well, someday). Users dont have to know how to program but they need to know regular expressions (although there probably arent a lot of these people).
At the moment, script4rss is in its early development, which translates to "it can be used but you have to figure out how yourself" and "if you screw up, the script does so as well".
Main features:
- Detect multiple catagories within an HTML page.
- Extract information over multiple lines.
- Pre-and append text in output.
- Attempt to circumvent "variable" HTML.
Enhancements:
- Fixed a bug that prevented strings without backspace to show up in the generated script
<<lessSome news Web sites dont work with RSS feeds yet. As a workaround, some feed readers offer the ability to run these sites through custom-written filters. Script4rss is a tool to aid in the creation of these filters.
A lot of sites however, dont have this ability (yet?!) As a workaround, some desktop aggregators like liferea and snownews offer the possibilty to convert HTML pages on-the-fly to feeds using customized filters. These filters are stand-alone programs which take the HTML code as input and spit out RSS code. While it is not really hard for even moderate programmers (like me) to create such filters, it can always be made easier.
Script4rss takes a plain text file which holds a description for how the particular site should be converted and creates a perl script which is able to do that in the most fast and efficient way (well, someday). Users dont have to know how to program but they need to know regular expressions (although there probably arent a lot of these people).
At the moment, script4rss is in its early development, which translates to "it can be used but you have to figure out how yourself" and "if you screw up, the script does so as well".
Main features:
- Detect multiple catagories within an HTML page.
- Extract information over multiple lines.
- Pre-and append text in output.
- Attempt to circumvent "variable" HTML.
Enhancements:
- Fixed a bug that prevented strings without backspace to show up in the generated script
Download (0.007MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
927 downloads

TexToWebPublishing 1.1
This is a Perl script that produces a set of HTML pages from a LaTeX source file. more>>
TexToWebPublishing 1.1 is a good tool for web developers. It is actually a Perl script that produces a set of HTML pages from a LaTeX source file. The script creates one image for each HTML page. Each page in your slide presentation corresponds to one of the Postscript pages you would obtain running LaTeX.
TeXToWebPublishing also produces an index page corresponding to the table of contents you would obtain. Each item of the index page includes a link to the corresponding HTML page. Links into the HTML pages can also be created with a special LaTeX command.
Enhancements:
- The bug regarding the numeration of the HTML pages has been fixed.
- Users can now use LaTeX labels to create links into the pages.
Added: 2005-09-29 License: GPL Price: FREE
1 downloads
Kexi Report Part 0.0.4
Kexi Report Part is a reporting component for Kexi 1.6 based on OpenRPT 1.2. more>>
Kexi Report Part is a reporting component for Kexi 1.6 based on OpenRPT 1.2.
Main features:
- A report viewer for Kexi
- An external report designer (KexiReportWriter) based on the OpenRPT writer program
Known Working Features
- Page Header
- Page Footer
- Report Header
- Report Footer
- Detail section
- Labels
- Lines
- Fields
- Page Browser
How To Create Report
1. Install the component following the instructions in INSTALL
2. Run KexiReportWriter to start designing a report
3. Select Database->Connect to DB
4. Browse to an existing Kexi Database and open it
5. Create a new report (File->New)
6. Assign a data source to the report (Document->Properties)
7. Create the report using labels/fields/lines
8. Assign columns to the field objects (Double click for properties)
9. Save the report. (Database->Save to DB)
10. Load the database in Kexi and double click the report to view it
Enhancements:
- Removed requirement to have kexi source available to install the plugin.Done this by including the needed kexi headers in the package. Only downside is that kexi 1.1.3 (from koffice 1.6.3) is required.
<<lessMain features:
- A report viewer for Kexi
- An external report designer (KexiReportWriter) based on the OpenRPT writer program
Known Working Features
- Page Header
- Page Footer
- Report Header
- Report Footer
- Detail section
- Labels
- Lines
- Fields
- Page Browser
How To Create Report
1. Install the component following the instructions in INSTALL
2. Run KexiReportWriter to start designing a report
3. Select Database->Connect to DB
4. Browse to an existing Kexi Database and open it
5. Create a new report (File->New)
6. Assign a data source to the report (Document->Properties)
7. Create the report using labels/fields/lines
8. Assign columns to the field objects (Double click for properties)
9. Save the report. (Database->Save to DB)
10. Load the database in Kexi and double click the report to view it
Enhancements:
- Removed requirement to have kexi source available to install the plugin.Done this by including the needed kexi headers in the package. Only downside is that kexi 1.1.3 (from koffice 1.6.3) is required.
Download (1.7MB)
Added: 2007-06-17 License: GPL (GNU General Public License) Price:
525 downloads
Oxalis 0.1
Oxalis is web site editor. more>>
Oxalis is web site editor.
Oxalis project is created for editing static web sites.
Main features:
- Markdown syntax for writing pages
- templates
- site management
- upload to server via FTP
- it is free software
<<lessOxalis project is created for editing static web sites.
Main features:
- Markdown syntax for writing pages
- templates
- site management
- upload to server via FTP
- it is free software
Download (0.051MB)
Added: 2006-12-20 License: GPL (GNU General Public License) Price:
1060 downloads
g-page 2.03
g-page is a client/server application designed to send text messages to pagers or SMS enabled PCS phones. more>>
g-page is a client/server application for Unix designed to send text messages to alphanumeric pagers or PCS phones with short messaging, SMS, capabilities.
It supports the SNPP, WCTP, and SMTP (email) protocols, and works on a stand-alone workstation or across a network.
<<lessIt supports the SNPP, WCTP, and SMTP (email) protocols, and works on a stand-alone workstation or across a network.
Download (0.20MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
1146 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 created this page 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