Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Павел Резуненко
/
MTAweb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
1
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit ff849d64
authored
Mar 26, 2013
by
Павел Резуненко
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Новый билд сценарий
1 parent
0b5f1219
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
80 additions
and
45 deletions
build.xml
build.xml
View file @
ff849d6
<?xml version="1.0" encoding="UTF-8" ?>
<?xml version="1.0" encoding="UTF-8" ?>
<project
name=
"MTAWeb"
basedir=
"."
default=
"build"
>
<project
name=
"MTAWeb"
basedir=
"."
default=
"build"
>
<property
name=
"src_dir"
value=
"protected/"
override=
"false"
/>
<property
name=
"source.dir"
value=
"."
override=
"false"
/>
<property
name=
"build.dir"
value=
"public/"
override=
"false"
/>
<property
name=
"build.dir"
value=
"build"
override=
"false"
/>
<property
name=
"pkg"
value=
"/tmp/mailadmin"
override=
"false"
/>
<target
name=
"require"
>
<echo
msg=
"This build requires:"
/>
<echo
msg=
"Compass framework"
/>
<echo
msg=
"YUI Compressor"
/>
</target>
<target
name=
"minify"
>
<target
name=
"minify"
>
<echo
msg=
"Minimizing: ${filename}"
/>
<echo
msg=
"Minimizing: ${filename} == ${ifile}"
/>
<exec
command=
"java -jar yuicompressor.jar ${ifile} -o ${ifile}"
/>
<exec
checkreturn=
"true"
command=
"java -jar ${source.dir}/contrib/webcompress/yuicompressor.jar --preserve-semi ${ifile} -o ${ifile}"
/>
</target>
<target
name=
"copy"
>
<delete
dir=
"${source.dir}/${build.dir}"
quiet=
'true'
/>
<mkdir
dir=
"${source.dir}/${build.dir}"
/>
<copy
todir=
"${source.dir}/${build.dir}"
>
<fileset
dir=
"${source.dir}"
>
<include
name=
"framework/**"
/>
<include
name=
"public/protected/**"
/>
</fileset>
</copy>
</target>
</target>
<target
name=
"sass"
>
<target
name=
"sass"
>
<echo
msg=
"Building css file from sass configuration"
/>
<echo
msg=
"Building css file from sass configuration"
/>
<delete
includeemptydirs=
"true"
verbose=
"true"
failonerror=
"true"
>
<exec
command=
"cd ${source.dir}/public/sass/ && compass compile"
checkreturn=
"true"
/>
<fileset
dir=
"${build.dir}/css"
>
<include
name=
"*.css"
/>
</fileset>
</delete>
<exec
command=
"cd ${build.dir}/sass/ && compass compile"
checkreturn=
"true"
/>
<delete
dir=
"${build.dir}/css/sass"
includeemptydirs=
"true"
verbose=
"true"
failonerror=
"true"
/>
</target>
</target>
<target
name=
"css"
depends=
"sass"
>
<target
name=
"css"
depends=
"sass"
>
<echo
msg=
"CSS compiled"
/>
<mkdir
dir=
"${build.dir}/public/css"
/>
<copy
todir=
"${build.dir}/css"
overwrite=
"true"
>
<mapper
type=
"glob"
from=
"*.css"
to=
"*.min.css"
/>
<copy
todir=
"public/css"
overwrite=
"true"
>
<fileset
dir=
"${build.dir}/css"
>
<mapper
type=
"glob"
from=
"*theme.css"
to=
"*theme.min.css"
/>
<include
name=
"*.css"
/>
<fileset
dir=
"public/css"
>
<include
name=
"*theme.css"
/>
</fileset>
</fileset>
</copy>
</copy>
<foreach
param=
"filename"
absparam=
"ifile"
target=
"minify"
>
<foreach
param=
"filename"
absparam=
"ifile"
target=
"minify"
>
<fileset
dir=
"${build.dir}
/css"
>
<fileset
dir=
"public
/css"
>
<include
name=
"*
.min.css"
/>
<include
name=
"*theme
.min.css"
/>
</fileset>
</fileset>
</foreach>
</foreach>
<copy
todir=
"${build.dir}/public/css"
overwrite=
"true"
>
<fileset
dir=
"public/css"
>
<include
name=
"*theme*.css"
/>
</fileset>
</copy>
</target>
</target>
<target
name=
"clear.js"
>
<target
name=
"clear.js"
>
<delete
includeemptydirs=
"true"
verbose=
"true"
failonerror=
"true"
>
<delete
includeemptydirs=
"true"
verbose=
"true"
failonerror=
"true"
>
<fileset
dir=
"${build.dir}
"
>
<fileset
dir=
"public/
"
>
<include
name=
"app/controller/controller.js"
/>
<include
name=
"app/controller/controller.js"
/>
<include
name=
"app/view/view.js"
/>
<include
name=
"app/view/view.js"
/>
<include
name=
"app/model/model.js"
/>
<include
name=
"app/model/model.js"
/>
...
@@ -53,53 +59,81 @@
...
@@ -53,53 +59,81 @@
</target>
</target>
<target
name=
"js"
depends=
"clear.js"
>
<target
name=
"js"
depends=
"clear.js"
>
<fileset
dir=
"${build.dir}/app/controller"
id=
"controller.set"
>
<mkdir
dir=
"${build.dir}/public/scripts"
/>
<fileset
dir=
"public/app/controller"
id=
"controller.set"
>
<include
name=
"*.js"
/>
<include
name=
"*.js"
/>
<exclude
name=
"controller.js"
/>
<exclude
name=
"controller.js"
/>
</fileset>
</fileset>
<fileset
dir=
"${build.dir}
/app/model"
id=
"model.set"
>
<fileset
dir=
"public
/app/model"
id=
"model.set"
>
<include
name=
"*.js"
/>
<include
name=
"*.js"
/>
<exclude
name=
"model.js"
/>
<exclude
name=
"model.js"
/>
</fileset>
</fileset>
<fileset
dir=
"${build.dir}
/app/store"
id=
"store.set"
>
<fileset
dir=
"public
/app/store"
id=
"store.set"
>
<include
name=
"*.js"
/>
<include
name=
"*.js"
/>
<exclude
name=
"store.js"
/>
<exclude
name=
"store.js"
/>
</fileset>
</fileset>
<append
destFile=
"${build.dir}
/app/controller/controller.js"
>
<append
destFile=
"public
/app/controller/controller.js"
>
<fileset
refid=
"controller.set"
/>
<fileset
refid=
"controller.set"
/>
</append>
</append>
<append
destFile=
"${build.dir}
/app/model/model.js"
>
<append
destFile=
"public
/app/model/model.js"
>
<fileset
refid=
"model.set"
/>
<fileset
refid=
"model.set"
/>
</append>
</append>
<append
destFile=
"${build.dir}
/app/store/store.js"
>
<append
destFile=
"public
/app/store/store.js"
>
<fileset
refid=
"store.set"
/>
<fileset
refid=
"store.set"
/>
</append>
</append>
<append
destFile=
"${build.dir}
/app/view/view.js"
>
<append
destFile=
"public
/app/view/view.js"
>
<filelist
dir=
"${build.dir}
/app/view"
files=
"ProgramMenu.js, Taskpanel.js"
/>
<filelist
dir=
"public
/app/view"
files=
"ProgramMenu.js, Taskpanel.js"
/>
<filelist
dir=
"${build.dir}
/app/view"
files=
"Aliases.js, Alias.js"
/>
<filelist
dir=
"public
/app/view"
files=
"Aliases.js, Alias.js"
/>
<filelist
dir=
"${build.dir}
/app/view"
files=
"Users.js, User.js"
/>
<filelist
dir=
"public
/app/view"
files=
"Users.js, User.js"
/>
<filelist
dir=
"${build.dir}
/app/view"
files=
"Viewport.js, Authorize.js"
/>
<filelist
dir=
"public
/app/view"
files=
"Viewport.js, Authorize.js"
/>
<filelist
dir=
"${build.dir}
/app/view"
files=
"Transports.js"
/>
<filelist
dir=
"public
/app/view"
files=
"Transports.js"
/>
</append>
</append>
<append
destFile=
"public/scripts/app-debug.js"
>
<append
destFile=
"${build.dir}/scripts/app-debug.js"
>
<filelist
dir=
"public/app"
files=
"Overrides.js, view/view.js, model/model.js, store/store.js, controller/controller.js, Application.js"
/>
<filelist
dir=
"${build.dir}/app"
files=
"Overrides.js, view/view.js, model/model.js, store/store.js, controller/controller.js, Application.js"
/>
</append>
</append>
<copy
todir=
"${build.dir}
/scripts"
overwrite=
"true"
>
<copy
todir=
"${build.dir}/public
/scripts"
overwrite=
"true"
>
<mapper
type=
"glob"
from=
"app-debug.js"
to=
"app.js"
/>
<mapper
type=
"glob"
from=
"app-debug.js"
to=
"app.js"
/>
<filelist
dir=
"${build.dir}
/scripts"
files=
"app-debug.js"
/>
<filelist
dir=
"public
/scripts"
files=
"app-debug.js"
/>
</copy>
</copy>
<foreach
param=
"filename"
absparam=
"ifile"
target=
"minify"
>
<foreach
param=
"filename"
absparam=
"ifile"
target=
"minify"
>
<filelist
dir=
"${build.dir}
/scripts"
files=
"app.js"
/>
<filelist
dir=
"public
/scripts"
files=
"app.js"
/>
</foreach>
</foreach>
<copy
todir=
"${build.dir}/public/scripts"
>
<fileset
dir=
"public/scripts"
>
<include
name=
"**/app.js"
/>
<include
name=
"**/app-debug.js"
/>
<include
name=
"**/ext-all.js"
/>
<include
name=
"**/ext-all-debug.js"
/>
</fileset>
</copy>
</target>
</target>
<target
name=
"build"
depends=
"require, css, js"
>
<target
name=
"build"
depends=
"copy, css, js"
>
<exec
checkreturn=
"true"
command=
"find ${build.dir} -type f -exec chmod 644 {} \;"
/>
<chmod
file=
"${build.dir}/public/protected/runtime"
mode=
"0777"
failonerror=
"true"
verbose=
"true"
/>
<copy
file=
"public/index.php"
tofile=
"${build.dir}/public/index.php"
overwrite=
"true"
/>
<reflexive>
<fileset
dir=
"${build.dir}/public"
>
<include
name=
"index.php"
/>
</fileset>
<filterchain>
<replaceregexp>
<regexp
pattern=
"(define[\(\"\'\s]+YII_DEVELOP[\)\,\"\'\s]+)[\w\-\_]+"
replace=
"\1false"
/>
<regexp
pattern=
"(define[\(\"\'\s]+YII_DEBUG[\)\,\"\'\s]+)[\w\-\_]+"
replace=
"\1false"
/>
</replaceregexp>
</filterchain>
</reflexive>
<echo
msg=
"All done."
/>
<echo
msg=
"All done."
/>
</target>
</target>
</project>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment