-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add better documentation for the deployment.properties properties #60
Comments
In the deployment.xml one can specify a directory where the scripts will be stored. This directory will be generated in the ZPK only. The following xml instructs the packaging tool to create, in the ZPK only, a new directory called <?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://www.zend.com/server/deployment-descriptor/1.0" version="2.0">
...
<scriptsdir>scripts</scriptsdir>
...
</package> Using a declaration like the one below <?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://www.zend.com/server/deployment-descriptor/1.0" version="2.0">
...
<scriptsdir>scripts/zend-server-deployment</scriptsdir>
...
</package> Will create in the ZPK a new directory called If you set an empty value for the scripts directory then there will be no scripts added to the ZPK! <?xml version="1.0" encoding="UTF-8"?>
<package xmlns="http://www.zend.com/server/deployment-descriptor/1.0" version="2.0">
...
<scriptsdir></scriptsdir>
...
</package> |
We have the following results from testing with the latest version of Zend Studio. In the deployment.properties file the scriptsdir.includes propery is used to specify which folders or files will be included in the ZPK as scripts. The value of this property is comma separated list of paths. The paths can be files or directories. PHP files that are matching the following pattern pre_[stage|activate|deactivate|unstage|rollback].php or post_[stage|activate|deactivate|unstage|rollback].php and in the root of the Let's say we have
Adding files to the listThe following definition in the deployment.properties
Notice that if you specify a file then the directory structure is gone. Pre_stage.php will be executed in Zend Server. The following definition in the deployment.properties
Pre_stage.php and post_stage will be executed in Zend Server. Adding directories to the listThe following definition in the deployment.properties
As with the files the directory structure will be removed and only the files will be added. Pre_stage.php and post_stage will be executed in Zend Server. _Warning_: this is valid if only one directory is specified. Adding a second directory or file will result in different directory structure in the ZPK. The following definition in the deployment.properties
_Warning_: None of the pre_stage or post_stage PHP files will be executed in Zend Server! The reason for this is that they are not in the root of the scripts directory. Mixing files and directories is possible.
Only the pre_stage.php in the root scripts directory will be executed in Zend Server! |
@slaff: thanks for specifying. Stripping any directory seems rather strange to me, as I want to preserve the structure therein (maybe I want to include helper libraries etc.). This should definitely be included in the official Zend Server documentation, e.g. http://files.zend.com/help/Zend-Server/content/preparing_the_package_using_the_deployment_tool.htm Also there is no mention of this ZendServerSDK (instead zdpack), which is (correct me, if I am wrong) the new official way to pack a ZPK. |
@slaff Amazing detail, thanks! I wasn't aware that adding multiple directories had that effect, and as such my fix will not account for this. To me that part seems a bit backwards; if you add one directory, it get's flattened, along with all it's sub directories, if you add more than one, none of them do! @boedah To answer your question (as it is exactly what I would like to do), it would appear, though I haven't tested, that you could have
.. and use...
As it is, I just add the script-sources folder and that puts everything flat in the scripts directory, after all, it's in the package, so I don't care that it looks a little messy. |
…ed automating the tests (relates to #59).
- changed the way scripts files/folders are included/excluded in the package according to #60 to match Zend Studio. - added support for icon images.
The text was updated successfully, but these errors were encountered: