Main > Free Download Search >

Free 1.66 1 software for linux

1.66 1

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 12210
HTTPD::Authen 1.66

HTTPD::Authen 1.66


HTTPD::Authen is a HTTP server authentication class. more>>
HTTPD::Authen is a HTTP server authentication class.

SYNOPSIS

use HTTPD::Authen ();

This module provides methods for authenticating a user. It uses HTTPD::UserAdmin to lookup passwords in a database. Subclasses provide methods specific to the authentication mechanism.

Currently, under HTTP/1.0 the only supported authentication mechanism is Basic Authentication. NCSA Mosaic and NCSA HTTPd understand the proposed Message Digest Authentication, which should make it into the HTTP spec someday. This module supports both.

METHODS

new ()

Since HTTPD::Authen uses HTTPD::UserAdmin for database lookups it needs many of the same attributes. Or, if the first argument passed to the new() object constructor is a reference to an HTTPD::UserAdmin, the attributes are inherited.

The following attributes are recognized from HTTPD::UserAdmin:

DBType, DB, Server, Path, DBMF, Encrypt
And if you wish to query an SQL server: Host, User, Auth, Driver, UserTable, NameField, PasswordField
The same defaults are assumed for these attributes, as in HTTPD::UserAdmin. See HTTPD::UserAdmin for details.

$authen = new HTTPD::Authen (DB => "www-users");

basic()

Short-cut to return an HTTPD::Authen::Basic object.

$basic = $authen->basic;

digest()

Short-cut to return an HTTPD::Authen::Digest object.

$digest = $authen->digest;

type($authorization_header_value)

This method will guess the authorization scheme based on the Authorization header value, and return an object bless into that schemes class.

By using this method, it is simple to authenticate a user without even knowing what scheme is being used:

$authtype = HTTPD::Authen->type($authinfo);
@info = $authtype->parse($authinfo)
if( $authtype->check(@info) ) {
#response 200 OK, etc.
}

