case ih
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1474
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
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
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
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
Gpart 0.1h
Gpart is a tool which tries to guess the primary partition table of a PC-type hard disk in case of a damaged patition table. more>>
Gpart is a tool which tries to guess the primary partition table of a PC-type hard disk in case the primary partition table in sector 0 is damaged, incorrect or deleted. The guessed table can be written to a file or device. Supported (guessable) filesystem or partition types by Gpart are:
- DOS/Windows FAT (FAT 12/16/32)
- Linux ext2
- Linux swap partitions versions 0 and 1 (Linux >= v2.2.X)
- OS/2 HPFS
- Windows NT/2000 FS
- *BSD disklabels
- Solaris/x86 disklabels
- Minix FS
- Reiser FS
- Linux LVM physical volume module (LVM by Heinz Mauelshagen)
- SGI XFS on Linux
- BeOS filesystem
- QNX 4.x filesystem
Enhancements:
- New support for the following filesystems: BeOS, QNX 4.x & SGI XFS.
- Updated Reiser filesystem support (Francis Devereux).
- Updated LVM support.
- Several small fixes from contributors.
<<less- DOS/Windows FAT (FAT 12/16/32)
- Linux ext2
- Linux swap partitions versions 0 and 1 (Linux >= v2.2.X)
- OS/2 HPFS
- Windows NT/2000 FS
- *BSD disklabels
- Solaris/x86 disklabels
- Minix FS
- Reiser FS
- Linux LVM physical volume module (LVM by Heinz Mauelshagen)
- SGI XFS on Linux
- BeOS filesystem
- QNX 4.x filesystem
Enhancements:
- New support for the following filesystems: BeOS, QNX 4.x & SGI XFS.
- Updated Reiser filesystem support (Francis Devereux).
- Updated LVM support.
- Several small fixes from contributors.
Download (0.26MB)
Added: 2006-05-10 License: GPL (GNU General Public License) Price:
1285 downloads
massrename 0.9.7
massrename is a general-purpose utility for batch-renaming file extensions. more>>
massrename is a general-purpose utility for batch-renaming file extensions, as well as strings within the base filename (for example, "SomeblehFile.mp3" to "SomeblahFile.mp3")
Usage: /usr/bin/massrename [ ARGUMENTS ] ...
Examples:
massrename --from mp3 --to ogg # rename *.mp3 to *.ogg
massrename -f ogg -t mp3 -n # rename *.ogg to *.mp3, no logging
Operation Modifiers:
Required arguments:
-f, --from source file extension or string to rename
-t, --to output file extension or string to rename to
Optional arguments:
-b, --beginning add a string to the beginning of the filename
-c, --change-dir DIR rename files in DIR instead of the current directory
-d, --dotfiles rename hidden files too
-e, --end add a string to the end of the filename
-h, --help display this help output and exit
-i, --ignore-case ignores filenames case when searching
for files to rename
-n, --no-logs dont make a log of renamed files
-p, --perl-rename use perls rename() function instead of the systems
"mv" command
-v, --version display version information and exit
-w, --within search for string within filename instead of extension
Enhancements:
- Minor bugfixes.
- The README file has been revised.
- An optional argument "--ignore-case" has been added, allowing massrename to ignore the case of filenames to be renamed at runtime.
- Debian and Red Hat package formats have been added.
<<lessUsage: /usr/bin/massrename [ ARGUMENTS ] ...
Examples:
massrename --from mp3 --to ogg # rename *.mp3 to *.ogg
massrename -f ogg -t mp3 -n # rename *.ogg to *.mp3, no logging
Operation Modifiers:
Required arguments:
-f, --from source file extension or string to rename
-t, --to output file extension or string to rename to
Optional arguments:
-b, --beginning add a string to the beginning of the filename
-c, --change-dir DIR rename files in DIR instead of the current directory
-d, --dotfiles rename hidden files too
-e, --end add a string to the end of the filename
-h, --help display this help output and exit
-i, --ignore-case ignores filenames case when searching
for files to rename
-n, --no-logs dont make a log of renamed files
-p, --perl-rename use perls rename() function instead of the systems
"mv" command
-v, --version display version information and exit
-w, --within search for string within filename instead of extension
Enhancements:
- Minor bugfixes.
- The README file has been revised.
- An optional argument "--ignore-case" has been added, allowing massrename to ignore the case of filenames to be renamed at runtime.
- Debian and Red Hat package formats have been added.
Download (0.008MB)
Added: 2006-11-24 License: Artistic License Price:
1172 downloads
Campus Chat Server 0.1
Campus Chat Server is a chat server intended for use in the Cadiz University campus network. more>>
Campus Chat Server project is a chat server intended for use in the Cadiz University campus network.
Enhancements:
- hash_maps are now used instead of maps, so the cost of lookup or insertion is O(1) in the average case, instead of O(logn).
<<lessEnhancements:
- hash_maps are now used instead of maps, so the cost of lookup or insertion is O(1) in the average case, instead of O(logn).
Download (0.006MB)
Added: 2006-08-30 License: GPL (GNU General Public License) Price:
1158 downloads
FavNuts 0.1
FavNuts converts IE favorite files to a Netscape bookmark file. more>>
FavNuts is a Perl script that converts IE favorite files to a Netscape bookmark file and sorts the entries into alphabetical order with a directory hierarchy.
This is the information page on a piece of software I wrote that I am putting here in case users want to comment on it.
<<lessThis is the information page on a piece of software I wrote that I am putting here in case users want to comment on it.
Download (0.001MB)
Added: 2006-06-24 License: GPL (GNU General Public License) Price:
1217 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
GPRename 2.4
GPRename is a GUI batch file renamer based on Gtk-Perl. more>>
GPRename is a GUI batch file renamer based on Gtk-Perl.
GPRename can rename files numerically, insert/delete characters at/between specified position(s), replace strings (either using regular express or not), and change case.
<<lessGPRename can rename files numerically, insert/delete characters at/between specified position(s), replace strings (either using regular express or not), and change case.
Download (0.036MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
831 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
IPCurve 0.95
IPCurve is an Internet/LAN Achtung die Kurve! more>>
IPCurve is an Internet/LAN Achtung die Kurve!
Notes:
- You will only see other players LAN games if the firewall is shut down on both the server and the client, or if the ports 7777 (LAN Discovery Request), 7778 (LAN Discovery Reply) and 8080 (Game) are open.
- If the steering doesnt work (or the game is laggy), the connection or the server is too slow. Lower the "Display Quality" in this case.
Enhancements:
- enhanced user interface
- gameplay profiles
- MacOS X version
<<lessNotes:
- You will only see other players LAN games if the firewall is shut down on both the server and the client, or if the ports 7777 (LAN Discovery Request), 7778 (LAN Discovery Reply) and 8080 (Game) are open.
- If the steering doesnt work (or the game is laggy), the connection or the server is too slow. Lower the "Display Quality" in this case.
Enhancements:
- enhanced user interface
- gameplay profiles
- MacOS X version
Download (0.56MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
1044 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
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 case ih 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