Changeset 4392 for trunk/build.xml

Show
Ignore:
Timestamp:
10/22/06 10:39:17 (2 years ago)
Author:
bergie
Message:

Minor fixes to the component scaffold

@tarjei: I think we should consistently call components components instead of packages and modules

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build.xml

    r3808 r4392  
    33<!-- plan: 
    44    target scaffold is the one that will create a  
    5     new module directory 
     5    new component directory 
    66    It will: 
    7     a) create the module directory (and fail if it exists) 
    8     b) create the config,handler,midcom,style and doc subdirs. 
     7    a) create the component directory (and fail if it exists) 
     8    b) create the config, handler, midcom, style and documentation subdirs. 
    99    c) generate a simple manifest.inc file. 
    10     d) generate simple view.php and admin.php files 
     10    d) generate simple viewer.php and admin.php files 
    1111     
    1212--> 
     
    5252        <mkdir dir="${module_dir}"/> 
    5353        <mkdir dir="${module_dir}/config"/> 
    54         <mkdir dir="${module_dir}/docs"/> 
     54        <mkdir dir="${module_dir}/documentation"/> 
    5555        <mkdir dir="${module_dir}/midcom"/> 
    5656        <mkdir dir="${module_dir}/handler"/> 
     
    6060         
    6161        <input propertyname="module_description"  
    62             defaultValue="MidCOM module ${module}" 
     62            defaultValue="MidCOM component ${module}" 
    6363            > 
    64             Enter module description: 
     64            Enter component description: 
    6565        </input> 
    6666