changeset 0:006c54c8dfb8

Initial.
author Mikhail Kryshen <mikhail@kryshen.net>
date Wed, 28 Oct 2009 17:03:05 +0300
parents
children bd283605f2ae
files .hgignore build.xml nbproject/build-impl.xml nbproject/genfiles.properties nbproject/project.properties nbproject/project.xml src/kryshen/catalina/userconfig/UserConfig.java
diffstat 7 files changed, 835 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/.hgignore	Wed Oct 28 17:03:05 2009 +0300
     1.3 @@ -0,0 +1,5 @@
     1.4 +\.orig$
     1.5 +\.orig\..*$
     1.6 +\.chg\..*$
     1.7 +\.rej$
     1.8 +\.conflict\~$
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/build.xml	Wed Oct 28 17:03:05 2009 +0300
     2.3 @@ -0,0 +1,74 @@
     2.4 +<?xml version="1.0" encoding="UTF-8"?>
     2.5 +<!-- You may freely edit this file. See commented blocks below for -->
     2.6 +<!-- some examples of how to customize the build. -->
     2.7 +<!-- (If you delete it and reopen the project it will be recreated.) -->
     2.8 +<!-- By default, only the Clean and Build commands use this build script. -->
     2.9 +<!-- Commands such as Run, Debug, and Test only use this build script if -->
    2.10 +<!-- the Compile on Save feature is turned off for the project. -->
    2.11 +<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
    2.12 +<!-- in the project's Project Properties dialog box.-->
    2.13 +<project name="tomcat-userconfig" default="default" basedir=".">
    2.14 +    <description>Builds, tests, and runs the project tomcat-userconfig.</description>
    2.15 +    <import file="nbproject/build-impl.xml"/>
    2.16 +    <!--
    2.17 +
    2.18 +    There exist several targets which are by default empty and which can be 
    2.19 +    used for execution of your tasks. These targets are usually executed 
    2.20 +    before and after some main targets. They are: 
    2.21 +
    2.22 +      -pre-init:                 called before initialization of project properties
    2.23 +      -post-init:                called after initialization of project properties
    2.24 +      -pre-compile:              called before javac compilation
    2.25 +      -post-compile:             called after javac compilation
    2.26 +      -pre-compile-single:       called before javac compilation of single file
    2.27 +      -post-compile-single:      called after javac compilation of single file
    2.28 +      -pre-compile-test:         called before javac compilation of JUnit tests
    2.29 +      -post-compile-test:        called after javac compilation of JUnit tests
    2.30 +      -pre-compile-test-single:  called before javac compilation of single JUnit test
    2.31 +      -post-compile-test-single: called after javac compilation of single JUunit test
    2.32 +      -pre-jar:                  called before JAR building
    2.33 +      -post-jar:                 called after JAR building
    2.34 +      -post-clean:               called after cleaning build products
    2.35 +
    2.36 +    (Targets beginning with '-' are not intended to be called on their own.)
    2.37 +
    2.38 +    Example of inserting an obfuscator after compilation could look like this:
    2.39 +
    2.40 +        <target name="-post-compile">
    2.41 +            <obfuscate>
    2.42 +                <fileset dir="${build.classes.dir}"/>
    2.43 +            </obfuscate>
    2.44 +        </target>
    2.45 +
    2.46 +    For list of available properties check the imported 
    2.47 +    nbproject/build-impl.xml file. 
    2.48 +
    2.49 +
    2.50 +    Another way to customize the build is by overriding existing main targets.
    2.51 +    The targets of interest are: 
    2.52 +
    2.53 +      -init-macrodef-javac:     defines macro for javac compilation
    2.54 +      -init-macrodef-junit:     defines macro for junit execution
    2.55 +      -init-macrodef-debug:     defines macro for class debugging
    2.56 +      -init-macrodef-java:      defines macro for class execution
    2.57 +      -do-jar-with-manifest:    JAR building (if you are using a manifest)
    2.58 +      -do-jar-without-manifest: JAR building (if you are not using a manifest)
    2.59 +      run:                      execution of project 
    2.60 +      -javadoc-build:           Javadoc generation
    2.61 +      test-report:              JUnit report generation
    2.62 +
    2.63 +    An example of overriding the target for project execution could look like this:
    2.64 +
    2.65 +        <target name="run" depends="tomcat-userconfig-impl.jar">
    2.66 +            <exec dir="bin" executable="launcher.exe">
    2.67 +                <arg file="${dist.jar}"/>
    2.68 +            </exec>
    2.69 +        </target>
    2.70 +
    2.71 +    Notice that the overridden target depends on the jar target and not only on 
    2.72 +    the compile target as the regular run target does. Again, for a list of available 
    2.73 +    properties which you can use, check the target you are overriding in the
    2.74 +    nbproject/build-impl.xml file. 
    2.75 +
    2.76 +    -->
    2.77 +</project>
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/nbproject/build-impl.xml	Wed Oct 28 17:03:05 2009 +0300
     3.3 @@ -0,0 +1,642 @@
     3.4 +<?xml version="1.0" encoding="UTF-8"?>
     3.5 +<!--
     3.6 +*** GENERATED FROM project.xml - DO NOT EDIT  ***
     3.7 +***         EDIT ../build.xml INSTEAD         ***
     3.8 +
     3.9 +For the purpose of easier reading the script
    3.10 +is divided into following sections:
    3.11 +
    3.12 +  - initialization
    3.13 +  - compilation
    3.14 +  - jar
    3.15 +  - execution
    3.16 +  - debugging
    3.17 +  - javadoc
    3.18 +  - junit compilation
    3.19 +  - junit execution
    3.20 +  - junit debugging
    3.21 +  - applet
    3.22 +  - cleanup
    3.23 +
    3.24 +        -->
    3.25 +<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="tomcat-userconfig-impl">
    3.26 +    <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
    3.27 +    <!-- 
    3.28 +                ======================
    3.29 +                INITIALIZATION SECTION 
    3.30 +                ======================
    3.31 +            -->
    3.32 +    <target name="-pre-init">
    3.33 +        <!-- Empty placeholder for easier customization. -->
    3.34 +        <!-- You can override this target in the ../build.xml file. -->
    3.35 +    </target>
    3.36 +    <target depends="-pre-init" name="-init-private">
    3.37 +        <property file="nbproject/private/config.properties"/>
    3.38 +        <property file="nbproject/private/configs/${config}.properties"/>
    3.39 +        <property file="nbproject/private/private.properties"/>
    3.40 +    </target>
    3.41 +    <target depends="-pre-init,-init-private" name="-init-user">
    3.42 +        <property file="${user.properties.file}"/>
    3.43 +        <!-- The two properties below are usually overridden -->
    3.44 +        <!-- by the active platform. Just a fallback. -->
    3.45 +        <property name="default.javac.source" value="1.4"/>
    3.46 +        <property name="default.javac.target" value="1.4"/>
    3.47 +    </target>
    3.48 +    <target depends="-pre-init,-init-private,-init-user" name="-init-project">
    3.49 +        <property file="nbproject/configs/${config}.properties"/>
    3.50 +        <property file="nbproject/project.properties"/>
    3.51 +    </target>
    3.52 +    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
    3.53 +        <available file="${manifest.file}" property="manifest.available"/>
    3.54 +        <condition property="manifest.available+main.class">
    3.55 +            <and>
    3.56 +                <isset property="manifest.available"/>
    3.57 +                <isset property="main.class"/>
    3.58 +                <not>
    3.59 +                    <equals arg1="${main.class}" arg2="" trim="true"/>
    3.60 +                </not>
    3.61 +            </and>
    3.62 +        </condition>
    3.63 +        <condition property="manifest.available+main.class+mkdist.available">
    3.64 +            <and>
    3.65 +                <istrue value="${manifest.available+main.class}"/>
    3.66 +                <isset property="libs.CopyLibs.classpath"/>
    3.67 +            </and>
    3.68 +        </condition>
    3.69 +        <condition property="have.tests">
    3.70 +            <or>
    3.71 +                <available file="${test.src.dir}"/>
    3.72 +            </or>
    3.73 +        </condition>
    3.74 +        <condition property="have.sources">
    3.75 +            <or>
    3.76 +                <available file="${src.dir}"/>
    3.77 +            </or>
    3.78 +        </condition>
    3.79 +        <condition property="netbeans.home+have.tests">
    3.80 +            <and>
    3.81 +                <isset property="netbeans.home"/>
    3.82 +                <isset property="have.tests"/>
    3.83 +            </and>
    3.84 +        </condition>
    3.85 +        <condition property="no.javadoc.preview">
    3.86 +            <and>
    3.87 +                <isset property="javadoc.preview"/>
    3.88 +                <isfalse value="${javadoc.preview}"/>
    3.89 +            </and>
    3.90 +        </condition>
    3.91 +        <property name="run.jvmargs" value=""/>
    3.92 +        <property name="javac.compilerargs" value=""/>
    3.93 +        <property name="work.dir" value="${basedir}"/>
    3.94 +        <condition property="no.deps">
    3.95 +            <and>
    3.96 +                <istrue value="${no.dependencies}"/>
    3.97 +            </and>
    3.98 +        </condition>
    3.99 +        <property name="javac.debug" value="true"/>
   3.100 +        <property name="javadoc.preview" value="true"/>
   3.101 +        <property name="application.args" value=""/>
   3.102 +        <property name="source.encoding" value="${file.encoding}"/>
   3.103 +        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
   3.104 +            <and>
   3.105 +                <isset property="javadoc.encoding"/>
   3.106 +                <not>
   3.107 +                    <equals arg1="${javadoc.encoding}" arg2=""/>
   3.108 +                </not>
   3.109 +            </and>
   3.110 +        </condition>
   3.111 +        <property name="javadoc.encoding.used" value="${source.encoding}"/>
   3.112 +        <property name="includes" value="**"/>
   3.113 +        <property name="excludes" value=""/>
   3.114 +        <property name="do.depend" value="false"/>
   3.115 +        <condition property="do.depend.true">
   3.116 +            <istrue value="${do.depend}"/>
   3.117 +        </condition>
   3.118 +        <condition else="" property="javac.compilerargs.jaxws" value="-Djava.endorsed.dirs='${jaxws.endorsed.dir}'">
   3.119 +            <and>
   3.120 +                <isset property="jaxws.endorsed.dir"/>
   3.121 +                <available file="nbproject/jaxws-build.xml"/>
   3.122 +            </and>
   3.123 +        </condition>
   3.124 +    </target>
   3.125 +    <target name="-post-init">
   3.126 +        <!-- Empty placeholder for easier customization. -->
   3.127 +        <!-- You can override this target in the ../build.xml file. -->
   3.128 +    </target>
   3.129 +    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
   3.130 +        <fail unless="src.dir">Must set src.dir</fail>
   3.131 +        <fail unless="test.src.dir">Must set test.src.dir</fail>
   3.132 +        <fail unless="build.dir">Must set build.dir</fail>
   3.133 +        <fail unless="dist.dir">Must set dist.dir</fail>
   3.134 +        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
   3.135 +        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
   3.136 +        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
   3.137 +        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
   3.138 +        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
   3.139 +        <fail unless="dist.jar">Must set dist.jar</fail>
   3.140 +    </target>
   3.141 +    <target name="-init-macrodef-property">
   3.142 +        <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
   3.143 +            <attribute name="name"/>
   3.144 +            <attribute name="value"/>
   3.145 +            <sequential>
   3.146 +                <property name="@{name}" value="${@{value}}"/>
   3.147 +            </sequential>
   3.148 +        </macrodef>
   3.149 +    </target>
   3.150 +    <target name="-init-macrodef-javac">
   3.151 +        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
   3.152 +            <attribute default="${src.dir}" name="srcdir"/>
   3.153 +            <attribute default="${build.classes.dir}" name="destdir"/>
   3.154 +            <attribute default="${javac.classpath}" name="classpath"/>
   3.155 +            <attribute default="${includes}" name="includes"/>
   3.156 +            <attribute default="${excludes}" name="excludes"/>
   3.157 +            <attribute default="${javac.debug}" name="debug"/>
   3.158 +            <attribute default="/does/not/exist" name="sourcepath"/>
   3.159 +            <element name="customize" optional="true"/>
   3.160 +            <sequential>
   3.161 +                <javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}">
   3.162 +                    <classpath>
   3.163 +                        <path path="@{classpath}"/>
   3.164 +                    </classpath>
   3.165 +                    <compilerarg line="${javac.compilerargs} ${javac.compilerargs.jaxws}"/>
   3.166 +                    <customize/>
   3.167 +                </javac>
   3.168 +            </sequential>
   3.169 +        </macrodef>
   3.170 +        <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
   3.171 +            <attribute default="${src.dir}" name="srcdir"/>
   3.172 +            <attribute default="${build.classes.dir}" name="destdir"/>
   3.173 +            <attribute default="${javac.classpath}" name="classpath"/>
   3.174 +            <sequential>
   3.175 +                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
   3.176 +                    <classpath>
   3.177 +                        <path path="@{classpath}"/>
   3.178 +                    </classpath>
   3.179 +                </depend>
   3.180 +            </sequential>
   3.181 +        </macrodef>
   3.182 +        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
   3.183 +            <attribute default="${build.classes.dir}" name="destdir"/>
   3.184 +            <sequential>
   3.185 +                <fail unless="javac.includes">Must set javac.includes</fail>
   3.186 +                <pathconvert pathsep="," property="javac.includes.binary">
   3.187 +                    <path>
   3.188 +                        <filelist dir="@{destdir}" files="${javac.includes}"/>
   3.189 +                    </path>
   3.190 +                    <globmapper from="*.java" to="*.class"/>
   3.191 +                </pathconvert>
   3.192 +                <delete>
   3.193 +                    <files includes="${javac.includes.binary}"/>
   3.194 +                </delete>
   3.195 +            </sequential>
   3.196 +        </macrodef>
   3.197 +    </target>
   3.198 +    <target name="-init-macrodef-junit">
   3.199 +        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
   3.200 +            <attribute default="${includes}" name="includes"/>
   3.201 +            <attribute default="${excludes}" name="excludes"/>
   3.202 +            <attribute default="**" name="testincludes"/>
   3.203 +            <sequential>
   3.204 +                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true">
   3.205 +                    <batchtest todir="${build.test.results.dir}">
   3.206 +                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
   3.207 +                            <filename name="@{testincludes}"/>
   3.208 +                        </fileset>
   3.209 +                    </batchtest>
   3.210 +                    <classpath>
   3.211 +                        <path path="${run.test.classpath}"/>
   3.212 +                    </classpath>
   3.213 +                    <syspropertyset>
   3.214 +                        <propertyref prefix="test-sys-prop."/>
   3.215 +                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
   3.216 +                    </syspropertyset>
   3.217 +                    <formatter type="brief" usefile="false"/>
   3.218 +                    <formatter type="xml"/>
   3.219 +                    <jvmarg line="${run.jvmargs}"/>
   3.220 +                </junit>
   3.221 +            </sequential>
   3.222 +        </macrodef>
   3.223 +    </target>
   3.224 +    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
   3.225 +        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
   3.226 +            <attribute default="${main.class}" name="name"/>
   3.227 +            <attribute default="${debug.classpath}" name="classpath"/>
   3.228 +            <attribute default="" name="stopclassname"/>
   3.229 +            <sequential>
   3.230 +                <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
   3.231 +                    <classpath>
   3.232 +                        <path path="@{classpath}"/>
   3.233 +                    </classpath>
   3.234 +                </nbjpdastart>
   3.235 +            </sequential>
   3.236 +        </macrodef>
   3.237 +        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
   3.238 +            <attribute default="${build.classes.dir}" name="dir"/>
   3.239 +            <sequential>
   3.240 +                <nbjpdareload>
   3.241 +                    <fileset dir="@{dir}" includes="${fix.classes}">
   3.242 +                        <include name="${fix.includes}*.class"/>
   3.243 +                    </fileset>
   3.244 +                </nbjpdareload>
   3.245 +            </sequential>
   3.246 +        </macrodef>
   3.247 +    </target>
   3.248 +    <target name="-init-debug-args">
   3.249 +        <property name="version-output" value="java version &quot;${ant.java.version}"/>
   3.250 +        <condition property="have-jdk-older-than-1.4">
   3.251 +            <or>
   3.252 +                <contains string="${version-output}" substring="java version &quot;1.0"/>
   3.253 +                <contains string="${version-output}" substring="java version &quot;1.1"/>
   3.254 +                <contains string="${version-output}" substring="java version &quot;1.2"/>
   3.255 +                <contains string="${version-output}" substring="java version &quot;1.3"/>
   3.256 +            </or>
   3.257 +        </condition>
   3.258 +        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
   3.259 +            <istrue value="${have-jdk-older-than-1.4}"/>
   3.260 +        </condition>
   3.261 +        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
   3.262 +            <os family="windows"/>
   3.263 +        </condition>
   3.264 +        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
   3.265 +            <isset property="debug.transport"/>
   3.266 +        </condition>
   3.267 +    </target>
   3.268 +    <target depends="-init-debug-args" name="-init-macrodef-debug">
   3.269 +        <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
   3.270 +            <attribute default="${main.class}" name="classname"/>
   3.271 +            <attribute default="${debug.classpath}" name="classpath"/>
   3.272 +            <element name="customize" optional="true"/>
   3.273 +            <sequential>
   3.274 +                <java classname="@{classname}" dir="${work.dir}" fork="true">
   3.275 +                    <jvmarg line="${debug-args-line}"/>
   3.276 +                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
   3.277 +                    <jvmarg line="${run.jvmargs}"/>
   3.278 +                    <classpath>
   3.279 +                        <path path="@{classpath}"/>
   3.280 +                    </classpath>
   3.281 +                    <syspropertyset>
   3.282 +                        <propertyref prefix="run-sys-prop."/>
   3.283 +                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   3.284 +                    </syspropertyset>
   3.285 +                    <customize/>
   3.286 +                </java>
   3.287 +            </sequential>
   3.288 +        </macrodef>
   3.289 +    </target>
   3.290 +    <target name="-init-macrodef-java">
   3.291 +        <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
   3.292 +            <attribute default="${main.class}" name="classname"/>
   3.293 +            <element name="customize" optional="true"/>
   3.294 +            <sequential>
   3.295 +                <java classname="@{classname}" dir="${work.dir}" fork="true">
   3.296 +                    <jvmarg line="${run.jvmargs}"/>
   3.297 +                    <classpath>
   3.298 +                        <path path="${run.classpath}"/>
   3.299 +                    </classpath>
   3.300 +                    <syspropertyset>
   3.301 +                        <propertyref prefix="run-sys-prop."/>
   3.302 +                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
   3.303 +                    </syspropertyset>
   3.304 +                    <customize/>
   3.305 +                </java>
   3.306 +            </sequential>
   3.307 +        </macrodef>
   3.308 +    </target>
   3.309 +    <target name="-init-presetdef-jar">
   3.310 +        <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
   3.311 +            <jar compress="${jar.compress}" jarfile="${dist.jar}">
   3.312 +                <j2seproject1:fileset dir="${build.classes.dir}"/>
   3.313 +            </jar>
   3.314 +        </presetdef>
   3.315 +    </target>
   3.316 +    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar" name="init"/>
   3.317 +    <!--
   3.318 +                ===================
   3.319 +                COMPILATION SECTION
   3.320 +                ===================
   3.321 +            -->
   3.322 +    <target depends="init" name="deps-jar" unless="no.deps"/>
   3.323 +    <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
   3.324 +    <target depends="init" name="-check-automatic-build">
   3.325 +        <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
   3.326 +    </target>
   3.327 +    <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
   3.328 +        <antcall target="clean"/>
   3.329 +    </target>
   3.330 +    <target depends="init,deps-jar" name="-pre-pre-compile">
   3.331 +        <mkdir dir="${build.classes.dir}"/>
   3.332 +    </target>
   3.333 +    <target name="-pre-compile">
   3.334 +        <!-- Empty placeholder for easier customization. -->
   3.335 +        <!-- You can override this target in the ../build.xml file. -->
   3.336 +    </target>
   3.337 +    <target if="do.depend.true" name="-compile-depend">
   3.338 +        <j2seproject3:depend/>
   3.339 +    </target>
   3.340 +    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile,-compile-depend" if="have.sources" name="-do-compile">
   3.341 +        <j2seproject3:javac/>
   3.342 +        <copy todir="${build.classes.dir}">
   3.343 +            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   3.344 +        </copy>
   3.345 +    </target>
   3.346 +    <target name="-post-compile">
   3.347 +        <!-- Empty placeholder for easier customization. -->
   3.348 +        <!-- You can override this target in the ../build.xml file. -->
   3.349 +    </target>
   3.350 +    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
   3.351 +    <target name="-pre-compile-single">
   3.352 +        <!-- Empty placeholder for easier customization. -->
   3.353 +        <!-- You can override this target in the ../build.xml file. -->
   3.354 +    </target>
   3.355 +    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
   3.356 +        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
   3.357 +        <j2seproject3:force-recompile/>
   3.358 +        <j2seproject3:javac excludes="" includes="${javac.includes}" sourcepath="${src.dir}"/>
   3.359 +    </target>
   3.360 +    <target name="-post-compile-single">
   3.361 +        <!-- Empty placeholder for easier customization. -->
   3.362 +        <!-- You can override this target in the ../build.xml file. -->
   3.363 +    </target>
   3.364 +    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
   3.365 +    <!--
   3.366 +                ====================
   3.367 +                JAR BUILDING SECTION
   3.368 +                ====================
   3.369 +            -->
   3.370 +    <target depends="init" name="-pre-pre-jar">
   3.371 +        <dirname file="${dist.jar}" property="dist.jar.dir"/>
   3.372 +        <mkdir dir="${dist.jar.dir}"/>
   3.373 +    </target>
   3.374 +    <target name="-pre-jar">
   3.375 +        <!-- Empty placeholder for easier customization. -->
   3.376 +        <!-- You can override this target in the ../build.xml file. -->
   3.377 +    </target>
   3.378 +    <target depends="init,compile,-pre-pre-jar,-pre-jar" name="-do-jar-without-manifest" unless="manifest.available">
   3.379 +        <j2seproject1:jar/>
   3.380 +    </target>
   3.381 +    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class">
   3.382 +        <j2seproject1:jar manifest="${manifest.file}"/>
   3.383 +    </target>
   3.384 +    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available">
   3.385 +        <j2seproject1:jar manifest="${manifest.file}">
   3.386 +            <j2seproject1:manifest>
   3.387 +                <j2seproject1:attribute name="Main-Class" value="${main.class}"/>
   3.388 +            </j2seproject1:manifest>
   3.389 +        </j2seproject1:jar>
   3.390 +        <echo>To run this application from the command line without Ant, try:</echo>
   3.391 +        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   3.392 +        <property location="${dist.jar}" name="dist.jar.resolved"/>
   3.393 +        <pathconvert property="run.classpath.with.dist.jar">
   3.394 +            <path path="${run.classpath}"/>
   3.395 +            <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
   3.396 +        </pathconvert>
   3.397 +        <echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
   3.398 +    </target>
   3.399 +    <target depends="init,compile,-pre-pre-jar,-pre-jar" if="manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries">
   3.400 +        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
   3.401 +        <pathconvert property="run.classpath.without.build.classes.dir">
   3.402 +            <path path="${run.classpath}"/>
   3.403 +            <map from="${build.classes.dir.resolved}" to=""/>
   3.404 +        </pathconvert>
   3.405 +        <pathconvert pathsep=" " property="jar.classpath">
   3.406 +            <path path="${run.classpath.without.build.classes.dir}"/>
   3.407 +            <chainedmapper>
   3.408 +                <flattenmapper/>
   3.409 +                <globmapper from="*" to="lib/*"/>
   3.410 +            </chainedmapper>
   3.411 +        </pathconvert>
   3.412 +        <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
   3.413 +        <copylibs compress="${jar.compress}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
   3.414 +            <fileset dir="${build.classes.dir}"/>
   3.415 +            <manifest>
   3.416 +                <attribute name="Main-Class" value="${main.class}"/>
   3.417 +                <attribute name="Class-Path" value="${jar.classpath}"/>
   3.418 +            </manifest>
   3.419 +        </copylibs>
   3.420 +        <echo>To run this application from the command line without Ant, try:</echo>
   3.421 +        <property location="${dist.jar}" name="dist.jar.resolved"/>
   3.422 +        <echo>java -jar "${dist.jar.resolved}"</echo>
   3.423 +    </target>
   3.424 +    <target name="-post-jar">
   3.425 +        <!-- Empty placeholder for easier customization. -->
   3.426 +        <!-- You can override this target in the ../build.xml file. -->
   3.427 +    </target>
   3.428 +    <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/>
   3.429 +    <!--
   3.430 +                =================
   3.431 +                EXECUTION SECTION
   3.432 +                =================
   3.433 +            -->
   3.434 +    <target depends="init,compile" description="Run a main class." name="run">
   3.435 +        <j2seproject1:java>
   3.436 +            <customize>
   3.437 +                <arg line="${application.args}"/>
   3.438 +            </customize>
   3.439 +        </j2seproject1:java>
   3.440 +    </target>
   3.441 +    <target name="-do-not-recompile">
   3.442 +        <property name="javac.includes.binary" value=""/>
   3.443 +    </target>
   3.444 +    <target depends="init,-do-not-recompile,compile-single" name="run-single">
   3.445 +        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
   3.446 +        <j2seproject1:java classname="${run.class}"/>
   3.447 +    </target>
   3.448 +    <!--
   3.449 +                =================
   3.450 +                DEBUGGING SECTION
   3.451 +                =================
   3.452 +            -->
   3.453 +    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
   3.454 +        <j2seproject1:nbjpdastart name="${debug.class}"/>
   3.455 +    </target>
   3.456 +    <target depends="init,compile" name="-debug-start-debuggee">
   3.457 +        <j2seproject3:debug>
   3.458 +            <customize>
   3.459 +                <arg line="${application.args}"/>
   3.460 +            </customize>
   3.461 +        </j2seproject3:debug>
   3.462 +    </target>
   3.463 +    <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
   3.464 +    <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
   3.465 +        <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
   3.466 +    </target>
   3.467 +    <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
   3.468 +    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
   3.469 +        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
   3.470 +        <j2seproject3:debug classname="${debug.class}"/>
   3.471 +    </target>
   3.472 +    <target depends="init,-do-not-recompile,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
   3.473 +    <target depends="init" name="-pre-debug-fix">
   3.474 +        <fail unless="fix.includes">Must set fix.includes</fail>
   3.475 +        <property name="javac.includes" value="${fix.includes}.java"/>
   3.476 +    </target>
   3.477 +    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
   3.478 +        <j2seproject1:nbjpdareload/>
   3.479 +    </target>
   3.480 +    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
   3.481 +    <!--
   3.482 +                ===============
   3.483 +                JAVADOC SECTION
   3.484 +                ===============
   3.485 +            -->
   3.486 +    <target depends="init" name="-javadoc-build">
   3.487 +        <mkdir dir="${dist.javadoc.dir}"/>
   3.488 +        <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
   3.489 +            <classpath>
   3.490 +                <path path="${javac.classpath}"/>
   3.491 +            </classpath>
   3.492 +            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
   3.493 +                <filename name="**/*.java"/>
   3.494 +            </fileset>
   3.495 +        </javadoc>
   3.496 +    </target>
   3.497 +    <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
   3.498 +        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
   3.499 +    </target>
   3.500 +    <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
   3.501 +    <!--
   3.502 +                =========================
   3.503 +                JUNIT COMPILATION SECTION
   3.504 +                =========================
   3.505 +            -->
   3.506 +    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
   3.507 +        <mkdir dir="${build.test.classes.dir}"/>
   3.508 +    </target>
   3.509 +    <target name="-pre-compile-test">
   3.510 +        <!-- Empty placeholder for easier customization. -->
   3.511 +        <!-- You can override this target in the ../build.xml file. -->
   3.512 +    </target>
   3.513 +    <target if="do.depend.true" name="-compile-test-depend">
   3.514 +        <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
   3.515 +    </target>
   3.516 +    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
   3.517 +        <j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
   3.518 +        <copy todir="${build.test.classes.dir}">
   3.519 +            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   3.520 +        </copy>
   3.521 +    </target>
   3.522 +    <target name="-post-compile-test">
   3.523 +        <!-- Empty placeholder for easier customization. -->
   3.524 +        <!-- You can override this target in the ../build.xml file. -->
   3.525 +    </target>
   3.526 +    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
   3.527 +    <target name="-pre-compile-test-single">
   3.528 +        <!-- Empty placeholder for easier customization. -->
   3.529 +        <!-- You can override this target in the ../build.xml file. -->
   3.530 +    </target>
   3.531 +    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
   3.532 +        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
   3.533 +        <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
   3.534 +        <j2seproject3:javac classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}"/>
   3.535 +        <copy todir="${build.test.classes.dir}">
   3.536 +            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
   3.537 +        </copy>
   3.538 +    </target>
   3.539 +    <target name="-post-compile-test-single">
   3.540 +        <!-- Empty placeholder for easier customization. -->
   3.541 +        <!-- You can override this target in the ../build.xml file. -->
   3.542 +    </target>
   3.543 +    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
   3.544 +    <!--
   3.545 +                =======================
   3.546 +                JUNIT EXECUTION SECTION
   3.547 +                =======================
   3.548 +            -->
   3.549 +    <target depends="init" if="have.tests" name="-pre-test-run">
   3.550 +        <mkdir dir="${build.test.results.dir}"/>
   3.551 +    </target>
   3.552 +    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
   3.553 +        <j2seproject3:junit testincludes="**/*Test.java"/>
   3.554 +    </target>
   3.555 +    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
   3.556 +        <fail if="tests.failed">Some tests failed; see details above.</fail>
   3.557 +    </target>
   3.558 +    <target depends="init" if="have.tests" name="test-report"/>
   3.559 +    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
   3.560 +    <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
   3.561 +    <target depends="init" if="have.tests" name="-pre-test-run-single">
   3.562 +        <mkdir dir="${build.test.results.dir}"/>
   3.563 +    </target>
   3.564 +    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
   3.565 +        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
   3.566 +        <j2seproject3:junit excludes="" includes="${test.includes}"/>
   3.567 +    </target>
   3.568 +    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
   3.569 +        <fail if="tests.failed">Some tests failed; see details above.</fail>
   3.570 +    </target>
   3.571 +    <target depends="init,-do-not-recompile,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
   3.572 +    <!--
   3.573 +                =======================
   3.574 +                JUNIT DEBUGGING SECTION
   3.575 +                =======================
   3.576 +            -->
   3.577 +    <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
   3.578 +        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
   3.579 +        <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
   3.580 +        <delete file="${test.report.file}"/>
   3.581 +        <mkdir dir="${build.test.results.dir}"/>
   3.582 +        <j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}">
   3.583 +            <customize>
   3.584 +                <syspropertyset>
   3.585 +                    <propertyref prefix="test-sys-prop."/>
   3.586 +                    <mapper from="test-sys-prop.*" to="*" type="glob"/>
   3.587 +                </syspropertyset>
   3.588 +                <arg value="${test.class}"/>
   3.589 +                <arg value="showoutput=true"/>
   3.590 +                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
   3.591 +                <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
   3.592 +            </customize>
   3.593 +        </j2seproject3:debug>
   3.594 +    </target>
   3.595 +    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
   3.596 +        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
   3.597 +    </target>
   3.598 +    <target depends="init,-do-not-recompile,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
   3.599 +    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
   3.600 +        <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
   3.601 +    </target>
   3.602 +    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
   3.603 +    <!--
   3.604 +                =========================
   3.605 +                APPLET EXECUTION SECTION
   3.606 +                =========================
   3.607 +            -->
   3.608 +    <target depends="init,compile-single" name="run-applet">
   3.609 +        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
   3.610 +        <j2seproject1:java classname="sun.applet.AppletViewer">
   3.611 +            <customize>
   3.612 +                <arg value="${applet.url}"/>
   3.613 +            </customize>
   3.614 +        </j2seproject1:java>
   3.615 +    </target>
   3.616 +    <!--
   3.617 +                =========================
   3.618 +                APPLET DEBUGGING  SECTION
   3.619 +                =========================
   3.620 +            -->
   3.621 +    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
   3.622 +        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
   3.623 +        <j2seproject3:debug classname="sun.applet.AppletViewer">
   3.624 +            <customize>
   3.625 +                <arg value="${applet.url}"/>
   3.626 +            </customize>
   3.627 +        </j2seproject3:debug>
   3.628 +    </target>
   3.629 +    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
   3.630 +    <!--
   3.631 +                ===============
   3.632 +                CLEANUP SECTION
   3.633 +                ===============
   3.634 +            -->
   3.635 +    <target depends="init" name="deps-clean" unless="no.deps"/>
   3.636 +    <target depends="init" name="-do-clean">
   3.637 +        <delete dir="${build.dir}"/>
   3.638 +        <delete dir="${dist.dir}"/>
   3.639 +    </target>
   3.640 +    <target name="-post-clean">
   3.641 +        <!-- Empty placeholder for easier customization. -->
   3.642 +        <!-- You can override this target in the ../build.xml file. -->
   3.643 +    </target>
   3.644 +    <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
   3.645 +</project>
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/nbproject/genfiles.properties	Wed Oct 28 17:03:05 2009 +0300
     4.3 @@ -0,0 +1,8 @@
     4.4 +build.xml.data.CRC32=8168bf3c
     4.5 +build.xml.script.CRC32=d8558c95
     4.6 +build.xml.stylesheet.CRC32=958a1d3e
     4.7 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
     4.8 +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
     4.9 +nbproject/build-impl.xml.data.CRC32=8168bf3c
    4.10 +nbproject/build-impl.xml.script.CRC32=22b92b6d
    4.11 +nbproject/build-impl.xml.stylesheet.CRC32=65b8de21
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/nbproject/project.properties	Wed Oct 28 17:03:05 2009 +0300
     5.3 @@ -0,0 +1,74 @@
     5.4 +application.title=tomcat-userconfig
     5.5 +application.vendor=kryshen
     5.6 +auxiliary.org-netbeans-modules-editor-indent.CodeStyle.project.tab-size=8
     5.7 +auxiliary.org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width=80
     5.8 +auxiliary.org-netbeans-modules-editor-indent.CodeStyle.usedProfile=default
     5.9 +build.classes.dir=${build.dir}/classes
    5.10 +build.classes.excludes=**/*.java,**/*.form
    5.11 +# This directory is removed when the project is cleaned:
    5.12 +build.dir=build
    5.13 +build.generated.dir=${build.dir}/generated
    5.14 +# Only compile against the classpath explicitly listed here:
    5.15 +build.sysclasspath=ignore
    5.16 +build.test.classes.dir=${build.dir}/test/classes
    5.17 +build.test.results.dir=${build.dir}/test/results
    5.18 +# Uncomment to specify the preferred debugger connection transport:
    5.19 +#debug.transport=dt_socket
    5.20 +debug.classpath=\
    5.21 +    ${run.classpath}
    5.22 +debug.test.classpath=\
    5.23 +    ${run.test.classpath}
    5.24 +# This directory is removed when the project is cleaned:
    5.25 +dist.dir=dist
    5.26 +dist.jar=${dist.dir}/tomcat-userconfig.jar
    5.27 +dist.javadoc.dir=${dist.dir}/javadoc
    5.28 +excludes=
    5.29 +file.reference.catalina.jar=${var.tomcat}/lib/catalina.jar
    5.30 +includes=**
    5.31 +jar.compress=false
    5.32 +javac.classpath=\
    5.33 +    ${file.reference.catalina.jar}
    5.34 +# Space-separated list of extra javac options
    5.35 +javac.compilerargs=
    5.36 +javac.deprecation=false
    5.37 +javac.source=1.5
    5.38 +javac.target=1.5
    5.39 +javac.test.classpath=\
    5.40 +    ${javac.classpath}:\
    5.41 +    ${build.classes.dir}:\
    5.42 +    ${libs.junit.classpath}:\
    5.43 +    ${libs.junit_4.classpath}
    5.44 +javadoc.additionalparam=
    5.45 +javadoc.author=false
    5.46 +javadoc.encoding=${source.encoding}
    5.47 +javadoc.noindex=false
    5.48 +javadoc.nonavbar=false
    5.49 +javadoc.notree=false
    5.50 +javadoc.private=false
    5.51 +javadoc.reference.catalina.jar=http://tomcat.apache.org/tomcat-6.0-doc/api/
    5.52 +javadoc.splitindex=true
    5.53 +javadoc.use=true
    5.54 +javadoc.version=false
    5.55 +javadoc.windowtitle=
    5.56 +jnlp.codebase.type=local
    5.57 +jnlp.codebase.url=file:/home/kryshen/projects/own/tomcat-userconfig/dist
    5.58 +jnlp.descriptor=application
    5.59 +jnlp.enabled=false
    5.60 +jnlp.offline-allowed=false
    5.61 +jnlp.signed=false
    5.62 +meta.inf.dir=${src.dir}/META-INF
    5.63 +platform.active=default_platform
    5.64 +run.classpath=\
    5.65 +    ${javac.classpath}:\
    5.66 +    ${build.classes.dir}
    5.67 +# Space-separated list of JVM arguments used when running the project
    5.68 +# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
    5.69 +# or test-sys-prop.name=value to set system properties for unit tests):
    5.70 +run.jvmargs=
    5.71 +run.test.classpath=\
    5.72 +    ${javac.test.classpath}:\
    5.73 +    ${build.test.classes.dir}
    5.74 +source.encoding=UTF-8
    5.75 +source.reference.catalina.jar=../../../misc/build/apache-tomcat-6.0.20-src/java
    5.76 +src.dir=src
    5.77 +test.src.dir=test
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/nbproject/project.xml	Wed Oct 28 17:03:05 2009 +0300
     6.3 @@ -0,0 +1,16 @@
     6.4 +<?xml version="1.0" encoding="UTF-8"?>
     6.5 +<project xmlns="http://www.netbeans.org/ns/project/1">
     6.6 +    <type>org.netbeans.modules.java.j2seproject</type>
     6.7 +    <configuration>
     6.8 +        <data xmlns="http://www.netbeans.org/ns/j2se-project/3">
     6.9 +            <name>tomcat-userconfig</name>
    6.10 +            <minimum-ant-version>1.6.5</minimum-ant-version>
    6.11 +            <source-roots>
    6.12 +                <root id="src.dir"/>
    6.13 +            </source-roots>
    6.14 +            <test-roots>
    6.15 +                <root id="test.src.dir"/>
    6.16 +            </test-roots>
    6.17 +        </data>
    6.18 +    </configuration>
    6.19 +</project>
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/src/kryshen/catalina/userconfig/UserConfig.java	Wed Oct 28 17:03:05 2009 +0300
     7.3 @@ -0,0 +1,16 @@
     7.4 +package kryshen.catalina.userconfig;
     7.5 +
     7.6 +import org.apache.catalina.LifecycleEvent;
     7.7 +import org.apache.catalina.LifecycleListener;
     7.8 +
     7.9 +/**
    7.10 + *
    7.11 + * @author Mikhail Kryshen
    7.12 + */
    7.13 +public class UserConfig implements LifecycleListener {
    7.14 +
    7.15 +    public void lifecycleEvent(LifecycleEvent event) {
    7.16 +        throw new UnsupportedOperationException("Not supported yet.");
    7.17 +    }
    7.18 +
    7.19 +}