Main > Free Download Search >

Free addtype software for linux

addtype

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10
mod_txt

mod_txt


mod_txt is a simple output filter module to display plain text files as HTML (or XHTML) with a header and footer. more>>
mod_txt is a simple output filter module to display plain text files as HTML (or XHTML) with a header and footer. When a text file is requested, mod_txt module escapes the text as required for HTML, and displays it between the header and the footer.

How to use it

Apart from setting the Header and Footer, you will need to insert the filter in the output chain, and set the Content Type to HTML. So a configuration to use this module looks like:

AddOutputFilter text-filter .txt
AddType text/html .txt
TextHeader /path/to/header-file
TextFooter /path/to/footer-file

Note that this is not a smart text filter, so the text should be enclosed in HTML < pre >. End the header file by opening PRE, and start the footer by closing it.

Configuration Directives

TextHeader

Syntax: TextHeader filename
Specifies a path to use as header for the text file.

TextFooter

Syntax: TextFooter filename
Specifies a path to use as footer for the text file.

<<less
Download (0.006MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1285 downloads
mod_ecgi

mod_ecgi


mod_cgi turns CGI program into a dynamically loaded library (.so) and runs it without forking. more>>
mod_cgi is an Apache module that turns a CGI program into a dynamically loaded library (.so) and runs it without forking. Gives the simplicity and portability of CGI without the overhead.

There is no documentation, beyond the source code comments. It will build cleanly with Apache 1.3b6+, and youll need some configuration: e.g.

AddHandler mod_ecgi .so

or

AddType x-embedded-cgi .so

As I said, see the source file.

Theres also a small harness for CGI programs, to get round the way many sloppy CGIs never return but call exit() instead. Its not absolutely necessary, but for most purposes youll want it.

<<less
Download (0.008MB)
Added: 2006-05-18 License: The Apache License Price:
1254 downloads
Apache::MP3 4.00

Apache::MP3 4.00


Apache::MP3 is a Perl module that can generate streamable directories of MP3 and Ogg Vorbis files. more>>
Apache::MP3 is a Perl module that can generate streamable directories of MP3 and Ogg Vorbis files.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3
AddType audio/playlist m3u M3U
AddType audio/x-scpls pls PLS
AddType application/x-ogg ogg OGG

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3
< /Location >

# Or use the Apache::MP3::Sorted subclass to get sortable directory listings
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Sorted
< /Location >

# Or use the Apache::MP3::Playlist subclass to get persistent playlists
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Playlist
< /Location >
A demo version can be browsed at http://www.modperl.com/Songs/.

This module makes it possible to browse a directory hierarchy containing MP3, Ogg Vorbis, or Wav files, sort them on various fields, download them, stream them to an MP3 decoder like WinAmp, and construct playlists. The display is configurable and subclassable.

NOTE: This version of Apache::MP3 is substantially different from the pre-2.0 version described in The Perl Journal. Specifically, the format to use for HREF links has changed. See Linking for details.

<<less
Download (0.32MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1223 downloads
Apache DSSI 1.0.0

Apache DSSI 1.0.0


Apache DSSI is a SSI extention for calling Dynamic function. more>>
Apache DSSI is a SSI extention for calling Dynamic function.

By using this extentions to mod_include, you can make your own function for SSI (Server Side Includes) and you can call your function with SSI directives. This solution is based on mod_so and mod_include. By using DSSI, you can integrate your CGI easily and make your CGI faster than any other CGI accelerator.

Installation:

Download and compile Apache 1.3.X
Simply download dssi_1.0.0.tar.gz
Unzip and untar.
Replace apache_1.3.X/src/modules/standard/mod_include.c with this mod_include.c
Configure.
./configure --enable-module=include
If your binary type is ELF,
LDFLAGS="-export-dynamic" ./configure --enable-module=include
Compile and install apache.

Enabling DSSI

By using LoadDSSI directive, you can load your dynamic functions. Later one override earlier ones. It means, you can only call functions of the last one with DSSI directive.

AddType text/html .shtml
AddHandler server-parsed .shtml
LoadDSSI libexec/dssi_util.so
LoadDSSI libexec/dssi.so

<<less
Download (0.019MB)
Added: 2006-04-04 License: The Apache License Price:
1298 downloads
Apache::Audio::DB 0.01

Apache::Audio::DB 0.01


Apache::Audio::DB is a Perl module that can generate a database of your tunes complete with searchable interface. more>>
Apache::Audio::DB is a Perl module that can generate a database of your tunes complete with searchable interface and nifty statistical analyses!

SYNOPSIS

# httpd.conf or srm.conf AddType audio/mpeg mp3 MP3
# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Sorted
PerlSetVar SortFields Album,Title,-Duration
PerlSetVar Fields Title,Artist,Album,Duration
< /Location >

<<less
Download (0.061MB)
Added: 2006-10-11 License: Perl Artistic License Price:
1108 downloads
Apache::MP3::Skin 0.91

Apache::MP3::Skin 0.91


Apache::MP3::Skin is a subclass of Apache::MP3::Playlist with the ability to skin the output using HTML::Template. more>>
Apache::MP3::Skin is a subclass of Apache::MP3::Playlist with the ability to "skin" the output using HTML::Template.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg .mp3 .MP3

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Skin
PerlSetVar HomePath /songs # optional
PerlSetVar DefaultSkin default.tmpl # required

# Without DefaultSkin being set to a valid file
# Apache::MP3::Skin will be the same as Apache::MP3
< /Location >

Apache::MP3::Skin subclasses Apache::MP3::Playlist enabling the use of skin files which are html files with special tags enabled by HTML::Template. See Apache::MP3 for details on installing and using.

<<less
Download (0.018MB)
Added: 2006-10-12 License: Perl Artistic License Price:
1110 downloads
Apache::MP3::Sorted 4.00

Apache::MP3::Sorted 4.00


Apache::MP3::Sorted is a Perl module to generate sorted streamable directories of MP3 files. more>>
Apache::MP3::Sorted is a Perl module to generate sorted streamable directories of MP3 files.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Sorted
PerlSetVar SortFields Album,Title,-Duration
PerlSetVar Fields Title,Artist,Album,Duration
< /Location >

Apache::MP3::Sorted subclasses Apache::MP3 to allow for sorting of MP3 listings by various criteria. See Apache::MP3 for details on installing and using.

<<less
Download (0.32MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1082 downloads
Apache::MP3::Playlist 4.00

Apache::MP3::Playlist 4.00


Apache::MP3::Playlist can manage directories of MP3 files with sorting and persistent playlists. more>>
Apache::MP3::Playlist can manage directories of MP3 files with sorting and persistent playlists.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Playlist
PerlSetVar SortField Title
PerlSetVar Fields Title,Artist,Album,Duration
< /Location >

Apache::MP3::Playlist subclasses Apache::MP3::Sorted to allow the user to build playlists across directories. Playlists are stored in cookies and are persistent for the life of the browser. See Apache::MP3 and Apache::MP3::Sorted for details on installing and using.

<<less
Download (0.32MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1082 downloads
Apache::MP3::Resample 4.00

Apache::MP3::Resample 4.00


Apache::MP3::Resample can downsample MP3/FLAC/Shorten files during streaming. more>>
Apache::MP3::Resample can downsample MP3/FLAC/Shorten files during streaming.

SYNOPSIS

# httpd.conf or access.conf
AddType audio/shorten .shn .SHN
AddType audio/flac .flac

Alias /apache_mp3 /usr/share/libapache-mp3-perl

< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Resample
PerlSetVar CacheDir /var/cache/Apache::MP3
PerlSetVar AllowDownload no
PerlSetVar SortFields Album,Track,Title,-Duration
PerlSetVar Fields Track,Title,Artist,Album,Duration,Bitrate
< /Location >

Apache::MP3::Resample subclasses Apache::MP3::Playlist to allow the user to downsample audio files before streaming them. This allows users on slower connections to stream songs. When this module is installed, a menu of bitrates is presented in the upper right-hand corner of the screen. The user can choose from one of the bitrates, or select a mode that performs no resampling. The selected bitrate is maintained in a persistent cookie so that resampling is performed whenever the user returns to the site.

This module requires a command-line MP3 encoder to resample and reencode the audio data. If not otherwise specified, Apache::MP3::Resample will try to use the Open Source Lame MP3 encoder. This utility is available at http://www.sulaco.org/mp3. Version 3.90 was used during the development of this module. Your results with other versions may vary.

When you install Lame (or the encoder of your choice), be sure to place it in a directory located in Apaches PATH so that the module can find them at run time. You may need to set the PATH environment variable during Apaches launch, or by explicitly adding a SetEnv directive to the Apache configuration file.

You should be aware that the decoding/reencoding process is CPU-intensive, and server performance may degrade as the number of simultaneous users increases.

<<less
Download (0.32MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1221 downloads
Top Downloads 2.0

Top Downloads 2.0


Top Downloads provides a script that counts how many times a file has been downloaded. more>>
Top Downloads provides a script that counts how many times a file has been downloaded.

It keeps statistics of your downloads and can generate a TOP10 of your downloaded files. The administration function of this script allows you to delete, rename or change count numbers for your downloads.

It can check a directory that you specify for new files and add it to a database. Count numbers and TOP10 can be included into a HTML document.

Most web servers require SSI documents to have the extension .shtml or .shtm

For Apache web servers:
- AddType text/html .shtml
- AddHandler server-parsed .shtml

<<less
Download (0.035MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
916 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1