actitime extended
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1115
actiTIME 1.45
actiTIME project is a Web-based standalone time tracking system that is streamlined for billing and management purposes. more>>
actiTIME project is a Web-based standalone time tracking system that is streamlined for billing and management purposes. You can keep track of the time worked for your customers and projects.
Several configurable reports allow you to analyze the collected time expenses in different ways and get comprehensive and clean data for time management purposes. It integrates with QuickBooks accounting software.
Main features:
- Time expenses are recorded on by-customer and by-project basis
- Overtime and undertime calculations and reports
- Co-workers can share information using daily task comments
- Support of billable and non-billable task statuses
- Explicit reports for billing and management purposes
- Individual access rights management
- Entering/Modifying the time-track of other users
- Integration with Intuit QuickBooks
- Data export in the CSV format
- Access to the system through a web browser
- Support of different database platforms
- Runs under most operational systems
- Free of charge
Enhancements:
- The ability to rename hierarchy levels was added: Customer, Project, Task.
- Performance was improved and a memory leak on the server related to user session data was fixed.
- There were more than 30 small fixes and improvements.
<<lessSeveral configurable reports allow you to analyze the collected time expenses in different ways and get comprehensive and clean data for time management purposes. It integrates with QuickBooks accounting software.
Main features:
- Time expenses are recorded on by-customer and by-project basis
- Overtime and undertime calculations and reports
- Co-workers can share information using daily task comments
- Support of billable and non-billable task statuses
- Explicit reports for billing and management purposes
- Individual access rights management
- Entering/Modifying the time-track of other users
- Integration with Intuit QuickBooks
- Data export in the CSV format
- Access to the system through a web browser
- Support of different database platforms
- Runs under most operational systems
- Free of charge
Enhancements:
- The ability to rename hierarchy levels was added: Customer, Project, Task.
- Performance was improved and a memory leak on the server related to user session data was fixed.
- There were more than 30 small fixes and improvements.
Download (5.1MB)
Added: 2007-06-22 License: Freeware Price:
856 downloads
PRECC eXtended 2.58
PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. more>>
PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. The generated code is ANSI C and ANSI C++; the code will compile and run native under either C or C++.
Specification scripts are extended BNF with inherited and synthetic attributes. Scripts can be compiled in separate modules and linked later. Metalevel production rules are allowed in the scripts. The technology is essentially LL(oo) with optimizations.
Enhancements:
- A "debian" subdirectory has been added in order to allow the building of deb packages from the source archive.
<<lessSpecification scripts are extended BNF with inherited and synthetic attributes. Scripts can be compiled in separate modules and linked later. Metalevel production rules are allowed in the scripts. The technology is essentially LL(oo) with optimizations.
Enhancements:
- A "debian" subdirectory has been added in order to allow the building of deb packages from the source archive.
Download (0.33MB)
Added: 2007-06-27 License: LGPL (GNU Lesser General Public License) Price:
849 downloads
Crossfire-Extended 1.0.0.0.0C
Crossfire-Extended is an extended media for the Free/OpenSource MMUD/RPG crossfire. more>>
Crossfire-Extended is an extended media for the Free/OpenSource MMUD/RPG Crossfire.
Crossfire-Extended is a successor project/media-fork to the RPG crossfire. It contains all the maps, features and objects of crossfire but adds 50% to the world and aims at a higher rate of media creation.
Another aim (which has been achieved) is the differentiation of different regions; different architecture, different monsters, different foods, and different weapons available.
<<lessCrossfire-Extended is a successor project/media-fork to the RPG crossfire. It contains all the maps, features and objects of crossfire but adds 50% to the world and aims at a higher rate of media creation.
Another aim (which has been achieved) is the differentiation of different regions; different architecture, different monsters, different foods, and different weapons available.
Download (MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
962 downloads
Regexp::Extended 0.01
Regexp::Extended is a Perl wrapper that extends the re module with new features. more>>
Regexp::Extended is a Perl wrapper that extends the re module with new features.
SYNOPSIS
use Regexp::Extended qw(:all);
# (?...): named parameters
$date =~ /(? d+)-(? d+)-(? d+)/;
if ("2002-10-30" =~ /$date/) {
print "The date is : $::year->[0]-$::month->[0]-$::day->[0]n";
}
# You can also access individial matches in ()* or ()+
"1234" =~ /(? d)+/;
print "Digit 1 is : $::digit->[0]n";
print "Digit 2 is : $::digit->[1]n";
...
# You can also modify individual matches
"1234" =~ /(? d)+/;
$::digit->[0] = 99;
$::digit->[1] = 88;
print "Modified string is: " . rebuild("1234"); # "998834"
# (?*...): upto a certain pattern
$text = "this is some italic text";
$text =~ /((?*)) /; # $1 = "italic"
# (?+...): upto and including a certain pattern
$text = "this is some italic text";
$text =~ /((?+))/; # $1 = "italic"
# You can also use fonctions inside patterns:
sub foo {
return "foo";
}
"foo bar" =~ /((?&foo()))/; # $1 => "foo"
Rexexp::Extended is a simple wrapper arround the perl rexexp syntax. It uses the overload module to parse constant qr// expressions and substitute known operators with an equivalent perl re.
<<lessSYNOPSIS
use Regexp::Extended qw(:all);
# (?...): named parameters
$date =~ /(? d+)-(? d+)-(? d+)/;
if ("2002-10-30" =~ /$date/) {
print "The date is : $::year->[0]-$::month->[0]-$::day->[0]n";
}
# You can also access individial matches in ()* or ()+
"1234" =~ /(? d)+/;
print "Digit 1 is : $::digit->[0]n";
print "Digit 2 is : $::digit->[1]n";
...
# You can also modify individual matches
"1234" =~ /(? d)+/;
$::digit->[0] = 99;
$::digit->[1] = 88;
print "Modified string is: " . rebuild("1234"); # "998834"
# (?*...): upto a certain pattern
$text = "this is some italic text";
$text =~ /((?*)) /; # $1 = "italic"
# (?+...): upto and including a certain pattern
$text = "this is some italic text";
$text =~ /((?+))/; # $1 = "italic"
# You can also use fonctions inside patterns:
sub foo {
return "foo";
}
"foo bar" =~ /((?&foo()))/; # $1 => "foo"
Rexexp::Extended is a simple wrapper arround the perl rexexp syntax. It uses the overload module to parse constant qr// expressions and substitute known operators with an equivalent perl re.
Download (0.005MB)
Added: 2007-04-03 License: Perl Artistic License Price:
934 downloads
Net::Cisco::AccessList::Extended 0.03
Net::Cisco::AccessList::Extended is a Perl module to generate Cisco extended access-lists. more>>
Net::Cisco::AccessList::Extended is a Perl module to generate Cisco extended access-lists.
SYNOPSIS
use Net::Cisco::AccessList::Extended;
my $l = Net::Cisco::AccessList::Extended->new(INCOMING_LIST);
$l->push({
access => permit,
proto => ip,
src_og => friendly_net,
dst_og => local_net,
});
print $l->dump, "n";
# prints the access-list commands to STDOUT, something like:
access-list INCOMING_LIST extended permit ip object-group friendly_net object-group local_net
Use this module to manage the presentation of Cisco Extended Access Lists. List entries are pushed into the object in a simple parmaterized fashion, and you can then dump the list in a format that is parsable by Cisco devices.
Support is included for list entries that reference Object Groups (as used by more recent PIX OS and FWSM software versions).
<<lessSYNOPSIS
use Net::Cisco::AccessList::Extended;
my $l = Net::Cisco::AccessList::Extended->new(INCOMING_LIST);
$l->push({
access => permit,
proto => ip,
src_og => friendly_net,
dst_og => local_net,
});
print $l->dump, "n";
# prints the access-list commands to STDOUT, something like:
access-list INCOMING_LIST extended permit ip object-group friendly_net object-group local_net
Use this module to manage the presentation of Cisco Extended Access Lists. List entries are pushed into the object in a simple parmaterized fashion, and you can then dump the list in a format that is parsable by Cisco devices.
Support is included for list entries that reference Object Groups (as used by more recent PIX OS and FWSM software versions).
Download (0.007MB)
Added: 2007-02-27 License: Perl Artistic License Price:
974 downloads
Extended Path Index 2.4
Extended Path Index provides an extended index type based on the Zope index type that has additional query methods. more>>
Extended Path Index provides an extended index type based on the Zope index type that has additional query methods that are especially suited to generating navigation trees, site maps - and also supports querying a single folder, something the standard PathIndex cant do.
Note: You normally dont need to install this separately, as it ships as a standard part of Plone 2.1 and up. This download is for people wanting to use it outside of Plone or in earlier releases of Plone.
This index supports depth limiting, and the ability to build a structure usable for navtrees and sitemaps. The actual navtree implementations are not (and should not) be in this Product, this is the index implementation only.
Main features:
- Can construct a site map with a single catalog query
- Can construct a navigation tree with a single catalog query
- Doesnt wake up any objects
- Much lower RAM consumption
- Massively improved performance
- Catalog based instead of traversal based
Works with:
- Plone 2.5.1
- Plone 2.5
- Plone 2.1.4
- Plone 2.1.3
- Plone 2.1.2
- Plone 2.1.1
- Plone 2.1
Enhancements:
- A minor release for Plone 2.5.1
<<lessNote: You normally dont need to install this separately, as it ships as a standard part of Plone 2.1 and up. This download is for people wanting to use it outside of Plone or in earlier releases of Plone.
This index supports depth limiting, and the ability to build a structure usable for navtrees and sitemaps. The actual navtree implementations are not (and should not) be in this Product, this is the index implementation only.
Main features:
- Can construct a site map with a single catalog query
- Can construct a navigation tree with a single catalog query
- Doesnt wake up any objects
- Much lower RAM consumption
- Massively improved performance
- Catalog based instead of traversal based
Works with:
- Plone 2.5.1
- Plone 2.5
- Plone 2.1.4
- Plone 2.1.3
- Plone 2.1.2
- Plone 2.1.1
- Plone 2.1
Enhancements:
- A minor release for Plone 2.5.1
Download (0.014MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
940 downloads
Extended Cookie Manager 0.8
Extended Cookie Manager is a Firefox extension that detects if a website sends a cookie and shows if this cookie was blocked. more>>
Extended Cookie Manager is a Firefox extension that detects if a website sends a cookie and shows if this cookie was blocked, allowed or only allowed for session in the statusbar of your browser. It also enables you to change the cookie permissions of websites on demand.
Extended Cookie Manager is a much easier and less bothering way to handle cookies than letting Firefox ask you everytime to allow a cookie or not.
Languages: English, Dutch, German.
<<lessExtended Cookie Manager is a much easier and less bothering way to handle cookies than letting Firefox ask you everytime to allow a cookie or not.
Languages: English, Dutch, German.
Download (0.015MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
847 downloads
Extended Python Debugger 1.22
Extended Python Debugger is a (slightly) more complete debugger for Python than the stock pdb.py debugger. more>>
Extended Python Debugger is a complete debugger for Python than the stock pdb.py debugger.
It supports a "restart" command and stack traces that show fewer ?s and give better information for exec statements.
Stepping/nexting skips over method/function "defs". It tries to follow gdbs command set unless there is good reason not to.
<<lessIt supports a "restart" command and stack traces that show fewer ?s and give better information for exec statements.
Stepping/nexting skips over method/function "defs". It tries to follow gdbs command set unless there is good reason not to.
Download (0.094MB)
Added: 2007-04-16 License: Python License Price:
923 downloads
Content Feeder 2.0
Content Feeder is a library used for assembling content feeds. more>>
ContentFeeder - A library used for assembling content feeds. RSS 2.0 is currently the only format supported, but can easily be extended to handle more.
ContentFeeder_RSS2 is the class name to instantiate to create RSS 2.0 feeds.
Example:
require(ContentFeeder.class.php);
$rss =& new ContentFeeder_RSS2;
Enhancements:
- change default character set to UTF-8
- change default escapement to none
- add escape type of none
- add setDefaultEscapeType()
<<lessContentFeeder_RSS2 is the class name to instantiate to create RSS 2.0 feeds.
Example:
require(ContentFeeder.class.php);
$rss =& new ContentFeeder_RSS2;
Enhancements:
- change default character set to UTF-8
- change default escapement to none
- add escape type of none
- add setDefaultEscapeType()
Download (0.008MB)
Added: 2005-08-29 License: GPL (GNU General Public License) Price:
1518 downloads
Extended Borders for Photos 1.5
Extended Borders for Photos is an extension of the simpler border+copyright script, but can be a bit more complex. more>>
Extended Borders for Photos is an extension of the simpler border+copyright script, but can be a bit more complex.
It allows you to add double borders, add copyright notice and title, as well as decide fonts, font-sizes and positions of the title and copyright notice.
Support for blurring the copyright and title is also included. Update to 1.5 fixes upgrade to Gimp 2.2 problem.
<<lessIt allows you to add double borders, add copyright notice and title, as well as decide fonts, font-sizes and positions of the title and copyright notice.
Support for blurring the copyright and title is also included. Update to 1.5 fixes upgrade to Gimp 2.2 problem.
Download (MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1143 downloads
Noname Network 0.1.7
Noname Network provides a powerful file-sharing network. more>>
Noname Network provides a powerful file-sharing network.
The Noname network is a gnutella-based network that features a different and more flexible protocol. The client and network currently support filesharing, but the protocol can be extended to support more features.
<<lessThe Noname network is a gnutella-based network that features a different and more flexible protocol. The client and network currently support filesharing, but the protocol can be extended to support more features.
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
LLnextgen 0.5.0
LLnextgen is an Extended LL(1) parser generator. more>>
LLnextgen is an Extended-LL(1) parser generator. LLnextgen project is a rewrite of the LLgen parser generator by D. Grune and C.J.H. Jacobs which is part of the Amsterdam Compiler Kit (ACK).
Like all parser generators, LLnextgen takes the description of the grammar with associated actions as input, and generates a parser routine for use in compilers and other text processing programs.
LLgen, and therefore LLnextgen, extends on the LL(1) class of parser generators by allowing FIRST/FIRST conflicts and FIRST/FOLLOW conflicts to be resolved with both static and dynamic conditions.
Enhancements:
- This release adds a new operator for specifying an optional-final repetition.
- This is useful for implementing grammar rules like C99/C++ enums where a comma after the last constant is allowed, but not required.
- An option was added to change the extensions of the generated files.
<<lessLike all parser generators, LLnextgen takes the description of the grammar with associated actions as input, and generates a parser routine for use in compilers and other text processing programs.
LLgen, and therefore LLnextgen, extends on the LL(1) class of parser generators by allowing FIRST/FIRST conflicts and FIRST/FOLLOW conflicts to be resolved with both static and dynamic conditions.
Enhancements:
- This release adds a new operator for specifying an optional-final repetition.
- This is useful for implementing grammar rules like C99/C++ enums where a comma after the last constant is allowed, but not required.
- An option was added to change the extensions of the generated files.
Download (MB)
Added: 2007-05-27 License: Open Software License Price:
880 downloads
Extended C++ Callback Library 0.0.6
Extended C++ Callback Library provides functors and delegates for up to ten parameters. more>>
Extended C++ Callback Library provides functors and delegates for up to ten parameters.
Some callback "containers" will make life easier in special cases. For example, with DelegateList, you are able to execute all callbacks with a single call.
Enhancements:
- added ReturnType Delegate1::operator()(Param1 val1)
- added void Delegate1::operator()()
- added void Delegate0::operator()()
<<lessSome callback "containers" will make life easier in special cases. For example, with DelegateList, you are able to execute all callbacks with a single call.
Enhancements:
- added ReturnType Delegate1::operator()(Param1 val1)
- added void Delegate1::operator()()
- added void Delegate0::operator()()
Download (0.52MB)
Added: 2006-03-30 License: LGPL (GNU Lesser General Public License) Price:
1306 downloads
Extended attributes for Python 0.1.3
Extended attributes for Python is a Python module created to manipulate extended attributes in filesystems that support them. more>>
Extended attributes for Python is a Python module that can manipulate extended attributes in filesystems that support them.
<<less Download (0.012MB)
Added: 2005-12-03 License: GPL (GNU General Public License) Price:
1420 downloads
Extended File Stealth System 2005-01-20
Extended File Stealth System provides a tool for protecting uploaded files using cryptography. more>>
Extended File Stealth System provides a tool for protecting uploaded files using cryptography.
The Enhanced File Crypt/eXtended File Stealth System (EFC/XFSS) makes your uploaded files safe on the server so that no one can read them without knowing a few details to decipher the files.
It generates different obfuscated names and encrypted files so no one will know what the original format or name was
<<lessThe Enhanced File Crypt/eXtended File Stealth System (EFC/XFSS) makes your uploaded files safe on the server so that no one can read them without knowing a few details to decipher the files.
It generates different obfuscated names and encrypted files so no one will know what the original format or name was
Download (0.057MB)
Added: 2007-02-07 License: LGPL (GNU Lesser General Public License) Price:
989 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 actitime extended 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