<<less
Download (0.11MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
Wolfshade mud 1.66

Wolfshade mud 1.66


Wolfshade mud is an an original MUD code base written in C++. more>>
Wolfshade mud project is an an original MUD code base written in C++.
Wolfshade is an all new MUD (Multi-User Dimension), completely written in C++, with an object-oriented model and open source code. It is complete with full ANSI color, thousands of rooms, 27 races, 13 classes, 300+ spells, moving maps, God-run quests, race wars, and much more.
Linux Instructions:
# mkdir wolfshademud and copy the gzipped tar file into that directory
Unzip/tar: using
# tar zxvf wolfshademudx.xx.x
cd into src directory
Run the configure script:
# ./configure
Type
# make all
#cd ..
Type:
# ./AutoRun.sh
Enhancements:
- More bug fixes, more spells and potions, and a few more god commands. Note: WolfshadeMUD will no longer be hosted at the Wolfshade site.
- Code update releases are planned, but hosting a site has become an impossibility, for reasons beyond the authors control.
<<less
Download (0.70MB)
Added: 2006-12-14 License: GPL (GNU General Public License) Price:
1051 downloads
Itzam 3.1.1

Itzam 3.1.1


Itzam is an embedded database engine that creates and manipulates files containing variable-length random access records. more>>
Itzam its a library that creates and manipulates files containing variable-length, random access records. Information is referenced by a user-defined key value; indexes may be combined with or separate from data.
Itzam is a deliberately portable, low-level C library that can (and will) be wrapped in C++, Java, Python, and Fortran 95. Higher level languages implement more complex heuristics on top of the Itzam core functions.
Main features:
Small Footprint
- Itzam Core adds less then 6K bytes to a program when linked statically.
Portability
- Itzam is deliberately portable across operating systems and platforms. A database created on Windows is readable by an Itzam application on a Linux machine. The current release ships with support for building and testing on Unix, Linx, and Windows operating systems.
No Dependencies
- Itzam does not have any dependencies on external libraries or components, beyond the common elements included with every Standard C compiler.
Flexibility
- Build your databases with indexes embedded in data files, or separate key information for the data it references, to provide different indexing schemes for different purposes. Iterator selectors provide flexible filtering to define subsets of a database.
Dual Licensing, GPL and Commercial
- Itzam can be licensed under either the GNU General Public License (GPL) or a simple non-free (closed-source) license. The GPL version is provided as is without support, while the commercial license provides technical assistance and notice of updates and bug fixes.
64-bit File Access
- Itzam is designed with 64-bit addressing in mind, and works with 64-bit Sun Solaris and 64-bit Linux.
C++, Python, and Fortran 95 Abstractions
- The core library, written in ANSI C, operates at a low-level, working directly with the operating system. While a low-level library can be a powerful tool for embedde3d and small systems, large-scale projects can benefit from a higher-level of abstraction. Development and testing is underway for C++, Python, and Fortran 95 "wrappers".
Documentation
- Ive written tutorial and API documentation to accompany Itzam. A complete example application, a contact database, is the basis for the tutorial.
Enhancements:
- Minor optimizations and code clean-up.
<<less
Download (0.34MB)
Added: 2006-10-20 License: GPL (GNU General Public License) Price:
1100 downloads
Dynagraph 1.1.6.1

Dynagraph 1.1.6.1


Dynagraph is a cross-platform library and command-line tool for dynamically drawing graphs. more>>
Dynagraph libraries are written in platform-neutral C++. As such, Dynagraph itself does not render to the screen, bitmaps, etc. Instead, the Dynagraph executable can be piped to a front end using the custom incrface language, or the library can be used directly in C++ programs, or in Windows programs via COM wrapper classes.
Gordon Woodhull maintains and improves Dynagraph continually. It is based on the brilliant work of the Graphviz team at AT&T Research, particularly Stephen North and Emden R. Gansner.
While Gordon consulted for AT&T Research from 1997 to 2003, he designed a new architecture and ported the DynaDAG and FDP engines from C to C++. Since his departure from AT&T, he has continued to rearchitect Dynagraph and add powerful new features.
Dynagraph is licensed under the Common Public License.
Whats New in 1.1.5.9 Stable Release:
- This improves the build system for *nix, esp using automatically generated dependencies.
- Requires gnu make.
Whats New in 1.1.6.1 Development Release:
- Contains a fix for the nodecross bug.
- Also parallel edges appear to be working.
<<less
Download (0.82MB)
Added: 2007-02-05 License: Common Public License Price:
993 downloads
HTTPD::GroupAdmin 1.66

HTTPD::GroupAdmin 1.66


HTTPD::GroupAdmin is a Perl module for the management of HTTP server group databases. more>>
HTTPD::GroupAdmin is a Perl module for the management of HTTP server group databases.

SYNOPSIS

use HTTPD::GroupAdmin ();

This software is meant to provide a generic interface that hides the inconsistencies across HTTP server implementations of user and group databases.

METHODS

new ()

Heres where we find out whats different about your server.

Some examples:

@DBM = (DBType => DBM,
DB => .htgroup,
Server => apache);

$group = new HTTPD::GroupAdmin @DBM;

This creates an object whose database is a DBM file named .htgroup, in a format that the Apache server understands.

@Text = (DBType => Text,
DB => .htgroup,
Server => ncsa);

$group = new HTTPD::GroupAdmin @Text;

This creates an object whose database is a plain text file named .htgroup, in a format that the NCSA server understands.

Full list of constructor attributes:

Note: Attribute names are case-insensitive

Name - Group name

DBType - The type of database, one of DBM, Text, or SQL (Default is DBM)

DB - The database name (Default is .htpasswd for DBM & Text databases)

Server - HTTP server name (Default is the generic class, that works with NCSA, Apache and possibly others)

Note: run perl t/support.t matrix to see what support is currently availible

Path - Relative DB files are resolved to this value (Default is .)

Locking - Boolean, Lock Text and DBM files (Default is true)

Debug - Boolean, Turn on debug mode

Specific to DBM files:

DBMF - The DBM file implementation to use (Default is NDBM)

Flags - The read, write and create flags. There are four modes: rwc - the default, open for reading, writing and creating. rw - open for reading and writing. r - open for reading only. w - open for writing only.

Mode - The file creation mode, defaults to 0644

Specific to DBI: We talk to an SQL server via Tim Bunces DBI interface. For more info see: http://www.hermetica.com/technologia/DBI/

Host - Server hostname

Port - Server port

User - Database login name

Auth - Database login password

Driver - Driver for DBI (Default is mSQL)

GroupTable - Table with field names below

NameField - Field for the name (Default is user)

GroupField - Field for the group (Default is group)

From here on out, things should look the same for everyone.

add($username[,$groupname])

Add user $username to group $groupname, or whatever the Name attribute is set to.

Fails if $username exists in the database

if($group->add(dougm, www-group)) {
print "Welcome!n";
}

delete($username[,$groupname])

Delete user $username from group $groupname, or whatever the Name attribute is set to.

if($group->delete(dougm)) {
print "Hes gone from the groupn";
}

exists($groupname, [$username])

True if $groupname is found in the database

if($group->exists(web-heads)) {
die "oh no!";
}
if($group->exists($groupname, $username) {
#$username is a member of $groupname
}

list([$groupname])

Returns a list of group names, or users in a group if $name is present.

@groups = $group->list;

@users = $group->list(web-heads);
user()

Short cut for creating an HTTPD::UserAdmin object. All applicable attributes are inherited, but can be overridden.

$user = $group->user();

(See HTTPD::UserAdmin)

convert(@Attributes)

Convert a database.

#not yet

remove($groupname)

Remove group $groupname from the database

name($groupname)

Change the value of Name attribute.

$group->name(bew-ediw-dlrow);

debug($boolean)

Turn debugging on or off

lock([$timeout]) =item unlock()

These methods give you control of the locking mechanism.

$group = new HTTPD::GroupAdmin (Locking => 0); #turn off auto-locking
$group->lock; #lock the objects database
$group->add($username,$passwd); #write while database is locked
$group->unlock; release the lock
db($dbname);

Select a different database.

$olddb = $group->db($newdb);
print "Now were reading and writing $newdb, done with $olddbn";
flags([$flags])

Get or set read, write, create flags.

commit

Commit changes to disk (for Text files).

<<less
Download (0.11MB)
Added: 2007-03-21 License: Perl Artistic License Price:
948 downloads
monq.jfa 1.1.1

monq.jfa 1.1.1


monq.jfa is a class library for fast and flexible text filtering with regular expressions. more>>
monq.jfa is the core Java class library used to implement Whatizit. The project allows for fast and flexible text filtering with regular expressions.
In contrast to java.util.regex, monq.jfa allows to bind a regular expression to an action that is automatically called whenever a match is spotted in an input stream.
In addition it is possible to combine several tenthousand regex/action pairs into one machinery (called DFA).
The DFA filters input to output by looking for matches of all regular expressions in parallel, calling their actions to reformat the text or to incrementally built up a data structure.
The filtering speed is 1.5MB/s on P4 2.6GHz and is mostly unrelated to the number of regex/action pairs.
Enhancements:
- This is a bugfix release to correct improper unsynchronized reuse of an object within monq.jfa.actions.Printf.
- The user visible symptom would be garbled output.
<<less
Download (0.21MB)
Added: 2007-06-24 License: GPL (GNU General Public License) Price:
853 downloads
PSIX 1.1

PSIX 1.1


PSIX is a nice style for KDE, inspired by the Sony PSP. more>>
PSIX is originally a shell for the Sony PSP. I found the shell to have great graphics and a nice interface so i decided to port the look and feel over to one of the best window managers and OS. I also did this without falling under any License agreements because no one likes GPL.

Note: If installer dosent open from Konqueror then start installer from Konsole (sh Install PSIX Theme.bash)

<<less
Download (1.4MB)
Added: 2007-04-16 License: Freeware Price:
550 downloads
SchemaSpy 3.1.1

SchemaSpy 3.1.1


SchemaSpy is a Java-based tool that analyzes the metadata of a schema in a database. more>>
SchemaSpy is a Java-based tool that analyzes the metadata of a schema in a database and generates a visual representation of it in a browser-displayable format. It lets you click through the hierarchy of database tables via child and parent table relationships.
The browsing through relationships can occur though HTML links and/or though the graphical representation of the relationships. Its also designed to help resolve the obtuse errors that a database sometimes gives related to failures due to constraints.
SchemaSpy is free software, distributed under the terms of the Lesser GNU Public License. Your donations are, however, greatly appreciated.
SchemaSpy uses the dot executable from Graphviz to generate graphical representations of the table/view relationships. This was initially added for people who see things visually.
Now the graphical representation of relationships is a fundamental feature of the tool. Graphvis is not required to view the output generated by SchemaSpy, but the dot program should be in your PATH (not CLASSPATH) when running SchemaSpy or none of the graphs will be generated.
Some Linux users have experienced problems with dot version 2.6. Version 2.6 (or higher) is preferred, but if it doesnt work then try 2.2.1. Note that SchemaSpy takes advantage of some dot 2.6+ features so graphs wont be as well formed when using 2.2.1.
SchemaSpy uses JDBCs database metadata extraction services to gather the majority of its information, but has to make vendor-specific SQL queries to gather some information such as the SQL associated with a view and the details of check constraints.
The differences between vendors have been isolated to configuration files and are extremely limited. Almost all of the vendor-specific SQL is optional.
Enhancements:
- This is a bugfix release primarily intended to address the Graphviz 2.9+ changes that broke SchemaSpy.
- It fixes bug 1602135 (an exception using dot version 2.9), bug 1571711 (failure to use a precompiled version of dot on Mac OS X), and bug 1597609 (quoting and Sybase ASE).
<<less
Download (0.12MB)
Added: 2006-12-18 License: LGPL (GNU Lesser General Public License) Price:
611 downloads
TinyMCE 2.1.1.1

TinyMCE 2.1.1.1


TinyMCE is a platform-independent, Web-based, Javascript HTML WYSIWYG editor. more>>
TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL by Moxiecode Systems AB.
It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances. TinyMCE is so easy to integrate with your existing system.
Main features:
- Easy to integrate, takes only two lines of code.
- Theme and template support.
- Plugin support.
- Easy to extend with custom code.
- Customizable HTML/XHTML 1.0 output. Block invalid elements and force attributes.
- International language support (Language packs) currenly English, Swedish, Italian, German, Czech, Hungarian, Dutch, Finnish, Danish and Arabic and much more.
- Multiple browser support, currently Mozilla, MSIE and FireFox.
Enhancements:
- Fixed bug where dot notaion for some callback options didnt work.
- Fixed bug where valid_child_elements option didnt work.
- Fixed bug where form trigger wasnt executed when keyboard was used to submit form.
<<less
Download (1.2MB)
Added: 2007-05-28 License: LGPL (GNU Lesser General Public License) Price:
902 downloads
EL4J 1.1.1

EL4J 1.1.1


EL4J, the Extension Library for the J2EE, adds incremental improvements to the Spring Java framework. more>>
EL4J, the Extension Library for the J2EE, adds incremental improvements to the Spring Java framework.
Main features:
- The ability to split applications in modules
- A module can consist of code, jar-files and configurations
- There can be transitive dependencies between modules
- A module can automatically enable its spring configuration when it is present
- The order and the location of configuration-information works accross various J2EE containers
- Simplified remoting
- Optional implicit context passing to cleanly add technical context with remote method invocations (e.g. to add a security principal or the sub-company on whose behalf a request is being made)
- Remote a POJO as SLSB or SFSB, remote a POJO via SOAP
- Clean remoting support for interfaces that lack a RemoteException in their interface where its required
- A light daemon manager service
- Various improvements
- Make the active beans and their configuration visible in JMX
- A light exception handling framework that implements a safety facade
- Simplified configuration of attribute-interceptor mappings
Enhancements:
- Many clean-ups in the build infrastructure and in the file organization
- Added a database plugin that allows to execute SQL scripts on the database.
- It can optionally launch an embedded database (Derby for now).
- Added a dependency plugin that illustrates the dependencies between modules graphically.
- Added a basic EL4J archetype to get started more easily
- We provide a mechanim to override the configuration files that are in the automatic Tomcat download (files etc/tomcat are copied to Tomcat).
- Test run now in the maven integration phase (in order for us to launch the database in the right moment).
- Some issues in the site-generation were fixed.
- Added an experimental version plugin that checks whether there are new versions available of existing maven plugins or of other jar-files a project depends on.
- Provided fixes for the external exec plugin
- Upgrade to some newer maven plugins: eclipse, javadoc, deploy.
<<less
Download (1.2MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
977 downloads
BALL 1.1.1

BALL 1.1.1


The Biochemical ALgorithms Library (BALL) is a framework for rapid application development. more>>
BALL is Rapid Software Prototyping can significantly reduce development times in the field of Computational Molecular Biology and Molecular Modeling. BALL (Biochemical Algorithms Library) is an application framework in C++ that has been specifically designed for this purpose.
BALL has been carefully designed to be robust, easy to use, and open to extensions. Especially its extensibility which results from an object-oriented and generic programming approach distinguishes it from other software packages.
BALL is well suited to serve as a public repository for reliable data structures and algorithms. Based on BALL we have developed a stand-alone tool for molecular visualization, BALLView . BALLView makes the broad functionality available through an integrated user-friendly GUI.
BALL is distributed under the Lesser GNU Public License (LGPL), parts of it are under the GNU Public License (GPL).
Enhancements:
- This version finally brings full support for Python, DLLs, and nmake Makefiles under Windows.
- A large number of prominent fixes were made, especialy for g++ 4.x.
- Some new functionality was added to BALLView.
<<less
Download (4.2MB)
Added: 2005-12-22 License: LGPL (GNU Lesser General Public License) Price:
793 downloads
ZatriX 1.1

ZatriX 1.1


ZatriX is a black and green matrix theme for KDE created in Slackware 11.0 with KDE 3.5.4. more>>
ZatriX is a black and green matrix theme for KDE created in Slackware 11.0 with KDE 3.5.4.

<<less
Download (0.72MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
926 downloads
rpmrebuild 2.1.1-1

rpmrebuild 2.1.1-1


rpmrebuild is a tool which rebuilds an RPM file from an installed package in the RPM database. more>>
rpmrebuild project is a tool to build an RPM file from a package that has already been installed in a basic use, rpmrebuild use do not require any rpm building knowledge (On debian, the equivalent product is dpkg-repack).
Enhancements:
- remove commented tags (PAYLOAD*, INSTALLTID, OPTFLAGS, PLATFORM, SIGSIZE) to solve bug for rpm 3.x
- add more info to bugreport (issues, warnings)
- add choice of email addresse for bug report
- send bug report to new rpmrebuild-bugreport list
<<less
Download (0.057MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
854 downloads
DBFW 1.1.2

DBFW 1.1.2


DBFW is a PHP-based database framework for rapid application development and rapid prototyping. more>>
DBFW is a PHP-based database framework for rapid application development and rapid prototyping.
DBFW project allows the creation of almost complete Web/database-based applications in no more than few hours, as well as faster development cycles.
It uses automatic DB schema discovery with XML configuration files to automatically implement a basic user interface that can be extended through the use of ad-hoc PHP code.
This framework aims to provide the developer with a tool that can be used first to iron out the database structure through as many iterations as required, but without forcing the developer to rewrite everything at every iteration.
It provides many features aimed to reduce this round-trip in the requirement and specification analisys phase, thanks to its ability to provide an auto-updating and working prototype of the user interface that can be used to access data from the DB under construction.
Main features:
- autodetection of the entire DB schema. The framework engine will retrieve all required informations from the DB itself (like all user visible tables, foreign keys, column types, and so on). It will cache the discovered infos in a file under the directory cache/ of the application. If you change the schema, the tables, add/remove columns and so on, you will just need to remove the cache file and the framework will redo the discovery process.
- XML-based User Interface specification. The user interface of the application is specified through a set of XML files, which will contain the templates for the application forms and browsers as well as the application menus, the reports and so on....
- automatic handling of CRUD functionality. By default, it is able to provide support for creation, read, update and delete of records from all your tables.
- automatic handling of Foreign Keys. The framework knows all foreign keys defined among tables, and it will allow its automatic handling whenever you will say so. The automatic handling means navigable html links during the browsing of records from a given table as well as search or select widgets in the editing forms.
- multi database support. The framework uses a driver based interface for DB access, which means that new databases backend may be added later, by simply creating the related driver. The framework currently supports the following DB:
- PostgreSQL 7.3.X and later (The 8.X needs more tests, thought)
- MySQL 4.1.X and later (Check the driver specifications for known limitations)
- Oracle 9i and later (it should work, even if it hasnt been used by few years)
- The framework uses the PEAR library for DB access, so the its internal driver will add only the functionality required by the discovery process and few others not directly provided by the PEAR driver.
- simple creation of Reports. You can create a Report (or a group of Reports) simply by specifying the SQL query which generate the data and by choose the output, be it a textual one using a template, or a graphical one, using the GD library or a SVG generator. It supports the following output formats: HTML, PDF (still under development, thought), TSV (tab Separated Values) and XLS (Excel Spreadsheets);
- DHTML forms: hierarchical forms are implemented using DHTML so they are handled by the web client for the most part, avoiding unnecessary round-trips. (It should work with almost all recently web browsers).
- form nesting. This allows you to create nested forms for editing of related sets of records. All modifications to the set will be committed as a unique transaction, so they will fail or success as a whole.
- form validation and error handling: all forms will be validated before their use, and all errors will be notified to the user. The framework uses the exernal JavaScript library overlib to handle tooltips as well as error notifications ( you may find more info at http://www.bosrup.com/web/overlib/ )
- support for record history. You may create two additional columns in your tables (a start-of-validity one and a end-of-validity one), tell the framework of them and then it will handle all modifications as storicized modifications (i.e. the records will not be really deleted, just marked as expired).
- integrated support for PDF generation, through the external library html2ps based on FPDF
- javascript calendar for web client date handling (a really wonderful JavaScript library. Check it out at http://students.infoiasi.ro/~mishoo/site/calendar.epl
- dynamically generated menus: you can generate menus dinamically using SQL queries.
- internationalization: it supports full internationalization for both framework and applications using Gettext. They may be handled separately, so you can maintain your application messages indipendently from those of the framework.
- privileges: the framework will respect all privileges defined on the DB tables, as well as it will enforce additional privileges, like record based ones (yes, really record based... I need to document how they work, though... )
- automatic generation of user documentation: (Work In Progress) Since the application behaviour is specified for the most part in the XML configuration files, its possible to process those files to generate automatically the core of the User Documentation. Of course, it still need to be completed and edited by hand, but this time you may concentrate on its content. BTW, the generated document will be in DocBook XML format.
- support for pop-up based details views.
- many more feature, like the handlers (PHP code which can be hooked to specific engine events like the decode event or the post_retrieve and so on), triggers (to allow the use of special triggers on DB that doesnt support triggers that access the tables under modifications, like Oracle and MySQL), foreign key and browser filtering, order-by handling, externally linked pages, and so on...
Enhancements:
- A new online help subsystem, a code cleanup, more work on the documentation, more support for data exports, and many bugfixes.
<<less
Download (0.89MB)
Added: 2006-03-21 License: GPL (GNU General Public License) Price:
750 downloads
yafc 1.1.1

yafc 1.1.1


yafc is Yet Another FTP Client. more>>
Yafc is yet another FTP client which features a directory cache, remote filename completion, aliases, colorized ls, recursive get/put/ls/rm, nohup mode transfers, tagging (queueing), multiple connections, proxy support, and more. It has also support for Kerberos authentication and SSH2 (sftp).
Main features:
- cached directory listings
- extensive tab completion
- aliases
- colored ls (ie, ls --color, uses $LS_COLORS like GNU ls)
- automatic reconnect on timed out connections
- recursive get/put/fxp/ls/rm
- nohup mode transfers
- multiple connections open simultaneously
- tagging (queueing)
- very configurable
- autologin and bookmarks
- automagically enters nohup-mode when SIGHUP received (in get and put)
- redirection to local command or file
- proxy support
- Kerberos support (version 4 and 5, heimdal, kth-krb or MIT)
- SSH2 support (sftp)
- its free!
Enhancements:
- Applied patch by Mark Schreiber that checks for errno.h in configure.ac
- Less picky autogen.sh
- sysconfdir setting from configure honored (thanks to Toru TAKAMIZU)
- alternative SSH port now accepted (thanks Henk Csaba)
- Applied patch from Eduard Bloch that adds a setting for user configurable SSH options
- Uses standard SI prefixes for binary multiples (KiB, MiB, GiB) in transfer progress
- Fixed bug when pressing Ctrl-D in user input (ask), reported by Robin Breathe
- Applied patch by Thomas Habets, fixing a file descriptor leak
- Fixed the "-s" parameter for the "fxp" command (patch by Julien Antille)
- Included the large file support patch by Eduard Block
- Applied patch from Eduard Block that improved the help command
- Applied patch from Martin Pitt that fixes the errno.h problem in makepath.c
<<less
Download (1.1MB)
Added: 2005-10-06 License: GPL (GNU General Public License) Price:
1488 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5