cold case
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1486
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
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
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
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
Comparators 1.4
Java classes to include in your programs. Includes: HTMLArrayComparator.java compares two arrays of Strings of HTML, ignoring embedded tags. HTMLComparator.java compares two Strings of HTML, ignoring embedded tags. StringComparator.java compares two Strings, case sensitive. StringComparatorIgnoreCase.java compares two Strings, case insensitive. See http://mindprod.com/jgloss/comparators.html for general information on using comparators. more>>
Comparators - Java classes to include in your programs. Includes:
HTMLArrayComparator.java: Compares two arrays of Strings of HTML, ignoring embedded tags.
HTMLComparator.java: Compares two Strings of HTML, ignoring embedded tags.
StringComparator.java: Compares two Strings, case sensitive.
StringComparatorIgnoreCase.java: Compares two Strings, case insensitive.
See http://mindprod.com/jgloss/comparators.html for general information on using
comparators and generics.
Not useful on its own, though you can run the debugging harness with:
java com.mindprod.comparators.Comparators
Why the orange slice logo? Comparing apples and oranges,
though Comparators are primarily for comparing Objects of
the same class.
Enhancements:
Version 1.4
add pad and icon
System Requirements:<<less
Download (790Kb)
Added: 2007-05-22 License: Free Price: Free
11 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
nodoze 2.0
nodoze is a Perl script to repair websites built with MS Windows so that they will work properly on a UNIX server. more>>
nodoze is a Perl script to repair websites built with MS Windows so that they will work properly on a UNIX server.
It changes all file and directory names, and all relative URLS in the html, to lower case, and it changes all .htm extensions to .html.
When websites are built on on computers running Microsoft Windows, the case of file and directory names is often ignored.
Other "widowsizms" are also introduced (such as ending files with .htm instead of .html). This causes BIG problems if the site is served under unix.
What nodoze Changes
".htm" extensions in file names and in Relative URLs are changed to ".html"
< img src="document.htm" > becomes < img src="document.html" >
All files are renamed to lower case. All Relative URLs are changed to lower case
< img src="http:/Images/my.JPG" > becomes < img src="http:/images/my.jpg" >
"Dangerous" characters in URLs are escaped
< img src="a space.jpg" > becomes < img src="a%20space.jpg" >
"" characters in URLs become "/"
< img src="http:www.server.com" > becomes < img src="http://www.server.com" >
URLs are quoted
< img src=picture.jpg > becomes < img src="picture.jpg" >
Javascript: URLs are not changed by nodoze (i.e. the above doesnt apply to them)
Relative URLs (a.k.a Local URLs)
In a Relative URL the server is not named
< img src="http:/Local.JPG" > becomes < img src="http:/local.jpg" >
An Absolute URL is a mailto:, or a javascript:, or names a server
example: < img src="http://www.server.com/absolute.jpg" >
<<lessIt changes all file and directory names, and all relative URLS in the html, to lower case, and it changes all .htm extensions to .html.
When websites are built on on computers running Microsoft Windows, the case of file and directory names is often ignored.
Other "widowsizms" are also introduced (such as ending files with .htm instead of .html). This causes BIG problems if the site is served under unix.
What nodoze Changes
".htm" extensions in file names and in Relative URLs are changed to ".html"
< img src="document.htm" > becomes < img src="document.html" >
All files are renamed to lower case. All Relative URLs are changed to lower case
< img src="http:/Images/my.JPG" > becomes < img src="http:/images/my.jpg" >
"Dangerous" characters in URLs are escaped
< img src="a space.jpg" > becomes < img src="a%20space.jpg" >
"" characters in URLs become "/"
< img src="http:www.server.com" > becomes < img src="http://www.server.com" >
URLs are quoted
< img src=picture.jpg > becomes < img src="picture.jpg" >
Javascript: URLs are not changed by nodoze (i.e. the above doesnt apply to them)
Relative URLs (a.k.a Local URLs)
In a Relative URL the server is not named
< img src="http:/Local.JPG" > becomes < img src="http:/local.jpg" >
An Absolute URL is a mailto:, or a javascript:, or names a server
example: < img src="http://www.server.com/absolute.jpg" >
Added: 2005-10-10 License: Artistic License Price:
1476 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
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
Convert::Morse 0.04
Convert::Morse is a package to convert between ASCII text and MORSE alphabet. more>>
Convert::Morse is a package to convert between ASCII text and MORSE alphabet.
SYNOPSIS
use Convert::Morse qw(as_ascii as_morse is_morsable);
print as_ascii(.... . .-.. .-.. --- -- --- .-. ... .),"n";
# Helo Morse
print as_morse(Perl?),"n"; # .--. . .-. .-.. ..--..
print "Yes!n" if is_morsable(Helo Perl.); # print "Yes!"
This module lets you convert between normal ASCII text and international Morse code. You can redefine the token sets, if you like.
INPUT
ASCII text can have both lower and upper case, it will be converted to upper case prior to converting.
Morse code input consists of dashes - and dots .. The elements MUST NOT to have spaces between, e.g. A is .- and not . -. Characters MUST have at least one space between. Additonal spaces are left over to indicate word boundaries. This means .- -... means AB and and .- -... means A B.
The conversion routines are designed to be stable and ignore/skip unknown input, so that you can write:
print as_ascii(Hello -- --- .-. ... . Perl!);
beware, though, a single . or - at the end will be interpreted as . respective - and thus become E or T. Use Convert::Morse::error() to check wether all went ok or not.
OUTPUT
The output will always consist of upper case letters or, in case of as_morse(), of [-. ].
ERRORS
Unknown tokens in the input are ignored/skipped. In these cases you get the last error message with Convert::Morse::error().
Version restrictions:
- Can not yet do Japanese code nor German Umlaute.
<<lessSYNOPSIS
use Convert::Morse qw(as_ascii as_morse is_morsable);
print as_ascii(.... . .-.. .-.. --- -- --- .-. ... .),"n";
# Helo Morse
print as_morse(Perl?),"n"; # .--. . .-. .-.. ..--..
print "Yes!n" if is_morsable(Helo Perl.); # print "Yes!"
This module lets you convert between normal ASCII text and international Morse code. You can redefine the token sets, if you like.
INPUT
ASCII text can have both lower and upper case, it will be converted to upper case prior to converting.
Morse code input consists of dashes - and dots .. The elements MUST NOT to have spaces between, e.g. A is .- and not . -. Characters MUST have at least one space between. Additonal spaces are left over to indicate word boundaries. This means .- -... means AB and and .- -... means A B.
The conversion routines are designed to be stable and ignore/skip unknown input, so that you can write:
print as_ascii(Hello -- --- .-. ... . Perl!);
beware, though, a single . or - at the end will be interpreted as . respective - and thus become E or T. Use Convert::Morse::error() to check wether all went ok or not.
OUTPUT
The output will always consist of upper case letters or, in case of as_morse(), of [-. ].
ERRORS
Unknown tokens in the input are ignored/skipped. In these cases you get the last error message with Convert::Morse::error().
Version restrictions:
- Can not yet do Japanese code nor German Umlaute.
Download (0.006MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1178 downloads
Encode::RAD50 0.002
Encode::RAD50 is a Perl module that can convert to and from the Rad50 character set. more>>
Encode::RAD50 is a Perl module that can convert to and from the Rad50 character set.
SYNOPSIS
use Encode;
use Encode::RAD50; # Sorry about this.
$rad50 = encode (RAD50, FOO);
$ascii = decode (rad50, pack n, 10215);
binmode STDOUT, :encoding(rad50); # Perverse, but it works.
print A#C; # Gives a warning, since # isnt valid.
Because this is not a standard encoding, you will need to explicitly
use Encode::RAD50;
Though of course the name of the module is case-sensitive, the name of the encoding (passed to encode (), decode (), or ":encoding()") is not case-sensitive.
<<lessSYNOPSIS
use Encode;
use Encode::RAD50; # Sorry about this.
$rad50 = encode (RAD50, FOO);
$ascii = decode (rad50, pack n, 10215);
binmode STDOUT, :encoding(rad50); # Perverse, but it works.
print A#C; # Gives a warning, since # isnt valid.
Because this is not a standard encoding, you will need to explicitly
use Encode::RAD50;
Though of course the name of the module is case-sensitive, the name of the encoding (passed to encode (), decode (), or ":encoding()") is not case-sensitive.
Download (0.006MB)
Added: 2006-08-16 License: Perl Artistic License Price:
1164 downloads
Testitool 1.0 beta 6
Testitool is a QA test planning Web application. more>>
Testitool is an application written in PHP that allows its users to compose and manage QA test plans.
Main features:
Test Plan Management
- Use Testitool to compose rich test plans containing an unlimited number of test cases. Each test case can be mapped to a functional requirement (documented elsewhere), can be assigned a type (e.g. regression, functional, etc.), and more.
Manage Individual Instances of Each Test Plan
- Each test plan contains the master list of all test cases for a given product. However, for any given release you may not want to execute each and every test case. Testitool allows you to pick and choose which test case you will want to execute for any given instance of the test plan. Then track the pass and fail rate of each test plan instance.
Generate Reports
- Testitool allows anyone to view a variety of different test plan reports including: a bug report, a progress report, and failure rate report, and more.
Import/Export Test Cases from Excel
- Do you prefer to use a program like Excel to write your test plans - Testitool allows users to easily import and export test plans and all of their test cases to and from CSV file formats.
<<lessMain features:
Test Plan Management
- Use Testitool to compose rich test plans containing an unlimited number of test cases. Each test case can be mapped to a functional requirement (documented elsewhere), can be assigned a type (e.g. regression, functional, etc.), and more.
Manage Individual Instances of Each Test Plan
- Each test plan contains the master list of all test cases for a given product. However, for any given release you may not want to execute each and every test case. Testitool allows you to pick and choose which test case you will want to execute for any given instance of the test plan. Then track the pass and fail rate of each test plan instance.
Generate Reports
- Testitool allows anyone to view a variety of different test plan reports including: a bug report, a progress report, and failure rate report, and more.
Import/Export Test Cases from Excel
- Do you prefer to use a program like Excel to write your test plans - Testitool allows users to easily import and export test plans and all of their test cases to and from CSV file formats.
Download (0.028MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1655 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
xautolock 2.1
xautolock is an automatic X screen-locker/screen-saver. more>>
Xautolock monitors console activity under the X window system, and fires up a program of your choice if nothing happens during a user configurable period of time.
You can use this to automatically start up a screen locker in case you tend to forget to do so manually before having a coffee break.
<<lessYou can use this to automatically start up a screen locker in case you tend to forget to do so manually before having a coffee break.
Download (0.033MB)
Added: 2005-04-25 License: Free To Use But Restricted Price:
1642 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 cold 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