Skip to content

Commit

Permalink
Made it a bit easier to keep the webpage of subproject descriptions
Browse files Browse the repository at this point in the history
updated.
  • Loading branch information
noss committed Dec 20, 2004
1 parent d3255ce commit 139d9df
Show file tree
Hide file tree
Showing 51 changed files with 180 additions and 0 deletions.
36 changes: 36 additions & 0 deletions doc/FOOT
@@ -0,0 +1,36 @@
<h3>What is new in the collection?</h3>
<ul>
<li><a
href="http://sourceforge.net/mailarchive/forum.php?forum_id=30262">Archive
of the jungerl-commit mailinglist</a><br>
</li>
</ul>
<h3>Related links</h3>
<ul>
<li>Open source erlang at <a href="http://erlang.org/">erlang.org</a></li>
<li>Commercial erlang at <a href="http://erlang.se/">erlang.se</a><br>
</li>
<li>Other <a
href="http://sourceforge.net/softwaremap/trove_list.php?form_cat=264">sourceforge
projects in erlang</a>.<br>
</li>
<li><a href="http://www.erlang-projects.org/">Erlang-projects.org</a></li>
<li>The <a href="http://www.bluetail.com/wiki/">erlang wiki.</a></li>
</ul>
<h3>How do I update this page?</h3>
<ol>
<li> cd to your local jungerl top-dir.
<li> run <code>doc/make_index.sh > ~/foo.html</code>
<li> check that the output seems correct using your browser
<li> scp ~/foo.html file to index.html in the project web arena
(i.e yourusername@jungerl.sf.net:/home/groups/j/ju/jungerl/htdocs)
</ol>
<p> <a href="http://validator.w3.org/check/referer"><img border="0"
src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"
height="31" width="88"></a> </p>
<hr>
<div style="text-align: right;">written by <a
href="mailto:noss@users.sf.net">noss@users.sf.net</a><br>
</div>
</body>
</html>
69 changes: 69 additions & 0 deletions doc/HEAD
@@ -0,0 +1,69 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
<title>Jungerl - a dense and chaotic Jungle of Erlang code</title>

<style TYPE="text/css">
body {
background: rgb(250,240,230);
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12pt;
color: black;
margin-right: 1em;
margin-left: 1em;
//background: #B6B6A5;
background-color: white;
}

H1, H2, H4, H5 { font-weight: bold; }
H1 { font-size: 200%; }
H2 { font-size: 150%; }
H3 { font-size: 130%; }
H4 { font-size: 110%; }
H5 { font-size: 100%; }

