Changeset 1253

Show
Ignore:
Timestamp:
11/05/06 14:47:50 (2 years ago)
Author:
v-dogg
Message:

Configuration file header improvements, refs #341

Location:
trunk/src
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/buildtools/code_templates/config/autoload.xml

    r1252 r1253  
    88| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
    99| Any file listed here will automatically be loaded by PHP when the class is | 
    10 | first accessed (not in advance so you don't have to worry about            | 
    11 | performance). This means you do not manually have to include it in your    | 
    12 | files.                                                                     | 
     10| first accessed (not in advance so there's no performance hit). This means  | 
     11| you do not manually have to include it in your files.                      | 
    1312| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
    1413| AUTOLOAD CONFIGURATION ELEMENTS & ATTRIBUTES:                              | 
  • trunk/src/buildtools/code_templates/config/compile.xml

    r908 r1253  
    1414|       modified time of this file.                                          | 
    1515| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
     16| COMPILE CONFIGURATION ELEMENTS & ATTRIBUTES:                               | 
     17|                                                                            | 
     18| <compiles> Parent element for <compile>                                    | 
     19|   Includes:                                                                | 
     20|     1-n <compile> element                                                  | 
     21|                                                                            | 
     22| <compile>                                                                  | 
     23|   Includes:                                                                | 
     24|     A full path to the file to be added to the compilation. You can        | 
     25|     use KEYWORDS (see below) in the path.                                  | 
     26|                                                                            | 
     27| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
    1628| KEYWORDS:                                                                  | 
    1729| You may reference any configuration directive by enclosing the name in     | 
    18 | "%" signs. Example: %core.agavi_dir%                                         | 
     30| "%" signs. Example: %core.agavi_dir%                                       | 
    1931+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ 
    2032 
  • trunk/src/config/defaults/autoload.xml

    r1233 r1253  
    88| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
    99| Any file listed here will automatically be loaded by PHP when the class is | 
    10 | first accessed. This means you do not manually have to include it in your  | 
    11 | files.                                                                     | 
     10| first accessed (not in advance so there's no performance hit). This means  | 
     11| you do not manually have to include it in your files.                      | 
     12| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
     13| AUTOLOAD CONFIGURATION ELEMENTS & ATTRIBUTES:                              | 
     14|                                                                            | 
     15| <autoloads> Parent element for <autoload>                                  | 
     16|   Includes:                                                                | 
     17|     1-n <autoload> element                                                 | 
     18|                                                                            | 
     19| <autoload> Defines an autoload for a class                                 | 
     20|   Attributes:                                                              | 
     21|     name : Name of the class                                               | 
     22|   Includes:                                                                | 
     23|     A full path to the file to be loaded when the class is needed. You can | 
     24|     use KEYWORDS (see below) in the path.                                  | 
     25|                                                                            | 
    1226| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
    1327| KEYWORDS:                                                                  | 
    1428| You may reference any configuration directive by enclosing the name in     | 
    15 | "%" signs. Example: %core.agavi_dir%                                         | 
     29| "%" signs. Example: %core.agavi_dir%                                       | 
    1630+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ 
    1731--> 
  • trunk/src/config/defaults/compile.xml

    r1233 r1253  
    1313|       cache file until you remove the cache file or you change the         | 
    1414|       modified time of this file.                                          | 
     15| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
     16| COMPILE CONFIGURATION ELEMENTS & ATTRIBUTES:                               | 
     17|                                                                            | 
     18| <compiles> Parent element for <compile>                                    | 
     19|   Includes:                                                                | 
     20|     1-n <compile> element                                                  | 
     21|                                                                            | 
     22| <compile>                                                                  | 
     23|   Includes:                                                                | 
     24|     A full path to the file to be added to the compilation. You can        | 
     25|     use KEYWORDS (see below) in the path.                                  | 
     26|                                                                            | 
    1527| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
    1628| KEYWORDS:                                                                  |