Main > Free Download Search >

Free use cases software for linux

use cases

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1475
Kumula Cases 0.1

Kumula Cases 0.1


Kumula Cases is a case management software for lawyers. more>>
Kumula Cases is a case management software for lawyers (similar to programs like Amicus Attorney or RA-Micro), based upon the Kumula package. It was part of my diploma thesis and consists of multiple parts:

Cases:

The main application for handling the case files. It shows active and closed case files, and also the appointments and time limits of all cases. When opening a case file, it starts "CaseData", which is merely an "internal" application.

CaseData

Displays the content of one case file. Because of splitting the case management and the case contents, its possible to:

- work with different cases at the same time
- open a case from Cases and Clients (see below)
- open a case directly from your desktop (if you create a shortcut there)
This case content program is also modular and brings the following modules with it:
- Header, for storing reference number, case title etc.
- Parties, for managing clients, contrahents and third parties
- Events, for recording appointments, time limits and resubmissions
- Documents, for assigning letters and other documents to a case file
- Journal, for register revenues and expenses related to a case

Cases module for Clients

This module for Kumulas client management program shows the cases in which a client is involved, including the possibility to open the case file directly.

<<less
Download (0.19MB)
Added: 2006-05-08 License: LGPL (GNU Lesser General Public License) Price:
1267 downloads
LinuxCase 0.9

LinuxCase 0.9


LinuxCase project is an Case Management Software for Linux. more>>
LinuxCase project is an Case Management Software for Linux. You can Document social cases. It is possible to add delete or edit Users, add delete or edit Projects from Madates. You can make reports and add them to a Mandate.

The Software uses a Mysql-Database to store the Informations. The Software-Bases are QT and KDE.

Another Goal is to Comunicate with other Software how OpenOffice, Korganizer and the Kadressbook. So LinuxCase is a Groupware client to.
<<less
Download (0.19MB)
Added: 2006-08-18 License: GPL (GNU General Public License) Price:
1162 downloads
JTestCase 4.0.0

JTestCase 4.0.0


JTestCase is a 100% pure Java, open-source framework that helps in separating test case data from test case units. more>>
JTestCase is a 100% pure Java, open-source framework that helps in separating test case data from test case units.

Although the following examples show JTestCase used together with junit, please note that JTestCase has no dependence on junit itself.

A moderately complex java projects may comprise hundreds of junit test case. JTestCase helps you organize your test cases in a rationale and efficient way.

To achieve this goal JTestCase provides:

- A propetary XML format to define your test cases in an abstract way.
- Easy-to-use API to retrieve data from XML file and to do assertion.

<<less
Download (0.64MB)
Added: 2006-08-19 License: GPL (GNU General Public License) Price:
1162 downloads
Hash::Case 1.003

Hash::Case 1.003


Hash::Case is a base class for hashes with key-casing requirements. more>>


CLASS HIERARCHY

Hash::Case
is a Tie::StdHash
is a Tie::Hash

SYNOPSIS

use Hash::Case::Lower;
tie my(%lchash), Hash::Case::Lower;
$lchash{StraNGeKeY} = 3;
print keys %lchash; # strangekey

Hash::Case is the base class for various classes which tie special treatment for the casing of keys. Be aware of the differences in implementation: Lower and Upper are tied native hashes: these hashes have no need for hidden fields or other assisting data structured. A case Preserve hash will actually create three hashes.

The following strategies are implemented:

Hash::Case::Lower (native hash)

Keys are always considered lower case. The internals of this module translate any incoming key to lower case before it is used.

Hash::Case::Upper (native hash)

Like the ::Lower, but then all keys are always translated into upper case. This module can be of use for some databases, which do translate everything to capitals as well. To avoid confusion, you may want to have you own internal Perl hash do this as well.

Hash::Case::Preserve

The actual casing is ignored, but not forgotten.

METHODS

tie HASH, TIE, [VALUES,] OPTIONS

Tie the HASH with the TIE package which extends Hash::Case. The OPTIONS differ per implementation: read the manual page for the package you actually use. The VALUES is a reference to an array containing key-value pairs, or a reference to a hash: they fill the initial hash.

Examples:

my %x;
tie %x, Hash::Case::Lower;
$x{Upper} = 3;
print keys %x; # upper

my @y = (ABC => 3, DeF => 4);
tie %x, Hash::Case::Lower, @y;
print keys %x; # abc def

my %z = (ABC => 3, DeF => 4);
tie %x, Hash::Case::Lower, %z;
addPairs PAIRS

Specify an even length list of alternating key and value to be stored in the hash.

addHashData HASH

Add the data of a hash (passed as reference) to the created tied hash. The existing values in the hash remain, the keys are adapted to the needs of the the casing.

setHash HASH

The functionality differs for native and wrapper hashes. For native hashes, this is the same as first clearing the hash, and then a call to addHashData. Wrapper hashes will use the hash you specify here to store the data, and re-create the mapping hash.

<<less
Download (0.005MB)
Added: 2007-05-18 License: Perl Artistic License Price:
891 downloads
GUInseng installer 0.1

GUInseng installer 0.1


