Main > Free Download Search >

Free extend software for linux

extend

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1107
Regexp::Extended 0.01

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.

<<less
Download (0.005MB)
Added: 2007-04-03 License: Perl Artistic License Price:
934 downloads
Extend For JavaScript 1.1

Extend For JavaScript 1.1


Extend For JavaScript allows you to use traditional single-class inheritance in your JavaScript applications. more>>
Extend For JavaScript allows you to use traditional single-class inheritance in your JavaScript applications. Extend For JavaScript also gives you many advanced features such as runtime class modification, introspection, and change.
It is simple, and does not depend on any other library. It works well with Prototype, jQuery, or MochiKit.
Main features:
- Can be used as a drop-in replacement to the current Prototype Class.create function
- Flexible and reliable super-like functionality
- Rich class-meta information, such as the list of methods defined in class, and for each other method, a link to the class which declared it, and links to all subclasses.
- Dynamic reparenting, which allows to change an existing class parent class.
- Dynamic class change, when you want an object to change its class on the fly.
<<less
Download (0.006MB)
Added: 2006-11-21 License: BSD License Price:
1070 downloads
Extended Path Index 2.4

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
<<less
Download (0.014MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
940 downloads
Extended Cookie Manager 0.8

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.

<<less
Download (0.015MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
847 downloads
Crossfire-Extended 1.0.0.0.0C

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.

<<less
Download (MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
962 downloads
Extended Python Debugger 1.22

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.

<<less
Download (0.094MB)
Added: 2007-04-16 License: Python License Price:
923 downloads
Tangram::Type::Extending 2.10

Tangram::Type::Extending 2.10


Tangram::Type::Extending is a Perl module for teaching Tangram about new types. more>>
Tangram::Type::Extending is a Perl module for teaching Tangram about new types.

Tangram::Type is the root of a hierarchy of classes that are responsible mapping individual field to SQL entities (columns in the simplest cases). There is one Type object per persistent field.
Adding support for new types amounts to adding subclasses to Tangram::Type.

WRITING NEW TYPES

Tangram is organized in several subsystems, described below.

Schema is the repository for information about all the persistent aspects of a system: classes, inheritance relationships, fields, etc. It also contains graph-traversal algorithms, which are not currently documented.

Storage deals with objects as a whole: insertion, updating, multiple load detection, cycle handling, transactions, connections. It also serves as an entry point in the system. Storage does not manipulate fields directly.

Cursor deals with polymorphic retrieval of objects. It builds SELECT statements on the basis of the information in the hash. Cursor does not manipulate fields directly either.

The Type hierarchy deals with individual fields, and not with entire objects. More about it in a moment.

The Expr hierarchy deals with entities on the remote side; this includes expressions proper, Filters and Remotes.

Types are responsible for performing the mapping between a field of a given Perl type and a relational entity. The simplest Types merely transfer between one Perl field and one column. Sometimes it makes sense to have several mappings (and hence several Types) for the same Perl type; for example, Perl arrays can be mapped either using a link table, or one or several columns that live on the elements table.

Users dont deal with Type objects directly: they indicate that a series of fields should be mapped in a certain way by putting the fields under a given typetag in the field hash. The type registers itself with Tangram by adding a typetag in the %Tangram::Schema::TYPES hash. The value is the Type object. Up to now all Types have been singletons, but this is not a rule.

Anybody whos planning to write new Types should examine Scalar.pm first. It contains very simple mappings between one field and one column.

A Type must implement the methods described below. Keep the following facts in mind while reading further:

1. A Type is responsible for transfering all the *direct* fields for a given *class*. This excludes inherited fields. OTOH, the same Type can be called more than once for the same object, because the same Type may be used in several classes that appear in a particular objects inheritance graph.

<<less
Download (0.15MB)
Added: 2006-09-22 License: Perl Artistic License Price:
1128 downloads
Extended Borders for Photos 1.5

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.

<<less
Download (MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1143 downloads
Extended C++ Callback Library 0.0.6

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()()
<<less
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 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
Net::Cisco::AccessList::Extended 0.03

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).

<<less
Download (0.007MB)
Added: 2007-02-27 License: Perl Artistic License Price:
974 downloads
Extended Universal Resource Library 0.2

Extended Universal Resource Library 0.2


Extended Universal Resource Library is a pure Java library for cleaner, more flexible file access in Java. more>>
Extended Universal Resource Library is a pure Java library for cleaner, more flexible file access in Java.
How data is stored is completely transparent to the client, since the library is meant to replace java.io.File.
It provides implementations for handling local files, Jar/Zip archives, and XML documents. (Implementations for CVS and FTP are available seperately.) Other storage providers can be written and plugged in.
It also provides a merged filesystem implementation that allows multiple hierarchies to appear as one and to override each other in a controlled way. Other features include notification of changes to files, and support for attaching (dynamically updatable) actions to file objects.
Filesystems are an abstraction on top of java.io.File (in the case of local files), that provide a number of useful things:
- File storage is completely abstracted - third parties can create support for access to file-like objects stored in an arbitrary manner, such as in a database, or in a version control system.
- Built-in support for ZIP/JAR archives and XML-based filesystems and the ability to transparently use other filesystems supported by NetBeans (such as the FTP filesystem) by adding the necessary classes
- Supports listening for change events if a file is externally modified
- Ability to add arbitrary "status" data to a file object and be notified of changes on it
- Support for actions on file objects, allowing you to define what actions are possible on a given file (and dynamically update these), and then expose those actions through your user interface.
<<less
Download (0.32MB)
Added: 2006-02-15 License: MPL (Mozilla Public License) Price:
1346 downloads
Extended File Stealth System 2005-01-20

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

<<less
Download (0.057MB)
Added: 2007-02-07 License: LGPL (GNU Lesser General Public License) Price:
989 downloads
GetMeDone 0.6

GetMeDone 0.6


GetMeDone is a task manager in the spirit of Getting Things Done. more>>
GetMeDone is a task manager in the spirit of Getting Things Done. It uses PostgreSQL as a backend and is written in Tcl/Tk.
Currently only tested on Linux, it should be easy to extend to run on Mac OS and Windows.
It features easy filtering of contexts, priorities, and time, advanced recurrent tasks, linking tasks to projects, deadlines, an ideas list, and the ability to defer tasks to future dates.
Enhancements:
- Fix bug with editing task with today as the deadline
<<less
Download (0.22MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1111 downloads
conTEXT 2k

conTEXT 2k


conTEXT is an amaroK script that looks for text or html files in the playing directory and inserts them in a new manageable box. more>>
conTEXT is an amaroK script that looks for text or html files in the playing directory and inserts them in a new manageable box into the context browser.
I hope you dont expect too much of a script thats named almost like a tab in amaroK but there already are some ideas to extend its functionality...
Usage:
Scrolling: Left-click an arrow to speed up. Right-click to jump a page up/down. You can also use standard konqueror controls: Shift+ArrowKeys for scrolling, Alt+Mousewheel for horizontal scrolling, Ctrl+Mousewheel for zooming.
Drag the lower box border to resize the box, drag the box header to change its position.
Enhancements:
- fixed fast scrolling for new khtml versions; fixed playlouder.com; fixed rollingstone display; fixed plattentests.de referenzen
<<less
Download (0.057MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
1496 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5