Author: Derick Rethans
Date: 2006-01-29 00:17:32 +0100 (Sun, 29 Jan 2006)
New Revision: 2076

Log:
- Added structure for tutorial.

Added:
   packages/Configuration/trunk/docs/tutorial.txt
   packages/Configuration/trunk/docs/tutorial_autoload.php
   packages/Configuration/trunk/docs/tutorial_example_01.php

Added: packages/Configuration/trunk/docs/tutorial.txt
===================================================================
--- packages/Configuration/trunk/docs/tutorial.txt      2006-01-28 14:58:45 UTC 
(rev 2075)
+++ packages/Configuration/trunk/docs/tutorial.txt      2006-01-28 23:17:32 UTC 
(rev 2076)
@@ -0,0 +1,37 @@
+eZ components - Configuration
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. contents:: Table of Contents
+
+Introduction
+============
+
+
+Class overview
+==============
+
+ezcTranslationManager
+  The main class of this component. It is responsible for calling the
+  configured backends to read in translation data and return a translation
+  context in the form of an ezcTranslation object.
+
+
+Basic Usage
+===========
+
+
+File Format
+===========
+
+
+More Information
+================
+
+
+
+..
+   Local Variables:
+   mode: rst
+   fill-column: 79
+   End:
+   vim: et syn=rst tw=79


Property changes on: packages/Configuration/trunk/docs/tutorial.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: packages/Configuration/trunk/docs/tutorial_autoload.php
===================================================================
--- packages/Configuration/trunk/docs/tutorial_autoload.php     2006-01-28 
14:58:45 UTC (rev 2075)
+++ packages/Configuration/trunk/docs/tutorial_autoload.php     2006-01-28 
23:17:32 UTC (rev 2076)
@@ -0,0 +1,17 @@
+<?php
+
+require_once 'Base/trunk/src/base.php';
+
+/**
+ * Autoload ezc classes 
+ * 
+ * @param string $class_name 
+ */
+function __autoload( $class_name )
+{
+    if ( ezcBase::autoload( $class_name ) )
+    {
+        return;
+    }
+}
+?>


Property changes on: packages/Configuration/trunk/docs/tutorial_autoload.php
___________________________________________________________________
Name: svn:eol-style
   + native

Added: packages/Configuration/trunk/docs/tutorial_example_01.php
===================================================================
--- packages/Configuration/trunk/docs/tutorial_example_01.php   2006-01-28 
14:58:45 UTC (rev 2075)
+++ packages/Configuration/trunk/docs/tutorial_example_01.php   2006-01-28 
23:17:32 UTC (rev 2076)
@@ -0,0 +1,4 @@
+<?php
+require_once 'tutorial_autoload.php';
+
+?>


Property changes on: packages/Configuration/trunk/docs/tutorial_example_01.php
___________________________________________________________________
Name: svn:eol-style
   + native

-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to