removed mods directory from the ATutor codebase
[atutor.git] / mods / phpdoc2 / PhpDocumentor / phpDocumentor / Smarty-2.6.0 / README
diff --git a/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/README b/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/README
deleted file mode 100644 (file)
index db3cf4e..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-NAME:\r
-\r
-    Smarty - the PHP compiling template engine\r
-\r
-VERSION: 2.5.0\r
-\r
-AUTHORS:\r
-    \r
-    Monte Ohrt <monte@ispi.net>\r
-    Andrei Zmievski <andrei@php.net>\r
-\r
-MAILING LISTS:\r
-\r
-    We have a few mailing lists. "general" for you to share your ideas or ask\r
-       questions, "dev" for those interested in the development efforts of Smarty,\r
-       and "cvs" for those that would like to track the updates made in the cvs\r
-       repository.\r
-\r
-    send a blank e-mail message to:\r
-      smarty-general-subscribe@lists.php.net (subscribe to the general list)\r
-      smarty-general-unsubscribe@lists.php.net (unsubscribe from the general list)\r
-      smarty-general-digest-subscribe@lists.php.net (subscribe to digest)\r
-      smarty-general-digest-unsubscribe@lists.php.net (unsubscribe from digest)\r
-      smarty-dev-subscribe@lists.php.net (subscribe to the dev list)\r
-      smarty-dev-unsubscribe@lists.php.net (unsubscribe from the dev list)\r
-      smarty-cvs-subscribe@lists.php.net (subscribe to the cvs list)\r
-      smarty-cvs-unsubscribe@lists.php.net (unsubscribe from the cvs list)\r
-    You can also browse the mailing list archives at\r
-    http://marc.theaimsgroup.com/?l=smarty&r=1&w=2\r
-\r
-SYNOPSIS:\r
-\r
-    require("Smarty.class.php");\r
-\r
-    $smarty = new Smarty;\r
-\r
-    $smarty->assign("Title","My Homepage");\r
-    $smarty->assign("Names",array("John","Gary","Gregg","James"));\r
-\r
-    $smarty->display("index.tpl");\r
-\r
-\r
-DESCRIPTION:\r
-\r
-    What is Smarty?\r
-\r
-    Smarty is a template engine for PHP. Many other template engines for PHP\r
-    provide basic variable substitution and dynamic block functionality.\r
-    Smarty takes a step further to be a "smart" template engine, adding\r
-    features such as configuration files, template functions, and variable\r
-    modifiers, and making all of this functionality as easy as possible to\r
-    use for both programmers and template designers. Smarty also converts\r
-    the templates into PHP scripts, eliminating the need to parse the\r
-    templates on every invocation. This makes Smarty extremely scalable and\r
-    manageable for large application needs.\r
-\r
-    Some of Smarty's features:\r
-\r
-    * it is extremely fast\r
-    * no template parsing overhead, only compiles once.\r
-       * it is smart about recompiling only the template files that have\r
-         changed.\r
-    * the template language is remarkably extensible via the plugin\r
-      architecture.\r
-    * configurable template delimiter tag syntax, so you can use\r
-      {}, {{}}, <!--{}-->, or whatever you like.\r
-    * built-in caching of template output.\r
-    * arbitrary template sources (filesystem, databases, etc.)\r
-    * template if/elseif/else/endif constructs are passed to the PHP parser,\r
-      so the if syntax can be as simple or as complex as you like.\r
-    * unlimited nesting of sections, conditionals, etc. allowed\r
-    * it is possible to embed PHP code right in your template files,\r
-      although not recommended and doubtfully needed since the engine\r
-      is so customizable.\r
-    * and many more.\r
-\r
-COPYRIGHT:\r
-    Copyright (c) 2001,2002 ispi of Lincoln, Inc. All rights reserved.\r
-    This software is released under the GNU Lesser General Public License.\r
-    Please read the disclaimer at the top of the Smarty.class.php file.\r