[Comoblog-commit] comoblog/modules/mod_example/install mod_example.xml,1.1,1.2 mod_example_commented
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-13 12:35:36
|
Update of /cvsroot/comoblog/comoblog/modules/mod_example/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31904/modules/mod_example/install Modified Files: mod_example.xml mod_example_commented.xml Log Message: CORE: Introduce a new module versioning framework to allow us to track module compatability during install and upgrade Index: mod_example.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_example/install/mod_example.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_example.xml 5 Oct 2005 00:49:33 -0000 1.1 +++ mod_example.xml 13 Nov 2005 12:35:27 -0000 1.2 @@ -5,7 +5,14 @@ <name> mod_example </name> - + + <version>1.0</version> + + <minimum_supported>1.0</minimum_supported> + + <certified> + 1.0 + </certified> <description> just an example to help developers making new modules Index: mod_example_commented.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_example/install/mod_example_commented.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_example_commented.xml 5 Oct 2005 00:49:33 -0000 1.1 +++ mod_example_commented.xml 13 Nov 2005 12:35:27 -0000 1.2 @@ -15,6 +15,19 @@ <name> mod_example </name> + + <!-- the version number for this module --> + <version>1.0</version> + + <!-- the minimum version of CoMoblog supported by this module --> + <minimum_supported>1.0</minimum_supported> + + <!-- the versions of CoMoblog that this module has been certified against. If a user tries to install + a module against an uncertified version they will be warned. If they upgrade CoMoblog to an + uncertified version then the module will be disabled by default --> + <certified> + 1.0 + </certified> <!-- description of your module (max 255 chars) --> <description> @@ -85,4 +98,4 @@ value="value1" /> -</module> \ No newline at end of file +</module> |