|
Revision 1170
(checked in by douglm, 6 years ago)
|
Little functional change here.
Created definitions for all error codes generated by the web code.
Created new errors.xsl common to all web apps
Copy dojo code into new common web directory for inclusion by web apps.
Copy new errors.xsl into same directory.
Delete all old errors.xsl
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- =================================================================== |
|---|
| 4 |
Standalone apps terminations tasks. |
|---|
| 5 |
=================================================================== --> |
|---|
| 6 |
|
|---|
| 7 |
<project name="bwdeploy.termination" default="deploy" > |
|---|
| 8 |
<import file="${org.bedework.deployment.base}/deployprops.xml" /> |
|---|
| 9 |
|
|---|
| 10 |
<target name="init"> |
|---|
| 11 |
</target> |
|---|
| 12 |
|
|---|
| 13 |
<target name="deploy" depends="init,build.configured" > |
|---|
| 14 |
<!-- Deploy common resources --> |
|---|
| 15 |
<ant antfile="${org.bedework.common.resources}/build.xml" |
|---|
| 16 |
inheritrefs="true" target="deploy.common" /> |
|---|
| 17 |
</target> |
|---|
| 18 |
|
|---|
| 19 |
<target name="build.configured" depends="init" > |
|---|
| 20 |
</target> |
|---|
| 21 |
</project> |
|---|