Main > Free Download Search >

Free web tools software for linux

web tools

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4099
Eclipse Web Tools Platform Project 1.0

Eclipse Web Tools Platform Project 1.0


Eclipse Web Tools Platform Project is a top-level Eclipse project that contains tools for developing Java Web applications. more>>
Eclipse Web Tools Platform Project is a top-level Eclipse project that contains tools for developing Java Web applications.
The WTP project includes the following tools: source editors for HTML, Javascript, CSS, JSP, SQL, XML, DTD, XSD, and WSDL; graphical editors for XSD and WSDL; J2EE project natures, builders, and models and a J2EE navigator; a Web service wizard and explorer, and WS-I Test Tools; and database access and query tools and models.
Main features:
- Extension of the Eclipse value proposition The Eclipse Project has set a high standard for technical excellence, functional innovation and overall extensibility within the Java IDE domain. We intend to apply these same standards to the Web/J2EE application-tooling domain.
- Vendor ecosystem A major goal of this project is to support a vital application development tools market. Its exemplary functionality will be useful on its own but it will be designed from the start to be extensible so commercial vendors can use what this project delivers as a foundation for their own product innovation and development efficiency.
- Vendor neutrality Vendor neutrality will be at the core of this project. We aim to encourage Eclipse participation and drive Eclipse market acceptance by strengthening the long-term product value propositions of the widest possible range of application development vendors.
- Standards-based innovation This project will deliver an extensible, standards-based tooling foundation on which the widest possible range of vendors can create value-added development products for their customers and end-users. Where standards exist, we will adhere to them. At least, at first, where standards are emerging, we will wait for them to emerge; this can be re-evaluated later according to user needs and contributor availability. Where multiple technologies are widely used for a given functional need, we will attempt to support each, subject only to technical feasibility and our goal of providing the most capable and extensible foundation long term.
- Agile development Our aim is to incorporate into our planning process the innovations that arise once a project is underway, and the feedback from our user community on our achievements to date. We think an agile development and planning process, in which progress is incremental, near-term deliverables are focused, and long-term planning is flexible, will be the best way to achieve this.
- Inclusiveness & diversity We aim to assimilate the best ideas from the largest number of participants representing the needs of the widest range of end-users. So we will encourage organizations across a broad range of technical, market and geographical domains to participate in this project.
<<less
Download (174.5MB)
Added: 2006-01-16 License: Eclipse Public License Price:
1378 downloads
Web-tools 1.4

Web-tools 1.4


Web-tools provides various tools which assist in adminstering a server. more>>
Web-tools provides various tools which assist in adminstering a server.
Web-tools is a package that contains 15 shell scripts for use in administering UNIX servers. These tools make it easy to add and remove: VirtualHosts on Apache Web server, users on ProFTPD server, and primary/secundary zones on the named DNS server.
Here the scripts provided by "Web tools":
- adddns
- addftp
- addwebservice
- addwww
- chpass
- deldns
- delftp
- delwww
- dnsrecords
- functions
- genuser.pl
- delblanklines
- secundary
- updatezone
- zonecheck
<<less
Download (0.016MB)
Added: 2007-04-28 License: GPL (GNU General Public License) Price:
911 downloads
Webmasters Tools

Webmasters Tools


Webmasters Tools is a set of free open-source tools to do the work of the webmaster, under the OSS licence. more>>
Webmasters Tools is a set of free open-source tools to do the work of the webmaster,
under the OSS licence.

Programs included:

metagen Program to generate meta-tags for your web pages.
metarep Report meta-tags and links in web pages.
updater Copy a part of a web page to all others.
outline Build a tutorial from simple unformatted text files.
makelist Build a page made of the list of links from a directory.

Web tools are free software; you can redistribute the archive and/or modify the programs under the terms of the OSS licence.
<<less
Download (0.37MB)
Added: 2005-12-02 License: Open Software License Price:
1422 downloads
Web Auction 0.2

Web Auction 0.2


