iriverter 0.16
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 92
iriverter 0.16
iriverter facilitate the conversion of almost any video format to one that is playable on various multimedia players. more>>
iriverter is a cross-platform frontend to mencoder designed to facilitate the conversion of almost any video format to one that is playable on various multimedia players. It can convert almost any video format to one that is playable on various multimedia players, like the iRiver H320, H340, PMP120, PMP140, U10, iAudio X5 and iPod Video.
Enhancements:
- Update clix / U10 profile
- Better defaults for X5
- Added Zen Vision:M profile (thanks Mat Sheehan)
- Added logging to diagnose problems easier (Help->Log Viewer)
- Simplified conversion code
- Fixed black and white wmv conversions
- Installer now optionally installs codecs like Real and Windows Media
- Support for iPod Video (not enabled yet)
<<lessEnhancements:
- Update clix / U10 profile
- Better defaults for X5
- Added Zen Vision:M profile (thanks Mat Sheehan)
- Added logging to diagnose problems easier (Help->Log Viewer)
- Simplified conversion code
- Fixed black and white wmv conversions
- Installer now optionally installs codecs like Real and Windows Media
- Support for iPod Video (not enabled yet)
Download (0.30MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
871 downloads
VTE 0.16.7
VTE library inserts terminal capability strings into a tree of tables. more>>
VTE library inserts terminal capability strings into a tree of tables.
You could say that VTE is something of a research project of mine, based on the simple question: "if programs can use a termcap file (through either libtermcap or curses or ncurses) to determine how to drive a terminal, why cant a terminal emulator use a termcap file to determine how to behave?"
Update: the answer is most likely "because applications which use curses have more detailed information than that which is found in termcap".
What does VTE include?
VTE includes a library (libvte) which implements such a terminal emulator widget for GTK+ 2.2/2.4, and a sample application (vte) which wraps that widget in a GTK window. Because Im more concerned with whether or not it works, all settings are hard-coded to whatever I needed to test the last time I touched it. If you actually want to use the widget to get work done, you should probably be using gnome-terminal.
How does it work?
The VTE library inserts terminal capability strings into a tree of tables, and then uses it to determine if data received from a pseudo-terminal is a control sequence or just random data. The sample program "interpret" illustrates more or less what the widget sees after it filters incoming data.
<<lessYou could say that VTE is something of a research project of mine, based on the simple question: "if programs can use a termcap file (through either libtermcap or curses or ncurses) to determine how to drive a terminal, why cant a terminal emulator use a termcap file to determine how to behave?"
Update: the answer is most likely "because applications which use curses have more detailed information than that which is found in termcap".
What does VTE include?
VTE includes a library (libvte) which implements such a terminal emulator widget for GTK+ 2.2/2.4, and a sample application (vte) which wraps that widget in a GTK window. Because Im more concerned with whether or not it works, all settings are hard-coded to whatever I needed to test the last time I touched it. If you actually want to use the widget to get work done, you should probably be using gnome-terminal.
How does it work?
The VTE library inserts terminal capability strings into a tree of tables, and then uses it to determine if data received from a pseudo-terminal is a control sequence or just random data. The sample program "interpret" illustrates more or less what the widget sees after it filters incoming data.
Download (1.3MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
819 downloads
Exporter::Easy 0.16
Exporter::Easy is a Perl module that takes the drudgery out of Exporting symbols. more>>
Exporter::Easy is a Perl module that takes the drudgery out of Exporting symbols.
SYNOPSIS
In module YourModule.pm:
package YourModule;
use Exporter::Easy (
OK => [ $munge, frobnicate ] # symbols to export on request
);
In other files which wish to use YourModule:
use ModuleName qw(frobnicate); # import listed symbols
frobnicate ($left, $right) # calls YourModule::frobnicate
Exporter::Easy makes using Exporter easy. In its simplest case it allows you to drop the boilerplate code that comes with using Exporter, so
require Exporter;
use base qw( Exporter );
use vars qw( @EXPORT );
@EXPORT = ( init );
becomes
use Exporter::Easy ( EXPORT => [ init ] );
and more complicated situations where you use tags to build lists and more tags become easy, like this
use Exporter::Easy (
EXPORT => [qw( init :base )],
TAGS => [
base => [qw( open close )],
read => [qw( read sysread readline )],
write => [qw( print write writeline )],
misc => [qw( select flush )],
all => [qw( :base :read :write :misc)],
no_misc => [qw( :all !:misc )],
],
OK => [qw( some other stuff )],
);
This will set @EXPORT, @EXPORT_OK, @EXPORT_FAIL and %EXPORT_TAGS in the current package, add Exporter to that packages @ISA and do a use vars on all the variables mentioned. The rest is handled as normal by Exporter.
<<lessSYNOPSIS
In module YourModule.pm:
package YourModule;
use Exporter::Easy (
OK => [ $munge, frobnicate ] # symbols to export on request
);
In other files which wish to use YourModule:
use ModuleName qw(frobnicate); # import listed symbols
frobnicate ($left, $right) # calls YourModule::frobnicate
Exporter::Easy makes using Exporter easy. In its simplest case it allows you to drop the boilerplate code that comes with using Exporter, so
require Exporter;
use base qw( Exporter );
use vars qw( @EXPORT );
@EXPORT = ( init );
becomes
use Exporter::Easy ( EXPORT => [ init ] );
and more complicated situations where you use tags to build lists and more tags become easy, like this
use Exporter::Easy (
EXPORT => [qw( init :base )],
TAGS => [
base => [qw( open close )],
read => [qw( read sysread readline )],
write => [qw( print write writeline )],
misc => [qw( select flush )],
all => [qw( :base :read :write :misc)],
no_misc => [qw( :all !:misc )],
],
OK => [qw( some other stuff )],
);
This will set @EXPORT, @EXPORT_OK, @EXPORT_FAIL and %EXPORT_TAGS in the current package, add Exporter to that packages @ISA and do a use vars on all the variables mentioned. The rest is handled as normal by Exporter.
Download (0.009MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1116 downloads
Sort::External 0.16
Sort::External is a Perl module that can sort huge lists. more>>
Sort::External is a Perl module that can sort huge lists.
SYNOPSIS
my $sortex = Sort::External->new( -mem_threshold => 2**24 );
while ( ) {
$sortex->feed($_);
}
$sortex->finish;
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}
Problem: You have a list which is too big to sort in-memory.
Solution: "feed, finish, and fetch" with Sort::External, the closest thing to a drop-in replacement for Perls sort() function when dealing with unmanageably large lists.
How it works:
Cache sortable items in memory. Periodically sort the cache and empty it into a temporary sortfile. As sortfiles accumulate, interleave them into larger sortfiles. Complete the sort by sorting the input cache and any existing sortfiles into an output stream.
Note that if Sort::External hasnt yet flushed the cache to disk when finish() is called, the whole operation completes in-memory.
In the CompSci world, "internal sorting" refers to sorting data in RAM, while "external sorting" refers to sorting data which is stored on disk, tape, punchcards, or any storage medium except RAM -- hence, this modules name.
Stringification
Items fed to Sort::External will be returned in stringified form (assuming that the cache gets flushed at least once): $foo = "$foo". Since this is unlikely to be desirable when objects or deep data structures are involved, Sort::External throws an error if you feed it anything other than simple scalars.
Taint and UTF-8 flags
Expert: Sort::External does a little extra bookkeeping to sustain each items taint and UTF-8 flags through the journey to disk and back.
METHODS
new()
my $sortscheme = sub { $Sort::External::b $Sort::External::a };
my $sortex = Sort::External->new(
-mem_threshold => 2**24, # default: 2**20 (1Mb)
-cache_size => 100_000, # default: undef (disabled)
-sortsub => $sortscheme, # default sort: standard lexical
-working_dir => $temp_directory, # default: see below
);
Construct a Sort::External object.
-mem_threshold -- Allow the input cache to consume approximately -mem_threshold bytes before sorting it and flushing to disk. Experience suggests that the optimum setting is somewhere between 2**20 and 2**24: 1-16Mb.
-cache_size -- Specify a hard limit for the input cache in terms of sortable items. If set, overrides -mem_threshold.
-sortsub -- A sorting subroutine. Be advised that you MUST use $Sort::External::a and $Sort::External::b instead of $a and $b in your sub. Before deploying a sortsub, consider using a GRT instead, as described in the Sort::External::Cookbook. Its probably a lot faster.
-working_dir -- The directory where the temporary sortfiles will reside. By default, this directory is created using File::Temps tempdir() command.
feed()
$sortex->feed( @items );
Feed one or more sortable items to your Sort::External object. It is normal for occasional pauses to occur during feeding as caches are flushed and sortfiles are merged.
finish()
# if you intend to call fetch...
$sortex->finish;
# otherwise....
use Fcntl;
$sortex->finish(
-outfile => sorted.txt,
-flags => (O_CREAT | O_WRONLY),
);
Prepare to output items in sorted order.
If you specify the parameter -outfile, Sort::External will attempt to write your sorted list to that location. By default, Sort::External will refuse to overwrite an existing file; if you want to override that behavior, you can pass Fcntl flags to finish() using the optional -flags parameter.
Note that you can either finish() to an -outfile, or finish() then fetch()... but not both.
fetch()
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}
Fetch the next sorted item.
<<lessSYNOPSIS
my $sortex = Sort::External->new( -mem_threshold => 2**24 );
while ( ) {
$sortex->feed($_);
}
$sortex->finish;
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}
Problem: You have a list which is too big to sort in-memory.
Solution: "feed, finish, and fetch" with Sort::External, the closest thing to a drop-in replacement for Perls sort() function when dealing with unmanageably large lists.
How it works:
Cache sortable items in memory. Periodically sort the cache and empty it into a temporary sortfile. As sortfiles accumulate, interleave them into larger sortfiles. Complete the sort by sorting the input cache and any existing sortfiles into an output stream.
Note that if Sort::External hasnt yet flushed the cache to disk when finish() is called, the whole operation completes in-memory.
In the CompSci world, "internal sorting" refers to sorting data in RAM, while "external sorting" refers to sorting data which is stored on disk, tape, punchcards, or any storage medium except RAM -- hence, this modules name.
Stringification
Items fed to Sort::External will be returned in stringified form (assuming that the cache gets flushed at least once): $foo = "$foo". Since this is unlikely to be desirable when objects or deep data structures are involved, Sort::External throws an error if you feed it anything other than simple scalars.
Taint and UTF-8 flags
Expert: Sort::External does a little extra bookkeeping to sustain each items taint and UTF-8 flags through the journey to disk and back.
METHODS
new()
my $sortscheme = sub { $Sort::External::b $Sort::External::a };
my $sortex = Sort::External->new(
-mem_threshold => 2**24, # default: 2**20 (1Mb)
-cache_size => 100_000, # default: undef (disabled)
-sortsub => $sortscheme, # default sort: standard lexical
-working_dir => $temp_directory, # default: see below
);
Construct a Sort::External object.
-mem_threshold -- Allow the input cache to consume approximately -mem_threshold bytes before sorting it and flushing to disk. Experience suggests that the optimum setting is somewhere between 2**20 and 2**24: 1-16Mb.
-cache_size -- Specify a hard limit for the input cache in terms of sortable items. If set, overrides -mem_threshold.
-sortsub -- A sorting subroutine. Be advised that you MUST use $Sort::External::a and $Sort::External::b instead of $a and $b in your sub. Before deploying a sortsub, consider using a GRT instead, as described in the Sort::External::Cookbook. Its probably a lot faster.
-working_dir -- The directory where the temporary sortfiles will reside. By default, this directory is created using File::Temps tempdir() command.
feed()
$sortex->feed( @items );
Feed one or more sortable items to your Sort::External object. It is normal for occasional pauses to occur during feeding as caches are flushed and sortfiles are merged.
finish()
# if you intend to call fetch...
$sortex->finish;
# otherwise....
use Fcntl;
$sortex->finish(
-outfile => sorted.txt,
-flags => (O_CREAT | O_WRONLY),
);
Prepare to output items in sorted order.
If you specify the parameter -outfile, Sort::External will attempt to write your sorted list to that location. By default, Sort::External will refuse to overwrite an existing file; if you want to override that behavior, you can pass Fcntl flags to finish() using the optional -flags parameter.
Note that you can either finish() to an -outfile, or finish() then fetch()... but not both.
fetch()
while ( defined( $_ = $sortex->fetch ) ) {
&do_stuff_with($_);
}
Fetch the next sorted item.
Download (0.022MB)
Added: 2007-05-21 License: Perl Artistic License Price:
886 downloads
RTAI LiveCD 0.16
The Real-Time Application Interface is a hard real-time extension to the Linux kernel. more>>
The Real-Time Application Interface is a hard real-time extension to the Linux kernel, contributed in accordance with the Free Software guidelines.
It provides the features of an industrial-grade RTOS, seamlessly accessible from the powerful and sophisticated GNU/Linux environment.
The bootable CD-ROM provided on this website allows you to determine whether your systems hardware is capable of being used as a hard real-time system.
Furthermore, this website provides information about the real-time performance of various systems, which might help you when buying hardware for building hard real-time systems.
The LiveCD is based on RTAI (Realtime Application Interface) and provides easy-to-use menus that guide users through running the test suite and submitting the results and system configuration information to an Internet database.
Enhancements:
- Fixed issue where the per-loop max and min latency were stored in the database instead of the overall max and min latency... Added support for Gigabit Ethernet (requested by Phil Nitschke)
- Reduced ISO size to 8MB
<<lessIt provides the features of an industrial-grade RTOS, seamlessly accessible from the powerful and sophisticated GNU/Linux environment.
The bootable CD-ROM provided on this website allows you to determine whether your systems hardware is capable of being used as a hard real-time system.
Furthermore, this website provides information about the real-time performance of various systems, which might help you when buying hardware for building hard real-time systems.
The LiveCD is based on RTAI (Realtime Application Interface) and provides easy-to-use menus that guide users through running the test suite and submitting the results and system configuration information to an Internet database.
Enhancements:
- Fixed issue where the per-loop max and min latency were stored in the database instead of the overall max and min latency... Added support for Gigabit Ethernet (requested by Phil Nitschke)
- Reduced ISO size to 8MB
Download (8.0MB)
Added: 2005-11-05 License: GPL (GNU General Public License) Price:
1462 downloads
0verkill 0.16
0verkill project is a bloody action 2D deathmatch game in ASCII art. more>>
0verkill project is a bloody action 2D deathmatch game in ASCII art.
It supports free connecting/disconnecting during the game, and runs well on modem lines. Graphics are in 16-color ASCII art with elaborate hero animations.
0verkill features 4 different weapons, grenades, invisibility, and armor. The package also contains reaperbot clients, a simple graphics editor, and a level editor.
Main features:
- four types of gun
- grenades
- armor
- counting frags and deaths
- walking, running, jumping, shooting, creeping, walking up the stairs, climbing up and down ladders
- automatic weapon switching
- damage depending on distance and hit body part
- item respawning
- invisibility
- chat
- online help
- players respawning on random places
- boundless connecting/disconnecting during the game
- choice of 15 different colors of hero, choice of male/female hero
- ASCII-art graphics in full 16 color text mode
- client-server architecture
- clients motion prediction => decent running on slower lines
- raw keyboard
- simple level editor, but not very user friendly, currently only for initiates
- graphics editor
- top players list
- full X support
- experimental reaperbots
- multi level support
- lethal objects
- two levels done at this moment
- experimental 3D support (like stereogram)
Enhancements:
- minor level changes (in old level)
- new level (its very lethal ;-) )
- lot of cool new graphics
- level negotiation (client negotiates level with server)
- fixed bug with -s option
- optional 3D view
- lethal objects
- optimized output from the avi editor
- fixed segfault in the avi editor when cannot write to a file
- improved avi editor - status bar, hold key
- fixed several bugs in avi loader
- memory leak catching mechanism (only for debugging, its turned off by default for higher speed)
<<lessIt supports free connecting/disconnecting during the game, and runs well on modem lines. Graphics are in 16-color ASCII art with elaborate hero animations.
0verkill features 4 different weapons, grenades, invisibility, and armor. The package also contains reaperbot clients, a simple graphics editor, and a level editor.
Main features:
- four types of gun
- grenades
- armor
- counting frags and deaths
- walking, running, jumping, shooting, creeping, walking up the stairs, climbing up and down ladders
- automatic weapon switching
- damage depending on distance and hit body part
- item respawning
- invisibility
- chat
- online help
- players respawning on random places
- boundless connecting/disconnecting during the game
- choice of 15 different colors of hero, choice of male/female hero
- ASCII-art graphics in full 16 color text mode
- client-server architecture
- clients motion prediction => decent running on slower lines
- raw keyboard
- simple level editor, but not very user friendly, currently only for initiates
- graphics editor
- top players list
- full X support
- experimental reaperbots
- multi level support
- lethal objects
- two levels done at this moment
- experimental 3D support (like stereogram)
Enhancements:
- minor level changes (in old level)
- new level (its very lethal ;-) )
- lot of cool new graphics
- level negotiation (client negotiates level with server)
- fixed bug with -s option
- optional 3D view
- lethal objects
- optimized output from the avi editor
- fixed segfault in the avi editor when cannot write to a file
- improved avi editor - status bar, hold key
- fixed several bugs in avi loader
- memory leak catching mechanism (only for debugging, its turned off by default for higher speed)
Download (0.27MB)
Added: 2006-11-04 License: GPL (GNU General Public License) Price:
1085 downloads
Hints 0.16
Hints is a Perl extension for parsing /etc/printcap. more>>
Hints is a Perl extension for parsing /etc/printcap.
SYNOPSIS
use Print::Printcap;
my $printcap = new Print::Printcap;
print join ,,$printcap->printers();
Simple parser for /etc/printcap.
THE PRINT::PRINTCAP CLASS
new
Constructor create instance of Print::Printcap class and parse /etc/printcap. Optional argument is -file => filename for specifying alternate printcap file.
my $printcap = new Print::Printcap;
printers
Return list of printers from /etc/printcap.
my @printers = $printcap->printers();
<<lessSYNOPSIS
use Print::Printcap;
my $printcap = new Print::Printcap;
print join ,,$printcap->printers();
Simple parser for /etc/printcap.
THE PRINT::PRINTCAP CLASS
new
Constructor create instance of Print::Printcap class and parse /etc/printcap. Optional argument is -file => filename for specifying alternate printcap file.
my $printcap = new Print::Printcap;
printers
Return list of printers from /etc/printcap.
my @printers = $printcap->printers();
Download (0.050MB)
Added: 2007-05-11 License: Perl Artistic License Price:
896 downloads
gettext 0.16.1
gettext is the GNU internationalization library. more>>
GNU `gettext is an important step for the GNU Translation Project, as it is an asset on which we may build many other steps. gettext package offers to programmers, translators, and even users, a well integrated set of tools and documentation.
Specifically, the GNU `gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages.
These tools include a set of conventions about how programs should be written to support message catalogs, a directory and file naming organization for the message catalogs themselves, a runtime library supporting the retrieval of translated messages, and a few stand-alone programs to massage in various ways the sets of translatable strings, or already translated strings.
A special GNU Emacs mode also helps interested parties in preparing these sets, or bringing them up to date.
<<lessSpecifically, the GNU `gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages.
These tools include a set of conventions about how programs should be written to support message catalogs, a directory and file naming organization for the message catalogs themselves, a runtime library supporting the retrieval of translated messages, and a few stand-alone programs to massage in various ways the sets of translatable strings, or already translated strings.
A special GNU Emacs mode also helps interested parties in preparing these sets, or bringing them up to date.
Download (6.8MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1076 downloads
XML::TMX::Writer 0.16
XML::TMX::Writer is a Perl extension for writing TMX files. more>>
XML::TMX::Writer is a Perl extension for writing TMX files.
SYNOPSIS
use XML::TMX::Writer;
my $tmx = new XML::TMX::Writer();
$tmx->start_tmx(ID => paulojjs);
$tmx->add_tu(SRCLANG => en, en => some text, pt => algum texto);
$tmx->add_tu(SRCLANG => en,
en => some text,
pt => algum texto,
-note => [32, 34 ],
-prop => { q => 23,
aut => "jj"}
);
$tmx->end_tmx();
This module provides a simple way for writing TMX files.
METHODS
The following methods are available:
new
$tmx = new XML::TMX::Writer();
Creates a new XML::TMX::Writer object
start_tmx
$tmx->start_tmx(OUTPUT => some_file.tmx);
Begins a TMX file. Several options are available:
OUTPUT
Output of the TMX, if none is defined stdout is used by default.
TOOL
Tool used to create the TMX. Defaults to XML::TMX::Writer
TOOLVERSION
Some version identification of the tool used to create the TMX. Defaults to the current module version
SEGTYPE
Segment type used in the < tu > elements. Possible values are block, paragraph, sentence and phrase. Defaults to sentence.
SRCTMF
Specifies the format of the translation memory file from which the TMX document or segment thereof have been generated.
ADMINLANG
Specifies the default language for the administrative and informative elements < note > and < prop >.
SRCLANG
Specifies the language of the source text. If a element does not have a srclang attribute specified, it uses the one defined in the element. Defaults to *all*.
DATATYPE
Specifies the type of data contained in the element. Depending on that type, you may apply different processes to the data.
The recommended values for the datatype attribute are as follow (this list is not exhaustive):
unknown
undefined
alptext
WinJoust data
cdf
Channel Definition Format
cmx
Corel CMX Format
cpp
C and C++ style text
hptag
HP-Tag
html
HTML, DHTML, etc
interleaf
Interleaf documents
ipf
IPF/BookMaster
java
Java, source and property files
javascript
JavaScript, ECMAScript scripts
lisp
Lisp
mif
Framemaker MIF, MML, etc
opentag
OpenTag data
pascal
Pascal, Delphi style text
plaintext
Plain text (default)
pm
PageMaker
rtf
Rich Text Format =item sgml
SGML
stf-f
S-Tagger for FrameMaker
stf-i
S-Tagger for Interleaf
transit
Transit data
vbscript
Visual Basic scripts
winres
Windows resources from RC, DLL, EXE
xml
XML
xptag
Quark XPressTag
SRCENCODING
All TMX documents are in Unicode. However, it is sometimes useful to know what code set was used to encode text that was converted to Unicode for purposes of interchange. This option specifies the original or preferred code set of the data of the element in case it is to be re-encoded in a non-Unicode code set. Defaults to none.
ID
Specifies the identifier of the user who created the element. Defaults to none.
<<lessSYNOPSIS
use XML::TMX::Writer;
my $tmx = new XML::TMX::Writer();
$tmx->start_tmx(ID => paulojjs);
$tmx->add_tu(SRCLANG => en, en => some text, pt => algum texto);
$tmx->add_tu(SRCLANG => en,
en => some text,
pt => algum texto,
-note => [32, 34 ],
-prop => { q => 23,
aut => "jj"}
);
$tmx->end_tmx();
This module provides a simple way for writing TMX files.
METHODS
The following methods are available:
new
$tmx = new XML::TMX::Writer();
Creates a new XML::TMX::Writer object
start_tmx
$tmx->start_tmx(OUTPUT => some_file.tmx);
Begins a TMX file. Several options are available:
OUTPUT
Output of the TMX, if none is defined stdout is used by default.
TOOL
Tool used to create the TMX. Defaults to XML::TMX::Writer
TOOLVERSION
Some version identification of the tool used to create the TMX. Defaults to the current module version
SEGTYPE
Segment type used in the < tu > elements. Possible values are block, paragraph, sentence and phrase. Defaults to sentence.
SRCTMF
Specifies the format of the translation memory file from which the TMX document or segment thereof have been generated.
ADMINLANG
Specifies the default language for the administrative and informative elements < note > and < prop >.
SRCLANG
Specifies the language of the source text. If a element does not have a srclang attribute specified, it uses the one defined in the element. Defaults to *all*.
DATATYPE
Specifies the type of data contained in the element. Depending on that type, you may apply different processes to the data.
The recommended values for the datatype attribute are as follow (this list is not exhaustive):
unknown
undefined
alptext
WinJoust data
cdf
Channel Definition Format
cmx
Corel CMX Format
cpp
C and C++ style text
hptag
HP-Tag
html
HTML, DHTML, etc
interleaf
Interleaf documents
ipf
IPF/BookMaster
java
Java, source and property files
javascript
JavaScript, ECMAScript scripts
lisp
Lisp
mif
Framemaker MIF, MML, etc
opentag
OpenTag data
pascal
Pascal, Delphi style text
plaintext
Plain text (default)
pm
PageMaker
rtf
Rich Text Format =item sgml
SGML
stf-f
S-Tagger for FrameMaker
stf-i
S-Tagger for Interleaf
transit
Transit data
vbscript
Visual Basic scripts
winres
Windows resources from RC, DLL, EXE
xml
XML
xptag
Quark XPressTag
SRCENCODING
All TMX documents are in Unicode. However, it is sometimes useful to know what code set was used to encode text that was converted to Unicode for purposes of interchange. This option specifies the original or preferred code set of the data of the element in case it is to be re-encoded in a non-Unicode code set. Defaults to none.
ID
Specifies the identifier of the user who created the element. Defaults to none.
Download (0.015MB)
Added: 2007-05-31 License: Perl Artistic License Price:
878 downloads
sitecopy 0.16.3
sitecopy allows you to easily maintain remote Web sites. more>>
sitecopy allows you to easily maintain remote Web sites.
The program will upload files to the server which have changed locally, and delete files from the server which have been removed locally, keeping the remote site synchronized. FTP and WebDAV are supported.
Enhancements:
- This release adds support for client certificates in DAV and neon 0.26.
<<lessThe program will upload files to the server which have changed locally, and delete files from the server which have been removed locally, keeping the remote site synchronized. FTP and WebDAV are supported.
Enhancements:
- This release adds support for client certificates in DAV and neon 0.26.
Download (0.92MB)
Added: 2006-03-12 License: GPL (GNU General Public License) Price:
1329 downloads
Added: 2009-03-15 License: Perl Artistic License Price: FREE
1 downloads
Bigtop::Parser 0.16
Bigtop::Parser is the Parse::RecDescent grammar driven parser for bigtop files. more>>
Bigtop::Parser is the Parse::RecDescent grammar driven parser for bigtop files.
SYNOPSIS
Make a file like this:
config {
base_dir `/home/username`;
Type1 Backend {}
Type2 Backend {}
Type3 Backend {}
}
app App::Name {
table name { }
controller SomeController {}
}
Then run this command:
bigtop my.bigtop all
This module is really only designed to be used by bigtop. It provides the grammar which understands bigtop files and turns them into syntax trees. It provides various utility functions for bigtop (or similar tools you might write) and for backends.
Reading further is an indication that you are interested in working on Bigtop and not just in using it to serve your needs.
<<lessSYNOPSIS
Make a file like this:
config {
base_dir `/home/username`;
Type1 Backend {}
Type2 Backend {}
Type3 Backend {}
}
app App::Name {
table name { }
controller SomeController {}
}
Then run this command:
bigtop my.bigtop all
This module is really only designed to be used by bigtop. It provides the grammar which understands bigtop files and turns them into syntax trees. It provides various utility functions for bigtop (or similar tools you might write) and for backends.
Reading further is an indication that you are interested in working on Bigtop and not just in using it to serve your needs.
Download (0.37MB)
Added: 2006-09-28 License: Perl Artistic License Price:
1121 downloads
fastdep 0.16
fastdep is a fast C/C++ dependency generator. more>>
fastdep is a preprocessor which generates dependency information suitable for Makefile inclusion from C or C++ source files. Meant to run on slower hardware, it is several orders of magnitude faster than gcc.
Enhancements:
- Implement boolean operators in #if [Pete Gonzalez]
- Adds support for Windows MinGW GCC and MS VisualC++.NET [Jack T. Goral]
- Adds Jamfile for compilation with Jam [Jack T. Goral]
- Make gcc style predefined symbols defined as in -DPARAMETER=3 [Pierric Descamps]
- Fix unportable configure sh for NetBSD [Julio M. Merino Vidal]
- Set object filename extension through a command line [Arne Varholm]
- Man page [Zenaan Harkness]
- Compilation fixes + makefile for MS VC6 [Alexander Bartolich]
<<lessEnhancements:
- Implement boolean operators in #if [Pete Gonzalez]
- Adds support for Windows MinGW GCC and MS VisualC++.NET [Jack T. Goral]
- Adds Jamfile for compilation with Jam [Jack T. Goral]
- Make gcc style predefined symbols defined as in -DPARAMETER=3 [Pierric Descamps]
- Fix unportable configure sh for NetBSD [Julio M. Merino Vidal]
- Set object filename extension through a command line [Arne Varholm]
- Man page [Zenaan Harkness]
- Compilation fixes + makefile for MS VC6 [Alexander Bartolich]
Download (0.068MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1658 downloads
Stratego/XT 0.16
Stratego/XT is a development environment for creating stand-alone transformation systems. more>>
Stratego/XT is a development environment for creating stand-alone transformation systems.
It combines Stratego, a language for implementing transformations based on the paradigm of programmable rewriting strategies, with XT, a collection of reusable components and tools for the development of transformation systems.
In general, Stratego/XT is intended for the analysis, manipulation, and generation of programs, though its features make it useful for transforming any structured documents.
In practice, it has been used to build many types of transformation systems including compilers, interpreters, static analyzers, domain-specific optimizers, code generators, source code refactorers, documentation generators, and document transformers.
Enhancements:
- The compiler was restructured.
- Some old language features were removed.
- Man pages for all tools were completed.
- A new introductory tutorial with examples was co-released, and more.
<<lessIt combines Stratego, a language for implementing transformations based on the paradigm of programmable rewriting strategies, with XT, a collection of reusable components and tools for the development of transformation systems.
In general, Stratego/XT is intended for the analysis, manipulation, and generation of programs, though its features make it useful for transforming any structured documents.
In practice, it has been used to build many types of transformation systems including compilers, interpreters, static analyzers, domain-specific optimizers, code generators, source code refactorers, documentation generators, and document transformers.
Enhancements:
- The compiler was restructured.
- Some old language features were removed.
- Man pages for all tools were completed.
- A new introductory tutorial with examples was co-released, and more.
Download (6.9MB)
Added: 2005-11-08 License: LGPL (GNU Lesser General Public License) Price:
1458 downloads
LRpt::XMLReport 0.16
LRpt::XMLReport is a Perl module for converting outputs generated by LReport tools to XML format. more>>
LRpt::XMLReport is a Perl module for converting outputs generated by LReport tools to XML format.
SYNOPSIS
lrptxml.pl --selects=selects.txt --keys_file=keys.txt data
lrptxml.pl --diffs --selects=selects.txt --keys_file=rkeys.txt diffs.txt
LRpt::XMLReport is a part of LRpt (LReport) library. It used to convert outputs generated by other tools from LReport suite to XML format. You should not call this class directly from your code. Instead you should use lrptxml.pl tool, which is a simple wrapper around this module. It looks like this:
use strict;
use LRpt::XMLReport;
create_report( @ARGV );
COMMAND LINE SWITCHES
--selects=file
Optional. Name of a selects file (see doc). They are included in the report for a select of corresponding name. If selects are not given, report will not contain selects.
--diffs
Switches working mode to read output of lcsvdiff.pl. If not given the working mode is reading csv files from a directory
--keys_file=keys_file
File name containing row key definitions.
<<lessSYNOPSIS
lrptxml.pl --selects=selects.txt --keys_file=keys.txt data
lrptxml.pl --diffs --selects=selects.txt --keys_file=rkeys.txt diffs.txt
LRpt::XMLReport is a part of LRpt (LReport) library. It used to convert outputs generated by other tools from LReport suite to XML format. You should not call this class directly from your code. Instead you should use lrptxml.pl tool, which is a simple wrapper around this module. It looks like this:
use strict;
use LRpt::XMLReport;
create_report( @ARGV );
COMMAND LINE SWITCHES
--selects=file
Optional. Name of a selects file (see doc). They are included in the report for a select of corresponding name. If selects are not given, report will not contain selects.
--diffs
Switches working mode to read output of lcsvdiff.pl. If not given the working mode is reading csv files from a directory
--keys_file=keys_file
File name containing row key definitions.
Download (0.082MB)
Added: 2007-06-12 License: Perl Artistic License Price:
864 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 iriverter 0.16 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