Main > Free Download Search >

Free marcos witt software for linux

marcos witt

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 14
JRequisite 0.0.1

JRequisite 0.0.1


JRequisite is an agile requirement management tool. more>>
JRequisite is an agile requirement management tool, which means your requirements are defined mainly via visual tools as opposed to textual requirement tools.

Also, it is independent of the process used, so you may apply any process to your development. Despite being a requirement analysis and management tool, JRequisite tools are so general that they can be used in other areas of software development and even non-software related fields.

<<less
Download (0.34MB)
Added: 2006-12-14 License: GPL (GNU General Public License) Price:
1045 downloads
Witty CD Player 0.0.7

Witty CD Player 0.0.7


Witty CD Player is a cd player program that uses cdda2wav for software buffering. more>>
Witty CD Player is a cd player program that uses cdda2wav for software buffering.

I started having problems with my CD-ROM drive skipping badly on every audio track for several months. At the same time, I wanted to try my hand at GTK. So, I decided to write the "The Witty CD Player." (The name is a play on my last name The Witty CD Player uses the cdda2wav program to perform oversampling to account for the skips.

<<less
Download (0.014MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1538 downloads
Ariadne 2.4.1

Ariadne 2.4.1


Ariadne is a Web Application Server and Content Management System. more>>
Ariadne is an Application Platform for the Web, built entirely on Open Source technology.
What this means is that Ariadne is a Content Management System, using a WYSIWYG HTML editor, its also a Group Calendar, a Photo Album, an Addressbook, a Weblog and anything else you want it to be.
Ariadne was built with PHP, the most popular web programming language, Apache, the most popular web server, and MySQL, the most popular database engine for web applications. PostgrSQL is also supported. All these are Free Software, as is Ariadne.
Because Ariadne is completely free, you can download it, use it, even change it to your own needs or build new applications on top of it.
Ariadne gives you all the tools you need to easily build a new website, an intranet or even an e-commerce system. You can build and manage all this simply with your webbrowser.
When you create a website with Ariadne, it stores all your content, templates, files, etc. in a structured object store built on top of a database system, e.g. MySQL. This object store looks a lot like a normal file system, like your operating system uses. You can create directories and files and navigate through them with the Ariadne explorer just like a normal filesystem. But this filesystem can do a lot more.
Ariadne allows you to seperate the content, layout and logic of your website or internet application. You can assign different people to manage these parts. Ariadne will combine all these parts dynamically when someone visits a webpage.
The Store contains all the information for the website. This information is combined with the class descriptions to create Objects. These objects contain not only the information, but also contain operations (methods) that can work on this information and on the Store. Ariadne then applies the user defined templates on these objects to generate a webpage.
Objects stored in the the Ariadne Store are exactly that, Objects. So you can have all the advantages of Object Oriented Programming when building your website or application. Including inheritance and polymorphy on everything you put in the Store. Templates defined for a specific Class of objects will be inherited in sub-classes or can be overridden with new templates. Templates also automaticcaly extend down the filesystem tree.
Templates can be defined by users through the web, via the management interface of Ariadne. Templates can be any kind of text type: html, xml, rtf, etc. Information and special operations on the Ariadne store can be used in a template, via a scripting language PINP, which consists of a subset of PHP functions. Besides that each class also defines extra functions, which can be used in templates assigned to objects of that class.
All this allows you to create a web application or website with a minimum of programming while keeping the content and layout seperate.
Enhancements:
New Features:
- files and images (pphotos) are now automatically cached if they are publicly readable, that also goes for generated images, through pphoto::build()
- added support for subclasses, which you can define yourself and add to the typetree via a typetree.ini template. You can define templates for a specific subclass and you can add your own wizard pages to the normal set. Beware, this code is very fresh.
- Numerous fixes and extensions (e.g. table editing, required fields) in the mod_edit editor (toolbar.php). Check the context menu when editing tables.
- much enhanced WDDX export support, with converter from ax to wddx format
- TinyMCE support by Stefan Schreinert. To use this you have to copy the contents of the tinyMCE packages (which you can download from their site) into ariadne/www/widget/htmledit/tinymce/.
- Added a webdav loader (which is still under development, but already pretty useful).
- added a rss module to help get and parse RSS feeds
- Moved all the authentication code to lib/modules/mod_auth/ which is used in all the loaders. With this approach adding new authentication methods becomes very easy.
- The psite object can now be configured to have a different URL for each language.
- Shortcut objects do allow you to browse further on the target nodes.
- Added a new option to pshortcut keep url which, if set, will inherit the target templates from the shortcut and keeps the URL from where the shortcut is defined.
- Added a PINP interpreter to ariadne/bin/. You can use this to execute PINP files written in the PINP language.
- Added an option to the sql syntax which lets you include shortcuts target property in the search. To use this you have to type the include target keywords at the end of the criteria (and before the limit, offset, etc keywords).
- The pphoto class now has an identify() function to detect multiple pages/layers.
- Stefan Schreinert updated some entries in the german translations.
- Andres Marcos Bianciotto updated the Spanish translations.
- Added support for changing the flow of the standard Ariadne wizards.
- updated the wddx export module, it uses fwrite instead of echo, which made it possible to have debugging and/or verbose enabled during the export. This also makes the usage of ob_ functions obsolete and reduces the usage of memory.
- Updated mod_soap.php with SOAP_Header and SOAP_Parser support.
- Added a preference setting for the template editor, normal textarea or helene, the syntax highlighting editor.
- Pinp library support is now available, allowing you to have a library of templates in a seperate tree in Ariadne that can be used anywhere in your site through a config.ini template.
- Added a PINP XML wrapper module. The parse_curl() method was created by Lukasz Keler.
- The open editor button now has an adjustable text.
- Added a profiler, which can be used in pinp templates as well: pfTime, pfReset, pfPrint
- Added a number of performance improvements to speed up finding the correct template to use.
- path and query are now optional arguments to count_find
- added a make_local_url method, which tries to stay within the current site/host, even when referencing a page below another psite.
- added a quality setting to pphoto::convert(), which allows you to set the jpeg quality.
- pressing apply in the template editor will now restore the cursor position.
- added basename and dirname to the pinp allowed function list. These are now the officially sanctified methods to get parent path (dirname) and filename (basename)
- added $ARCurrent->forcenls (putvar(forcenls,true)) option, to make sure that any object / template called after it uses the requested nls, whether or not any data for that language is available in the object.
- changed the way templates are included, so now you can do a return true in pinp templates, and it works as youd expect.
Bugs Fixed
- fixed problems with setting hyperlink over linebreaks or accross block elements in the editor, no more www.example.com.
- fixed default values for $path arguments in mod_edit
- a number of templates where fixed to work with any language independant of the languages of the object. Mostly dialogs, but also workflow stuff.
- fixed a bug in the ftp loader, it was giving the wrong time of templates
- Fixed some repeat by ... bugs in the pcalitem object. Thanks to Fabian Steger.
- Added a fix for ftp clients which do expect
as linebreaks. Thanks to Klaasjan Tukker.
- Fixed a couple of URL rewriting bugs when saving pages.
- Workflow templates are now able to set $error.
- Fixed a bug in the respawn feature of the authentication module: it will now login as public if the session respawn failed.
- Fixed a bug in the stores sql compiler which made it impossible to order by multiple nls variants of the same property.
- Added missing wmv mimetype to mod_mimetype.php
- Fixed a small problem in the nls handling of the new wizards. Sometimes the tab and the actual language shown differed.
- Fixed a Mozilla reserved keyword implements bug in the Ariadne Search window. Thanks to Stefan Schreinert.
- particle will now fill the endtime and enddate with the starttime / startdate if not set.
- Fixed pphoto to work around the bug that causes ImageMagick to break on a . in the ariadne path. Thanks to Stefan Schreinert for reporting this.
- the parentsection() function now works, instead of not :)
- Fixed bug 0000290: specifying 00:00 in the articles time fields, resets the time to current time (Thanks to Christoph Lindemann)
- The editor doesnt cut off the last char in an image link after editing anymore.
- Fixed the editor to not include the nls in the URL of images.
- The pinp variant of user.login.html does now have access to the arReturnPath and arReturnTemplate variables.
- Added a fix to pfile which should make Explorer download pfiles postfixed with a slash with their correct filename. Thanks to Johann Hanne.
- Fixed URL rewriting in mod_url when a siteobject had not yet been configured with an URL.
- Fixed a URL check in pbookmark which did not accept - as a valid domain character.
- helene (the syntax highlighting editor) now understands javascript in templates
- user.workflow.* didnt set $ARCurrent->nolangcheck, now they do ;-)
- added a upgrade script which fixes the es nls name in objects which still have the latin1 encoding.
- The pinp call for HTTPRequest in pobject is now equal to the php one.
- added a call to fflush in export.wddx.object.phtml, to force flushing to output because some versions of php dont flush
- fixed some output in mod_wddx_import
- added the missing call to fclose
- replaced php://stdout in php://output, because stdout is the wrong stream
- added linking in wddx import, this was missing
- the image dialog now works with images with special characters (quotes) in the name
- fixed problems with special characters and custom fields
- fixed a problem in the filestore, it can now handle directories with the name 0.
<<less
Download (2.5MB)
Added: 2005-09-12 License: GPL (GNU General Public License) Price:
1502 downloads
Sitback 0.5.3p3