Web Auction is a simple auction designed for organizations or individuals who want to hold an auction. more>>
Web Auction is a simple auction designed for organizations or individuals who want to hold an auction.
The project is unlike Ebay in the sense that only administrators can add products. Products can have pictures, price, minimum bids, bid increments, and more.
Enhancements:
- This release adds reverse auction mode so that the auction can be run in such a way that the lowest bidder wins.
<<less
Download (0.32MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
862 downloads
Web of Life 1.0

Web of Life 1.0


Web of Life is a life simulation game. more>>
Web of Life is a life simulation game.

An isometric game done with C++ and SDL.

In this game you control some beings in an ecosystem, the goal is to make only that the beings you control survive.

Your beings should survive fighting with other beings, reproducting to make a massive attack and eating.
But sometimes you will have to eat some of your own live beings so that others could stay alive, well its life.
<<less
Download (MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
971 downloads
Web Foot Avio 1.0

Web Foot Avio 1.0


Web Foot Avio is a GDM theme based on wallpaper Blue Web Foot - Gnome. more>>
Web Foot Avio is a GDM theme based on wallpaper Blue Web Foot - Gnome.

<<less
Download (0.20MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
874 downloads
Web 1.35

Web 1.35


Web Perl module contains a set of useful routines for many webworking purposes. more>>
Web Perl module contains a set of useful routines for many webworking purposes.

This module was primarily made for UNIX/Linux-Systems. Parts of it cannot be used on other systems. E.g. the procedures for file locking demand systems that can use symlinks. If you use the modul on systems where symlinks cannot be used, fatal errors may happen.

ABSTRACT

This perl module serves users with several useful routines for many purposes, like generating webpages, processing CGI scripts, working with XML datafiles and net-connections. It also uses own variants of routines, that was invented first in the famous libraries CGI.pm and cgi-lib.pl.

INSTALLATION

If you dont have sufficient privileges to install web.pm in the Perl library directory, you can put web.pm into some convenient spot, such as your home directory, or in cgi-bin itself and prefix all Perl scripts that call it with something along the lines of the following preamble:

use lib /home/myname/perl/lib;
use web;

NLock

This routine allows to set a filelock across NFS-boundaries. The common used perl-routine flock() fails at this point, so this routine is a useable alternative for bigger file-systems. It uses the modular functions link() and unlink() to mark a file locked. In addition to this, it also gives the locked file a counter: A file that is locked for more than $web::MAX_LOCKTIME seconds will be freed by the next process that calls NLock() on this file. A calling process gets either 0 or 1 as a return value, where 1 is returned if the file-locking was successful. 0 is returned only if the process waits for more than $web::MAX_WAITLOCK seconds or if symlink() fails.

Example 1:

$filename = "data.txt";
NLock($filename);
open(f1,"$filename");
# do something
close f1;
NUnlock($filename);

Example 2:

#!/local/bin/perl5
use web;

$stat= &NLock("jump.pl");
print "Lock: stat= $statn";
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
sleep 8;
$stat= &NLock("jump.pl");
print "Lock this file again: stat= $statn";
$stat= &NUnlock("jump.pl");
print "Unlock: stat= $statn";
exit;

<<less
Download (0.017MB)
Added: 2007-07-21 License: Perl Artistic License Price:
864 downloads
PHP Web Toolkit 1.0.3 Alpha

PHP Web Toolkit 1.0.3 Alpha


PHP Web Toolkit provides a rapid development toolkit for multi-layered Web applications written in PHP 5. more>>
PHP Web Toolkit provides a rapid development toolkit for multi-layered Web applications written in PHP 5.

The PHP Web Toolkit enables the rapid development of multi-layered Web applications and is designed to be easy to use, extensible, reliable, reusable, scalable, and secure. It integrates with ADOdb, FCKeditor, kses, Libmcrypt, Libmhash, and Smarty.

<<less
Download (0.70MB)
Added: 2007-02-28 License: LGPL (GNU Lesser General Public License) Price:
580 downloads
Web Mailing List 0.92

Web Mailing List 0.92


Web Mailing List: designed to be an easy to use mailing list application. more>>
Web Mailing List project designed to be an easy to use mailing list application.
Using a mailing list application can greatly enhance communication with your site visitors. Web mailing list makes it easy for users to signup for your mailing lists.
Creating and sending out email newsletters is a snap. If you your users wish to unsubscribe, they simply visit your unsubscribe page and enter the email address where they received the newslettter.
Enhancements:
- This release updates the database creation portion of the system setup.
<<less
Download (0.014MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1199 downloads
Charles Web Debugging Tool 2.4.1

Charles Web Debugging Tool 2.4.1


Charles Web Debugging Tool is an HTTP proxy server/monitor/reverse proxy for debugging Web applications. more>>
Charles is an HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP traffic between their machine and the Internet. This includes requests, responses and the HTTP headers (which contain the cookies and caching information).
Charles can act as a man-in-the-middle for HTTP/SSL communication, enabling you to debug the content of your HTTPS sessions.
Charles simulates modem speeds by effectively throttling your bandwidth and introducing latency, so that you can experience an entire website as a modem user might (bandwidth simulator).
Charles is especially useful for Macromedia Flash developers as you can view the contents of LoadVariables, LoadMovie and XML loads. More about Charles and Flash.
Main features:
- Cookies are shown in the HTTP headers, so you can see exactly what cookies you are sending and receiving.
- Every request and response is recorded in Charles. Redirects that are often too quick to see when testing with a web browser can be seen in Charles. Requests from applications other than your web browser (such as Flash movies) can also be seen.
- Request and response sizes are shown in Charles, so you can see how big each request was.
- Assets loaded from an HTML page are recorded so that you can see how many images etc are loaded by a page, and where from.
- All files can be viewed, including JavaScript files, CSS files, HTML files etc.
- Mirror all responses to disk, recording your session.
- Blacklist sites so that requests are blocked.
- See the results of caching by seeing cached responses (304 Not Modified), and requests containing last modified dates (IfModifiedSince).
- Disable caching by removing cache related headers from requests and responses as they pass through Charles, ensuring that you are always requesting the latest file.
- See whether a cache has served your request by looking for cache-hit HTTP headers.
- View encrypted HTTPS/SSL data.
- View encrypted HTTPS traffic in plain text. Enables you to view requests and responses in plain text even when communicating with an SSL secured web server.
- Reveal unexpected requests, such as typos and 404s.
- View requested images.
- Throttle your web connection to a specified bytes/second speed, and millisecond latency. This enables you to simulate modem conditions on a high speed internet connection (bandwidth simulator)
- Spoof DNS name to ip mappings so that you can test a domain name before it has gone live. Very useful for testing your virtual hosting.
- Export to CSV all of the summary data captured by Charles for analysis and reporting in Excel
- Reverse proxy creates ports on the localhost that act as regular HTTP servers, but forward all requests to a specified web server.
- HTTP/1.1 support - including keep-alive, chunking and content-encodings including gzip, compress and deflate.
- External proxy support - configure an proxy for Charles to use to access the Internet
- NTLM authentication support (Windows NT Challenge Response Authentication / Integrated Windows Authentication)
- Automatic configuration of Windows Internet Proxy settings.
- Search all headers and bodies for keywords.
- Transparent forwarding support, allows any protocol to be forwarded by Charles and debugged.
- Unicode and other charset encoding/decoding support.
<<less
Download (0.78MB)
Added: 2006-09-23 License: Freely Distributable Price:
671 downloads
Web Sharing 0.0.3

Web Sharing 0.0.3


Web Sharing is a small tray applet for sharing files on the web. more>>
Web Sharing is a small tray applet for sharing files on the web.

Publish anything on the Internet or your local area network at home, office or school from a folder on your hard disk with just a few clicks of a mouse!

<<less
Download (1.9MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1553 downloads
web-cp 0.5.7

web-cp 0.5.7


web-cp is a full-featured, open source web hosting control panel written in PHP. more>>
web-cp is a full-featured, open source web hosting control panel written in PHP and released under the GPL. It consists of 4 control panels: personal, domain, reseller, and server.
The personal control panel allows users to update their personal information, change their password and set their spam control settings. The domain control panel allows domain owners to add new users, aliases, subdomains, domain pointers and databases.
The resellers control panel allows resellers to add or modify their domain accounts. The server control panel allows the server administrator to add or modify resellers, edit VirtualHost and DNS templates, restart services and monitor server usage.
Scripting, shell access, SSI, databases, mail, domains, etc are all controlled from a top-down approach. Web-CP.net is a continuation of the development of web://cp with its ultimate goal being a 1.0 release.
Main features:
- Skinnable
- Security
- Flexibility
- Configurable Levels of Access
- Seperate Front-end and Back-end processes (security)
- Task Automation
- Advanced Management
<<less
Download (0.48MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1473 downloads
XMMSd web control plug-in 0.3

XMMSd web control plug-in 0.3


XMMSd web control plug-in allows XMMS to be controlled with a Web browser. more>>
XMMSd web control plug-in allows XMMS to be controlled with a Web browser. It makes it easier for languages like PHP to remotely control XMMS.

<<less
Download (0.063MB)
Added: 2006-04-12 License: GPL (GNU General Public License) Price:
1294 downloads
Web Site Robot 2.4

Web Site Robot 2.4


Web Site Robot is an easy to use Web site builder with a blog tool. more>>
Web Site Robot is an easy to use Web site builder with a blog tool, shopping cart, and online photo album. It is free and does not require additional software, HTML, programming, or a hosting company.
It enables secure online payments with credit cards. There is virtually unlimited storage space for HTML, documents, blogs, photos, music, videos, or any multimedia content.
Enhancements:
- The Robot is now able to discover and inform UPnP routers about its presence and the need to have a NAT port available for its Web server.
- In most SOHO environments with UPnP enabled routers, manual configuration is not needed.
- The operator just installs, registers the Robot and the Web site is online effortlessly.
<<less
Download (26MB)
Added: 2005-09-13 License: Freeware Price:
3097 downloads
Web::Scaffold 0.10

Web::Scaffold 0.10


Web::Scaffold is a Perl module to build minimalist fancy web sites. more>>
Web::Scaffold is a Perl module to build minimalist fancy web sites.

SYNOPSIS

use Web::Scaffold;

Web::Scaffold::build(%specs,%pages);

Web::Scaffold is a module that allows you to easily and quickly build a fancy web site with drop down menus an a variable number of columns. This is accomplished with a simple specification and a series of minimal html page includes that are written in very basic html.

In its simplest form, your web will have the following structure:

pages/ contains minimalist html pages
ws_sitemap/ [optional] contains sitemap in google xml format
NOTE: link this into public_html
public_html/ contains the index page and
any non Web::Scaffold pages
images/ contains web site images
lib/ contains javascript library(s)

The index pages requires Server Side Includes (SSI) and is as follows:

< html >
< !-- page name "index.shtml"
place your comments, revision number, etc... here
-- >
< !--#exec cmd="./pages.cgi" -- >
< /body >
< /html >

Alternatively, you can use the included pages.cgi script as an example to build your own more sophisticated cgi or mod_perl application.

<<less
Download (0.048MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
944 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5