Changeset 143


Ignore:
Timestamp:
Jun 4, 2006 12:14:22 AM (18 years ago)
Author:
scdev
Message:

Q - global comments formatting change

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/module_maker/module.cli.php

    r136 r143  
    5050
    5151
    52 /******************************************************************************
    53  * CONFIG
    54  *****************************************************************************/
     52/********************************************************************
     53* CONFIG
     54********************************************************************/
    5555
    5656// Where deleted files go:
     
    100100
    101101
    102 /******************************************************************************
    103  * PREPROCESSING
    104  *****************************************************************************/
     102/********************************************************************
     103* PREPROCESSING
     104********************************************************************/
    105105
    106106// Ensure skel files exist.
     
    532532
    533533
    534 /******************************************************************************
    535  * FUNCTIONS
    536  *****************************************************************************/
     534/********************************************************************
     535* FUNCTIONS
     536********************************************************************/
    537537
    538538function trashFile($file_path_name)
  • trunk/bin/module_maker/skel/admin.php

    r141 r143  
    2323%ADMIN_UPLOAD_INCLUDE%
    2424
    25 /******************************************************************************
    26  * CONFIG
    27  *****************************************************************************/
     25/********************************************************************
     26* CONFIG
     27********************************************************************/
    2828
    2929// Titles and navigation header.
     
    4646$app->carryQuery('filter_<##>');
    4747%ADMIN_UPLOAD_CONFIG%
    48 /******************************************************************************
    49  * MAIN
    50  *****************************************************************************/
     48/********************************************************************
     49* MAIN
     50********************************************************************/
    5151 %ADMIN_UPLOAD_INIT%
    5252// We may want to use the add/edit interface from another script, so this
     
    184184include 'footer.ihtml';
    185185
    186 /******************************************************************************
    187  * FUNCTIONS
    188  *****************************************************************************/
     186/********************************************************************
     187* FUNCTIONS
     188********************************************************************/
    189189
    190190%FORM_VALIDATION%
  • trunk/bin/module_maker/skel/public.php

    r136 r143  
    2727%SORT_ORDER%
    2828
    29 /******************************************************************************
    30  * MAIN
    31  *****************************************************************************/
     29/********************************************************************
     30* MAIN
     31********************************************************************/
    3232
    3333if (getFormData('%PRIMARY_KEY%', false)) {
  • trunk/docs/example_script_template.php

    r136 r143  
    1616
    1717
    18 /******************************************************************************
    19  * CONFIG
    20  *****************************************************************************/
     18/********************************************************************
     19* CONFIG
     20********************************************************************/
    2121
    2222
    2323
    24 /******************************************************************************
    25  * MAIN
    26  *****************************************************************************/
     24/********************************************************************
     25* MAIN
     26********************************************************************/
    2727
    2828
    2929
    30 /******************************************************************************
    31  * OUTPUT
    32  *****************************************************************************/
     30/********************************************************************
     31* OUTPUT
     32********************************************************************/
    3333
    3434
    3535
    36 /******************************************************************************
    37  * FUNCTIONS
    38  *****************************************************************************/
     36/********************************************************************
     37* FUNCTIONS
     38********************************************************************/
    3939
    4040
  • trunk/lib/Nav.inc.php

    r136 r143  
    3737    }
    3838
    39 /******************************************************************************
    40  * INPUT
    41  *****************************************************************************/
     39/********************************************************************
     40* INPUT
     41********************************************************************/
    4242
    4343    /**
     
    9696    }
    9797
    98 /******************************************************************************
    99  * OUTPUT
    100  *****************************************************************************/
     98/********************************************************************
     99* OUTPUT
     100********************************************************************/
    101101
    102102    /**
  • trunk/services/admins.php

    r141 r143  
    2020
    2121
    22 /******************************************************************************
    23  * CONFIG
    24  *****************************************************************************/
     22/********************************************************************
     23* CONFIG
     24********************************************************************/
    2525
    2626// Titles and navigation header.
     
    5959
    6060
    61 /******************************************************************************
    62  * MAIN
    63  *****************************************************************************/
     61/********************************************************************
     62* MAIN
     63********************************************************************/
    6464
    6565// We may want to use the add/edit interface from another script, so this
     
    185185include 'footer.ihtml';
    186186
    187 /******************************************************************************
    188  * FUNCTIONS
    189  *****************************************************************************/
     187/********************************************************************
     188* FUNCTIONS
     189********************************************************************/
    190190
    191191
  • trunk/services/logs.php

    r136 r143  
    4646$nav->addPage(sprintf(_("Viewing log: <em>%s</em>"), $prefs->get('log_file', 'logs_module')), '/admin/logs.php');
    4747
    48 /******************************************************************************
    49  * MAIN
    50  *****************************************************************************/
     48/********************************************************************
     49* MAIN
     50********************************************************************/
    5151
    5252// Allow realtime file stats.
     
    133133
    134134
    135 /******************************************************************************
    136  * FUNCTIONS
    137  *****************************************************************************/
     135/********************************************************************
     136* FUNCTIONS
     137********************************************************************/
    138138
    139139function deleteLog($log_file)
  • trunk/services/password.php

    r141 r143  
    2121$fv = new FormValidator();
    2222
    23 /******************************************************************************
    24  * MAIN
    25  *****************************************************************************/
     23/********************************************************************
     24* MAIN
     25********************************************************************/
    2626
    2727if (getFormData('boomerang', false) && isset($_SERVER['HTTP_REFERER'])) {
  • trunk/services/versions.php

    r141 r143  
    2828$nav->addPage(_("Versions"), $_SERVER['PHP_SELF']);
    2929
    30 /******************************************************************************
    31  * MAIN
    32  *****************************************************************************/
     30/********************************************************************
     31* MAIN
     32********************************************************************/
    3333
    3434// Request arguments.
Note: See TracChangeset for help on using the changeset viewer.