Main > Free Download Search >

Free mod caml software for linux

mod caml

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 186
mod_caml 1.3.6

mod_caml 1.3.6


mod_caml is a set of Objective CAML (OCaml) bindings for the Apache API. more>>
mod_caml is a set of Objective CAML (OCaml) bindings for the Apache API. mod_caml allows you to run CGI scripts written in OCaml directly inside the Apache webserver. However, it is much much more than just that:
- Bind to any part of the Apache request cycle.
- Read and modify internal Apache structures.
- Share modules of code between handlers and scripts.
- CGI library and templating system (allows separation of code and presentation).
- Works with Apache 1.3 and Apache 2.0 [see note below].
- DBI library for simple database access.
- DBI library can use Perl DBDs (database drivers) [requires Perl4Caml >= 0.3.6].
<<less
Download (0.070MB)
Added: 2006-05-23 License: LGPL (GNU Lesser General Public License) Price:
1249 downloads
mod_ocaml 0.01

mod_ocaml 0.01


mod_ocaml is an Apache module for the use of OCAML as a Web scripting language. more>>
Generally, mod_ocaml is a flexible module for use with the famous Apache Web Server. Probably you know how to benefit of other modules with unbelievable capabilities, like PHP (mod_php4) or Perl (mod_perl).

One of the advantages of the Apache Server is the possibility to extend its features by adding modules to your configuration. At this point, mod_ocaml comes up.

mod_ocaml is designed to work with the 1.3 family of Apaches all over the world.

OCAML is derived from the CAML language. We include the description from its home at INRIA here:

Caml is a programming language, easy to learn, easy to use, and yet amazingly powerful.

It is developed and distributed by INRIA (the main French research institute for computer science), since 1984. It is freely available for Unix, PC or Macintosh.

Objective Caml (OCAML) is a general purpose programming language that combines
functional, imperative, and object-oriented programming. The language is statically typed; its type system ensures the correct evaluation of programs.

Types are automatically inferred. The language offers powerful constructions such as user-definable data-types, the ability to define functions by pattern-matching, and an exception mechanism. Programming in the large is facilitated by a full-fledge class-based object-oriented layer and an expressive module system.

Installation

Find your installed apxs, usually in /usr/bin, or /usr/local/apache/bin.

Call apxs -c mod_ocaml.c to compile the module

Copy the created file mod_ocaml.so to your apache libexec directory, e. g. /usr/local/apache/libexec.

Make two entries in your httpd.conf configuration file:

LoadModule mod_ocaml mod_ocaml.so
AddHandler ocaml-parsed .ocml

Restart your apache web server. Now it is ready to process your OCML-files.

Usage

You simply write poor old HTML code and save it under your webserver root. Choose the extension you entered at the "AddHandler" directive in httpd.conf (per default, this is .ocml). So you save a file named, e. g. test.ocml.

Until now, you didnt use any of the mod_ocaml benefits. Try to include OCAML code, and it will be displayed "as is". Since you want your OCAML code to be interpreted and evaluated, you have to inform mod_ocaml of this:

< ?ocml

Printf.printf ("This is generated by the OCAML interpreter.");;

? >