Sitback 0.5.3p3


Sitback is actual just another tar/gzip interface. more>>
Sitback is actual just another tar/gzip interface. It evolved from a bash-script I wrote to handle automated backups on Linux fileservers.
The script worked ok, but it soon proved difficult and tiresome to make local modifications to the script to handle various problems or differences.
I began searching the web to find a suitable backup tool, and came up with some candidates. But none of them did exactly what I wanted, or they were just too big and filled with features that I did not need.
One of the things I needed was a way of reporting the result of a backup to office peoples So a printed report, readable by non-nerds was required.
In the end, I desided that a homebrew system was required and began to put this little tool together..
Tar has been, and is, one of the best archiving utilities around, at least on small and medium scale systems (which are what I work on), so I saw no reason to abandon tar.
It is known to be stable and produce error-free archives, why should I then start all over and invent another file-storage protocol ?
Sitback works like a kind of super-intelligent script. Just tell it what you want to backup and where to put it.. Sitback takes care of the rest, including finding the tools needed, which compression to use (if you want that), how to handle the archive device, etc. etc.
Sitback will take care of checking the files, verify the archive and maintain a little database, so that you very quickly can find out on which tape a certain file is located, without using the tape.
Sitback can run a single backup operation, or you can ask it to fork into the background and do automated backups (this is where the printed report is nice to have; no report.. or report says ERROR ..then call for support).
Sitback has a graphic interface based on ncurses, when you run it directly from the shell. Do not worry if you do not have ncurses. Sitback works fine without.
If you run Sitback as a daemon making scheduled backups, no interface is available, but the logfile contains all important messages.
Enhancements:
- Fixed bug with mail-sending.. Message body contained standalone linefeeds, violating the standard.
- Now using stat64 (if available) to allow for large files (larger than 2GB) in the backup.
<<less
Download (MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1489 downloads
ShellTer 1.0

ShellTer 1.0


ShellTer is an iptables-based firewall. more>>
ShellTer is an iptables-based firewall. What sets it apart from the rest is that it has built-in SSH brute force protection.
ShellTer project is easy to configure and has an interactive CLI installer.
To install ShellTer, simply execute the "installer" file in this directory.
Enjoy and feel free to email me with questions/comments/patches/etc.
Enhancements:
- Simple bugfix
<<less
Download (0.010MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
830 downloads
PHP2Go 0.5.7

PHP2Go 0.5.7


PHP2Go is a development framework designed to help experienced developers and beginner programmers to create Web-based Systems. more>>
PHP2Go is a development framework designed to help experienced developers and beginner programmers to create Web-based Systems.
PHP2Go is an object-oriented, structured and hierarchical set of classes and libraries developed using PHP, XML and JavaScript.
Enhancements:
- All HTML code generated by the framework was ported to XHTML 1.0 Transitional.
- An LDAP client and an LDAP authentication driver were added.
- php2go.service.AjaxService, a class that allows PHP function calls through Ajax requests, has been added.
- AjaxService and AjaxPeriodicalUpdater Javascript classes have been added. A DataTable widget has been added.
- The date format now accepts three values: EURO, US, and SQL.
<<less
Download (1.9MB)
Added: 2007-07-16 License: LGPL (GNU Lesser General Public License) Price:
832 downloads
Breaky 0.0.5

Breaky 0.0.5


Breaky is a breakout game for X. more>>
Breaky project is a breakout game for X.
Breaky is one of my first experiences in game programming. The goal of writing this program was to get a well working game, which was fun to play. I think ive succeeded in both goals.
Of course the program isnt perfect yet, im still working on a lot of extra game modes, removing bugs and speeding up the overall performance.
Enhancements:
- Marco van Berkum discovered a bug in xbreaky: "By default xbreaky is installed as suid an can be abused to overwrite any file on the system by any user. " Ive removed the suid bit according to Marcos recommendations. Youll find the updated versions on the download page, enjoy ....
- All of the old news items have been removed *outdated*
<<less
Download (0.047MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1037 downloads
FuseNRG 0.04

FuseNRG 0.04


FuseNRG allows you to mount Ahead Nero NRG files on your Unix system with FUSE. more>>
FuseNRG allows you to mount Ahead Nero NRG files on your Unix system with FUSE. On the mounted directory, there will be an ISO file, equivalent to the original NRG file. Such ISO file can be mounted with fuseiso or burned to a CD with cdrecord or even Ahead Nero itself.

Advantages over nrg2iso:

it does not require extra disk space for the ISO file
it does not require extra memory for the ISO file
you dont have to wait for the file to be converted (conversion is done on the fly)

Example:

$mkdir ../testNRG
$ls -la ../testNRG
total 8
drwxr-xr-x 2 quinho quinho 4096 May 19 00:39 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..

$./fusenrg ../neroImage.nrg ../testNRG

$ls -la ../testNRG
total 4
drwxr-xr-x 2 root root 0 Dec 31 1969 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 quinho quinho 21821596 May 18 23:05 neroImage.nrg.iso

$mkdir ../testISO
$fuseiso ../testNRG/neroImage.nrg.iso ../testISO

$ls -la ../testISO
total 5234
dr-xr-xr-x 1 root root 2048 May 18 21:25 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 root root 15157180 Apr 21 15:44 DVB-T.rar
-r--r--r-- 1 root root 65989 Apr 19 23:00 PriceList MSRP April 2007.pdf
-r--r--r-- 1 root root 782 May 15 17:48 Shortcut to My Bills from December.gnumeric.lnk
-r--r--r-- 1 root root 1978 Apr 14 17:52 Users Guide.lnk
-r--r--r-- 1 root root 34354 Mar 8 07:02 MySampleDocumentation 2.txt

$fusermount -u ../testISO
$fusermount -u ../testNRG
$rmdir ../testISO ../testNRG

<<less
Download (0.019MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
543 downloads
phpScribe 0.9

phpScribe 0.9


phpScribe is a documentation generator to parse source codes comment lines. more>>
phpScribe is a documentation generator to parse source codes comment lines.

phpScribe generates documentation files for projects by parsing the comment lines inserted in the source code.

The comments must be written in the code in a way they can be later interpreted by the parser.

Therefore, there is a pattern that may be respected by the developers who want to use phpScribe features.

<<less
Download (0.35MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1116 downloads
sylvan 0.2.3-1

sylvan 0.2.3-1


sylvan is a subversion wrapper that stores and restores user, group, and permissions information for each file. more>>
sylvan is a subversion wrapper that stores and restores user, group, and permissions information for each file. This makes it useful for keeping things like /etc in Subversion without losing their functionality.
The resulting svn repository is a normal repository with the extra info stored as file properties, so you can still use svn for accessing it.
Enhancements:
- Major refactoring.
- There are more methods for importing /etc into a svn repository.
<<less
Download (0.006MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1000 downloads
JCCad 25062004

JCCad 25062004


JCCad is a 2D/3D CAD program. more>>
JCCad is a project to develop a Free 2D/3D CAD program that can be used to create technical drawings.
One of the main goals of this project is to include a plugin system to allow usuaries to make new commands. In this way it will be easy to use the program for any particular task.
JCCad provides too a easy interface with command line.
Main features:
- 3D enviroment based in openGL.
- Sample glade based interface.
- Support for many types of entities: lines, circunferences, splines...
- Easy way to create new commands
- Selection and many modification tools (translation,rotation,copy...)
- Blocks support
- Command line with multiple input modes.
- Snap points support (End points,intersection ...).
<<less
Download (0.54MB)
Added: 2005-05-04 License: GPL (GNU General Public License) Price:
1633 downloads
Sound Ruler for Linux 0.9.6.1

Sound Ruler for Linux 0.9.6.1


measuring and graphing sound and for teaching acoustics more>> SoundRuler is a tool for measuring and graphing sound and for teaching acoustics.
It is open code and free. Like scientific knowledge, it is available for all to use, criticize, adapt to their needs and improve on
Its visual interactive approach to analysis brings you the best of two worlds: the control of manual analysis and the objectivity and speed of automated analysis.
SoundRuler is specially useful in the analysis of simple, repetitive signals. They can be measured quickly and in great detail, pulse by pulse.
<<less
Download (12.19MB)
Added: 2009-04-18 License: Freeware Price: Free
188 downloads
SoundRuler 0.9.4.1

SoundRuler 0.9.4.1


SoundRuler project is a tool for acoustical analysis, graphing, and teaching. more>>
SoundRuler project is a tool for acoustical analysis, graphing, and teaching.

It interactively recognizes and measures about 35 temporal and spectral properties of each pulse within each call in a file.

It features acoustic similarity routines, real-time filtering, auditory filtering, graph batch production with extensive editing options, and didactic modules.

Installation for soundruler-x.x.x.linux.rpm

1- su
2- cd folder_where_soundruler-x.x.x.linux.rpm_is
3- rpm -Uvh soundruler-x.x.x.linux.rpm

Installation for soundruler-x.x.x.linux.tar.gz

1- su
2- tar -xvzf /path_where_it_is/soundruler-x.x.x.linux.tar.gz.
3- cd soundruler-x.x.x.
4- vi Makefile (to check if the paths in the file are ok for your system)
5- make install
6- type soundruler or sruler to run it as any user
<<less
Download (11.7MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
1107 downloads
TreeSize for Unix 0.53

TreeSize for Unix 0.53


TreeSize for Unix is a disk consumption analyzing tool, which sorts folders according to their physical occupied sizes. more>>
TreeSize for Unix is a disk consumption analyzing tool, which sorts folders according to their physical occupied sizes.

The perfect tool to help you obtaining more disk free space, on your hard drive, usb pen drive or even on network folders (provided that they are mounted and you have access to them, of course )

Just like du, it counts hard links just once and the space utilized by different filesystems are not added together.

<<less
Download (0.20MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1049 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1