Main > Free Download Search >

Free libresource 2.2 software for linux

libresource 2.2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 480
LibreSource 2.2

LibreSource 2.2


LibreSource is a software platform dedicated to software development and management of distributed communities. more>>
LibreSource is a software platform dedicated to software development and management of distributed communities.
LibreSource offers configuration management with the generic synchronization module So6 from INRIA research. It includes numerous tools dealing with project and user management, including bug trackers, forums, wiki pages, mailing lists, etc. An integrated search engine (Lucene) indexes the data hosted on the platform in full text mode.
With its naming tree, LibreSource makes it possible to hierarchize access to documents and resources. It makes it easy to define public and private areas. Its decentralized approach makes it possible to develop a set of robust applications while disregarding the underlying software architecture.
Enhancements:
- Integration of the Jabber instant messaging (Tigase server and Jeti client). LDAP group resource (map groups of users from LDAP groups).
- Dropbox resource (upload files to a confidential area).
- Form resource (create an electronic form online).
- Smart security rights behaviour. RSS feeds on most of the resources, public or private.
- Files included into a download area are easier to sort and to comment.
- Forums show the thread content inside the response page.
- A best children macro has been added.
- Several bugs have been fixed.
- Performance improvements.
- A smaller memory footprint.
- Better packaging.
<<less
Download (79.4MB)
Added: 2007-05-16 License: QPL (QT Public License) Price:
927 downloads
Ignorance 2.2

Ignorance 2.2


Ignorance is a flexible, powerful content filtering plugin for Gaim. more>>
Ignorance is a content filtering plugin for Gaim. If you love Gaim for chat, but find yourself missing the filtering features of clients like zinc, then Ignorance is for you!

<<less
Download (0.22MB)
Added: 2005-10-21 License: GPL (GNU General Public License) Price:
1463 downloads
Lemuria 1.2.2

Lemuria 1.2.2


Lemuria is an OpenGL visualization for xmms and gmerlin-visualizer. more>>
Lemuria is an OpenGL visualization for xmms and gmerlin-visualizer. Lemuria features animated textures, several backgrounds, and a lot of fun stuff.

It integrates the Xaos fractal engine for making background textures, and can open the goom DLL.

