diff options
author | Kalman Szalai - KAMI <kami911@gmail.com> | 2010-10-31 05:15:17 +0100 |
---|---|---|
committer | Kalman Szalai - KAMI <kami911@gmail.com> | 2010-10-31 05:15:17 +0100 |
commit | 4f786af9b6704f8e3c353ad6b679f572dcfbaade (patch) | |
tree | 56ab31d647b983e4f59cb7505159d5738e568fa3 /scp2/source/extensions | |
parent | 823cb6a74d9100b7a6d0a23722debbd329a8ec89 (diff) |
Adding Barcode extension
Diffstat (limited to 'scp2/source/extensions')
-rw-r--r-- | scp2/source/extensions/directory_extensions.scp | 13 | ||||
-rw-r--r-- | scp2/source/extensions/file_extensions.scp | 15 | ||||
-rw-r--r-- | scp2/source/extensions/module_extensions.scp | 19 | ||||
-rw-r--r-- | scp2/source/extensions/module_extensions.ulf | 8 |
4 files changed, 51 insertions, 4 deletions
diff --git a/scp2/source/extensions/directory_extensions.scp b/scp2/source/extensions/directory_extensions.scp index 247872227b2c..0e072a927912 100644 --- a/scp2/source/extensions/directory_extensions.scp +++ b/scp2/source/extensions/directory_extensions.scp @@ -6,7 +6,7 @@ * * $Revision: 1.2 $ * - * last change: $Author: KAMI $ $Date: 2010/10/31 04:40:10 $ + * last change: $Author: KAMI $ $Date: 2010/10/31 04:58:10 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 3. @@ -176,6 +176,17 @@ End #endif +/* ** Barcode ** */ + +#ifdef WITH_EXTENSION_BARCODE + +Directory gid_Brand_Dir_Share_Extensions_Barcode + ParentID = gid_Brand_Dir_Share_Extensions; + DosName = "Barcode"; +End + +#endif + /* ** Google Docs ** */ #ifdef WITH_EXTENSION_GOOGLE_DOCS diff --git a/scp2/source/extensions/file_extensions.scp b/scp2/source/extensions/file_extensions.scp index 22acb498077a..79bbce95e615 100644 --- a/scp2/source/extensions/file_extensions.scp +++ b/scp2/source/extensions/file_extensions.scp @@ -6,7 +6,7 @@ * * $Revision: 1.4 $ * - * last change: $Author: KAMI $ $Date: 2010/10/31 04:40:10 $ + * last change: $Author: KAMI $ $Date: 2010/10/31 04:58:10 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 3. @@ -207,6 +207,19 @@ End #endif +/* ** Validator ** */ + +#ifdef WITH_EXTENSION_BARCODE + +File gid_File_Oxt_Barcode + TXT_FILE_BODY; + Styles = (PACKED, ARCHIVE); + Dir = gid_Brand_Dir_Share_Extensions_Validator; + Name = "Barcode.oxt"; +End + +#endif + /* ** Google Docs ** */ #ifdef WITH_EXTENSION_GOOGLE_DOCS diff --git a/scp2/source/extensions/module_extensions.scp b/scp2/source/extensions/module_extensions.scp index 50d78940d076..6f0af6d3c8d2 100644 --- a/scp2/source/extensions/module_extensions.scp +++ b/scp2/source/extensions/module_extensions.scp @@ -6,7 +6,7 @@ * * $Revision: 1.2 $ * - * last change: $Author: KAMI $ $Date: 2010/10/31 04:40:10 $ + * last change: $Author: KAMI $ $Date: 2010/10/31 04:58:10 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 3. @@ -262,6 +262,23 @@ End #endif #endif +/* ** Barcode ** */ + +#ifdef WITH_EXTENSION_BARCODE +#ifdef WITH_EXTENSION_INTEGRATION +Module gid_Module_Optional_Extensions_Barcode + PackageInfo = "packinfo_extensions.txt"; + MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_BARCODE); + ParentID = gid_Module_Optional_Extensions; + Files = ( + gid_File_Oxt_Barcode ); + Minimal = NO; + Default = YES; + Styles = ( ); +End +#endif +#endif + /* ** Google Docs ** */ #ifdef WITH_EXTENSION_GOOGLE_DOCS diff --git a/scp2/source/extensions/module_extensions.ulf b/scp2/source/extensions/module_extensions.ulf index f888a71cb796..a2099fdb9adf 100644 --- a/scp2/source/extensions/module_extensions.ulf +++ b/scp2/source/extensions/module_extensions.ulf @@ -6,7 +6,7 @@ * * $Revision: 1.2 $ * - * last change: $Author: KAMI $ $Date: 2010/10/31 04:40:10 $ + * last change: $Author: KAMI $ $Date: 2010/10/31 04:58:10 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 3. @@ -117,6 +117,12 @@ en-US = "Validator" [STR_DESC_MODULE_OPTIONAL_EXTENSIONS_VALIDATOR] en-US = "Validator" +[STR_NAME_MODULE_OPTIONAL_EXTENSIONS_VALIDATOR] +en-US = "Barcode" + +[STR_DESC_MODULE_OPTIONAL_EXTENSIONS_VALIDATOR] +en-US = "Barcode" + [STR_NAME_MODULE_OPTIONAL_EXTENSIONS_GOOGLE_DOCS] en-US = "Google Docs & Zoho" |