use case
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1440
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.
<<lessCases:
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.
Download (0.19MB)
Added: 2006-05-08 License: LGPL (GNU Lesser General Public License) Price:
1267 downloads
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.
<<lessThe 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.
Download (0.19MB)
Added: 2006-08-18 License: GPL (GNU General Public License) Price:
1162 downloads
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.
<<lessAlthough 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.
Download (0.64MB)
Added: 2006-08-19 License: GPL (GNU General Public License) Price:
1162 downloads
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.
Download (0.005MB)
Added: 2007-05-18 License: Perl Artistic License Price:
891 downloads
UMLSpeed 0.19
UMLSpeed is a compiler for a simple, C-style language that allows declaration of UML entities and diagrams. more>>
UMLSpeed project is a compiler for a simple, C-style language that allows declaration of UML entities and diagrams. Diagrams can be compiled into SVG and the entities to XMI for use with other tools.
Why?
- Graphical UML tools in general suck - why should we, as programmers have to drag and drop stupid graphical things and use a mouse when we could express what we want 10 times faster with a text editor and a simple notation? - More importantly, why should we have to lay everything out when the computer could do it for us?
- Graphical UML tools are bloated, huge, memory and disk-hogging monsters.
- Graphical UML tools use either a binary data format or XML, which is not particularly friendly to source code control systems.
Main features:
- Written in GCJ-portable java and compiled natively. Its extremely fast even when dealing with thousands of entities and diagrams.
- Purely command-line driven and takes miniscule resources.
- Flexible enough with file imports that large UML projects can be broken up into separate files and only individual bits built at a time as required.
- C-style syntax means that the source language integrates well with source code control and diff tools.
- Standards compliant - produces interoperable SVG and XMI, as well as clean source code.
- Can integrate with automated build tools for regular diagram/xmi compilation.
Status
This is still alpha software. Dont hold me responsible if it kills your pets and blows your house up.
Implemented so far:
- Compiler/parser
- Namespaces, Class diagrams and related entities
- Use case diagrams and related entities
- Auto-link pathfinding
- XMI 1.3 output
- VIM syntax highlighting
- Code generation (Java and Python)
Still to do:
- Documentation output
- Code generation (Ruby, PHP, Perl, C++, C#)
- Diagram packages
- Diagram notes
- Alternative diagram layout managers
- Deployment diagrams
- Sequence diagrams
- Activity diagrams
Enhancements:
- Added facilities to store HTML of reports in a buffer for use by plugins and turn off file generation. Maven plugin now uses this when using Doxia for generation.
- Added $PROJECTNAME and $PROJECTVERSION HTML tokens, with CLI parameters to set them. Maven plugin will automatically set them.
- Added $PUBLISHDATE token
- Added $TOC key for generating links to bookmarks on the same page.
<<lessWhy?
- Graphical UML tools in general suck - why should we, as programmers have to drag and drop stupid graphical things and use a mouse when we could express what we want 10 times faster with a text editor and a simple notation? - More importantly, why should we have to lay everything out when the computer could do it for us?
- Graphical UML tools are bloated, huge, memory and disk-hogging monsters.
- Graphical UML tools use either a binary data format or XML, which is not particularly friendly to source code control systems.
Main features:
- Written in GCJ-portable java and compiled natively. Its extremely fast even when dealing with thousands of entities and diagrams.
- Purely command-line driven and takes miniscule resources.
- Flexible enough with file imports that large UML projects can be broken up into separate files and only individual bits built at a time as required.
- C-style syntax means that the source language integrates well with source code control and diff tools.
- Standards compliant - produces interoperable SVG and XMI, as well as clean source code.
- Can integrate with automated build tools for regular diagram/xmi compilation.
Status
This is still alpha software. Dont hold me responsible if it kills your pets and blows your house up.
Implemented so far:
- Compiler/parser
- Namespaces, Class diagrams and related entities
- Use case diagrams and related entities
- Auto-link pathfinding
- XMI 1.3 output
- VIM syntax highlighting
- Code generation (Java and Python)
Still to do:
- Documentation output
- Code generation (Ruby, PHP, Perl, C++, C#)
- Diagram packages
- Diagram notes
- Alternative diagram layout managers
- Deployment diagrams
- Sequence diagrams
- Activity diagrams
Enhancements:
- Added facilities to store HTML of reports in a buffer for use by plugins and turn off file generation. Maven plugin now uses this when using Doxia for generation.
- Added $PROJECTNAME and $PROJECTVERSION HTML tokens, with CLI parameters to set them. Maven plugin will automatically set them.
- Added $PUBLISHDATE token
- Added $TOC key for generating links to bookmarks on the same page.
Download (0.47MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
826 downloads
Legal Case Management 0.6.3
The legal case management (LCM) system is a software aimed for use by not-for-profit legal advice centres. more>> <<less
Download (0.44MB)
Added: 2005-10-18 License: GPL (GNU General Public License) Price:
1468 downloads
Unicode::Escape 0.0.2
Unicode::Escape is a Perl module with escape and unescape Unicode characters other than ASCII. more>>
Unicode::Escape is a Perl module with escape and unescape Unicode characters other than ASCII.
SYNOPSIS
# Escape Unicode charactors like u3042u3043u3044.
# JSON thinks No more Garble!!
# case 1
use Unicode::Escape;
my $escaped1 = Unicode::Escape::escape($str1, euc-jp); # $str1 contains charactor that is not ASCII. $str1 is encoded by euc-jp.
my $escaped2 = Unicode::Escape::escape($str2); # default is utf8 # $str2 contains charactor that is not ASCII.
my $unescaped1 = Unicode::Escape::unescape($str3, shiftjis); # $str3 contains escaped Unicode character. return value is encoded by shiftjis.
my $unescaped2 = Unicode::Escape::unescape($str4); # default is utf8 # $str4 contains escaped Unicode character.
# case 2
use Unicode::Escape qw(escape unescape);
my $escaped1 = escape($str1, euc-jp); # $str1 contains charactor that is not ASCII. $str1 is encoded by euc-jp.
my $escaped2 = escape($str2); # default is utf8 # $str2 contains charactor that is not ASCII.
my $unescaped1 = unescape($str3, shiftjis); # $str3 contains escaped Unicode character. return value is encoded by shiftjis.
my $unescaped2 = unescape($str4); # default is utf8 # $str4 contains escaped Unicode character.
# case 3
use Unicode::Escape;
my $escaper = Unicode::Escape->new($str, shiftjis); # $str contains charactor that is not ASCII. $str is encoded by shiftjis.(default is utf8)
my $escaped = $escaper->escape;
# case 4
use Unicode::Escape;
my $escaper = Unicode::Escape->new($str); # $str contains escaped Unicode character.
my $unescaped1 = $escaper->unescape(shiftjis);
my $unescaped2 = $escaper->unescape; # default is utf8.
Escape and unescape Unicode characters other than ASCII. When the server response is javascript code, it is convenient.
<<lessSYNOPSIS
# Escape Unicode charactors like u3042u3043u3044.
# JSON thinks No more Garble!!
# case 1
use Unicode::Escape;
my $escaped1 = Unicode::Escape::escape($str1, euc-jp); # $str1 contains charactor that is not ASCII. $str1 is encoded by euc-jp.
my $escaped2 = Unicode::Escape::escape($str2); # default is utf8 # $str2 contains charactor that is not ASCII.
my $unescaped1 = Unicode::Escape::unescape($str3, shiftjis); # $str3 contains escaped Unicode character. return value is encoded by shiftjis.
my $unescaped2 = Unicode::Escape::unescape($str4); # default is utf8 # $str4 contains escaped Unicode character.
# case 2
use Unicode::Escape qw(escape unescape);
my $escaped1 = escape($str1, euc-jp); # $str1 contains charactor that is not ASCII. $str1 is encoded by euc-jp.
my $escaped2 = escape($str2); # default is utf8 # $str2 contains charactor that is not ASCII.
my $unescaped1 = unescape($str3, shiftjis); # $str3 contains escaped Unicode character. return value is encoded by shiftjis.
my $unescaped2 = unescape($str4); # default is utf8 # $str4 contains escaped Unicode character.
# case 3
use Unicode::Escape;
my $escaper = Unicode::Escape->new($str, shiftjis); # $str contains charactor that is not ASCII. $str is encoded by shiftjis.(default is utf8)
my $escaped = $escaper->escape;
# case 4
use Unicode::Escape;
my $escaper = Unicode::Escape->new($str); # $str contains escaped Unicode character.
my $unescaped1 = $escaper->unescape(shiftjis);
my $unescaped2 = $escaper->unescape; # default is utf8.
Escape and unescape Unicode characters other than ASCII. When the server response is javascript code, it is convenient.
Download (0.005MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1016 downloads
Bio::ClusterI 1.4
Bio::ClusterI module is a cluster Perl interface. more>>
Bio::ClusterI module is a cluster Perl interface.
SYNOPSIS
# see the implementations of this interface for details but # basically
my $cluster= $cluster->new(-description=>"POLYUBIQUITIN",
-members =>[$seq1,$seq2]);
my @members = $cluster->get_members();
my @sub_members = $cluster->get_members(-species=>"homo sapiens");
This interface is the basic structure for a cluster of bioperl objects. In this case it is up to the implementer to check arguments and initialize whatever new object the implementing class is designed for.
<<lessSYNOPSIS
# see the implementations of this interface for details but # basically
my $cluster= $cluster->new(-description=>"POLYUBIQUITIN",
-members =>[$seq1,$seq2]);
my @members = $cluster->get_members();
my @sub_members = $cluster->get_members(-species=>"homo sapiens");
This interface is the basic structure for a cluster of bioperl objects. In this case it is up to the implementer to check arguments and initialize whatever new object the implementing class is designed for.
Download (4.7MB)
Added: 2007-08-16 License: Perl Artistic License Price:
799 downloads
Sprite 3.21
Sprite is a Perl module to manipulate text delimited databases using SQL. more>>
Sprite is a Perl module to manipulate text delimited databases using SQL.
SYNOPSIS
use Sprite;
$rdb = new Sprite;
$rdb->set_delimiter (-Read => ::) ## OR: (Read, ::);
$rdb->set_delimiter (-Write => ::) ## OR: (Write, ::);
$rdb->set_os (Win95);
## Valid arguments (case insensitive) include:
##
## Unix, Win95, Windows95, MSDOS, NT, WinNT, OS2, VMS,
## MacOS or Macintosh. Default determined by $^O.
$rdb->set_lock_file (c:win95tmpSprite.lck, 10);
$rdb->set_db_dir (Mac OS:Perl 5:Data) || die "Cant access dir!n";
$data = $rdb->sql (<<less
SYNOPSIS
use Sprite;
$rdb = new Sprite;
$rdb->set_delimiter (-Read => ::) ## OR: (Read, ::);
$rdb->set_delimiter (-Write => ::) ## OR: (Write, ::);
$rdb->set_os (Win95);
## Valid arguments (case insensitive) include:
##
## Unix, Win95, Windows95, MSDOS, NT, WinNT, OS2, VMS,
## MacOS or Macintosh. Default determined by $^O.
$rdb->set_lock_file (c:win95tmpSprite.lck, 10);
$rdb->set_db_dir (Mac OS:Perl 5:Data) || die "Cant access dir!n";
$data = $rdb->sql (<<less
Download (0.014MB)
Added: 2007-05-16 License: Perl Artistic License Price:
900 downloads
DStress 1518
DStress is a D programming language conformance test suite. more>>
DStress is a D programming language conformance test suite. DStress project is used to test the DMD and GDC compilers.
The unexpected output of a test case can have various reasons:
- a bug in the test case
- a failure of the build environment
- an inconsistent D-language specification or misunderstanding thereof
- a feature introduced in a later D-language specification
- a compiler, linker or runtime bug
- a bug in the operating system or the hardware
Currently the dmd and gdc compilers are being tested.
<<lessThe unexpected output of a test case can have various reasons:
- a bug in the test case
- a failure of the build environment
- an inconsistent D-language specification or misunderstanding thereof
- a feature introduced in a later D-language specification
- a compiler, linker or runtime bug
- a bug in the operating system or the hardware
Currently the dmd and gdc compilers are being tested.
Download (MB)
Added: 2006-12-28 License: GPL (GNU General Public License) Price:
1031 downloads
ruQueue 1.2.2
ruQueue provides a ticket tracking system written in PHP/MySQL. more>>
ruQueue provides a ticket tracking system written in PHP/MySQL.
The typical ruQueue use-case would be: an end user calls the Help Desk with an issue; a consultant creates a ticket describing the issue; the ticket is placed in a queue appropriate for the issue; the watcher of the queue is then notified of the ticket; the watcher resolves the issue, contacts the end user, and the ticket is then closed.
It has a variety of features to help you solve your problems in the above queue-based style.
You can use this web-based software to track any kind of request made to your organization. The typical ruQueue use-case would be:
.An end user calls the Help Desk with an issue.
.A consultant creates a ticket describing the issue.
.The ticket is placed in a queue appropriate for the issue.
.The watcher of the queue is then notified of the ticket.
.The watcher resolves the issue, contacts the end user, and the ticket is then closed.
<<lessThe typical ruQueue use-case would be: an end user calls the Help Desk with an issue; a consultant creates a ticket describing the issue; the ticket is placed in a queue appropriate for the issue; the watcher of the queue is then notified of the ticket; the watcher resolves the issue, contacts the end user, and the ticket is then closed.
It has a variety of features to help you solve your problems in the above queue-based style.
You can use this web-based software to track any kind of request made to your organization. The typical ruQueue use-case would be:
.An end user calls the Help Desk with an issue.
.A consultant creates a ticket describing the issue.
.The ticket is placed in a queue appropriate for the issue.
.The watcher of the queue is then notified of the ticket.
.The watcher resolves the issue, contacts the end user, and the ticket is then closed.
Download (0.17MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
PlusPlus 1.23
PlusPlus is a Delphi, VB, Java-like Perl preprocessor. more>>
PlusPlus is a Delphi, VB, Java-like Perl preprocessor.
SYNOPSIS
### Case 1: plain script
use PlusPlus;
/*
This is
a long awaited
multiline
comment
*/
my $nested_hash = {outer => {inner => {a => 1, b => [19, 73], c => 3}}}
$nested_hash.outer.inner.a = 5; # colon in variable names
$nested_hash.outer.inner.b.[1] = 37;
$dbh.do ("DROP DATABASE TEST"); # colon in method names
with ($nested_hash.outer.inner) { # with operator
($.a, $.c) = (10, 30);
print " b[0] = $.b.[0]n";
};
function f ($x, $y = 0) { # named parameters and default values
return sin ($x) * cos ($y)
};
### Case 2: working with a database
use PlusPlus;
use DBI;
my $dbh = DBI -> connect ($dsn, $user, $password);
select name, phone from staff where salary between ? and ? -> my $sth;
forsql $sth (1000, 1500) {
print "< tr > < td > $.name < /td > < td > $.phone < /td > < /tr >"
}
### Case 3: procedural module
use PlusPlus;
module Child (Ancestor::Mother, Ancestor::Father);
sub foo { ... }; # not exported
export sub bar { ... }; # exported by default
export_ok sub baz { ... }; # can be imported explicitly
### Case 4: class
class Child (Ancestor::Mother, Ancestor::Father);
method init { # constructor callback
($.x, $.y) = (10, 3);
}
method diag { # some method
sqrt ($.x * $.x + $.y * $.y)
}
method do_it_to_me ($coderef) { # one more method
&$coderef ($self);
}
getter fldname { # getter method
print "They asked my value!n";
return $.fldname;
}
setter fldname ($value) { # setter method
$.setting_counter ++;
$.fldname = $value;
}
<<lessSYNOPSIS
### Case 1: plain script
use PlusPlus;
/*
This is
a long awaited
multiline
comment
*/
my $nested_hash = {outer => {inner => {a => 1, b => [19, 73], c => 3}}}
$nested_hash.outer.inner.a = 5; # colon in variable names
$nested_hash.outer.inner.b.[1] = 37;
$dbh.do ("DROP DATABASE TEST"); # colon in method names
with ($nested_hash.outer.inner) { # with operator
($.a, $.c) = (10, 30);
print " b[0] = $.b.[0]n";
};
function f ($x, $y = 0) { # named parameters and default values
return sin ($x) * cos ($y)
};
### Case 2: working with a database
use PlusPlus;
use DBI;
my $dbh = DBI -> connect ($dsn, $user, $password);
select name, phone from staff where salary between ? and ? -> my $sth;
forsql $sth (1000, 1500) {
print "< tr > < td > $.name < /td > < td > $.phone < /td > < /tr >"
}
### Case 3: procedural module
use PlusPlus;
module Child (Ancestor::Mother, Ancestor::Father);
sub foo { ... }; # not exported
export sub bar { ... }; # exported by default
export_ok sub baz { ... }; # can be imported explicitly
### Case 4: class
class Child (Ancestor::Mother, Ancestor::Father);
method init { # constructor callback
($.x, $.y) = (10, 3);
}
method diag { # some method
sqrt ($.x * $.x + $.y * $.y)
}
method do_it_to_me ($coderef) { # one more method
&$coderef ($self);
}
getter fldname { # getter method
print "They asked my value!n";
return $.fldname;
}
setter fldname ($value) { # setter method
$.setting_counter ++;
$.fldname = $value;
}
Download (0.007MB)
Added: 2007-06-05 License: Perl Artistic License Price:
871 downloads
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.
<<lessIntegration 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.
Download (0.45MB)
Added: 2006-12-29 License: GPL (GNU General Public License) Price:
1035 downloads
ReadySET 0.9.3
ReadySET is a ready-to-use Software Engineering Templates. more>>
ReadySET is an open source project to produce and maintain a library of reusable software engineering document templates.
These templates provide a ready starting point for the documents used in software development projects. Using good templates can help developers work more quickly, but they also help to prompt discussion and avoid oversights.
This is an open source project that you are welcome to use for free and help make better. Existing packages of software engineering templates are highly costly and biased by the authorship of only a few people, by vendor-client relationships, or by the set of tools offered by a particular vendor.
These templates are in pure XHTML with CSS, not a proprietary file format. That makes them easier to edit and to track changes using freely available tools and version control systems. The templates are designed to always be used on the web; they use hyperlinks to avoid duplicating information.
The templates are not burdened with information about individual authorship or document change history. It is assumed that professional software developers will keep all project documents in version control systems that provide those capabilities.
These templates are not one-size-fits-all and they do not attempt to provide prescriptive guidance on the overall development process. We are developing a broad library of template modules for many purposes and processes.
The templates may be filled out in a suggested sequence or in any sequence that fits your existing process. They may be easily customized with any text or HTML editor.
Main features:
- High-quality outlines, sample text, and checklists.
- Uses simple web technologies: Pure XHTML and CSS.
- Templates for many common software engineering documents. Including:
- Project proposal template
- Project plan template
- Use case template
- QA plan template
- Several design templates
- System test case template
- Release checklist template
<<lessThese templates provide a ready starting point for the documents used in software development projects. Using good templates can help developers work more quickly, but they also help to prompt discussion and avoid oversights.
This is an open source project that you are welcome to use for free and help make better. Existing packages of software engineering templates are highly costly and biased by the authorship of only a few people, by vendor-client relationships, or by the set of tools offered by a particular vendor.
These templates are in pure XHTML with CSS, not a proprietary file format. That makes them easier to edit and to track changes using freely available tools and version control systems. The templates are designed to always be used on the web; they use hyperlinks to avoid duplicating information.
The templates are not burdened with information about individual authorship or document change history. It is assumed that professional software developers will keep all project documents in version control systems that provide those capabilities.
These templates are not one-size-fits-all and they do not attempt to provide prescriptive guidance on the overall development process. We are developing a broad library of template modules for many purposes and processes.
The templates may be filled out in a suggested sequence or in any sequence that fits your existing process. They may be easily customized with any text or HTML editor.
Main features:
- High-quality outlines, sample text, and checklists.
- Uses simple web technologies: Pure XHTML and CSS.
- Templates for many common software engineering documents. Including:
- Project proposal template
- Project plan template
- Use case template
- QA plan template
- Several design templates
- System test case template
- Release checklist template
Download (0.12MB)
Added: 2005-04-20 License: BSD License Price:
1655 downloads
CacheTable 0.2
CacheTable is a C++ template library that implements a very fast hash map container. more>>
CacheTable is a C++ template library that implements a very fast hash map container.
Its particularity, compared with std::hash_map and google::sparse_hash_map, is that it has a fixed size (decided it when it is created) and a random item replacement policy: in case of an "hash collision" the older item is "discarded" and replaced with the new one.
This container is ideal for implementing a caching system, when you want very fast item insertion and retrieval and you know the memory amount you want to dedicate ahead of time.
Enhancements:
- This release fixes a bug with deletion of iterator range, and work continues on more complete documentation.
- The test case has been reorganized to not require external libraries.
<<lessIts particularity, compared with std::hash_map and google::sparse_hash_map, is that it has a fixed size (decided it when it is created) and a random item replacement policy: in case of an "hash collision" the older item is "discarded" and replaced with the new one.
This container is ideal for implementing a caching system, when you want very fast item insertion and retrieval and you know the memory amount you want to dedicate ahead of time.
Enhancements:
- This release fixes a bug with deletion of iterator range, and work continues on more complete documentation.
- The test case has been reorganized to not require external libraries.
Download (0.11MB)
Added: 2007-01-27 License: BSD License Price:
1000 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 use case 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