[py-configparser-cvs] r15 - in public_html: . releases

ehuelsmann at common-lisp.net ehuelsmann at common-lisp.net
Sat Jan 19 21:25:23 UTC 2008


Author: ehuelsmann
Date: Sat Jan 19 16:25:23 2008
New Revision: 15

Added:
   public_html/releases/
   public_html/releases/py-configparser-1.0.tar.gz   (contents, props changed)
Modified:
   public_html/index.shtml
Log:
Add 1.0 release.

Modified: public_html/index.shtml
==============================================================================
--- public_html/index.shtml	(original)
+++ public_html/index.shtml	Sat Jan 19 16:25:23 2008
@@ -1,63 +1,60 @@
-<?xml version="1.0"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
-    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-  <title><!--#include virtual="project-name" --></title>
-  <link rel="stylesheet" type="text/css" href="style.css"/>
-  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
-</head>
-
-<body>
- <div class="header">
-   <h1><!--#include virtual="project-name" --></h1>
- </div>
-
-<h1>Project description</h1>
- <p>The <b>py-configparser</b> package implements the
-  <a href="http://docs.python.org/lib/module-ConfigParser.html">
-   ConfigParser Python module</a> functionality in Common Lisp.</p>
-
- <p>In short, it implements <b>reading and writing of .INI-file style
-  configuration files</b> with sections containing key/value pairs of
-  configuration options. In line with the functionalities in the python
-  module, does this package implement basic interpolation of option values
-  in other options.
- </p>
-
- <p>The main reason for starting the project is to be able to share
-  configuration files between Python and Common Lisp. Other projects
-  may be using the python/INI file style files too and the project is
-  by no means limited to the ConfigParser functionality. So, if you
-  have any wishes and/or nice extentions based on this format, please
-  send your contributions or extention requests.</p>
-
- <h1>Examples:</h1>
- <pre style="border: 1px solid black; background-color: #ccf">
-
-[my-section]
-option1 = value1
-option2: value2
-
-[interpolated-section]
-option1 = value
-option2 = value2 and %(option1)s
-# this is a comment; the above line evaluates to "value2 and value"
-
-# empty lines and comments are skipped
- </pre>
-
-
-<h1>Releases</h1>
-<p>Having recently started (Christmas hacking, 2007), the project doesn't
-have any official releases yet.  The code however should be useable and
-the only reason there's no release is because there are no unit tests yet.
-(Yea, working on it....) </p>
-
-<hr>
-
- <div class="check">
-   <a href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a>
- </div>
-</body>
-</html>
+<?xml version="1.0"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+  <title><!--#include virtual="project-name" --></title>
+  <link rel="stylesheet" type="text/css" href="style.css"/>
+  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+</head>
+
+<body>
+ <div class="header">
+   <h1><!--#include virtual="project-name" --></h1>
+ </div>
+
+<h1>Project description</h1>
+ <p>The <b>py-configparser</b> package implements the
+  <a href="http://docs.python.org/lib/module-ConfigParser.html">
+   ConfigParser Python module</a> functionality in Common Lisp.</p>
+
+ <p>In short, it implements <b>reading and writing of .INI-file style
+  configuration files</b> with sections containing key/value pairs of
+  configuration options. In line with the functionalities in the python
+  module, does this package implement basic interpolation of option values
+  in other options.
+ </p>
+
+ <p>The main reason for starting the project is to be able to share
+  configuration files between Python and Common Lisp. Other projects
+  may be using the python/INI file style files too and the project is
+  by no means limited to the ConfigParser functionality. So, if you
+  have any wishes and/or nice extentions based on this format, please
+  send your contributions or extention requests.</p>
+
+ <h1>Examples:</h1>
+ <pre style="border: 1px solid black; background-color: #ccf">
+
+[my-section]
+option1 = value1
+option2: value2
+
+[interpolated-section]
+option1 = value
+option2 = value2 and %(option1)s
+# this is a comment; the above line evaluates to "value2 and value"
+
+# empty lines and comments are skipped
+ </pre>
+
+
+<h1>Releases</h1>
+<p>The 1.0 release can be downloaded from <a href="http://common-lisp.net/project/py-configparser/releases/py-configparser-1.0.tar.gz">http://common-lisp.net/project/py-configparser/releases/py-configparser-1.0.tar.gz</a></p>
+
+<hr>
+
+ <div class="check">
+   <a href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a>
+ </div>
+</body>
+</html>

Added: public_html/releases/py-configparser-1.0.tar.gz
==============================================================================
Binary file. No diff available.



More information about the Py-configparser-cvs mailing list