A:visited { color: #600000;}
A:link { color: #0000f0; } /* unvisited link */
A:active { color: lime; } /* active links */
A:hover { background: rgb(189,183,107); }

dl {
margin-left: 1em;
margin-right: 1em;
max-width: 40em;
}

dl dt {
font-weight: bold;
font-size: 120%;
}
dl dd {
margin-bottom: 1ex;
}

</style>
</head>
<body>
<div id=logo style=" text-align: center;">
<img src="jungerl-logo.png" title="" alt="The pseudo-temporary jungerl logo."
style="width: 800px; height: 60px;">
</div>
<div id=navbar style=" text-align: center;">
--
<a href="http://sourceforge.net/projects/jungerl">project page</a>--
<a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jungerl/">cvs browser</a>--
<a href="http://www.bluetail.com/wiki/showPage?node=home">erlang wiki</a>--

</div>
<hr>
<h1>Jungerl</h1>
<p>
The Jungle of Erlang code. This sourceforge project contains miscellanous
utilities for erlang programmers.
<h3>What is in the collection?</h3>
<p>
The following list has been assembled automatically by a short description
file found in each jungerl subproject.
</p>
25 changes: 25 additions & 0 deletions doc/make_index.sh
@@ -0,0 +1,25 @@
#!/bin/sh

ROOTDIR="."

cat $ROOTDIR/doc/HEAD

echo "<dl>"
for d in `find $ROOTDIR/lib -type d -mindepth 1 -maxdepth 1 | sort`
do
if [ "./lib/CVS" = $d ]; then continue; fi

echo "<dt>" `basename $d` "</dt>"
if [ -e $d/doc/short-desc ]
then
echo "<dd> " | cat - $d/doc/short-desc
else
echo "<dd> No description in the file <code>$d/doc/short-desc</code> yet!"
fi
echo "</dd>"
done
echo "</dl>"

echo "<p>List updated " `LANG=C date` "</p>"

cat $ROOTDIR/doc/FOOT
1 change: 1 addition & 0 deletions lib/builder/doc/short-desc
@@ -0,0 +1 @@
OTP release script builder.
1 change: 1 addition & 0 deletions lib/ce/doc/short-desc
@@ -0,0 +1 @@
miscellaneous Erlang/OTP programming support library
1 change: 1 addition & 0 deletions lib/claw/doc/short-desc
@@ -0,0 +1 @@
CLAW is an embryonic compiler from Core Erlang to Common Lisp.
1 change: 1 addition & 0 deletions lib/edep/doc/short-desc
@@ -0,0 +1 @@
Dependecy generator for erlang files
1 change: 1 addition & 0 deletions lib/edoc/doc/short-desc
@@ -0,0 +1 @@
EDoc lets you write the documentation of an Erlang program as comments in the source code, using Javadoc-style tags and XHTML markup.
1 change: 1 addition & 0 deletions lib/eldap/doc/short-desc
@@ -0,0 +1 @@
This is 'eldap', the Erlang LDAP library.
1 change: 1 addition & 0 deletions lib/enfs/doc/short-desc
@@ -0,0 +1 @@
Minimal NFS v2 server in Erlang
1 change: 1 addition & 0 deletions lib/epop/doc/short-desc
@@ -0,0 +1 @@
A POP3 server/client package.
1 change: 1 addition & 0 deletions lib/eradius/doc/short-desc
@@ -0,0 +1 @@
RADIUS authentication/accounting
1 change: 1 addition & 0 deletions lib/erl_cgi/doc/short-desc
@@ -0,0 +1 @@
a cgi-erlang interface with a lot of nice features, such as esp scripts
1 change: 1 addition & 0 deletions lib/erl_img/doc/short-desc
@@ -0,0 +1 @@
Image processing stuff (bmp, gif, jpeg, png, xpm, tiff, mpeg)
1 change: 1 addition & 0 deletions lib/erlspect/doc/short-desc
@@ -0,0 +1 @@
Erlspect is a simple tool for automating interactive text based applications like telnet etc. And also for testing such applications.
1 change: 1 addition & 0 deletions lib/ermacs/doc/short-desc
@@ -0,0 +1 @@
an erlang clone of emacs.
1 change: 1 addition & 0 deletions lib/esmb/doc/short-desc
@@ -0,0 +1 @@
This is an implementation of a subset of the SMB protocol.
1 change: 1 addition & 0 deletions lib/ex11/doc/short-desc
@@ -0,0 +1 @@
This is an Erlang-X11 binding, i.e an implementation of the X11 protocol in Erlang.
1 change: 1 addition & 0 deletions lib/gd1_drv/doc/short-desc
@@ -0,0 +1 @@
This driver is for GD, a library for dynamic creation of PNG and JPEG images: line drawing, polygons, text, and lots more.
1 change: 1 addition & 0 deletions lib/gen_leader/doc/short-desc
@@ -0,0 +1 @@
This application implements a leader election behaviour modeled after gen_server. This behaviour intends to make it reasonably straightforward to implement a fully distributed server with master-slave semantics.
1 change: 1 addition & 0 deletions lib/gregexp/doc/short-desc
@@ -0,0 +1 @@
This module extends the regexp module in OTP R7B-1 with support for submatches (the \(...\) syntax in SED regular expressions). This makes it possible to retrieve several components of a match with a single evaluation of a regexp.
2 changes: 2 additions & 0 deletions lib/intl/doc/short-desc
@@ -0,0 +1,2 @@

internationalization localization
1 change: 1 addition & 0 deletions lib/lersp/doc/short-desc
@@ -0,0 +1 @@
an Erlang interpreter for an approximation of Scheme
1 change: 1 addition & 0 deletions lib/lines/doc/short-desc
@@ -0,0 +1 @@
Efficient array-of-lines ADT. Allows for append, as well as insert, replace, delete in any position with reasonable access times.
1 change: 1 addition & 0 deletions lib/lisperl/doc/short-desc
@@ -0,0 +1 @@
A generic (mostly) CommonLisp compliant parser for lisp-like syntax.
1 change: 1 addition & 0 deletions lib/measurement/doc/short-desc
@@ -0,0 +1 @@
Measurement ADT.
1 change: 1 addition & 0 deletions lib/msc/doc/short-desc
@@ -0,0 +1 @@
Miscellaneous small (single-file) libraries.
1 change: 1 addition & 0 deletions lib/otp.net/doc/short-desc
@@ -0,0 +1 @@
A port of jinterface-1.2.1.1 to C#.NET
1 change: 1 addition & 0 deletions lib/pan/doc/short-desc
@@ -0,0 +1 @@
Profiler
1 change: 1 addition & 0 deletions lib/pico/doc/short-desc
@@ -0,0 +1 @@
Joe Armstrong's pico (http server) and wiki code
1 change: 1 addition & 0 deletions lib/plain_fsm/doc/short-desc
@@ -0,0 +1 @@
A behaviour/support library for writing plain Erlang FSMs.
1 change: 1 addition & 0 deletions lib/posix_drv/doc/short-desc
@@ -0,0 +1 @@
Small driver for POSIX functions not normally supported by the Erlang runtime system.
1 change: 1 addition & 0 deletions lib/psocket/doc/short-desc
@@ -0,0 +1 @@
PF_PACKET socket interface via port program
1 change: 1 addition & 0 deletions lib/quickcheck/doc/short-desc
@@ -0,0 +1 @@
This is a <a href="http://www.math.chalmers.se/~rjmh/ErlangQC/"> program testing tool presented by John Hughes</a> at EUC'03.
1 change: 1 addition & 0 deletions lib/rdbms/doc/short-desc
@@ -0,0 +1 @@
A relational database management layer on top of mnesia.
1 change: 1 addition & 0 deletions lib/rpc/doc/short-desc
@@ -0,0 +1 @@
SUN ONC/RPC for erlang.
1 change: 1 addition & 0 deletions lib/sl/doc/short-desc
@@ -0,0 +1 @@
A driver for using serial ports on unix & win32.
1 change: 1 addition & 0 deletions lib/slang/doc/short-desc
@@ -0,0 +1 @@
an erlang interface to the amazing highly portable tty interface slang
1 change: 1 addition & 0 deletions lib/smart_exceptions/doc/short-desc
@@ -0,0 +1 @@
This is a parse transform to give more informative exceptions. There is also support for invoking an "exit handler module" instead of just exiting.
1 change: 1 addition & 0 deletions lib/spread_drv/doc/short-desc
@@ -0,0 +1 @@
This driver is for Spread, a reliable multicast library. See <a href="http://www.spread.org/">http://www.spread.org/</a>.
1 change: 1 addition & 0 deletions lib/syntax_tools/doc/short-desc
@@ -0,0 +1 @@
This package contains modules for handling abstract Erlang syntax trees, in a way that is compatible with the "parse trees" of the standard library module `erl_parse', together with utilities for reading source files in unusual ways and pretty-printing syntax trees. Also included is an amazing automatic code-cleaner.
1 change: 1 addition & 0 deletions lib/tuntap/doc/short-desc
@@ -0,0 +1 @@
Linux "Universal TUN/TAP device" driver
1 change: 1 addition & 0 deletions lib/unixdom/doc/short-desc
@@ -0,0 +1 @@
UNIX domain socket support.
1 change: 1 addition & 0 deletions lib/unixdom_drv/doc/short-desc
@@ -0,0 +1 @@
A reimplementation of UNIX domain socket support.
1 change: 1 addition & 0 deletions lib/wiki/doc/short-desc
@@ -0,0 +1 @@
Joe Armstrong's wiki code
2 changes: 2 additions & 0 deletions lib/wumpus/doc/short-desc
@@ -0,0 +1,2 @@
Erlang Wumpus is an implementation of the classic game of _Hunt the Wumpus_
in Erlang.
1 change: 1 addition & 0 deletions lib/www_tools/doc/short-desc
@@ -0,0 +1 @@
This is Joe Armstrong's www_tools contrib
1 change: 1 addition & 0 deletions lib/x11/doc/short-desc
@@ -0,0 +1 @@
New flavour of the ex11.
1 change: 1 addition & 0 deletions lib/xmerl/doc/short-desc
@@ -0,0 +1 @@
XML processing tools for Erlang
1 change: 1 addition & 0 deletions lib/xmlrpc/doc/short-desc
@@ -0,0 +1 @@
This is an HTTP 1.1 compliant XML-RPC library for Erlang.
1 change: 1 addition & 0 deletions lib/zlib/doc/short-desc
@@ -0,0 +1 @@
ZLIB interface driver

0 comments on commit 139d9df

Please sign in to comment.