<<less
Download (0.67MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
847 downloads
Esprit 2.2

Esprit 2.2


Esprit project is a Web-based learning management system, with an emphasis on collaborative work and strong pedagogical scenario more>>
Esprit project is a Web-based learning management system, with an emphasis on collaborative work and strong pedagogical scenario.

<<less
Download (1.9MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
943 downloads
VTSurvey 2.2.4

VTSurvey 2.2.4


VTSurvey is a browser-based tool which enables end users to autonomously create and run online surveys or feedback. more>>
VTSurvey is a browser-based tool which enables end users to autonomously create and run online surveys, feedback or registration forms.
By providing a forms-based visual editor, the use of VTSurvey requires no programming knowledge or skills in HTML.
VTSurveys built-in user management system enables it to serve large organizations and facilitates collaborative survey development and administration
Main features:
- Forms-based visual editor for survey creation
- User authentication via internal user database (XML-based) and/or external via LDAP
- Customizable layout (header, footer, colors, styles)
- Enables use of HTML for special-purpose customization (optionally)
- Restrict allowed respondends by user-IDs or shared password (optionally)
- Restrict to only one response per user (optionally)
- E-mail notification for incoming results
- View results online
- Password-protect viewing of results (optionally)
- Export of results to Microsoft Excel, SAS, SPSS or similar (via CSV formats)
- Support for collaborative development (multiple survey admins)
- Internationalization support and translations into many languages
<<less
Download (1.1MB)
Added: 2006-09-05 License: GPL (GNU General Public License) Price:
1144 downloads
XMLBeans 2.2.0

XMLBeans 2.2.0


XMLBeans project is a technology for accessing XML by binding it to Java types. more>>
XMLBeans project is a technology for accessing XML by binding it to Java types. XMLBeans provides several ways to get at the XML, including:
- Through XML schema that has been compiled to generate Java types that represent schema types. In this way, you can access instances of the schema through JavaBeans-style accessors after the fashion of "getFoo" and "setFoo".
- The XMLBeans API also allows you to reflect into the XML schema itself through an XML Schema Object model.
- A cursor model through which you can traverse the full XML infoset.
- Support for XML DOM.
Start off with your own stuff:
If you want to get right to it with your own XML schema and instance, follow these basic steps:
Install XMLBeans.
Compile your schema. Use scomp to compile the schema, generating and jarring Java types. For example, to create a employeeschema.jar from an employeesschema.xsd file:
scomp -out employeeschema.jar employeeschema.xsd
Write code. With the generated JAR on your classpath, write code to bind an XML instance to the Java types representing your schema. Heres an example that would use types generated from an employees schema:
File xmlFile = new File("c:employees.xml");
// Bind the instance to the generated XMLBeans types.
EmployeesDocument empDoc =
EmployeesDocument.Factory.parse(xmlFile);
// Get and print pieces of the XML instance.
Employees emps = empDoc.getEmployees();
Employee[] empArray = emps.getEmployeeArray();
for (int i = 0; i < empArray.length; i++)
{
System.out.println(empArray[i]);
}
Enhancements:
- Updated to the latest XMLSchema.xsd - January 25, 2006
- Updated XmlBeans to work with SaxonB-8.6.1 in place of SaxonB8.1
- XQuery external variable binding support
<<less
Download (MB)
Added: 2007-05-07 License: The Apache License 2.0 Price:
907 downloads
Pieforms 0.2.2

Pieforms 0.2.2


Pieforms project provides a simple, unified way to create, validate and process forms. more>>
Pieforms project provides a simple, unified way to create, validate and process forms all with a common look and feel, with support for pluggable elements, renderers and validation rules.

Huh? What does all that mean?

In simple terms, Pieforms provides a library for building HTML forms. So rather than writing all that HTML yourself for building forms, handling the validation and processing of them in whatever messy, inconsistent way youre doing it currently, you simply define a big hash in your script that describes your form. Pieforms does all of the legwork involved with building the form HTML from this hash (using elements and renderers), and also handles the validation of input using rules. In the general case, after youve defined you form, all you need to do is write a callback function that gets called when the form has been submitted with the data valid according to the rules.

Sounds interesting! Show me an example...

Okay, so youre writing a simple form that has a standard < input type="text" > and a textarea on it, with a submit button. Youd write a script similar to the following:

require_once(pieform.php);
$form = array(
name => myform,
method => get,
elements => array(
text => array(
type => text,
title => Text Element,
description => A little text box for you
rules => array(
required => true
)
),
textarea => array(
type => textarea,
title => Textarea,
defaultvalue => Some default text for the textarea,
rows => 7,
cols => 50
),
submit => array(
type => submit,
value => Submit form!
)
)
);

echo pieform($form);

function myform_submit($values) {
echo "Your submitted values:< br >";
foreach ($values as $key => $value) {
echo "$key: $value< br> ";
}
}

You see how easy that is? You didnt have to write any HTML - in fact, the entire definition is in PHP, which means if you make mistakes theyll show up as parse errors, rather than HTML validity errors (which are generally less often checked for). You only called one function to have everything done for you. And you can write a function to handle submission, full well knowing that the text element will always have a value that isnt the empty string.

After that, the submnit function is almost academic. You just save whatever you want to the database or whatever, and then the last thing you should do is redirect the user somewhere, perhaps to the same page or perhaps elsewhere.

For AJAX forms, all you have to do is add ajaxpost => true in the $form array, and then make your submit function output JSON in the form {error: [false or true], message: some message}, and then exit. Pieforms includes an implementation of json_encode for your convenience.

Okay, that looks easy! What else can it do?

The best part is that the elements, renderers and rules for your forms are pluggable. For example, you could write a wysiwyg element which behaves like the textarea one, but also includes javascript necessary to turn the textarea into a full WYSIWYG editor. Or you could write an element with two select boxes, arrows to move items left and right, and AJAX searching of the boxes. The possibilities are limitless! You can also write your own rules for reuse later (and change how elements respond to those rules if necessary), and write your own renderers (which handle the HTML surrounding the elements), so you can do things like add a little help icon next to each element with a link to a page explaining how the element works.

<<less
Download (MB)
Added: 2007-04-09 License: GPL (GNU General Public License) Price:
929 downloads
Firedrop2 0.2.2

Firedrop2 0.2.2


Firedrop2 is a client-side blog tool that makes it possible to create and maintain your blogs on your PC. more>>
Firedrop2 is a client-side blog tool that makes it possible to create and maintain your blogs on your PC.
Firedrop2 project supports RSS feeds, categories, and archives and accepts HTML, Sextile, Textile, and ReST markup.
It has a powerful macro and templating system and can automatically FTP your blog to a server. A powerful plugin system is provided along with spell checker and emailer plugins.
Main features:
- RSS feed generation
- Categories
- Automatic archive generation
- A powerful set of plugins, including spell checker and emailer
- Entries can be made in text, HTML, ReST, textile or sextile markup
- HTML templating system and macros for all sorts of tricks
- Built in FTP capability for uploading your blog to a server
- Because its written in Python, it is easy to extend Firedrop or create new plugins for it
<<less
Download (1.3MB)
Added: 2006-06-08 License: BSD License Price:
1233 downloads
nbench 2.2.2

nbench 2.2.2


nbench is a byte CPU benchmark. more>>
The benchmark program takes less than 10 minutes to run (on most machines) and compares the system it is run on to two benchmark systems (a Dell Pentium 90 with 256 KB cache running MSDOS and an AMD K6/233 with 512 KB cache running Linux).

The archive contains the complete source, documentation, and a binary (Linux elf). The source has been successfully compiled on various operating systems, including SunOS, DEC Unix 4.0, DEC OSF1, HP-UX, DEC Ultrix, MS-DOS, and of course Linux.

This release is based on the Unix port of beta release 2 of BYTE Magazines BYTEmark benchmark program (previously known as BYTEs Native Mode Benchmarks). The port to Linux/Unix was done by Uwe F. Mayer.

Additional changes to the code were made to make the code work with egcs compiler and to make the software packagable. This is a CPU benchmark providing indexes for integer, floating, and memory performance. It is single-threaded and is not designed to measure the performance gain on multi-processor machines.

Running a "make" will create the binary if all goes well. It is called "nbench" and performs a suite of 10 tests and compares the results to a Dell Pentium 90 with 16 MB RAM and 256 KB L2 cache running MSDOS and compiling with the Watcom 10.0 C/C++ compiler.

If you define -DLINUX during compilation (the default) then you also get a comparison to an AMD K6/233 with 32 MB RAM and 512 KB L2-cache running Linux 2.0.32 and using a binary which was compiled with GNU gcc version 2.7.2.3 and GNU libc-5.4.38.

The algorithms were not changed from the source which was obtained from the BYTE web site at http://www.byte.com/bmark/bmark.htm on December 14, 1996. However, the source was modified to better work with 64-bit machines (in particular the random number generator was modified to always work with 32 bit, no matter what kind of hardware you run it on).

Furthermore, for some of the algorithms additional resettings of the data was added to increase the consistency across different hardware. Some extra debugging code was added, which has no impact on normal runs.

In case there is uneven system load due to other processes while this benchmark suite executes, it might take longer to run than on an unloaded system.

This is because the benchmark does some statistical analysis to make sure that the reported results are statistically significant, and an increased variation in individual runs requires more runs to achieve the required statistical confidence.

This is a single-threaded benchmark and is not designed to measure the performance gain on multi-processor machines.
<<less
Download (0.10MB)
Added: 2005-04-12 License: Freely Distributable Price:
927 downloads
URLex! 0.2.2

URLex! 0.2.2


URLex! is a Firefox extension you are able to leave a comment regarding any web-site. more>>
URLex! is a Firefox extension you are able to leave a comment regarding any web-site. The comments are available either only to you and your friends, or anyone visiting the site. The system enables you to leave notes on the pages and sustain the conversation on a selected topic.

You can enter communities, or create your own, exchange links there. You can restrict the access to your comments by creating a closed community and providing access to the information by issuing special invitation.

<<less
Download (0.015MB)
Added: 2007-06-01 License: MPL (Mozilla Public License) Price:
877 downloads
Skycache 2.2

Skycache 2.2


Skycache is a lightweight, free and fast page cache for PHP 4 and PHP 5. more>>
Skycache is a lightweight, free and fast page cache for PHP 4 and PHP 5.

Once a dynamic page has been computed, it is stored in a page cache.

If a query for the same URL is made afterwards, the content is immediately served from the cache instead of processing the script again. The end result is a significant speedup and a slightly reduced server load.

Skycache is heavily used on Skyblog.

Basic usage:

Just add this to the top of a php script you want to cache the content for:

require(skycache.php);
skycache();

Pages will get cached for 30 minutes. You can check how pages were served by looking at the returned X-Skycache headers.

Other functions for more specific cases are described below. skycache() should always be the last one you call.

The skycache.php file can of course be stored in any location, and it can be shared by different scripts.
<<less
Download (0.004MB)
Added: 2006-02-21 License: MIT/X Consortium License Price:
1341 downloads
Yarssr 0.2.2

Yarssr 0.2.2


Yarssr is an RSS reader that displays its results in the notification area. more>>
Yet Another RSS Reader is an RSS aggregator and reader that displays its results in the GNOME notification area.

To view the contents of the feed just click the menu-item and it will launch in your favorite browser. It is written in Perl and uses gtk2-perl for its interface.

<<less
Download (0.025MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1549 downloads
GnomeSword 2.2.2

GnomeSword 2.2.2


GnomeSword is a Bible study application. more>>
Gnomesword is a Bible study application for GNOME, a graphical desktop enviroment which is available for several Unix and Linux flavors.
GnomeSword is based on SWORD by the CrossWire Bible Society, a framework providing the possibility to study the Bible and additional information like commentaries, dictionaries and other texts using your computer.
Main features:
- Search Bible and Commentary
- Search Personal notes
- Add personal notes to verses
- Bookmark Bible passages
- Bookmark Commentaries
- Bookmark Lexicons and Dictionaries
- Interlinear Page - Display up to five versions
- StudyPad for keeping notes
- Spellcheck for StudyPad and Personal notes (uses gnome-spell)
- Uses modules from the SWORD Project
- Support for Sword Bible, Commentary, Lexicon and General Book modules
<<less
Download (1.7MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
978 downloads
PicoStreamer 2.2

PicoStreamer 2.2


PicoStreamer is a complete server for live audio/video streaming. more>>
PicoStreamer is a complete server for live audio/video streaming. It can stream MP3, AAC, and video live using Flash FLV. PicoStreamer does not require any Flash server. It only needs a Web server with Perl and PHP. It requires neither expensive dedicated servers nor compilation on the target machine.
A source client (for Win32) is included. A management/playing framework written in PHP makes PicoStreamer simple to use. The PicoIcy component acts as a local shoutcast server emulator, so you can use your preferred shoutcast source client to stream or stream Flash format directly from the Web.
Enhancements:
- Added live flash audio/video streaming support.
- Added Flash encoder.
- Added Flash player also for mp3.
- Added Brasilian (PT) language.
- Added dynamic playlist chooser.
- Added content-length managing.
- PicoIcy now in tray-bar.
- Fixed list blocking on weird chars.
- Removed php ctype_digits dependence.
- Removed perl html::entitites dependence.
- Fixed many minor bugs.
<<less
Download (0.33MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1135 downloads
ziproxy 2.2.2

ziproxy 2.2.2


ziproxy is forwarding, non-caching, compressing proxy server. more>>
ziproxy is forwarding, non-caching, compressing proxy server. ziproxy squeezes images by converting them to low quality jpegs and optionally can also gzip HTML and other text-like data. ziproxy is intended to free bandwidth on dialup connections.

Can be run using inetd, xinetd, or you can use simple replacement "netd" that is part of this package. Former name of this project was mwp_proxy.

Installation:

To see your options, run:

./configure --help

Then run:

./configure

make

make install

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