Main > Free Download Search >

Free mod caml 1.3.6 software for linux

mod caml 1.3.6

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 209
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-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
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_dav 1.0.3-1.3.6

mod_dav 1.0.3-1.3.6


mod_dav is an Apache module to provide DAV capabilities (RFC 2518) for your Apache web server. more>>
mod_dav is an Apache module to provide DAV capabilities (RFC 2518) for your Apache web server.

mod_dav currently implements a Class 1 and Class 2 DAV server. This means that it provides all the basic DAV facilities for manipulating resources (files) on the target web server, along with manipulating properties on those resources. In addition, it handles the (un)locking of resources so that clients can have exclusive access to modify resources.

This is the final, 1.0 release. It is very stable and well-tested, after its nineteen month development period. Since there is no rush to market on an Open Source product, mod_dav was not labelled as 1.0 until it really felt like a 1.0 release.

Additional patches and releases will be created for mod_dav 1.0 as problems arise. For example, mod_dav 1.0.1 was released on June 28, 2000 to fix a problem on the Win32 platform. mod_dav 1.0.2 was released in October, 2000 to improve the configuration and build process, enhance the conformance to various specifications, fix a number of bugs, and provide for operation on EBCDIC machines.

mod_dav has been incorporated directly into the Apache servers next major release -- Apache 2.0. Development of new functionality and features will be focused on Apaches DAV implementation.

<<less
Download (0.18MB)
Added: 2006-05-19 License: LGPL (GNU Lesser General Public License) Price:
1253 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
OpenNMS 1.3.6

OpenNMS 1.3.6


