Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cedricwalter/joomla-packager
joomla-packager is a generic phing build script to build any 3rd extension, being a set of components, modules, plugins and or libraries, packages in a simple way.
https://github.com/cedricwalter/joomla-packager
build-automation build-script build-system build-tool continuous-integration galaxiis joomla phing php
Last synced: about 1 month ago
JSON representation
joomla-packager is a generic phing build script to build any 3rd extension, being a set of components, modules, plugins and or libraries, packages in a simple way.
- Host: GitHub
- URL: https://github.com/cedricwalter/joomla-packager
- Owner: cedricwalter
- Created: 2013-06-12T16:08:52.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-07-12T19:41:10.000Z (over 6 years ago)
- Last Synced: 2023-03-13T04:31:13.170Z (almost 2 years ago)
- Topics: build-automation, build-script, build-system, build-tool, continuous-integration, galaxiis, joomla, phing, php
- Language: PHP
- Homepage:
- Size: 896 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
joomla-packager
===============joomla-packager is a generic phing build script to build any 3rd extension, being a set of components, modules, plugins and or libraries, packages in a simple way.
Why?
* a single script to rule all your need of joomla packaging: multi modules/ multi plugins/multi components/multi library is supported
* If you respect Joomla's conventions, this packager will be able to create a build of any of your extensions or set of extensions
* just configure one file (like for example in buildCedThumbnails.xml), mainly listing what your extension is made of and run
* file all look the same = repeatability = convention over configurationSupport for Premium and Free extensions
This packager use preprocessing functions in all modules, component and plugins (anywhere in php, js, css, xml files). To use them you can put anywhere
```
#if premium
...
#endif
```or
```
#if free
...
#endif
```More functions are supported If / Else if:
```
#if DEFINITION : succeeds if DEFINITION is set and is true (in the PHP way)
#ifdef DEFINITION : succeeds if DEFINITION is set
#ifndef DEFINITION : succeeds if DEFINITION is not set
#elif DEFINITION
#elifdef DEFINITION
#elifndef DEFINITION
#endif
```Usage
------------
Download https://raw.github.com/cedricwalter/joomla-packager/master/joomla-packager.xml locally
Download a copy of buildCedThumbnails.xml You only need to rename and touch this file, it is self documented.
Download a copy of pkg_cedthumbnails.xml You only need to update this file if you alter the structure. (later Joomla-packager will create this file on the fly)
Download the directory preprocessor also, it must be in the same directory as the file joomla-packager.xml
Run the main target build of buildCedThumbnails.xmlRemarks are welcomed
+ http://www.waltercedric.com/
+ http://www.cedricwalter.com/
Conventions
------------
This script use standard joomla conventions to perform the packaging, here is what is implementedModules
* 1. Code is located in /modules/mod_${xxxxx} and self contained
* 2. Languages files are optional but if they exist are located at /language/xx-yy/mod_${xxxxx}.ini /language/xx-yy/mod_${xxxxx}.sys.ini
* 3. Media files (css,js,images) are optionnal but if they exist are located at /media/mod_${xxxxx}
* 4. name of zip files as follow:
* mod_{yourextension1}.zip
Plugins
* 1. Code is located in /plugins/${type}/${xxxxx} and self contained
* 2. Languages files are optional but if they exist are located at /plugins/${type}/${xxxxx}/language/ or anywhere else in directory at step 1.
* 3. Media files (css,js,images) are optionnal but if they exist are located at /media/plg_${type}_${xxxxx}
* 4. name of zip files as follow:
* plg_${type}_{yourextension}.zipComponents
* 1. Code is located in /administrator/components/${xxxxx} and /components/${xxxxx} and is self contained
* 2. Languages files are optional but if they exist are located at /administrator/language/xx-yy/${xxxxx}.ini and /language/xx-yy/${xxxxx}.ini and
* 3. Media files (css,js,images) are optionnal but if they exist are located at /media/${xxxxx}Packages
* 1. one zip file which contains 1 to n other zip file + a manifest file named pkg_{yourextension}.xml
* 2. manifest file named pkg_{yourextension}.xml has to be written manually for now and place beside your build{yourextension}.xml
* 4. name of zip files as follow:
* com_{yourextension}.zipOPEN
------------[ ] any feedback?
[ ] Reference joomla-packager.xml through an URL not through file system[ ] Creation of manifest.xml in package is not generated through the script (but i am trying to)
so you still need to put it in the resulting zip created, for buildCedThumbnails.xml it would look like```xml
cedthumbnails
cedthumbnails
01.04.2013
2.6.2
http://www.waltercedric.com
Cedric Walter
(C)2008-2013 Cedric Walter. All rights reserved.
http://www.waltercedric.com
Related/popular/latest posts with thumbnails for Joomla. Use the library WideImage for PHP. 3 modules and 1 plugin Extensions.
lib_wideimage.zip
com_cedthumbnails.zip
mod_articles_latest_thumb.zip
mod_articles_popular_thumb.zip
mod_related_items_thumb.zip
plg_content_relatedthumbitems.zip
{code}
```