GUInseng installer is an installer for Linux, based on GTK+ and Glade, released under GPL. more>>
GUInseng installer is an installer for Linux, based on GTK+ and Glade, released under GPL. With Guinseng Installer you can create your own graphical installation packages for Linux.

It is not a replacement for package management like RPM or DEB, its just a GUI for installation or/and build processes. In most cases, you have already an installation program for your software - e.g. based on automake. GUInseng is just a wrapper around a ready installation program.

<<less
Download (0.62MB)
Added: 2006-08-03 License: LGPL (GNU Lesser General Public License) Price:
1180 downloads
CMFTestCase 0.9.2

CMFTestCase 0.9.2


CMFTestCase is a Plone product developed to simplify testing of CMF-based applications and products. more>>
CMFTestCase is a Plone product developed to simplify testing of CMF-based applications and products.
The CMFTestCase package provides::
- The function installProduct to install a Zope product into the test environment.
- The function setupCMFSite to create a CMF portal in the test db.
- The class CMFTestCase of which to derive your test cases.
- The class FunctionalTestCase of which to derive your test cases for functional unit testing.
- The classes Sandboxed and Functional to mix-in with your own test cases.
- The constants portal_name, portal_owner, default_products, default_base_profile, default_extension_profiles, default_user, and default_password.
- The constant CMF15 which evaluates to true for CMF versions >= 1.5.
- The constant CMF16 which evaluates to true for CMF versions >= 1.6.
- The constant CMF20 which evaluates to true for CMF versions >= 2.0.
- The constant CMF21 which evaluates to true for CMF versions >= 2.1.
- The module utils from the ZopeTestCase package.
Enhancements:
- Compatible with CMF versions 1.4, 1.5, 1.6, 2.0, and 2.1.
<<less
Download (0.010MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
940 downloads
sget 0.1

sget 0.1


SGet is a GTK+ application to download files over the Internet by segments. more>>
SGet is a GTK+ application to download files over the Internet by segments, which makes the download process more efficient in most cases.

On this project, the final objective is to write a program to download files over the net by segments, wich offers a improved speed for downloads.
<<less
Download (0.20MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1222 downloads
TOPCASED 1.0.0

TOPCASED 1.0.0


TOPCASED is a Toolkit in OPen source for Critical Applications and SystEm Development more>>
TOPCASED comes from Toolkit in OPen source for Critical Applications and SystEm Development and is an id s system/software engineering workshop based on Eclipse.

It aims to provide the tools required to go from requirements to the implementation stages. The current version includes several graphical editors: ECORE, UML 2 (class, use cases, sequence diagrams only), structured analysis, and AADL (Architecture Analysis and Design Language).

These editors are partially generated from ECORE models and models can be checked. OCL and EMF checks are supported at this time. External tools can be easily connected to the workshop thanks to a simple communication bus.

<<less
Download (21.3MB)
Added: 2007-07-07 License: Eclipse Public License Price:
842 downloads
uriparser 0.5.1

uriparser 0.5.1


uriparser project is a strictly RFC 3986 compliant URI parsing library. more>>
uriparser project is a strictly RFC 3986 compliant URI parsing library. uriparser is cross-platform, fast, supports Unicode and is licensed under the New BSD license.
Main features:
- Cross-platform (Unix, Windows, Mac OS X, ...)
- Strictly compliant to RFC 3986 (latest RFC on URIs to date)
- Fast (linear input length time complexity)
- Unicode support
- No external dependencies
- Uses unit testing
- Licensed under the New BSD license
Enhancements:
- This release fixes several bugs revealed by test cases from 4Suite.
<<less
Download (0.19MB)
Added: 2007-08-09 License: BSD License Price:
807 downloads
Legal Case Management System 0.7.2b

Legal Case Management System 0.7.2b


Legal Case Management System is a software aimed for use by not-for-profit legal advice centres. more>>
Legal Case Management System is a software aimed for use by not-for-profit legal advice centres in order to make better follow-ups of their cases, including client consultations and court events.
Integration into your offices activities
The software can be installed either on one computer or shared over a network. You can then provide a personal access to each member of your organisation. This allows them to chose how they want to work on a case and how the case information should be shared with the other members.
Users can then create new cases (or campaigns) to which they can attach a list of people or organisations involved as well as to add follow-up information.
- Organisations providing advice or consultations will benefit from being able to quickly consult the database for background information on a clients case and evolution, contact information, etc.
- Lawyers can use the software to track the evolution of a case and the resources spent on a particular client, as well as to track the status of a case in court.
- Office managers can generate reports based on the activity for a given period. The variety of reports include: activity overview for each staff members, statistical information on cases or clients, and general overview on how the usage of the organisations resources. Such reports facilitate the reporting on projects and the creation of new budgets.
Software freedom
LCM is a Bulgarian community initiative developed by IRBF, funded by the Open Society Institute and distributed as "free software". The software is being developed for local not-for-profit advice centers, but anyone has the freedom to use it, to redistribute it locally and to adapt it to their own needs.
The software is currently available in English and Bulgarian, but more translations are welcomed and very easy to do with the help of an online translation interface.
Enhancements:
- This release fixes the "sum billed" format error (if the field is active), as well as the "case notes" being lost after edit.
<<less
Download (0.45MB)
Added: 2006-12-29 License: GPL (GNU General Public License) Price:
1035 downloads
Twisted Web 0.6.0

Twisted Web 0.6.0


Twisted Web includes an HTTP/1.0 protocol implementation for both servers and clients. more>>
Twisted Web includes an HTTP/1.0 protocol implementation for both servers and clients. Twisted Web also includes a resource framework for implementing rich, dynamic web applications. It includes support for authentication either via HTTP AUTH, session URLs, or session cookies.
It supports CGIs and a custom PB-based distribution mechanism for serving content from separate, persistent processes. It includes SOAP and XML-RPC support for both clients and servers. It also makes it particularly easy to deploy new servers with novel or ephemeral use-cases, often with only a single short command.
Enhancements:
- This release adds HTTP Basic auth support for XML-RPC clients, and fixes several date, time, and If-Modified-Since header parsing corner-cases.
- Various performance improvements have been made, and support for CGIs broken in a few specific ways has been improved.
<<less
Download (0.25MB)
Added: 2006-05-29 License: MIT/X Consortium License Price:
1243 downloads
Jumble 1.0.0

Jumble 1.0.0


Jumble is a class level mutation testing tool that works in conjunction with JUnit. more>>
Jumble project is a class level mutation testing tool that works in conjunction with JUnit. The purpose of mutation testing is to provide a measure of the effectiveness of test cases.
A single mutation is performed on the code to be tested, the corresponding test cases are then executed. If the modified code fails the tests, then this increases confidence in the tests. Conversely, if the modified code passes the tests this indicates a testing deficiency.
Example:
Here is some example Jumble output for a Java class called "Foo", which has some JUnit tests in a class called "FooTest".
Jumble starts by running the unit tests (in FooTest.class) on the unmodified Foo class to check that they all pass, and to measure the time taken by each test. Then it will mutate Foo in various ways and run the tests again to see if they detect the mutation. It continues this process until all mutations of Foo have been tried. The output might look like this:
Mutating Foo
Tests: FooTest
Mutation points = 12, unit test time limit 2.02s
..
M FAIL: Foo:31: negated conditional
M FAIL: Foo:33: negated conditional
M FAIL: Foo:34: - -> +
M FAIL: Foo:35: negated conditional
......
Score: 67%
This says that Jumble has tried 12 different mutants of Foo and the unit tests (in FooTest) correctly detected the changed behaviour in 8/12 cases (indicated by a .), but failed to detect the change in the other 4/12 cases. For example, when an if (C) decision on line 31 was mutated to if (!C), the unit tests still passed, so they are probably not testing that if statement thoroughly enough.
Overall, 67% of the mutations were detected by the unit tests, which means that they probably need to be improved.
Enhancements:
- This is the first public release, though Jumble has been used on a daily basis within ReelTwo.com for several years.
<<less
Download (0.78MB)
Added: 2007-07-24 License: GPL (GNU General Public License) Price:
890 downloads
Sendmail-Jilter 1.2

Sendmail-Jilter 1.2


Sendmail-Jilter is an implementation of the Sendmail milter protocol. more>>
Sendmail-Jilter is an Open Source implementation of the Sendmail milter protocol, for implementing milters in Java that can interface with the Sendmail MTA.
Enhancements:
New Features:
- Added JilterHandlerAdapter. Thanks to Neil Aggarwal (neil@JAMMConsulting.com).
Changes:
- Updated docs for return value from JilterHandler.connect to reflect the fact that the MTA doesnt listen to anything other than SMFIS_ values. Thanks to Neil Aggarwal (neil@JAMMConsulting.com).
- Refactored SimpleHandler in the test cases to use JilterHandlerAdapter.
<<less
Download (0.016MB)
Added: 2005-07-05 License: Other/Proprietary License with Source Price:
1572 downloads
Scrounge NTFS 0.8.6

Scrounge NTFS 0.8.6


Scrounge NTFS is a data recovery program for NTFS filesystems. more>>
Data recovery program for NTFS file systems. Reads each block of the hard disk to and retrieves rebuilds file system tree on another partition.
I wrote this program when one of my friends lost valuable data on an NTFS drive. It been used since then in several cases, but not thoroughly tested, especially not WRT the fact that its a data recovery program.
You should have your partition information stored away in advance. This allows reliable retrieval of file info.
Enhancements:
- Dont exit on error reading source drive
- Fixed core dump when attribute list, but no MFT loaded
<<less
Download (0.099MB)
Added: 2005-04-08 License: BSD License Price:
923 downloads
BrowserLauncher2 1.1

BrowserLauncher2 1.1


BrowserLauncher2 is a library that facilitates opening a browser from a Java application. more>>
BrowserLauncher2 is a library that facilitates opening a browser from a Java application and directing the browser to a supplied URL.

In most cases, the browser opened will be the users default browser.

BrowserLauncher2 is free software and it is being released under the GNU Lesser General Public License.

<<less
Download (0.24MB)
Added: 2007-06-13 License: LGPL (GNU Lesser General Public License) Price:
864 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5