OpenNMS is an enterprise-grade network management platform. more>>
OpenNMS is a FREE and the first enterprise-grade network management platform developed using the open source model.
The three main functional areas of OpenNMS are service polling, which monitors services on the network and reports on their "service level"; data collection from the remote systems via SNMP in order to measure the performance of the network; and a system for event management and notifications.
Enhancements:
- The big push for this release was to move all of the C code out of the main OpenNMS branch so that the remaining Java code can be compiled once for all supported platforms.
- Three new packages (jicmp, jrrd, and iplike) have been created as dependencies.
<<less
Download (34.6MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
831 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
bgrab 1.3.6

bgrab 1.3.6


bgrab is an application used to download binary attachments from newsgroups. more>>
bgrab is an application used to download binary attachments from newsgroups.

The purpose of this program is to automate the downloading of binary attachments from UseNet Newsgroups. Given a group name, this program will connect to a news server, read all messages in that group and extract any binary attachments included in any of those messages (including multipart attachments). This program does not require any keyboard interaction and could be fairly easily scheduled to run from crond.

To compile this program, you need to be on a system that uses the GNU C++ Compiler (or that has some other ANSI C++ compliant compiler linked to run as the gcc executable). You also need to have either curses or ncurses installed.

Makefiles are included for Linux and Solaris systems. The attached configure script does nothing more than try to figure out if youre running one of these two OSes and create a link from one of them to Makefile if you are. The Linux makefile assumes you have ncurses installed, the Solaris that you have curses itself.

If some of this isnt true (i.e. if youre running some other variant of UNIX or if your curses is called something different), youre on your own to compile.

Otherwise:
configure
make

"make install" will try to move the program binary (bgrab) to /usr/local/bin and make it root/root/755.

<<less
Download (0.30MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
942 downloads
GiNaC 1.3.6

GiNaC 1.3.6


GiNaC is an iterated and recursive acronym for GiNaC is Not a CAS, where CAS stands for Computer Algebra System. more>>
GiNaC is an iterated and recursive acronym for GiNaC is Not a CAS, where CAS stands for Computer Algebra System. It is designed to allow the creation of integrated systems that embed symbolic manipulations together with more established areas of computer science (like computation- intense numeric applications, graphical interfaces, etc.) under one roof. It is distributed under the terms and conditions of the GNU general public license (GPL).
The project has been specifically developed to become a replacement engine for xloops which is up to now powered by the Maple CAS. However, it is not restricted to high energy physics applications. Its design is revolutionary in a sense that contrary to other CAS it does not try to provide extensive algebraic capabilities and a simple programming language but instead accepts a given language (C++) and extends it by a set of algebraic capabilities.
Enhancements:
- Bugs in fderivative::match_same_type(), expairseq::match(), expand_dummy_sum(), and expairseq::map() have been fixed, and the C source output has been slightly improved.
- Problems when compiling with GCC 4.2 have been resolved.
<<less
Download (0.76MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1001 downloads
AMX Mod X 1.76b

AMX Mod X 1.76b


AMX Mod X is a Half-Life Metamod plugin. more>>
AMX Mod X project is a Half-Life Metamod plugin.
AMX Mod X is a Metamod plugin which allows you to write modifications for Half-Life with the Pawn scripting language.
It provides in-game administration tools, game statistics, server management, and gameplay modifiers. It is based on the original AMX Mod.
AMX Mod X is a versatile Half-Life metamod plugin which is targetted toward server administration.
It has a wide array of scripting capabilities so people can write "plugins", or files which add on to a mods functionality.
Plugins can take form in administrative services (adding new admin commands), statistics generation (StatsX), fun additions (godmode, etc), gameplay changes (WC3, CSDM), and much, much more!
You can also write modules to expand the functionality of AMX Mod X and add to the scripting language.
Enhancements:
- Fixed am46213: New-style menus that had numbered blanks would cause Core to guess the item numbers wrong.
- Fixed am46266: Team name detection did not work for TFC.
- Fixed a bug where get_func_id() would crash on an invalid plugin.
- Added an optional timeout parameter to SQL_MkDbTuple().
- Added a "queuetime" parameter to threaded query handlers, to get the amount of time passed.
- Extended CreateMultiForward() with CreateMultiForwardEx() for filtering old/new plugins from forwards.
- Fixed am45337: SQLX_GetQueryString() did not work with threaded queries.
- Fixed am46350: geoip.inc having faulty a double-inclusion barrier.
- Fixed am46378: unregister_forward() attempted to remove from the wrong hook table.
- Fixed am46336: Vexd_Utilities.inc did not include VexdUM for AMX Mod Compat compiling.
- Fixed am46630: rename_file() could not use relative paths.
- Fixed am45990: amxmod_compat.amxx could conflict and crash hand-ported AMX Mod plugins.
- Fixed am46340: miscstats.amxx could throw an RTE finding the enemy team.
- Fixed am46335: adminchat.amxx color tsay messages were not space aligned. Additionally, the leading space can now be omitted.
- Fixed am46699: stats.amxx for DoD did not display working multi-lingual menus.
- Fixed am46559: miscstats.amxx could throw an RTE if a player got more than 6 kills in a row.
- Fixed am45492: DoDX would overwrite the stats database on load.
- Fixed am46112: WinCSX.exe would not load properly on some versions of Windows.
- Fixed am45362: AMXX Studio did not indent correctly.
<<less
Download (MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
4300 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
HTML::Embperl 1.3.6

HTML::Embperl 1.3.6


HTML::Embperl is a Perl module for building dynamic Websites with Perl. more>>
HTML::Embperl is a Perl module for building dynamic Websites with Perl.

SYNOPSIS

Embperl is a Perl extension module which gives you the power to embed Perl code directly in your HTML documents (like server-side includes for shell commands).

If building more than a single page, you may also want to take a look at "perldoc EmbperlObject" which lets you build your website out of small reusable objects.

Additionally, "perldoc HTML::Embperl::Mail" allows you to send the resulting page via email.

<<less
Download (0.35MB)
Added: 2006-09-01 License: Perl Artistic License Price:
1148 downloads
Cameleon2 1.9.17

Cameleon2 1.9.17


Cameleon aims to become an integrated development environment for Objective-Caml, and eventually other languages. more>>
Cameleon project aims to become an integrated development environment for Objective-Caml, and eventually other languages.
Main features:
- graphical user interface,
- configuration management based on CVS,
- easy access to and browsing of documentation,
- various editors, according to customizable file types,
- use of plug-ins to define new features,
- highly customizable interface (menus, toolbar, keyboard shortcuts).
<<less
Download (0.44MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
620 downloads
mod-apache-snmp 1.03

mod-apache-snmp 1.03


Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP. more>>
Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP.
Enhancements:
- Bugfixes, the inclusion of MRTG scripts, and changes to make the module work on the IBM HTTP Server.
<<less
Download (0.032MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1533 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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5