As you can see, the init tag for your OCAML parts is "<<less
Download (0.016MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1632 downloads
Mod-Cache 1.4

Mod-Cache 1.4


Mod-Cache is a cache(reverse-proxy) accelerator plugin for lighttpd, which works like Squid with similar configuration. more>>
Mod-Cache is a cache(reverse-proxy) accelerator plugin for lighttpd, which works like Squid with similar configuration. However mod_cache is faster and more effective than Squid because of powerful Lighttpd.
Mod-Cache has following advantages over Squid:
- Simpler. Mod-Cache just sets proper flags between lighttpd request handling stages. Request is handled by mod_staticfile or mod_compress or other modules.
- More Robust. Mod-Cache uses disk file instead of memory as cache. Without use of memory, mod_cache is far away from memory leaks and memory exhaustion.
- Faster. Lighttpd uses Sendfile syscall to service disk file. Sendfile syscall, which writes file to network interface directly, has the same effecience as Writev syscall which writes memory buffers to network interface.
- More Powerful. Mod-Cache can works with other lighttpd plugins(except mod_deflate). For examples, you can use mod_compress to compress cached files on-fly; or you can use mod_access/mod_trigger_b4_dl to do anti-hot-link; or you can use mod_flv_streaming to do native flv file streaming.
Enhancements:
- lighttpd 1.5 was upgraded to r1811.
- The status page for mod_status was added.
- cache.ignore-hostname was added.
- A bug for checking the cachehd file was fixed.
<<less
Download (1.8MB)
Added: 2007-05-03 License: BSD License Price:
909 downloads
OCamlI18N 0.3

OCamlI18N 0.3


OCamlI18N is a library for internationalization of Objective Caml programs. more>>
OCamlI18N is an OCaml library for programs internationalization.
OCamlI18N (will) provide an I18N module modeling locales, time zones, calendars and dates, numbers and collations for any language, provided enough locale information has been given to him.
The design is heavily inspired by Javas model of localization classes and its motivation was to have a completely thread-safe implementation of internationalization for OCaml fans. If you have any suggestions about the code, contact me (mattam AT mattam DOT org).
OCamlI18N is distributed under the terms of the LGPL.
Enhancements:
- Makefile (VERSION): Set to 0.3, for first release of LDML parsing code.
- src/ISO*.ml*, src/KeyTypes.ml*, src/Variants.ml*, src/ISO_types.ml*: Support for ISO and LDML types, with direct encoding of the enumerations as variant types.
- src/generate_parser.ml: Parser generator, using camlp4 for code construction and capable of producing class types, implementations and parsing code from DTDs.
- src/LDML_types.ml*, src/LDML_impl.ml*: generated code for parsing LDML documents using pxp.
- src/LDML_support.ml*: Support functions for parsing.
- src/LDML.ml*: main entry point to access LDML information.
<<less
Download (0.098MB)
Added: 2005-04-18 License: LGPL (GNU Lesser General Public License) Price:
1649 downloads
mod_random 2.0

mod_random 2.0


mod_random provides three services. more>>
Mod Random provides three services. The first service is redirection: you feed it URLs and it will redirect to random URLs that you have loaded.

The second is providing environment variables that can be used for implementing ad banner systems. The third is displaying entire pages of random HTML, using its own custom handlers in combination with with random ads and quotes that you feed into the system.

It can also supply text via an environment variable called RANDOM_QUOTE, RANDOM_AD, or by environment variables that you specify. This can be used to implement fortune cookies, message of the day, entire random pages, or banner ads.
<<less
Download (0.008MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1523 downloads
LocalCaml 0.2.0

LocalCaml 0.2.0


LocalCaml is a library for producing localized text from message catalogs. more>>
LocalCaml is an Objective Caml library that facilitates software internationalisation by producing localised text from message catalogs.
Main features:
- Translations are written using CamlTemplate, a general-purpose templating language; they can therefore use conditional logic to adapt sentence structure and morphology to the parameters they are given.
Translators can write template macros to simplify the handling of grammatical agreement.
- Since parameters passed to templates are named, the order of parameters in a translation can be different from the order used in the original text.
- Since message text is stored in XML files instead of in source code, it can contain the full range of Unicode characters, rather than the subset allowed in OCaml source code (ISO-8859-1). It should also be easy to make catalog editing tools for translators.
<<less
Download (0.060MB)
Added: 2005-10-07 License: GPL (GNU General Public License) Price:
1478 downloads
OcamlSpread 0.0.1

OcamlSpread 0.0.1


OcamlSpread is a wrapper around the Spread group communication toolkit. more>>
OcamlSpread is a wrapper around the Spread group communication toolkit (http://www.spread.org) for the Objective Caml programming language.

OcamlSpread not only wraps Spread functions, but adds an object-oriented interface and other valuable features.

<<less
Download (0.018MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1064 downloads
Caml-get 0.7

Caml-get 0.7


Caml-get is a tool to distribute and get Objective-Caml code in a way similar to the apt-get utility. more>> <<less
Download (0.070MB)
Added: 2006-05-22 License: GPL (GNU General Public License) Price:
1252 downloads
MO3 2.2

MO3 2.2


MO3 is a file format, encapsulating the features of several MOD formats. more>>
MO3 is a file format, encapsulating the features of several "MOD" formats (IT, XM, S3M, MTM, MOD), but with one big difference - MP3 and OGG compressed samples. A lossless codec is also incorporated for any samples that dont like lossy encoding, and the whole file structure is compressed too.
All this makes it possible to have great reductions in file sizes with practically identical sound quality. Actually MO3 allows greater quality compositions because MP3/OGG encoding works best with 16-bit samples, so theres no reason to use low quality 8-bit samples anymore.
Main features:
MP3/OGG compression
- any command-line MP3 or OGG encoder can be used with the MO3 encoder
Lossless compression
- samples that dont compress well with MP3/OGG can still be reduced in size
Structure compression
- all the non-sample data is also compressed
Sample specific config
- the encoding sample/bit rates are individually adjustable for each sample
Text removal
- message/instrument/sample texts can optionally be removed
Decompression
- MO3 files can be decoded back to their original formats using UNMO3
Playable
- MO3s can be played by XMPlay and software that uses the BASS library or UNMO3
<<less
Download (0.080MB)
Added: 2006-02-22 License: Freeware Price:
1340 downloads
Metamod 1.19

Metamod 1.19


Metamod project is a plugin/DLL manager for Half-Life servers. more>>
Metamod project is a plugin/DLL manager for Half-Life servers.
Metamod is a plugin/DLL manager that sits between the Half-Life Engine and an HL Game mod, allowing the dynamic loading/unloading of mod-like DLL plugins to add functionality to the HL server or game mod.
The purpose of MetaMod is to function "one level up" from the normal Half-Life game mod DLL. Sitting between the mod game DLL and the Half-Life engine/binary, it intercepts the function calls between the two, with the option of passing them along untouched, as well as passing them on to as any number of additional mod-like DLLs.
Thus, you can actually have multiple "mod-like" DLLs in operation at one time. I say "mod-like" because these additional DLLs (well call them "plugins") are not intended to provide a full "game"; that functionality is still provided by the "game dll". However, these plugins can add to or modify the functionality provided by the game dll, or by the engine itself - for instance, adding new server commands, or new client commands, or even disabling commands built into the game dll. Although the plugin isnt intended to provide full HL-game functionality, since its receiving the same information given to the game DLL, it has the opportunity to do anything the game DLL can do (given enough coding effort of course).
This is very similar to the way Alfred Reynolds AdminMod works, as it also sits between the engine and game dll, catching routines, and passing them on. thus modifying functionality. However, rather than providing just the additional server features builtin to AdminMod DLL, MetaMod allows you to add features from multiple, separate DLLs. Under that framework, AdminMod can be a plugin itself, and be run alongside numerous other plugins. And, as of version 2.50 of AdminMod, AM has now transitioned to running as a Metamod plugin.
Enhancements:
- Added support for new HLSDK API functions QueryClientCvarValue2() and ClientCvar2().
- Added GET_HOOK_TABLES() to let plugins make interceptable engine/dll calls.
- Added MAKE_REQUEST_ID() to assist plugins in generating request ids for QueryClientCvarValue2().
- Added mod support for Move In! 1.0, and Special Death Match Alpha 2.0.
- Fixed a bug where Windows DLL load failures produced an empty message.
- Fixed a bug where plugins could not catch NewDLL calls for GameDLLs that do not provide NewDLL information.
- Fixed a bug corrupting memory when using Metamod with engines or game dlls with a different interface than the one compiled against, e.g. older engines.
<<less
Download (0.20MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1146 downloads
fortune-mod-calvin 0.1.1

fortune-mod-calvin 0.1.1


fortune-mod-calvin is a fortune cookie file with quotes from Calvin and Hobbes. more>>
fortune-mod-calvin project is a fortune cookie file with quotes from Calvin and Hobbes.

fortune-mod-calvin is a compilation of quotes from Bill Wattersons fantastic "Calvin and Hobbes" comic strip.

The quotes have been compiled from various sources on the Web.

<<less
Download (0.006MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1047 downloads
World of Padman 1.1

World of Padman 1.1


World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base. more>>
World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base.

World of Padman was a popular total conversation mod for the quake 3 engine.

Since the release of the gpled sourcecode, their team-members are worked hard to brush up the maps, models and the whole bunch of other things that belongs to a superior mod. They Invented new weapons, gaming goals on so on.

Today it is the day to proudly anounce the availibility of WoP for Linux, MacOsX and Windows, also.

The standalone game is an funshooter at its best! Come and try it for free, you have nothing to invest but your download time.

The game comes absolutly free as in beer. For details for the copyrighted graphics read at the project site http://worldofpadman.com.

<<less
Download (550.2MB)
Added: 2007-04-02 License: Freeware Price:
943 downloads
The Objective Caml 3.08.4

The Objective Caml 3.08.4


Caml is a general-purpose programming language, designed with program safety and reliability in mind more>>
Caml is a general-purpose programming language, designed with program safety and reliability in mind. It is very expressive, yet easy to learn and use. Caml supports functional, imperative, and object-oriented programming styles.

It has been developed and distributed by INRIA, Frances national research institute for computer science, since 1985.

The Objective Caml system is the main implementation of the Caml language. It features a powerful module system and a full-fledged object-oriented layer.

It comes with a native-code compiler that supports numerous architectures, for high performance; a bytecode compiler, for increased portability; and an interactive loop, for experimentation and rapid development.
<<less
Download (2.3MB)
Added: 2005-08-26 License: GPL (GNU General Public License) Price:
850 downloads
mod-xslt 1.3.8

mod-xslt 1.3.8


mod-xslt is an Apache module that converts XML files into HTML files using XSLT stylesheets. more>>
mod-xslt is an Apache module that converts XML files into HTML files using XSLT stylesheets. It was written to overcome most of the limits of similar modules and uses a standard API, which could easily be used for other applications or to support more servers.
It is able to parse dynamically generated documents, both in POST and GET requests, includes a fully featured language to choose the stylesheet to load from both configuration files and from .xml files, and allows stylesheets to access server variables. It supports redirects, dynamically generated stylesheets, and both Apache 1 and 2.
Enhancements:
- configure, configure.ac - updated automatically by release scripts, in order to prepare a snapshot.
<<less
Download (1.7MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1525 downloads
Bio::GMOD 0.28

Bio::GMOD 0.28


Bio::GMOD is a unified API for Model Organism Databases. more>>
Bio::GMOD is a unified API for Model Organism Databases.

SYNOPSIS

Check the installed version of a MOD
use Bio::GMOD::Util::CheckVersions.pm
my $mod = Bio::GMOD::Util::CheckVersions->new(-mod=>WormBase);
my $version = $mod->live_version;
Update a MOD installation
use Bio::GMOD::Update;
my $mod = Bio::GMOD::Update->new(-mod=>WormBase);
$gmod->update();
Fetch a list of genes from a MOD
use Bio::GMOD::Query;
my $mod = Bio::GMOD::Query->new(-mod=>WormBase);
my @genes = $mod->fetch(-class=>Gene,-name=>unc-26);

Bio::GMOD is a unified API for accessing various Model Organism Databases. It is a part of the Generic Model Organism Database project, as well as distributed on CPAN.

MODs are highly curated resources of biological data. Although they typically incorporate sequence data housed at community repositories such as NCBI, they place this information within a framework of biological fuction gelaned from the published literature of experiments in model organisms.

Given the great proliferation of MODs, cross-site data mining strategies have been difficult to implement. Such strategies typically require a familiarity with both the underlying data model and the historical vocabulary of the model system.

Furthermore, the quickly-evolving nature of these projects have made installing a MOD locally and keeping it up-to-date a delicate and time-consuming experience.

<<less
Download (0.070MB)
Added: 2006-10-10 License: Perl Artistic License Price:
1137 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5