zone 0.85
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 154
DNS::Zone 0.85
DNS::Zone contains a collection of Perl modules which provide an abstraction of name service zones. more>>
DNS::Zone contains a collection of Perl modules which provide an abstraction of name service zones as well as server specific adaptors for concrete file representations.
The modules origin is the ZoneMaster project which make heavy use of the module for comprehensive zone file management. Go to http://www.zonemaster.org for further information.
Installation:
You install DNS::Zone as you would install any perl module library, by running these command:
If you have CPAN.pm installed and are connected to the Internet
perl -MCPAN -e shell
> install DNS::Zone
or even
perl -MCPAN -e install DNS::Zone
otherwise
perl Makefile.PL
make
make test
make install
<<lessThe modules origin is the ZoneMaster project which make heavy use of the module for comprehensive zone file management. Go to http://www.zonemaster.org for further information.
Installation:
You install DNS::Zone as you would install any perl module library, by running these command:
If you have CPAN.pm installed and are connected to the Internet
perl -MCPAN -e shell
> install DNS::Zone
or even
perl -MCPAN -e install DNS::Zone
otherwise
perl Makefile.PL
make
make test
make install
Download (0.008MB)
Added: 2007-04-16 License: Perl Artistic License Price:
924 downloads
Zoned 0.1.1
Zoned project provides DNS zone database clustering for BIND9. more>>
Zoned project provides DNS zone database clustering for BIND9.
Zoned works in conjunction with the BDBHPT DLZ module for BIND9 (9.4.0+). Zoned manages the backing-store Berkeley DB database, and utilizes the Berkeley DB Replication Base API to provide high availability and load distribution to a coherent DNS zone infrastructure.
Zoned includes the zoned(1) server replication node, zonectl(1) command line utility for managing server nodes and editing DNS zone records, and a Perl module, Zoned. All changes to DNS zone data must be processed through a Zoned node, preferably using the command-line utility or Perl library. Alternatively, an ASN.1 message schema definition is provided, defining the messaging protocol for node communication, which can be used to build your own tools for interacting with the cluster.
Zoned and Berkeley DB autonomously manage the cluster and cluster messaging (including transparently routing all zoned edits to the master, per BerkeleyDB Replication requirements). You must enumerate cluster nodes through SRV resource records. This list specifies all nodes which should participate in the cluster, not necessarily all available nodes. This list determines who and where each node should peer with, and serves as a parameter to determining whether a transaction has been successfully committed (more than one-half of enumerated nodes have written out a zone edit). The SRV node enumeration modifications are automatically detected with a configurable check interval.
To compile Zoned you need: GNU Make, libarena, libevnet, libevent, asn1c, and Lua.
Zoned has been successfully compiled and run on Debian GNU/Linux i386, and OpenBSD 4.0 AMD64 platforms. Zoned is new software, and it may take some elbow grease to build properly.
libevnet requires C-Ares and OpenSSL.
Zoned is a Work-in-Progress. Node authentication is not yet implemented, but will use TLS and X.509 certificate verification. Currently node discovery occurs through an SRV query, which is expected to enumerate all current nodes.
<<lessZoned works in conjunction with the BDBHPT DLZ module for BIND9 (9.4.0+). Zoned manages the backing-store Berkeley DB database, and utilizes the Berkeley DB Replication Base API to provide high availability and load distribution to a coherent DNS zone infrastructure.
Zoned includes the zoned(1) server replication node, zonectl(1) command line utility for managing server nodes and editing DNS zone records, and a Perl module, Zoned. All changes to DNS zone data must be processed through a Zoned node, preferably using the command-line utility or Perl library. Alternatively, an ASN.1 message schema definition is provided, defining the messaging protocol for node communication, which can be used to build your own tools for interacting with the cluster.
Zoned and Berkeley DB autonomously manage the cluster and cluster messaging (including transparently routing all zoned edits to the master, per BerkeleyDB Replication requirements). You must enumerate cluster nodes through SRV resource records. This list specifies all nodes which should participate in the cluster, not necessarily all available nodes. This list determines who and where each node should peer with, and serves as a parameter to determining whether a transaction has been successfully committed (more than one-half of enumerated nodes have written out a zone edit). The SRV node enumeration modifications are automatically detected with a configurable check interval.
To compile Zoned you need: GNU Make, libarena, libevnet, libevent, asn1c, and Lua.
Zoned has been successfully compiled and run on Debian GNU/Linux i386, and OpenBSD 4.0 AMD64 platforms. Zoned is new software, and it may take some elbow grease to build properly.
libevnet requires C-Ares and OpenSSL.
Zoned is a Work-in-Progress. Node authentication is not yet implemented, but will use TLS and X.509 certificate verification. Currently node discovery occurs through an SRV query, which is expected to enumerate all current nodes.
Download (0.087MB)
Added: 2007-05-11 License: GPL (GNU General Public License) Price:
896 downloads
Xtemp 0.85
Xtemp shows temperatures of 3 sensors in your motherboard. more>>
Xtemp is a SuperKaramba theme that shows temperatures of 3 sensors in your motherboard.
This theme is configured for MSI k7n2 (Nforce2), if your motherboard is not Nforce2 edit the theme files and change the sensors.
**Remember**
**This theme needs lm_sensors installed and correctly configured.
**Install the fonts they are in Xtemp/fonts .
Wait 4 sec after open to full reload
The style is based in aSensors http://kde-look.org/content/show.php?content=15756
The background of thermometer is based in acpimon http://kde-look.org/content/show.php?content=9059
<<lessThis theme is configured for MSI k7n2 (Nforce2), if your motherboard is not Nforce2 edit the theme files and change the sensors.
**Remember**
**This theme needs lm_sensors installed and correctly configured.
**Install the fonts they are in Xtemp/fonts .
Wait 4 sec after open to full reload
The style is based in aSensors http://kde-look.org/content/show.php?content=15756
The background of thermometer is based in acpimon http://kde-look.org/content/show.php?content=9059
Download (0.053MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1201 downloads
jelio 0.85
jelio is a C stdio replacement library. more>>
This is a proof of concept C stdio replacement library.
Its aim is not to provide new implementations of the exact same function calls. But to provide similar functionality from an interface that permits efficient static linking.
By separating the print formats into functions they will only be linked if they are actually used by the program.
Yes, I know documentation is lacking although most of the functions should be pretty self explaining due to the similarity with the C stdio. The more advanced functions are slightly documented in the header files.
You can also look at the vtest.c file for some examples of usage.
jelio is a C stdio replacement library. The aim is to provide similar functionality as the C stdio functions from an interface that permits efficient static linking.
Enhancements:
- More features were completed.
- Man pages were added for many functions and a few bugfixes were made.
<<lessIts aim is not to provide new implementations of the exact same function calls. But to provide similar functionality from an interface that permits efficient static linking.
By separating the print formats into functions they will only be linked if they are actually used by the program.
Yes, I know documentation is lacking although most of the functions should be pretty self explaining due to the similarity with the C stdio. The more advanced functions are slightly documented in the header files.
You can also look at the vtest.c file for some examples of usage.
jelio is a C stdio replacement library. The aim is to provide similar functionality as the C stdio functions from an interface that permits efficient static linking.
Enhancements:
- More features were completed.
- Man pages were added for many functions and a few bugfixes were made.
Download (0.085MB)
Added: 2005-11-09 License: GPL (GNU General Public License) Price:
1444 downloads
Cabel 0.85
Cabel is a graphical user interface for building csound instruments by patching modules similar to modular synthesizers. more>>
Cabel is a graphical user interface for building csound instruments by patching modules similar to modular synthesizers. Cabel project is simply customizable through XML.
Its intended for Csound beginners to learn some fundamentals about this wonderful language (although installing all dependencies of Cabel isnt as trivial as it should be) and for advanced Csound users, who want to test their ideas and play with input parameters in a graphical user interface.
Main features:
- graphical user interface for Csound modular synthesizer language
- ability to control module parameters via MIDI with MIDI modules (MidiNote, MidiController, ...)
- export Cabel patches to Csound CSD instrument definition files to play your patches without running Cabel
- controllable with Python scripts
- platform independent (runs on every platform running Csound and Python: Windows, Linux, ...)
- extend Cabel with your own modules using Csound and XML
- skinable modules
<<lessIts intended for Csound beginners to learn some fundamentals about this wonderful language (although installing all dependencies of Cabel isnt as trivial as it should be) and for advanced Csound users, who want to test their ideas and play with input parameters in a graphical user interface.
Main features:
- graphical user interface for Csound modular synthesizer language
- ability to control module parameters via MIDI with MIDI modules (MidiNote, MidiController, ...)
- export Cabel patches to Csound CSD instrument definition files to play your patches without running Cabel
- controllable with Python scripts
- platform independent (runs on every platform running Csound and Python: Windows, Linux, ...)
- extend Cabel with your own modules using Csound and XML
- skinable modules
Download (0.092MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1311 downloads
Zonestats 0.3
Zonestats create an RRD database with the values of CPU and memory (RSS) usage per Solaris 10 zone. more>>
Zonestats create an RRD database with the values of CPU and memory (RSS) usage per Solaris 10 zone. Zonestats project requires only the RRDs Perl module.
<<less Download (0.013MB)
Added: 2006-04-19 License: BSD License Price:
1284 downloads
ZoneMaker 0.9
ZoneMaker is a script for making BIND zone files. more>>
ZoneMaker is a script for making BIND zone files. ZoneMaker uses files similar to ini files to simplify updating several zone files simultaneously.
The script is fully capable of producing both normal and reverse zones as well as being able to produce HINFO, TXT and LOC records.
Currently there is no IPv6 support, although it is planned for a future release. Some knowledge about how zone files work is required to use this script effectively.
Main features:
- Supports both normal and reverse zones
- Supports a special global zone for using BIND9 views
- Supports a wide range of Record types
Installation:
After untarring the archive, youll want to first edit config.py. This file defines where the other files will be located. If you plan on running the script out of the tarball directory you should only need to modify OutputLocation.
Otherwise, change the options to suit.
The next step is to modify zones.conf and hosts.conf to suit your own needs a full list of options for each file can be found below
The format for hosts.conf and zones.conf is as follows
[section]
option1: value
option2: value
option3: value
In the above example, section would be the zone or host name. Options are not case sensitive, their values, however, are.
<<lessThe script is fully capable of producing both normal and reverse zones as well as being able to produce HINFO, TXT and LOC records.
Currently there is no IPv6 support, although it is planned for a future release. Some knowledge about how zone files work is required to use this script effectively.
Main features:
- Supports both normal and reverse zones
- Supports a special global zone for using BIND9 views
- Supports a wide range of Record types
Installation:
After untarring the archive, youll want to first edit config.py. This file defines where the other files will be located. If you plan on running the script out of the tarball directory you should only need to modify OutputLocation.
Otherwise, change the options to suit.
The next step is to modify zones.conf and hosts.conf to suit your own needs a full list of options for each file can be found below
The format for hosts.conf and zones.conf is as follows
[section]
option1: value
option2: value
option3: value
In the above example, section would be the zone or host name. Options are not case sensitive, their values, however, are.
Download (0.006MB)
Added: 2005-12-05 License: MIT/X Consortium License Price:
1426 downloads
ZoneAdmin 0.1
ZoneAdmin is a Web interface for the powerDNS name server using the MySQL backend. more>>
ZoneAdmin is a Web interface for the powerDNS name server using the MySQL backend. It allows you to manage existing zones and add, remove, and alter new ones, supports on-the-fly input validation, and allows comments per zone and per record.
Furthermore, it keeps a detailed history of changes and allows you to temporary enable or disable zones without having to remove them completely. New zones can use templates that contain predefined records. The project is designed to be used with one of Apaches authentication methods.
Enhancements:
- This release fixes bugs related to inability to add record type AAAA, inability to add CNAME records, and validation failures.
<<lessFurthermore, it keeps a detailed history of changes and allows you to temporary enable or disable zones without having to remove them completely. New zones can use templates that contain predefined records. The project is designed to be used with one of Apaches authentication methods.
Enhancements:
- This release fixes bugs related to inability to add record type AAAA, inability to add CNAME records, and validation failures.
Download (0.13MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
830 downloads
DNS::ZoneParse 0.95
DNS::ZoneParse is a Perl module to parse and manipulate DNS Zone Files. more>>
DNS::ZoneParse is a Perl module to parse and manipulate DNS Zone Files.
SYNOPSIS
use DNS::ZoneParse;
my $zonefile = DNS::ZoneParse->new("/path/to/dns/zonefile.db", $origin);
# Get a reference to the MX records
my $mx = $zonefile->mx;
# Change the first mailserver on the list
$mx->[0] = { host => mail.localhost.com,
priority => 10,
name => @ };
# update the serial number
$zonefile->new_serial();
# write the new zone file to disk
open NEWZONE, ">/path/to/dns/zonefile.db" or die "error";
print NEWZONE $zonefile->output();
close NEWZONE;
INSTALLATION
perl Makefile.PL
make
make test
make install
<<lessSYNOPSIS
use DNS::ZoneParse;
my $zonefile = DNS::ZoneParse->new("/path/to/dns/zonefile.db", $origin);
# Get a reference to the MX records
my $mx = $zonefile->mx;
# Change the first mailserver on the list
$mx->[0] = { host => mail.localhost.com,
priority => 10,
name => @ };
# update the serial number
$zonefile->new_serial();
# write the new zone file to disk
open NEWZONE, ">/path/to/dns/zonefile.db" or die "error";
print NEWZONE $zonefile->output();
close NEWZONE;
INSTALLATION
perl Makefile.PL
make
make test
make install
Download (0.009MB)
Added: 2007-04-16 License: Perl Artistic License Price:
925 downloads
QtSQL Browser 0.85
QtSQL Browser is a generic GUI database browsing frontend. more>>
The purpose of this project is to provide a simple, generic GUI database browsing frontend. The tool is a very simple aggregation of the Qt database classes.
The database abstraction is provided by the Qt database drivers. So far, the drivers for PostgreSQL and MySQL have been found to work well.
In principle, there is no reason why ODBC drivers for popular databases such as Oracle, DB2, Informix as well as Firebird and SAP/DB shouldnt work via the Qt ODBC3 abstraction layer.
However, some preliminary tests with these have not been promising. It may be that the only way to get some of these working is to create a native Qt database driver. This is something Ill be looking into much later.
At the moment, it is only possible to build the system on Unix and similar systems. Since Trolltech have released a version of Qt for OSX under the GPL and have announced their intention to do likewise for Win32, it should be possible to provide ports for both of these platforms. For the moment though, I just provide the source.
Main features:
- Tree browser for databases and tables
- Display of table descriptions
- Display of table contents in main window
- Execution of ad-hoc SQL queries in the query tab
- Command line history in the query tab
- Retrieval of database connection details from XML config file
- Retrieval of other configuration parameters from XML config file
- Prompting for connection password
- Addition of new connections via GUI to the running application and the config file
- Display database views with a separate icon
- Create a connection name independent of the database name
- A "Test" button when creating a new connection
- Dynamically generate a list of available drivers
- Configuration via autoconf
- Fixed bug with executing updates/inserts twice
- Refreshing of a DB connection
- Deleting of connections via the GUI
- Editting of connections via the GUI
- Check for the existence of ~/.qtsql
- Creation of skeleton config file
- Auto saving/restoring of history
- Loading of queries
- Saving of results
- Keyboard shortcuts
<<lessThe database abstraction is provided by the Qt database drivers. So far, the drivers for PostgreSQL and MySQL have been found to work well.
In principle, there is no reason why ODBC drivers for popular databases such as Oracle, DB2, Informix as well as Firebird and SAP/DB shouldnt work via the Qt ODBC3 abstraction layer.
However, some preliminary tests with these have not been promising. It may be that the only way to get some of these working is to create a native Qt database driver. This is something Ill be looking into much later.
At the moment, it is only possible to build the system on Unix and similar systems. Since Trolltech have released a version of Qt for OSX under the GPL and have announced their intention to do likewise for Win32, it should be possible to provide ports for both of these platforms. For the moment though, I just provide the source.
Main features:
- Tree browser for databases and tables
- Display of table descriptions
- Display of table contents in main window
- Execution of ad-hoc SQL queries in the query tab
- Command line history in the query tab
- Retrieval of database connection details from XML config file
- Retrieval of other configuration parameters from XML config file
- Prompting for connection password
- Addition of new connections via GUI to the running application and the config file
- Display database views with a separate icon
- Create a connection name independent of the database name
- A "Test" button when creating a new connection
- Dynamically generate a list of available drivers
- Configuration via autoconf
- Fixed bug with executing updates/inserts twice
- Refreshing of a DB connection
- Deleting of connections via the GUI
- Editting of connections via the GUI
- Check for the existence of ~/.qtsql
- Creation of skeleton config file
- Auto saving/restoring of history
- Loading of queries
- Saving of results
- Keyboard shortcuts
Download (0.025MB)
Added: 2005-05-24 License: GPL (GNU General Public License) Price:
1619 downloads
Blahz-DNS 0.50
Blahz-DNS is a PHP/MySQL-based DNS administration. more>>
Blahz-DNS is PHP/MySQL based DNS (BIND 9/tinydns) administration with support for primary and secondary zones, user authentication, User and Admin account types (with read-only versions), and restricted access for user accounts to certain primary and secondary zones.
Enhancements:
Bugfixes:
- Search and replace now places updated zones into the updated table
Additions:
- Added import functionality. Will allow you to import zone files
- This is done by performing a dig @< dnsserver > < domain > AXFR and then parsing that output and inserting values into the DB.
- Added Search UI mode. Allows traditional listing mode and Search mode.
Changes:
- Swapped position of Write Zones and Restart server buttons since the old order didnt makes sense as you have to write the zones before restarting the server.
<<lessEnhancements:
Bugfixes:
- Search and replace now places updated zones into the updated table
Additions:
- Added import functionality. Will allow you to import zone files
- This is done by performing a dig @< dnsserver > < domain > AXFR and then parsing that output and inserting values into the DB.
- Added Search UI mode. Allows traditional listing mode and Search mode.
Changes:
- Swapped position of Write Zones and Restart server buttons since the old order didnt makes sense as you have to write the zones before restarting the server.
Download (0.023MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1643 downloads
Time::Zone 1.16
Time::Zone is a miscellaneous timezone manipulations routines. more>>
Time::Zone is a miscellaneous timezone manipulations routines.
SYNOPSIS
use Time::Zone;
print tz2zone();
print tz2zone($ENV{TZ});
print tz2zone($ENV{TZ}, time());
print tz2zone($ENV{TZ}, undef, $isdst);
$offset = tz_local_offset();
$offset = tz_offset($TZ);
This is a collection of miscellaneous timezone manipulation routines.
tz2zone() parses the TZ environment variable and returns a timezone string suitable for inclusion in date-like output. It opionally takes a timezone string, a time, and a is-dst flag.
tz_local_offset() determins the offset from GMT time in seconds. It only does the calculation once.
tz_offset() determines the offset from GMT in seconds of a specified timezone.
tz_name() determines the name of the timezone based on its offset
<<lessSYNOPSIS
use Time::Zone;
print tz2zone();
print tz2zone($ENV{TZ});
print tz2zone($ENV{TZ}, time());
print tz2zone($ENV{TZ}, undef, $isdst);
$offset = tz_local_offset();
$offset = tz_offset($TZ);
This is a collection of miscellaneous timezone manipulation routines.
tz2zone() parses the TZ environment variable and returns a timezone string suitable for inclusion in date-like output. It opionally takes a timezone string, a time, and a is-dst flag.
tz_local_offset() determins the offset from GMT time in seconds. It only does the calculation once.
tz_offset() determines the offset from GMT in seconds of a specified timezone.
tz_name() determines the name of the timezone based on its offset
Download (0.022MB)
Added: 2006-06-29 License: Perl Artistic License Price:
1214 downloads
Phaeronix 0.85 Beta
Phaeronix is a Gentoo-based RR4 CD optimised for i686, with GNOME, Reiser4-enabled GRUB. more>>
Phaeronix is a gentoo love-sources RR4 CD with reiser4 enabled grub, auto hardware detection with nvidia 3D support , ready for multimedia, internet, and arabic. It is optimised for i686.
The kernel is now based on the 2.6.15-arckck7 patchset with a couple of additions ( one to fix acer laptop hangs and the other to fix slow laptop battery polls).
http://iphitus.loudas.com/archck.php
Final release is probably going to be based on the new -beyond patchset.
The livecd uses a genkernel generated initramfs, but with quite some hacks added to the linuxrc. As a result this initramfs can now probably boot from any media, anything from IDE to external firewire.
The CD is rendered pseudo-writable thanks to squashfs and unionfs.
Hardware detction is modular and can be turned on and off as needed. You can see the possible options in the cheatcodes list.
Modular Xorg-X11 7.0 is the default Xorg server. XGL server is included as an optional featured activated at boot time by booting like this :
"linux xgl"
This is experimental and might not work. Check http://gentoo-wiki.com/HOWTO_XGL
To find out if your card supported and to see if your problem has been already reported.
The desktop is a full gnome-2.14 , there is no KDE and no qt/KDE apps.
The default user name is phaeron and its password is also phaeron.
The root password is root.
The available editors are vim and nano.
Its built specifically to support arabic, with some patches and customizations. However, this is an ongoing process. It was spurred by arabbixs stagnation. Best of all just click on the keyboard applet or press alt+shift and you get an arabic keyboard layout.
"w3m -v" is the text only browser because it supports arabic ( along with bicon to bidi/shape properly ). Check here for the inspiration : http://www.eglug.org/node/1953
Also in gnome-terminal run a new session with the arabic profile and you will have full bidi and shaping thanks to arabeyes bicon.
Msameers arabic wordlist has been included in aspell and openoffice. Check here for the arabic wordlist : http://www.eglug.org/node/1976
You can logout from the desktop and choose arabic as the session language and then log in again. The desktop will be RTL and mostly in arabic. The reason this isnt made easier or more obvious is a lot of things still need translation or bugfixing. The infrastructure is there however.
The supported locales are : arabic, french, italian, german,and slovak.
The official gentoo installer is also included to help installing gentoo if you want.
<<lessThe kernel is now based on the 2.6.15-arckck7 patchset with a couple of additions ( one to fix acer laptop hangs and the other to fix slow laptop battery polls).
http://iphitus.loudas.com/archck.php
Final release is probably going to be based on the new -beyond patchset.
The livecd uses a genkernel generated initramfs, but with quite some hacks added to the linuxrc. As a result this initramfs can now probably boot from any media, anything from IDE to external firewire.
The CD is rendered pseudo-writable thanks to squashfs and unionfs.
Hardware detction is modular and can be turned on and off as needed. You can see the possible options in the cheatcodes list.
Modular Xorg-X11 7.0 is the default Xorg server. XGL server is included as an optional featured activated at boot time by booting like this :
"linux xgl"
This is experimental and might not work. Check http://gentoo-wiki.com/HOWTO_XGL
To find out if your card supported and to see if your problem has been already reported.
The desktop is a full gnome-2.14 , there is no KDE and no qt/KDE apps.
The default user name is phaeron and its password is also phaeron.
The root password is root.
The available editors are vim and nano.
Its built specifically to support arabic, with some patches and customizations. However, this is an ongoing process. It was spurred by arabbixs stagnation. Best of all just click on the keyboard applet or press alt+shift and you get an arabic keyboard layout.
"w3m -v" is the text only browser because it supports arabic ( along with bicon to bidi/shape properly ). Check here for the inspiration : http://www.eglug.org/node/1953
Also in gnome-terminal run a new session with the arabic profile and you will have full bidi and shaping thanks to arabeyes bicon.
Msameers arabic wordlist has been included in aspell and openoffice. Check here for the arabic wordlist : http://www.eglug.org/node/1976
You can logout from the desktop and choose arabic as the session language and then log in again. The desktop will be RTL and mostly in arabic. The reason this isnt made easier or more obvious is a lot of things still need translation or bugfixing. The infrastructure is there however.
The supported locales are : arabic, french, italian, german,and slovak.
The official gentoo installer is also included to help installing gentoo if you want.
Download (MB)
Added: 2006-04-04 License: GPL (GNU General Public License) Price:
1301 downloads
dctcd 0.85.9
dctcd is a background-running wrapper for DCTC (Direct Connect Text Client). more>>
dctcd is a background-running wrapper for DCTC (Direct Connect Text Client) that automates the running of servers, gathers upload statistics, and works as a chat bot.
There are a few GUIs, some of them are graphical (dc_gui, dc_gui2, dc_qt, ...), other are text based client (danae, ldcc,...) and other are console frontend (rccp).
Enhancements:
- done log file contains upload log.
- fix the incorrect information sent to the UI when uploading a file bigger than 2GB (only the display is buggy, the transfer works).
- update .spec file to support fedora (based on Sammy Atmadja modification).
<<lessThere are a few GUIs, some of them are graphical (dc_gui, dc_gui2, dc_qt, ...), other are text based client (danae, ldcc,...) and other are console frontend (rccp).
Enhancements:
- done log file contains upload log.
- fix the incorrect information sent to the UI when uploading a file bigger than 2GB (only the display is buggy, the transfer works).
- update .spec file to support fedora (based on Sammy Atmadja modification).
Download (0.22MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1224 downloads
PHP BookIn 0.5.1
PHP BookIn provides an online bookmark manager. more>>
PHP BookIn provides an online bookmark manager.
PHP BookIn is an online bookmark manager that you can use as a Web application to share your bookmarks across the Internet.
PHP BookIn is PHP application with alot of javascript. Datas are stored on a MySQL database. Favicons (that small icons just on the left of the url input zone) are stored on the server filesystem.
<<lessPHP BookIn is an online bookmark manager that you can use as a Web application to share your bookmarks across the Internet.
PHP BookIn is PHP application with alot of javascript. Datas are stored on a MySQL database. Favicons (that small icons just on the left of the url input zone) are stored on the server filesystem.
Download (0.10MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
945 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 zone 0.85 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