3.9
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 65
TightVNC 1.3.9
TightVNC is a VNC distribution with many new features, improvements, and bugfixes over VNC. more>>
TightVNC project is a free remote control software package derived from the popular VNC software. With TightVNC, you can see the desktop of a remote machine and control it with your local mouse and keyboard, just like you would do it sitting in the front of that computer.
Main features:
- free, GPL-licensed, with full source code available;
- useful in remote administration, remote customer support, education, and for many other purposes;
- cross-platform, available for Windows and Unix, compatible with other VNC software;
- well maintained and being actively developed.
Enhancements:
- This stable version includes support for the latest RFB protocol version 3.8, VNC4-compatible parsing of host:display strings, and a number of bugfixes and portability fixes.
- Also, there was many changes in the built-in Java viewer such as scaling, automatic encoding selection, support for ZRLE encoding, and a workaround for a Tab key problem.
<<lessMain features:
- free, GPL-licensed, with full source code available;
- useful in remote administration, remote customer support, education, and for many other purposes;
- cross-platform, available for Windows and Unix, compatible with other VNC software;
- well maintained and being actively developed.
Enhancements:
- This stable version includes support for the latest RFB protocol version 3.8, VNC4-compatible parsing of host:display strings, and a number of bugfixes and portability fixes.
- Also, there was many changes in the built-in Java viewer such as scaling, automatic encoding selection, support for ZRLE encoding, and a workaround for a Tab key problem.
Download (0.75MB)
Added: 2007-05-08 License: GPL (GNU General Public License) Price:
916 downloads
ProGuard 3.9 / 4.0 Beta
ProGuard is a Java class file shrinker and obfuscator. more>>
ProGuard is a free Java class file shrinker, optimizer, and obfuscator. ProGuard project can detect and remove unused classes, fields, methods, and attributes. It can then optimize bytecode and remove unused instructions.
Finally, it can rename the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
More compact jar files also means smaller storage requirements, faster transfer of applications across networks, faster loading, and smaller memory footprints.
ProGuards main advantage compared to other Java obfuscators is probably its compact template-based configuration. A few intuitive command line options or a simple configuration file are usually sufficient. For instance, the following configuration option preserves all applets in a jar:
-keep public class * extends java.applet.Applet
The user manual explains all available options and shows more examples of this powerful configuration style.
ProGuard is fast. It only takes seconds to process programs and libraries of several megabytes. The results section presents actual figures for a number of applications.
ProGuard is a command-line tool with an optional graphical user interface. It also comes with plugins for Ant and for the J2ME Wireless Toolkit.
ProGuard is a Java class file shrinker, optimizer, and obfuscator. The shrinking step detects and removes unused classes, fields, methods, and attributes. The optimization step analyzes and optimizes the bytecode of the methods. The obfuscation step renames the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
ProGuard can also be used to list unused fields and methods in an application, and to print out the internal structure of class files.
ProGuard typically reads the input jars (or wars, ears, zips, or directories). It then shrinks, optimizes, and obfuscates them. It then writes the results to one or more output jars (or wars, ears, zips, or directories). The input jars can optionally contain resource files. ProGuard copies all non-class resource files from the input jars to the output jars. Their names and contents remain unchanged.
ProGuard requires the library jars (or wars, ears, zips, or directories) of the input jars to be specified. It can then reconstruct class hierarchies and other class dependencies, which are necessary for proper shrinking, optimization, and obfuscation. The library jars themselves always remain unchanged. You should still put them in the class path of your final application.
In order to determine which code has to be preserved and which code can be discarded or obfuscated, you have to specify one or more entry points to your code. These entry points are typically classes with main methods, applets, midlets, etc.
- In the shrinking step, ProGuard starts from these seeds and recursively determines which classes and class members are used. All other classes and class members are discarded.
- In the optimization step, ProGuard further optimizes the code. Among other optimizations, classes and methods that are not entry points can be made final, and some methods may be inlined.
- In the obfuscation step, ProGuard renames classes and class members that are not entry points. In this entire process, keeping the entry points ensures that they can still be accessed by their original names.
Any classes or class members of your code that are created or invoked dynamically (that is, by name) have to be specified as entry points too. It is generally impossible to determine these cases automatically, but ProGuard will offer some suggestions if keeping some classes or class members appears necessary. For proper results, you should at least be somewhat familiar with the code that you are processing.
ProGuard does handle Class.forName("SomeClass") and SomeClass.class constructs automatically. The referenced classes are preserved in the shrinking phase, and the string arguments are properly replaced in the obfuscation phase. With variable string arguments, it is generally impossible to determine their possible values (they might be read from a configuration file, for instance).
However, as mentioned, ProGuard will note constructs like "(SomeClass)Class.forName(variable).newInstance()". These might be an indication that the class or interface SomeClass and/or its implementations may need to be preserved. You can then adapt your configuration accordingly.
Whats New in 3.9 Stable Release:
- This release fixes a number of bugs.
- Notably, ".class" constructs compiled in Java 6 are now handled correctly.
- The optimization step now avoids a possible division by 0 and correctly processes local variables with indices larger than 255.
- The documentation and examples have been updated.
Whats New in 4.0 Beta Development Release:
- Added preverifier for Java 6 and Java Micro Edition, with new option -dontpreverify.
- Added new option -target to modify java version of processed class files.
- Made -keep options more orthogonal and flexible, with option modifiers allowshrinking, allowoptimization, and allowobfuscation.
- Added support for configuration by means of annotations.
- Improved shrinking of unused annotations.
- Added check on modification times of input and output, to avoid unnecessary processing, with new option -forceprocessing.
- Added new options -flattenpackagehierarchy and -repackageclasses (replacing -defaultpackage) to control obfuscation of packages names.
- Added new options -adaptresourcefilenames and -adaptresourcefilecontents, with file filters, to update resource files corresponding to obfuscated class names.
- Now respecting naming rule for nested class names (EnclosingClass$InnerClass) in obfuscation step, if InnerClasses attributes or EnclosingMethod attributes are being kept.
- Added new inter-procedural optimizations: method inlining and propagation of constant fields, constant arguments, and constant return values.
- Added optimized local variable allocation.
- Added over 250 new peephole optimizations.
- Improved making classes and class members public or protected.
- Now printing notes on suspiciously unkept classes in parameters of specified methods.
- Now printing notes for class names that dont seem to be fully qualified.
- Added support for uppercase filename extensions.
- Rewritten class file I/O code.
- Updated documentation and examples.
<<lessFinally, it can rename the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
More compact jar files also means smaller storage requirements, faster transfer of applications across networks, faster loading, and smaller memory footprints.
ProGuards main advantage compared to other Java obfuscators is probably its compact template-based configuration. A few intuitive command line options or a simple configuration file are usually sufficient. For instance, the following configuration option preserves all applets in a jar:
-keep public class * extends java.applet.Applet
The user manual explains all available options and shows more examples of this powerful configuration style.
ProGuard is fast. It only takes seconds to process programs and libraries of several megabytes. The results section presents actual figures for a number of applications.
ProGuard is a command-line tool with an optional graphical user interface. It also comes with plugins for Ant and for the J2ME Wireless Toolkit.
ProGuard is a Java class file shrinker, optimizer, and obfuscator. The shrinking step detects and removes unused classes, fields, methods, and attributes. The optimization step analyzes and optimizes the bytecode of the methods. The obfuscation step renames the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
ProGuard can also be used to list unused fields and methods in an application, and to print out the internal structure of class files.
ProGuard typically reads the input jars (or wars, ears, zips, or directories). It then shrinks, optimizes, and obfuscates them. It then writes the results to one or more output jars (or wars, ears, zips, or directories). The input jars can optionally contain resource files. ProGuard copies all non-class resource files from the input jars to the output jars. Their names and contents remain unchanged.
ProGuard requires the library jars (or wars, ears, zips, or directories) of the input jars to be specified. It can then reconstruct class hierarchies and other class dependencies, which are necessary for proper shrinking, optimization, and obfuscation. The library jars themselves always remain unchanged. You should still put them in the class path of your final application.
In order to determine which code has to be preserved and which code can be discarded or obfuscated, you have to specify one or more entry points to your code. These entry points are typically classes with main methods, applets, midlets, etc.
- In the shrinking step, ProGuard starts from these seeds and recursively determines which classes and class members are used. All other classes and class members are discarded.
- In the optimization step, ProGuard further optimizes the code. Among other optimizations, classes and methods that are not entry points can be made final, and some methods may be inlined.
- In the obfuscation step, ProGuard renames classes and class members that are not entry points. In this entire process, keeping the entry points ensures that they can still be accessed by their original names.
Any classes or class members of your code that are created or invoked dynamically (that is, by name) have to be specified as entry points too. It is generally impossible to determine these cases automatically, but ProGuard will offer some suggestions if keeping some classes or class members appears necessary. For proper results, you should at least be somewhat familiar with the code that you are processing.
ProGuard does handle Class.forName("SomeClass") and SomeClass.class constructs automatically. The referenced classes are preserved in the shrinking phase, and the string arguments are properly replaced in the obfuscation phase. With variable string arguments, it is generally impossible to determine their possible values (they might be read from a configuration file, for instance).
However, as mentioned, ProGuard will note constructs like "(SomeClass)Class.forName(variable).newInstance()". These might be an indication that the class or interface SomeClass and/or its implementations may need to be preserved. You can then adapt your configuration accordingly.
Whats New in 3.9 Stable Release:
- This release fixes a number of bugs.
- Notably, ".class" constructs compiled in Java 6 are now handled correctly.
- The optimization step now avoids a possible division by 0 and correctly processes local variables with indices larger than 255.
- The documentation and examples have been updated.
Whats New in 4.0 Beta Development Release:
- Added preverifier for Java 6 and Java Micro Edition, with new option -dontpreverify.
- Added new option -target to modify java version of processed class files.
- Made -keep options more orthogonal and flexible, with option modifiers allowshrinking, allowoptimization, and allowobfuscation.
- Added support for configuration by means of annotations.
- Improved shrinking of unused annotations.
- Added check on modification times of input and output, to avoid unnecessary processing, with new option -forceprocessing.
- Added new options -flattenpackagehierarchy and -repackageclasses (replacing -defaultpackage) to control obfuscation of packages names.
- Added new options -adaptresourcefilenames and -adaptresourcefilecontents, with file filters, to update resource files corresponding to obfuscated class names.
- Now respecting naming rule for nested class names (EnclosingClass$InnerClass) in obfuscation step, if InnerClasses attributes or EnclosingMethod attributes are being kept.
- Added new inter-procedural optimizations: method inlining and propagation of constant fields, constant arguments, and constant return values.
- Added optimized local variable allocation.
- Added over 250 new peephole optimizations.
- Improved making classes and class members public or protected.
- Now printing notes on suspiciously unkept classes in parameters of specified methods.
- Now printing notes for class names that dont seem to be fully qualified.
- Added support for uppercase filename extensions.
- Rewritten class file I/O code.
- Updated documentation and examples.
Download (MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
905 downloads
Floola 5.3
Floola provides you with a powerful and easy-to-use freeware application which is an effective way to manage your iPod or your Motorola mobile phone (any model supporting iTunes except iPhone and iPod touch). more>>
Floola 5.3 provides you with a powerful and easy-to-use freeware application which is an effective way to manage your iPod or your Motorola mobile phone (any model supporting iTunes except iPhone and iPod touch). It's a standalone application that can be run directly from your iPod and needs no installation under Linux (any GTK2 distro), Mac OS X (10.3.9 or newer!) and Windows (98 or newer, including Vista).
Major Features:
- Cross plattform: Works on any Windows (98 and above), any Mac and any linux distribution with GTK installed.
- Portable: Put the application on iPod and launch it on any PC, immediately.
- Copy: add and extract songs to and from iPod.
- Playlists: Easily manage, import and export (m3u, pls) playlists.
- Last.fm: Join the social music revolution.
- Podcasts: Join the social music revolution.
- Web videos: dd files to iPod just copying the page url
- Localization: Available in different languages.
- Lyrics: Lyric support even on older iPods (3G and above).
- Search for duplicates: Easily find duplicated songs on iPod.
- Search lost files: Easily find songs lost in your iPod.
- Artwork: Add artwork to your songs easily.
- Videos: Videos can be added to iPod.
- Convert: Convert audio and video incompatible formats Google Calendars Synchronize them easily
- Export to HTML: Create HTML files containing list of your iPod files
- Fix iPod: Did a software mess up your iPod? Fix it!
- Notes: Manage notes.
- Growl support: (Mac version only) Get beautiful system notifications.
- Snarl support: (Windows version only) Get beautiful system notifications.
- Music: Play iPod's music.
- Photos: Freedom to simply add photos to iPod.
Enhancements:
- Significant usability performance improvements
- Many bug fixes.
Added: 2009-07-26 License: Freeware Price: FREE
574 downloads
eZ publish 3.9.1
eZ publish is an open source content management system and development framework. more>>
eZ publish is a popular open source content management system and development framework. eZ publish project is distributed, developed and supported by eZ systems. eZ systems is a commercial company, founded by experienced and open-minded people. The company builds its business by providing services around the eZ publish system. For more information about eZ systems, read the "What is eZ systems?" section.
eZ publish allows the development of highly professional and customized internet solutions and dynamic web applications. It can be used to build anything from a personal homepage to a multinational corporate website with role based multiuser access, online shopping, discussion forums and other advanced functionality. In addition, because of its nature of openness, eZ publish can be easily plugged into, communicate and coexist with existing IT-solutions.
eZ publish comes with a wide range of advanced built-in features, which make it possible to develop professional, complex, secure and reliable solutions within a short amount of time. In addition to the built-in features, the system allows for extensions and custom modifications in almost any direction. Unlike other content management systems, eZ publish delivers a flexible, generic solution with very few limitations. In other words, this is a scalable and dynamic system that companies and organizations can grow with.
eZ publish is platform independent. It can be used on Windows and several UNIX variants such as OS X, Linux, FreeBSD, Solaris, IRIX, etc. In addition, eZ publish is also database independent; if a specific database isnt supported, it is possible to write a driver without modifying any kernel code.
eZ publish is open software, supporting open standards. The software is constructed following strict development processes in order to ensure high technical quality and usability.
eZ publish is dual licensed. There is a GPL (General Public License) and a professional license. Using the GPL license, people can build their own open source applications and thereby contribute to the development of free and open software. The professional license allows companies to make and sell commercial software that is developed using and/or built upon the eZ publish system.
Enhancements:
- Several bugfixes and enhancements.
- The command line package tool ezpm.php has been updated: list, import, and install commands have been changed to match the admin interface functionality.
- The ezinstallscript and ezextension items are supported by the add command. ezpm is allowed to set the vendor.
- Enhancement #010347 (progress output for correctxmltext.php and updatetypedrelation.php) has been implemented.
<<lesseZ publish allows the development of highly professional and customized internet solutions and dynamic web applications. It can be used to build anything from a personal homepage to a multinational corporate website with role based multiuser access, online shopping, discussion forums and other advanced functionality. In addition, because of its nature of openness, eZ publish can be easily plugged into, communicate and coexist with existing IT-solutions.
eZ publish comes with a wide range of advanced built-in features, which make it possible to develop professional, complex, secure and reliable solutions within a short amount of time. In addition to the built-in features, the system allows for extensions and custom modifications in almost any direction. Unlike other content management systems, eZ publish delivers a flexible, generic solution with very few limitations. In other words, this is a scalable and dynamic system that companies and organizations can grow with.
eZ publish is platform independent. It can be used on Windows and several UNIX variants such as OS X, Linux, FreeBSD, Solaris, IRIX, etc. In addition, eZ publish is also database independent; if a specific database isnt supported, it is possible to write a driver without modifying any kernel code.
eZ publish is open software, supporting open standards. The software is constructed following strict development processes in order to ensure high technical quality and usability.
eZ publish is dual licensed. There is a GPL (General Public License) and a professional license. Using the GPL license, people can build their own open source applications and thereby contribute to the development of free and open software. The professional license allows companies to make and sell commercial software that is developed using and/or built upon the eZ publish system.
Enhancements:
- Several bugfixes and enhancements.
- The command line package tool ezpm.php has been updated: list, import, and install commands have been changed to match the admin interface functionality.
- The ezinstallscript and ezextension items are supported by the add command. ezpm is allowed to set the vendor.
- Enhancement #010347 (progress output for correctxmltext.php and updatetypedrelation.php) has been implemented.
Download (28MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
1226 downloads
DeleGate 9.9.3 / 9.9.4 Pre11
universal application level gateway, or proxy server which can relay most of fundamental application protocols used in the Internet more>> <<less
Added: 2009-07-21 License: Freely Distributable Price: FREE
13 downloads
tcpdump 3.9.7
tcpdump is a packet filtering library that works with libcap. more>>
tcpdump is a handy little library which provides a packet filtering mechanism based on the BSD packet filter (BPF).
Most notably, tcpdump needs this to work, and there is also a perl module (still in beta) which can use this as well. In plain english, if you want to write your own network traffic analyzer, this is the place to start.
<<lessMost notably, tcpdump needs this to work, and there is also a perl module (still in beta) which can use this as well. In plain english, if you want to write your own network traffic analyzer, this is the place to start.
Download (0.85MB)
Added: 2007-07-24 License: BSD License Price:
826 downloads
gDVDshrink 0.3-9
gDVDshrink is a DVD backup tool. more>>
gDVDshrink is a very simple application that lets you choose your favourite DVD title, its audio tracks and, hopefully, subtitles in the future, and then recompresses the MPEG-2 video stream quickly so that the newly reauthored DVD fits on an 4.2 GB onle-layer DVD.
Enjoy and send bugs... gDVDshrink uses mplayer for title previewing, lsdvd for getting the information about the source DVD, and vamps for straming and recompressing the final DVD.
<<lessEnjoy and send bugs... gDVDshrink uses mplayer for title previewing, lsdvd for getting the information about the source DVD, and vamps for straming and recompressing the final DVD.
Download (0.021MB)
Added: 2006-08-04 License: GPL (GNU General Public License) Price:
1176 downloads
prerex 3.9
prerex project is an interactive (command-line) editor and a LaTeX macro support package. more>>
prerex project is an interactive (command-line) editor and a LaTeX macro support package that can be used to create very attractive and readable prerequisite charts.
A prerequisite chart is a network of course boxes linked by prerequisite and co-requisite arrows.
Enhancements:
- The patch for kpdf has been modified so that correct chart coordinates are returned when the document display is smaller than the kpdf window.
<<lessA prerequisite chart is a network of course boxes linked by prerequisite and co-requisite arrows.
Enhancements:
- The patch for kpdf has been modified so that correct chart coordinates are returned when the document display is smaller than the kpdf window.
Download (0.093MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
Libtasn1 0.3.9
Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages. more>>
Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages.
Libtasn1 was written by Fabio Fiorina, and has been shipped as part of GnuTLS. Libtasn1 didnt have its own home page until now. It is currently maintained by Simon Josefsson.
The goal of this implementation is to be highly portable, and only require an ANSI C89 platform.
Enhancements:
- In generated code, config.h is now pulled if HAVE_CONFIG_H is set.
- Autoconf 2.61 and automake 1.10 are now required.
- Development has changed from CVS to GIT as an experiment.
<<lessLibtasn1 was written by Fabio Fiorina, and has been shipped as part of GnuTLS. Libtasn1 didnt have its own home page until now. It is currently maintained by Simon Josefsson.
The goal of this implementation is to be highly portable, and only require an ANSI C89 platform.
Enhancements:
- In generated code, config.h is now pulled if HAVE_CONFIG_H is set.
- Autoconf 2.61 and automake 1.10 are now required.
- Development has changed from CVS to GIT as an experiment.
Download (1.2MB)
Added: 2007-03-02 License: LGPL (GNU Lesser General Public License) Price:
968 downloads
Mtools 3.9.11
Mtools is a collection of utilities to access MS-DOS disks from Unix without mounting them. more>>
Mtools is a collection of utilities to access MS-DOS disks from Unix without mounting them. The project supports Win95 style long file names, OS/2 Xdf disks and 2m disks (store up to 1992k on a high density 3 1/2 disk).
Mtools can now handle the long filenames of Windows NT and Windows 95. Mtools is maintained by David Niemi and me (Alain Knaff). Mtools-3.9.9 has been released on March 3rd, 2003.
Enhancements:
- This is mostly a maintainance release which fixes a couple of bugs, addresses warnings raised by gcc4, and merges some platform-specific patches (MingW, NetBSD, Redhat/Fedora, Cygwin, Solaris).
<<lessMtools can now handle the long filenames of Windows NT and Windows 95. Mtools is maintained by David Niemi and me (Alain Knaff). Mtools-3.9.9 has been released on March 3rd, 2003.
Enhancements:
- This is mostly a maintainance release which fixes a couple of bugs, addresses warnings raised by gcc4, and merges some platform-specific patches (MingW, NetBSD, Redhat/Fedora, Cygwin, Solaris).
Download (0.38MB)
Added: 2007-06-03 License: GPL (GNU General Public License) Price:
929 downloads
EFlite 0.3.9
EFlite is a speech server for Emacspeak and other screen readers that allows them to interface with Festival Lite. more>>
EFlite is a speech server for Emacspeak and other screen readers that allows them to interface with Festival Lite. EFlite is still in beta, but I have been using it successfully with Yasr to get speech on my notebook under Linux without having to lug my Speak-out around. It uses Festival Lites code for the interface with the sound driver and, therefore, should work with some versions of ALSA, but I have only tested it with the OSS sound drivers so far.
Enhancements:
- Corrected INSTALL documentation for Emacspeak 19 and up
- From Jeremy Huddleston :
- es.c: fix EOF bug
- es.c: add -D (daemon) option
- Support shared libraries
<<lessEnhancements:
- Corrected INSTALL documentation for Emacspeak 19 and up
- From Jeremy Huddleston :
- es.c: fix EOF bug
- es.c: add -D (daemon) option
- Support shared libraries
Download (0.050MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1182 downloads
Valknut 0.3.9
Valknut is a peer-2-peer file-sharing program. more>>
Valknut project is a peer-2-peer file-sharing program (similar to Kazaa, Soulseek or eDonkey) that uses the Direct Connect protocol.
It is compatible with other DC clients, such as the original DC from Neomodus, and DC++.
Main features:
- open source
- multiplatform (Linux,Win32,OSX ...)
- multilanguage
- multihub connections
- multihub search
- multi-/chunkdownload (download one file from multiple sources at the same time)
- firewall support
- sounds
- favorite hub list
- online translator
- load/save search results
- autosearch new sources
- socks support for linux (http://www.inet.no/dante/)
- proxy support for hublists
- support bz2 share lists
- support xml share lists
- support ssl transfers
- support ssl hub connections (e.g. hub use sslproxy)
- support secure chat (not secure against "Man In The Middle Attack")
- chat emoticons
- tiger tree hash (TTH) support
<<lessIt is compatible with other DC clients, such as the original DC from Neomodus, and DC++.
Main features:
- open source
- multiplatform (Linux,Win32,OSX ...)
- multilanguage
- multihub connections
- multihub search
- multi-/chunkdownload (download one file from multiple sources at the same time)
- firewall support
- sounds
- favorite hub list
- online translator
- load/save search results
- autosearch new sources
- socks support for linux (http://www.inet.no/dante/)
- proxy support for hublists
- support bz2 share lists
- support xml share lists
- support ssl transfers
- support ssl hub connections (e.g. hub use sslproxy)
- support secure chat (not secure against "Man In The Middle Attack")
- chat emoticons
- tiger tree hash (TTH) support
Download (0.65MB)
Added: 2007-05-30 License: GPL (GNU General Public License) Price:
880 downloads
InstallUtils 0.3.9
InstallUtils is a small script which provides installation methods to be used in the Install.py script for Plone products. more>>
InstallUtils is a small script which provides installation methods to be used in the Install.py script for Plone products.
This is a tiny Plone product that provides some often used methods for an Install.py script. The bundle takes the complexity out of your Install script, into separate, well tested methods.
InstallUtils provides installation methods to be used in the Install.py script for Plone products. The bundle takes the complexity out of your installation script, into separately reused and tested installer methods. This greatly enhances the stability of your installation procedures and simplifies your Install.py script.
The bundle provides numerous methods often used in an installation procedure, like installing external methods, new portal roles, workflows, properties on new or existing property sheets, and installing complete content structures during installation.
All methods are coded in separate files, and are imported from the utils.py
file.
If you wish to add your own methods, please be so kind as to obey the following
rules, then send us the method:
- add python doc;
- add code comments;
- add print statements when starting your method, and when ending your install, and in between whatever youre installing;
- have a beer.
Enhancements:
- installWorkflows doesnt automatically update the rolemappings, unless
- overridden with (extra) parameter.
<<lessThis is a tiny Plone product that provides some often used methods for an Install.py script. The bundle takes the complexity out of your Install script, into separate, well tested methods.
InstallUtils provides installation methods to be used in the Install.py script for Plone products. The bundle takes the complexity out of your installation script, into separately reused and tested installer methods. This greatly enhances the stability of your installation procedures and simplifies your Install.py script.
The bundle provides numerous methods often used in an installation procedure, like installing external methods, new portal roles, workflows, properties on new or existing property sheets, and installing complete content structures during installation.
All methods are coded in separate files, and are imported from the utils.py
file.
If you wish to add your own methods, please be so kind as to obey the following
rules, then send us the method:
- add python doc;
- add code comments;
- add print statements when starting your method, and when ending your install, and in between whatever youre installing;
- have a beer.
Enhancements:
- installWorkflows doesnt automatically update the rolemappings, unless
- overridden with (extra) parameter.
Download (0.008MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
984 downloads
cabletv 1.3.9
CableTV is a CableCrypt decoder for Linux. more>>
CableTV is a CableCrypt decoder for Linux. It has been tested with BT878 cards under kernel 2.2.x and 2.4.x, and provides full decryption of Wiener Telekabel Telekino (Austria), but reported to work with many stations over europe. It works yet only with PAL. Chroma and polarity inversion is supported. It has support for color MMX decoding and b/w x86 assembler decoding.
Enhancements:
- fixed compile errors with gcc-2.95.x
- reduced audio on 10 sec. delay to 1 sec.
- support for long options
- use pci utils for bt848 address (Manuel Estrada Sainz)
- drop root privilege ASAP (Manuel Estrada Sainz)
- STRANGE_SYNC_PROBLEMS patch (Manuel Estrada Sainz)
- debianized with help from Manuel Estrada Sainz
- inline MMX and asm locking stuff, we dont need nasm anymore, yes!
- enabled old C decode routine, maybe we get it to run on another platform than i386
- made code ANSI C conform, compiles now with -ansi
- added initial autoconf support
- changed default decode routine to -r4
- major code cleanup in cablecrypt-*.c files
- add PAL interpolation to C mode (option -r2)
<<lessEnhancements:
- fixed compile errors with gcc-2.95.x
- reduced audio on 10 sec. delay to 1 sec.
- support for long options
- use pci utils for bt848 address (Manuel Estrada Sainz)
- drop root privilege ASAP (Manuel Estrada Sainz)
- STRANGE_SYNC_PROBLEMS patch (Manuel Estrada Sainz)
- debianized with help from Manuel Estrada Sainz
- inline MMX and asm locking stuff, we dont need nasm anymore, yes!
- enabled old C decode routine, maybe we get it to run on another platform than i386
- made code ANSI C conform, compiles now with -ansi
- added initial autoconf support
- changed default decode routine to -r4
- major code cleanup in cablecrypt-*.c files
- add PAL interpolation to C mode (option -r2)
Download (0.17MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1205 downloads
hostap 0.3.9
hostap is a Linux driver for wireless LAN cards based on Intersils Prism2/2.5/3 chipset. more>>
This is a Linux driver for wireless LAN cards based on Intersils Prism2/2.5/3 chipset. The driver supports a so called Host AP mode, i.e., it takes care of IEEE 802.11 management functions in the host computer and acts as an access point.
This does not require any special firmware for the wireless LAN card. In addition to this, normal station operations in BSS (infrastructure) and in IBSS (ad hoc). Current version of the Host AP driver and tools supports WPA in AP (Authenticator) and client (Supplicant) modes.
Intersils station firmware for Prism2/2.5/3 chipset supports a so called Host AP mode in which the firmware takes care of time critical tasks like beacon sending and frame acknowledging, but leaves other management tasks to host computer driver.
Main features:
This driver implements basic functionality needed to initialize and configure Prism2/2.5/3-based cards, to send and receive frames, and to gather statistics. In addition, it includes an implementation of following IEEE 802.11 functions:
- authentication (and deauthentication).
- association (reassociation, and disassociation).
- data transmission between two wireless stations.
- power saving (PS) mode signaling and frame buffering for PS stations.
The driver has also various features for development debugging and for researching IEEE 802.11 environments like access to hardware configuration records, I/O registers, and frames with 802.11 headers.
Enhancements:
- fixed background scans (iwlist wlan0 scan) not to break data connection when in host_roaming 2 mode (e.g., when using wpa_supplicant)
- fixed beacon frame when moving from monitor mode to master mode (workaround for firmware bug that left IBSS IE in the Beacon frames)
<<lessThis does not require any special firmware for the wireless LAN card. In addition to this, normal station operations in BSS (infrastructure) and in IBSS (ad hoc). Current version of the Host AP driver and tools supports WPA in AP (Authenticator) and client (Supplicant) modes.
Intersils station firmware for Prism2/2.5/3 chipset supports a so called Host AP mode in which the firmware takes care of time critical tasks like beacon sending and frame acknowledging, but leaves other management tasks to host computer driver.
Main features:
This driver implements basic functionality needed to initialize and configure Prism2/2.5/3-based cards, to send and receive frames, and to gather statistics. In addition, it includes an implementation of following IEEE 802.11 functions:
- authentication (and deauthentication).
- association (reassociation, and disassociation).
- data transmission between two wireless stations.
- power saving (PS) mode signaling and frame buffering for PS stations.
The driver has also various features for development debugging and for researching IEEE 802.11 environments like access to hardware configuration records, I/O registers, and frames with 802.11 headers.
Enhancements:
- fixed background scans (iwlist wlan0 scan) not to break data connection when in host_roaming 2 mode (e.g., when using wpa_supplicant)
- fixed beacon frame when moving from monitor mode to master mode (workaround for firmware bug that left IBSS IE in the Beacon frames)
Download (0.19MB)
Added: 2005-09-19 License: GPL (GNU General Public License) Price:
1500 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 3.9 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