Changeset 4392
- Timestamp:
- 10/22/06 10:39:17 (2 years ago)
- Files:
-
- trunk/build.xml (modified) (3 diffs)
- trunk/src/scaffold/admin.php (modified) (1 diff)
- trunk/src/scaffold/documentation/CHANGES (modified) (1 diff)
- trunk/src/scaffold/handler/index.php (modified) (1 diff)
- trunk/src/scaffold/navigation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build.xml
r3808 r4392 3 3 <!-- plan: 4 4 target scaffold is the one that will create a 5 new moduledirectory5 new component directory 6 6 It will: 7 a) create the moduledirectory (and fail if it exists)8 b) create the config, handler,midcom,style and docsubdirs.7 a) create the component directory (and fail if it exists) 8 b) create the config, handler, midcom, style and documentation subdirs. 9 9 c) generate a simple manifest.inc file. 10 d) generate simple view .php and admin.php files10 d) generate simple viewer.php and admin.php files 11 11 12 12 --> … … 52 52 <mkdir dir="${module_dir}"/> 53 53 <mkdir dir="${module_dir}/config"/> 54 <mkdir dir="${module_dir}/doc s"/>54 <mkdir dir="${module_dir}/documentation"/> 55 55 <mkdir dir="${module_dir}/midcom"/> 56 56 <mkdir dir="${module_dir}/handler"/> … … 60 60 61 61 <input propertyname="module_description" 62 defaultValue="MidCOM module${module}"62 defaultValue="MidCOM component ${module}" 63 63 > 64 Enter moduledescription:64 Enter component description: 65 65 </input> 66 66 trunk/src/scaffold/admin.php
r3726 r4392 11 11 * @package ${module} 12 12 */ 13 14 13 class ${module_class}_admin extends midcom_baseclasses_components_request_admin 15 14 { trunk/src/scaffold/documentation/CHANGES
r3726 r4392 1 ${module} ChangeLog 2 ------------------- 3 1 4 Legend: 2 5 - All items marked with "!" represent a major API-Change that is 3 not gu ranteed to be backwards compatible to previous versions6 not guaranteed to be backwards compatible to previous versions 4 7 which might even break existing functionality. 5 - All items marked with "+" represent complet ly new features.8 - All items marked with "+" represent completely new features. 6 9 7 ${currentDate} Initial creation. 10 ${currentDate} tarjei 11 + initial version trunk/src/scaffold/handler/index.php
r4306 r4392 24 24 { 25 25 parent::midcom_baseclasses_components_handler(); 26 } 26 } 27 27 28 /** 28 29 * _on_initialize is called by midcom on creation of the handler. trunk/src/scaffold/navigation.php
r4306 r4392 15 15 * @package ${module} 16 16 */ 17 18 17 class ${module_class}_navigation extends midcom_baseclasses_components_navigation 19 18 {
