discoverstation 4.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 304
JXHTMLEDIT 4.0.005
JXHTMLEDIT is a browser-based HTML/XHTML content authoring. more>>
JXHTMLEDIT is a browser-based HTML/XHTML content authoring. JXHTMLEDIT tool is based on the Java 2 Platform that allows WYSIWYG editing on multiple platforms (require the Sun JavaTM Plug-in 1.4 or higher installed on client).
JXHTMLEdit is a cross-platform WYSIWYG (What You See Is What You Get) HTML/XHTML content authoring tool, a very small Java Applet based on the Java 2 Platform. JXHTMLEdit provides word processor-like user interface that allows users to edit the XHTML document directly in the final form (as will be rendered). This empower non-technical users to become content contributors without any knowledge of HTML or XHTML.
Specifically designed and optimized to edit only the < body > portion of HTML/XHTML page, JXHTMLEdit outputs to your choice HTML or well-formed XHTML.
JXHTMLEDIT preloads the HTML/XHTML content during startup from a specified html form field (e.g.: < textarea >) where it also saves the generated code.
JXHTMLEdit has been designed to offer great flexibility and could be used to easily integrate WYSIWYG authoring functionality into existing websites, CMS, WMS or any other Web-based software. The Applet JAR archive is less than 150 KB and its cacheable, so it loads very quickly.
Main features:
- platform independent, works on most Operating Systems available today
- browser-based and cross-browser Java Applet, works fine with any Javascript-enabled internet browser that support Sun JavaTM Plug-in 1.4 or higher
- two different jar versions are available:
- signed (jxhtmledit.jar) : to support cut-and-paste to and from system clipboard;
- unsigned (jxhtmledit_u.jar) : support only local clipboard;
- applet jar is less than 150 KB, loads quickly
- WYSIWYG and source code editing (the source editor pane may be disabled)
- partial support for stylesheet CSS1
- support custom tags
- customizable charset encoding, support international character sets and html entities (require appropriate OS/browsers)
- output HTML or well-formed XHTML to your choice
- support XHTML indentation (to increase readability) or compact mode (to reduce code size)
- could be launched as a popup window or used as a textarea
- support copy, cut-n-paste, undo, redo, search and select-all
- buttons and combo boxes are configured using external XML file (java/config/buttons.xml)
- support custom buttons and custom selection boxes to add custom tags or execute predefined actions
- strings could be localized using external TMX file (java/config/tmx.xml)
- all x/HTML tags and relative attributes are defined using external XML files (java/config/tags.xml, attributes.xml, categories.xml, status.xml)
- support help tooltips (popup descriptions that appear when mouse pointer is over the button)
Enhancements:
- The license was changed to the GPL.
<<lessJXHTMLEdit is a cross-platform WYSIWYG (What You See Is What You Get) HTML/XHTML content authoring tool, a very small Java Applet based on the Java 2 Platform. JXHTMLEdit provides word processor-like user interface that allows users to edit the XHTML document directly in the final form (as will be rendered). This empower non-technical users to become content contributors without any knowledge of HTML or XHTML.
Specifically designed and optimized to edit only the < body > portion of HTML/XHTML page, JXHTMLEdit outputs to your choice HTML or well-formed XHTML.
JXHTMLEDIT preloads the HTML/XHTML content during startup from a specified html form field (e.g.: < textarea >) where it also saves the generated code.
JXHTMLEdit has been designed to offer great flexibility and could be used to easily integrate WYSIWYG authoring functionality into existing websites, CMS, WMS or any other Web-based software. The Applet JAR archive is less than 150 KB and its cacheable, so it loads very quickly.
Main features:
- platform independent, works on most Operating Systems available today
- browser-based and cross-browser Java Applet, works fine with any Javascript-enabled internet browser that support Sun JavaTM Plug-in 1.4 or higher
- two different jar versions are available:
- signed (jxhtmledit.jar) : to support cut-and-paste to and from system clipboard;
- unsigned (jxhtmledit_u.jar) : support only local clipboard;
- applet jar is less than 150 KB, loads quickly
- WYSIWYG and source code editing (the source editor pane may be disabled)
- partial support for stylesheet CSS1
- support custom tags
- customizable charset encoding, support international character sets and html entities (require appropriate OS/browsers)
- output HTML or well-formed XHTML to your choice
- support XHTML indentation (to increase readability) or compact mode (to reduce code size)
- could be launched as a popup window or used as a textarea
- support copy, cut-n-paste, undo, redo, search and select-all
- buttons and combo boxes are configured using external XML file (java/config/buttons.xml)
- support custom buttons and custom selection boxes to add custom tags or execute predefined actions
- strings could be localized using external TMX file (java/config/tmx.xml)
- all x/HTML tags and relative attributes are defined using external XML files (java/config/tags.xml, attributes.xml, categories.xml, status.xml)
- support help tooltips (popup descriptions that appear when mouse pointer is over the button)
Enhancements:
- The license was changed to the GPL.
Download (0.48MB)
Added: 2006-02-09 License: GPL (GNU General Public License) Price:
1612 downloads
Nemiver 0.4.0
Nemiver is an project to write a standalone graphical debugger that integrates well in the GNOME desktop environment. more>>
Nemiver is an project to write a standalone graphical debugger that integrates
well in the GNOME desktop environment. The project currently features a backend which uses the well known GNU Debugger gdb.
General
- In addition to the toolbar buttons, you can toggle breakpoints simply by clicking in the margin on the line you want to break on.
- hovering over a variable name for longer than 1 second should show its value as a tooltip window if the variable is in scope
Sessions
Nemiver uses an sqlite database to store basic information about a debugging
session so you can resume where you left off last time. Whenever you start
debugging, a new session is created for you automatically (unless you explicitly
request to resume an existing session).
On exit, your session will automatically be saved. Information saved with your session includes breakpoints, program arguments, working directory path, environment variables, etc. Additionally, you can save the current session to the database on demand by selecting File > Save Session to Disk.
To resume a previously saved debugging session, you can either specify the
session ID to the --executesession command line option or select File > Saved
Sessions... > [select session] from the User interface.
Source Directories
Some versions of the GDB debugger dont provide full pathname information for breakpoints, etc. In this case, you may need to specify which directories to search for source files. These can be specified by manually adding source directories in the Preferences dialog. In the future there will be a more explicit prompt asking the user to locate the requested file when nemiver cant determine the absolute path of a file on its own.
Extending Nemiver
Nemiver is a bit more than just a simple GUI debugger. It is actually a platform which can be extended with plugins and dynamically loaded modules. The libnemivercommon library provides the basic functionality for loading dynamic modules and enabling the plugin architecture of Nemiver. You can create additional plugins for nemiver, and you can even create entirely new perspectives for the nemiver workbench.
Currently, only the debugging perspective is provided, but others could be added in the future (e.g. a perspective for profiling tools such as oprofile, valgrind / massif, etc).
Nemiver also provides an event-based debugger library (which currently features a gdb backend, but others could be added in the future) that could be re-used by other projects seeking to implement a debugger as a part of an IDE, for example.
<<lesswell in the GNOME desktop environment. The project currently features a backend which uses the well known GNU Debugger gdb.
General
- In addition to the toolbar buttons, you can toggle breakpoints simply by clicking in the margin on the line you want to break on.
- hovering over a variable name for longer than 1 second should show its value as a tooltip window if the variable is in scope
Sessions
Nemiver uses an sqlite database to store basic information about a debugging
session so you can resume where you left off last time. Whenever you start
debugging, a new session is created for you automatically (unless you explicitly
request to resume an existing session).
On exit, your session will automatically be saved. Information saved with your session includes breakpoints, program arguments, working directory path, environment variables, etc. Additionally, you can save the current session to the database on demand by selecting File > Save Session to Disk.
To resume a previously saved debugging session, you can either specify the
session ID to the --executesession command line option or select File > Saved
Sessions... > [select session] from the User interface.
Source Directories
Some versions of the GDB debugger dont provide full pathname information for breakpoints, etc. In this case, you may need to specify which directories to search for source files. These can be specified by manually adding source directories in the Preferences dialog. In the future there will be a more explicit prompt asking the user to locate the requested file when nemiver cant determine the absolute path of a file on its own.
Extending Nemiver
Nemiver is a bit more than just a simple GUI debugger. It is actually a platform which can be extended with plugins and dynamically loaded modules. The libnemivercommon library provides the basic functionality for loading dynamic modules and enabling the plugin architecture of Nemiver. You can create additional plugins for nemiver, and you can even create entirely new perspectives for the nemiver workbench.
Currently, only the debugging perspective is provided, but others could be added in the future (e.g. a perspective for profiling tools such as oprofile, valgrind / massif, etc).
Nemiver also provides an event-based debugger library (which currently features a gdb backend, but others could be added in the future) that could be re-used by other projects seeking to implement a debugger as a part of an IDE, for example.
Download (0.60MB)
Added: 2007-06-03 License: GPL (GNU General Public License) Price:
873 downloads
LayManSys 0.4.0
LayManSys is an RDF-based PHP framework for generating a consistent layout for Web documents. more>>
LayManSys short for Layout Managment System is a PHP framework, that helps you providing a consistent look&feel of your web pages (it is no CMS). LayManSys project stores the meta information about the documents in RDF files and uses them for generating the HTML frame (< head > and footer).
LayManSys is a RDF-based PHP framework for generating a consistent layout of web documents. It is a include library (and no CMS) that can be used online as well as on the command line. It generates the documents HTML frame, that is its < head > and footer, manages (CSS) style definitions, shortcut icons (aka favicons), static HTML and dynamic PHP content and much more.
The necessary meta information is either stored in (the) RDF files or in special layout configuration files; these files can be seen as some kind of themes. To use LayManSys benefits, you only need to write the body of your web document, collect all meta information about it in a RDF file, include the LayManSys library into the document and call its initialization function.
At the documents bottom you may want to call a LayManSys finalization routine that builds the footer element.
As mentioned above, there is only one function call to start parsing the meta information and building the HTML frame. This function delegates most work to helper functions and objects, that parse the RDF file(s), parse a layout configuration if necessary, send HTTP header and generate HTML output until the < body > element. The default is to write also the main heading, < h1 id="doktitel" >, using the same information as for the
<<lessLayManSys is a RDF-based PHP framework for generating a consistent layout of web documents. It is a include library (and no CMS) that can be used online as well as on the command line. It generates the documents HTML frame, that is its < head > and footer, manages (CSS) style definitions, shortcut icons (aka favicons), static HTML and dynamic PHP content and much more.
The necessary meta information is either stored in (the) RDF files or in special layout configuration files; these files can be seen as some kind of themes. To use LayManSys benefits, you only need to write the body of your web document, collect all meta information about it in a RDF file, include the LayManSys library into the document and call its initialization function.
At the documents bottom you may want to call a LayManSys finalization routine that builds the footer element.
As mentioned above, there is only one function call to start parsing the meta information and building the HTML frame. This function delegates most work to helper functions and objects, that parse the RDF file(s), parse a layout configuration if necessary, send HTTP header and generate HTML output until the < body > element. The default is to write also the main heading, < h1 id="doktitel" >, using the same information as for the
Download (0.081MB)
Added: 2007-03-28 License: LGPL (GNU Lesser General Public License) Price:
941 downloads
Guarddog 2.4.0
Guarddog is a firewall configuration utility for Linux systems. more>>
Guarddog is a firewall configuration utility for Linux systems. It is aimed at two groups of users. Novice to intermediate users who are not experts in TCP/IP networking and security, and those users who dont want the hastle of dealing with cryptic shell scripts and ipchains/iptables parameters.
Main features:
- Easy to use goal oriented GUI. You say what the firewall should do without having to explain all the details of how it should do it.
- Application protocol based. Unlike other tools, Guarddog does not require you to understand the ins and outs of IP packets and ports. Guarddog takes care of this for you. This also reduces the chances of configuration mistakes being made which are a prime source of security holes.
- Doesnt just generate the firewall once and forgets it. Guarddog lets you maintain and modify the firewall in place.
- Hosts/networks can be divided into Zones. Different zones can have different security policies for different.
- Supports the following network protocols: FTP, SSH, Telnet, Linuxconf, Corba, SMTP, DNS, Finger, HTTP, HTTPS, NFS, POP2, POP3, SUN RPC, Auth, NNTP, NETBIOS Name Service, NETBIOS Session Service, IMAP, Socks, Squid, pcANYWHEREstat, X Window System, Traceroute, ICQ, PowWow, IRC, PostgreSQL, MySQL, Ping, Quake, QuakeWorld, Quake 2, Who Is, Webmin, ICMP Source Quench, ICMP Redirect, Real Audio, Line Printer Spooler, syslog, NTP, NetMeeting, Gnutella, LDAP, LDAP-SSL, SWAT, Diablo II, Nessus, DHCP, AudioGalaxy, DirectPlay, Halflife, XDMCP and Telstras BigPond Cable, CDDB, MSN Messenger, VNC, PPTP, Kerberos, klogin, kshell, NIS, IMAPS, POP3S, ISAKMP, CVS, DICT, AIM, Fasttrack, Kazaa, iMesh, Grokster, Blubster, Direct Connect, WinMX, Yahoo! Messenger, AH, ESP, Jabber, EsounD, Privoxy, eDonkey2000, EverQuest, ICP, FreeDB, Elster, Yahoo games, Legato NetWorker backups, Novell Netware 5/6 NCP, Bittorrent, rsync, distcc, Jabber over SSL, PGP key server, Microsoft Media Server and gkrellm.
- Protocols not supported in the list above can be entered in directly.
- Supports router configurations.
- Runs on KDE 2 or 3, and Linux 2.2, 2.4 and 2.6 series kernels.
- Supports advanced Linux 2.4+ iptables features such as connection tracking and rate limited logging.
- Firewall scripts can be Imported/Exported for use on machines other than the current one.
- DHCP support.
- Uses a "what is not explicitly allowed, is denied" philosophy. Fail-safe design.
- Well documented with tutorials and reference material.
- Licensed under the terms of the GNU General Public License. Is Free and will remain Free.
<<lessMain features:
- Easy to use goal oriented GUI. You say what the firewall should do without having to explain all the details of how it should do it.
- Application protocol based. Unlike other tools, Guarddog does not require you to understand the ins and outs of IP packets and ports. Guarddog takes care of this for you. This also reduces the chances of configuration mistakes being made which are a prime source of security holes.
- Doesnt just generate the firewall once and forgets it. Guarddog lets you maintain and modify the firewall in place.
- Hosts/networks can be divided into Zones. Different zones can have different security policies for different.
- Supports the following network protocols: FTP, SSH, Telnet, Linuxconf, Corba, SMTP, DNS, Finger, HTTP, HTTPS, NFS, POP2, POP3, SUN RPC, Auth, NNTP, NETBIOS Name Service, NETBIOS Session Service, IMAP, Socks, Squid, pcANYWHEREstat, X Window System, Traceroute, ICQ, PowWow, IRC, PostgreSQL, MySQL, Ping, Quake, QuakeWorld, Quake 2, Who Is, Webmin, ICMP Source Quench, ICMP Redirect, Real Audio, Line Printer Spooler, syslog, NTP, NetMeeting, Gnutella, LDAP, LDAP-SSL, SWAT, Diablo II, Nessus, DHCP, AudioGalaxy, DirectPlay, Halflife, XDMCP and Telstras BigPond Cable, CDDB, MSN Messenger, VNC, PPTP, Kerberos, klogin, kshell, NIS, IMAPS, POP3S, ISAKMP, CVS, DICT, AIM, Fasttrack, Kazaa, iMesh, Grokster, Blubster, Direct Connect, WinMX, Yahoo! Messenger, AH, ESP, Jabber, EsounD, Privoxy, eDonkey2000, EverQuest, ICP, FreeDB, Elster, Yahoo games, Legato NetWorker backups, Novell Netware 5/6 NCP, Bittorrent, rsync, distcc, Jabber over SSL, PGP key server, Microsoft Media Server and gkrellm.
- Protocols not supported in the list above can be entered in directly.
- Supports router configurations.
- Runs on KDE 2 or 3, and Linux 2.2, 2.4 and 2.6 series kernels.
- Supports advanced Linux 2.4+ iptables features such as connection tracking and rate limited logging.
- Firewall scripts can be Imported/Exported for use on machines other than the current one.
- DHCP support.
- Uses a "what is not explicitly allowed, is denied" philosophy. Fail-safe design.
- Well documented with tutorials and reference material.
- Licensed under the terms of the GNU General Public License. Is Free and will remain Free.
Download (0.31MB)
Added: 2005-06-08 License: GPL (GNU General Public License) Price:
1604 downloads
encdec 0.4.0
encdec it encodes and decodes i18n strings, integers, reals, and times. more>>
encdec encodes and decodes a wide range of C objects.
This module may be used to encode and decode C objects such as integers, floats, doubles, times, and internationalized strings to and from a wide variety of binary formats as they might appear in portable file formats or network messages.
These encodings include 16, 34, and 64 bit big and little endian intergers, big and little endian IEEE754 float and double values, 6 time encodings, and the wide range of string encodings supported by libiconv.
The functions are all designed to be ideal for in-situ decoding and encoding of complex formats. The code is licensed under the GNU Library General Public License.
<<lessThis module may be used to encode and decode C objects such as integers, floats, doubles, times, and internationalized strings to and from a wide variety of binary formats as they might appear in portable file formats or network messages.
These encodings include 16, 34, and 64 bit big and little endian intergers, big and little endian IEEE754 float and double values, 6 time encodings, and the wide range of string encodings supported by libiconv.
The functions are all designed to be ideal for in-situ decoding and encoding of complex formats. The code is licensed under the GNU Library General Public License.
Download (0.12MB)
Added: 2005-04-18 License: LGPL (GNU Lesser General Public License) Price:
1655 downloads
DutchPIPE 0.4.0
DutchPIPE is software that enables multi user, object oriented, persistent state web sites. more>>
DutchPIPE is software that enables multi user, persistent state web sites, object oriented and is a whole new perspective of looking at sites and pages.
Theres only one world with one set of objects - if you drop something on a page, someone else can visit that page, see the object, and carry it away elsewhere.
Main features:
Social sites
- Build visualized, real multi-user communities, fora and chat rooms. See your buddies wander around.
E-commerce and site assistant applications
- Make easy-to-use product and shopping cart pages. Have automated and/or real person site assistants stand by to assist your customers and increase sales.
Game environments
- From card games to virtual RPG worlds, DutchPIPE makes it possible.
User areas
- Let people make their own "area" - pages, objects, actions, etc., without technical knowledge.
Site monitoring, snooping
- Track where people are going and what they are doing. Improve your processes. Be invisible, or run DutchPIPE invisible for visitors. Snoop visitors: see an exact copy of a visitors browser window, including mouse movements. Beware of the privacy implications!
Developers platform extraordinaire
- Persistent state, object-oriented building gives way to a whole new way of developing DOM web applications. In other words...
Enhancements:
- An option for using the MDB2 database abstraction layer from PHPs PEAR library was added.
- DutchPIPE now supports MySQL, MySQLi, PostgreSQL, Oracle, Frontbase, Querysim, Interbase/Firebird, MSSQL, and SQLite.
- More administrator commands were added.
- UTF-8 support was debugged.
<<lessTheres only one world with one set of objects - if you drop something on a page, someone else can visit that page, see the object, and carry it away elsewhere.
Main features:
Social sites
- Build visualized, real multi-user communities, fora and chat rooms. See your buddies wander around.
E-commerce and site assistant applications
- Make easy-to-use product and shopping cart pages. Have automated and/or real person site assistants stand by to assist your customers and increase sales.
Game environments
- From card games to virtual RPG worlds, DutchPIPE makes it possible.
User areas
- Let people make their own "area" - pages, objects, actions, etc., without technical knowledge.
Site monitoring, snooping
- Track where people are going and what they are doing. Improve your processes. Be invisible, or run DutchPIPE invisible for visitors. Snoop visitors: see an exact copy of a visitors browser window, including mouse movements. Beware of the privacy implications!
Developers platform extraordinaire
- Persistent state, object-oriented building gives way to a whole new way of developing DOM web applications. In other words...
Enhancements:
- An option for using the MDB2 database abstraction layer from PHPs PEAR library was added.
- DutchPIPE now supports MySQL, MySQLi, PostgreSQL, Oracle, Frontbase, Querysim, Interbase/Firebird, MSSQL, and SQLite.
- More administrator commands were added.
- UTF-8 support was debugged.
Download (0.97MB)
Added: 2007-08-22 License: MIT/X Consortium License Price:
795 downloads
VTKImaging 4.0.001
VTKImaging is a Perl interface to VTKImaging library. more>>
VTKImaging is a Perl interface to VTKImaging library.
Graphics::VTK::BooleanTexture
Inherits from StructuredPointsSource
Functions Supported for this class by the PerlVTK module: (To find more about their use check the VTK documentation at http://www.kitware.com.)
const char *GetClassName ();
unsigned char *GetInIn ();
(Returns a 2-element Perl list)
unsigned char *GetInOn ();
(Returns a 2-element Perl list)
unsigned char *GetInOut ();
(Returns a 2-element Perl list)
unsigned char *GetOnIn ();
(Returns a 2-element Perl list)
unsigned char *GetOnOn ();
(Returns a 2-element Perl list)
unsigned char *GetOnOut ();
(Returns a 2-element Perl list)
unsigned char *GetOutIn ();
(Returns a 2-element Perl list)
unsigned char *GetOutOn ();
(Returns a 2-element Perl list)
unsigned char *GetOutOut ();
(Returns a 2-element Perl list)
int GetThickness ();
int GetXSize ();
int GetYSize ();
vtkBooleanTexture *New ();
void SetInIn (unsigned char , unsigned char );
void SetInOn (unsigned char , unsigned char );
void SetInOut (unsigned char , unsigned char );
void SetOnIn (unsigned char , unsigned char );
void SetOnOn (unsigned char , unsigned char );
void SetOnOut (unsigned char , unsigned char );
void SetOutIn (unsigned char , unsigned char );
void SetOutOn (unsigned char , unsigned char );
void SetOutOut (unsigned char , unsigned char );
void SetThickness (int );
void SetXSize (int );
void SetYSize (int );
vtkBooleanTexture Unsupported Funcs:
Functions which are not supported supported for this class by the PerlVTK module.
void PrintSelf (ostream &os, vtkIndent indent);
I/O Streams not Supported yet
void SetInIn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetInOn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetInOut (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOnIn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOnOn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOnOut (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOutIn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOutOn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOutOut (unsigned char a[2]);
Arg types of unsigned char * not supported yet
<<lessGraphics::VTK::BooleanTexture
Inherits from StructuredPointsSource
Functions Supported for this class by the PerlVTK module: (To find more about their use check the VTK documentation at http://www.kitware.com.)
const char *GetClassName ();
unsigned char *GetInIn ();
(Returns a 2-element Perl list)
unsigned char *GetInOn ();
(Returns a 2-element Perl list)
unsigned char *GetInOut ();
(Returns a 2-element Perl list)
unsigned char *GetOnIn ();
(Returns a 2-element Perl list)
unsigned char *GetOnOn ();
(Returns a 2-element Perl list)
unsigned char *GetOnOut ();
(Returns a 2-element Perl list)
unsigned char *GetOutIn ();
(Returns a 2-element Perl list)
unsigned char *GetOutOn ();
(Returns a 2-element Perl list)
unsigned char *GetOutOut ();
(Returns a 2-element Perl list)
int GetThickness ();
int GetXSize ();
int GetYSize ();
vtkBooleanTexture *New ();
void SetInIn (unsigned char , unsigned char );
void SetInOn (unsigned char , unsigned char );
void SetInOut (unsigned char , unsigned char );
void SetOnIn (unsigned char , unsigned char );
void SetOnOn (unsigned char , unsigned char );
void SetOnOut (unsigned char , unsigned char );
void SetOutIn (unsigned char , unsigned char );
void SetOutOn (unsigned char , unsigned char );
void SetOutOut (unsigned char , unsigned char );
void SetThickness (int );
void SetXSize (int );
void SetYSize (int );
vtkBooleanTexture Unsupported Funcs:
Functions which are not supported supported for this class by the PerlVTK module.
void PrintSelf (ostream &os, vtkIndent indent);
I/O Streams not Supported yet
void SetInIn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetInOn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetInOut (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOnIn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOnOn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOnOut (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOutIn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOutOn (unsigned char a[2]);
Arg types of unsigned char * not supported yet
void SetOutOut (unsigned char a[2]);
Arg types of unsigned char * not supported yet
Download (0.66MB)
Added: 2007-07-19 License: Perl Artistic License Price:
827 downloads
ExactImage 0.4.0
Exact Image is a fast (and soon modern and generic) image processing library. more>>
Exact Image is a fast (and soon modern and generic) image processing library. For a client we had to optimize the insane time imagemagick spent on certain image processing tasks. After the first code review it became clear that imagemagick was coded for anything but speed.
We protoyped the needed code in C++, just for speed, and archived processing times about 1/20 of what imagemagick consumes.
It is intended to become a modern, generic (template) based C++ library, when time permits. - Hopefully a viable alternative to ImageMagick.
Enhancements:
- Image segmentation and fuzzy image contour pattern matching were added.
- Support for rendering arbitrary vector pathes and text was added through Anti-Grain-Geometry integration.
- The X- and Y-axis flip optimizations were implemented for 16-bit channels, as well as functions to change contrast, brightness, gamma, hue, saturation, and lightness, and invert images.
- The convolution matrix was exported to the CLI econvert.
<<lessWe protoyped the needed code in C++, just for speed, and archived processing times about 1/20 of what imagemagick consumes.
It is intended to become a modern, generic (template) based C++ library, when time permits. - Hopefully a viable alternative to ImageMagick.
Enhancements:
- Image segmentation and fuzzy image contour pattern matching were added.
- Support for rendering arbitrary vector pathes and text was added through Anti-Grain-Geometry integration.
- The X- and Y-axis flip optimizations were implemented for 16-bit channels, as well as functions to change contrast, brightness, gamma, hue, saturation, and lightness, and invert images.
- The convolution matrix was exported to the CLI econvert.
Download (0.15MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
811 downloads
libpwmd 4.0.2
libpwmd is a library that makes it easy to patch applications to use pwmd (Password Manager Daemon). more>>
libpwmd is a library that makes it easy to patch applications to use pwmd (Password Manager Daemon). The project supports password retrieval from a pinentry program.
<<less Download (0.34MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
801 downloads
JPasswords 0.4.0
JPasswords is a password management program with encrypted databases. more>>
JPasswords is a password management program with encrypted databases. JPasswords project allows you to securely store passwords or passphrases, together with related management data like username, entry title, dates and textual notes, on an encrypted disk file. Access to such a file is protected by a single secret key that you define resp. can change at any time.
Password entries may be ordered within groups (which can be nested) and displayed in tree or in table view. Upon retrieval of a password, the program assists you by a "copy to clipboard" function to make password or username quickly available in other applications. Several useful service functions around file management, like copy, merge, backup and restore, make this program a pleasure to use.
The format and encryption method for the database file is compatible with "Password Safe" (Version 2) files as created by CounterPanes (Bruce Schneier) program of the same name.
Main features:
- Maximum passphrase length: undefined
- Text and passphrase formatting: Unicode, platform- and locale-independent (not for file access key which is formatted on the local charset)
- Maximum number of records: limited by given user environment space (main memory or disk space)
- Encryption algorithm: Blowfish CBC (Bruce Schneier), 8-byte block modification scheme; complete regeneration with every save action
- File access shield: SHA-1, Blowfish EBC
- Data security: automatic backup, manual backup and restore
- Data communication: can export and import records over CSV format (RFC-4180 or spreadsheet)
- Application security: automatic program locking (idle time and minimize), manual program locking, covered text storage
- Passwords: automatic random password generation under various aspects
- GUI Languages: English, German, Russian, French
<<lessPassword entries may be ordered within groups (which can be nested) and displayed in tree or in table view. Upon retrieval of a password, the program assists you by a "copy to clipboard" function to make password or username quickly available in other applications. Several useful service functions around file management, like copy, merge, backup and restore, make this program a pleasure to use.
The format and encryption method for the database file is compatible with "Password Safe" (Version 2) files as created by CounterPanes (Bruce Schneier) program of the same name.
Main features:
- Maximum passphrase length: undefined
- Text and passphrase formatting: Unicode, platform- and locale-independent (not for file access key which is formatted on the local charset)
- Maximum number of records: limited by given user environment space (main memory or disk space)
- Encryption algorithm: Blowfish CBC (Bruce Schneier), 8-byte block modification scheme; complete regeneration with every save action
- File access shield: SHA-1, Blowfish EBC
- Data security: automatic backup, manual backup and restore
- Data communication: can export and import records over CSV format (RFC-4180 or spreadsheet)
- Application security: automatic program locking (idle time and minimize), manual program locking, covered text storage
- Passwords: automatic random password generation under various aspects
- GUI Languages: English, German, Russian, French
Download (0.39MB)
Added: 2006-12-06 License: GPL (GNU General Public License) Price:
1053 downloads
TaskJuggler 2.4.0
Taskjuggler is a project management tool for Linux and UNIX system-based operating systems. more>>
Taskjuggler is a project management tool for Linux and UNIX system-based operating systems. Whether you want to plan your colleges shifts for the next month or want to build a skyscraper - Taskjuggler is the tool for you.
Instead of clicking yourself painfully through hundreds of dialog boxes you specify your Taskjuggler project in a simple text format. You simply list all your tasks and their dependencies. The resulting schedule is then presented as GANTT chart, Table, HTML, XML or CSV report.
Taskjuggler does not only honor the task interdependencies but also takes resource constrains into account. Using Taskjugglers powerful filtering and reporting algorithms you can create task lists, resource usage tables, status reports, project calendars and project accounting statements.
Main features:
- Automatic scheduling of interdependent tasks with resource conflict solver.
- Powerful project description syntax with macro support.
- Flexible working hours and vacation handling.
- Support for shifts.
- Multiple time zone support.
- Flexible resource grouping.
- Project accounting support.
- Task may have initial costs, finishing costs.
- Resource may have running costs.
- Support for simple profit/loss analysis.
- HTML and XML report generation.
- Support for plan and actual scenario comparisons.
- Project tracking support.
- Groupware support by using a revision control system such as CVS or RCS on the project description files.
- Support for central resource allocation database.
<<lessInstead of clicking yourself painfully through hundreds of dialog boxes you specify your Taskjuggler project in a simple text format. You simply list all your tasks and their dependencies. The resulting schedule is then presented as GANTT chart, Table, HTML, XML or CSV report.
Taskjuggler does not only honor the task interdependencies but also takes resource constrains into account. Using Taskjugglers powerful filtering and reporting algorithms you can create task lists, resource usage tables, status reports, project calendars and project accounting statements.
Main features:
- Automatic scheduling of interdependent tasks with resource conflict solver.
- Powerful project description syntax with macro support.
- Flexible working hours and vacation handling.
- Support for shifts.
- Multiple time zone support.
- Flexible resource grouping.
- Project accounting support.
- Task may have initial costs, finishing costs.
- Resource may have running costs.
- Support for simple profit/loss analysis.
- HTML and XML report generation.
- Support for plan and actual scenario comparisons.
- Project tracking support.
- Groupware support by using a revision control system such as CVS or RCS on the project description files.
- Support for central resource allocation database.
Download (1.2MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
866 downloads
DrawPile 0.4.0
DrawPile is a collaborative drawing program, similar to OpenCanvas. more>>
DrawPile is a collaborative drawing program, similar to OpenCanvas. It is currently under planning stages. DrawPile project will use Qt4 and will be available for Windows, Linux and MacOS.
<<less Download (0.16MB)
Added: 2007-04-10 License: MIT/X Consortium License Price:
931 downloads
RailRoad 0.4.0
RailRoad is a class diagram generator for Ruby on Rails applications. more>>
RailRoad is a class diagram generator for Ruby on Rails applications. The project produces diagrams of controllers and models as DOT graphs.
Enhancements:
- Diagram generation was made more flexible for large/complex systems.
- Error handling was improved.
<<lessEnhancements:
- Diagram generation was made more flexible for large/complex systems.
- Error handling was improved.
Download (0.017MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
911 downloads
gx 0.4.0
gx project is a little image viewer for GNOME. more>>
gx project is a little image viewer for GNOME. I wrote it to learn gtkmm (the C++ wrapper for the GTK+ api). It can rotate, rescale, and zoom in/out an image. It currently supports one image at a time.
gx is Free Software, redistribution and use in source and binary forms, with or without modification, are permitted under a BSDL license.
<<lessgx is Free Software, redistribution and use in source and binary forms, with or without modification, are permitted under a BSDL license.
Download (0.27MB)
Added: 2007-06-08 License: BSD License Price:
868 downloads
jLogo 2.4.0
jLogo is a Java-based multimedia LOGO interpreter. more>>
jLogo is a LOGO interpreter, featuring as many turtles as you want, color graphics, graphical text tools, and multichannel sound.
jLogo project is available in French and English.
<<lessjLogo project is available in French and English.
Download (0.70MB)
Added: 2005-11-24 License: Freeware Price:
1430 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 discoverstation 4.0 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