[Rssmailer-cvs] CV/cvTomk .cvsignore,NONE,1.1 build.xml,1.1,1.2 resume.xml,1.8,1.9 resume.doc,1.1,NO
Status: Planning
Brought to you by:
tomklaasen
|
From: Tom K. <tom...@us...> - 2005-01-18 20:55:25
|
Update of /cvsroot/rssmailer/CV/cvTomk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6045/cvTomk Modified Files: build.xml resume.xml Added Files: .cvsignore Removed Files: resume.doc resume.html resume.txt cv.html resume.fo example1.xml resumeFirstTry.txt example2.xml Makefile Log Message: updated --- NEW FILE: .cvsignore --- output --- cv.html DELETED --- Index: build.xml =================================================================== RCS file: /cvsroot/rssmailer/CV/cvTomk/build.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** build.xml 25 Sep 2003 20:32:01 -0000 1.1 --- build.xml 18 Jan 2005 20:54:31 -0000 1.2 *************** *** 1,5 **** - <?xml version="1.0" encoding="UTF-8"?> <project basedir="." default="all" name="Resume"> ! <!-- ==================================================================== build.xml: A "Makefile" for the Ant build tool. --- 1,4 ---- <project basedir="." default="all" name="Resume"> ! <!-- ==================================================================== build.xml: A "Makefile" for the Ant build tool. *************** *** 19,50 **** ==================================================================== --> ! <!-- ================================================================ General Options ================================================================ --> ! <!-- The name and extension of the XML file containing your resume --> ! <property name="resume" value="resume"/> ! <property name="resume.extension" value="xml"/> ! <!-- Options: br de fr it nl uk us es --> ! <property name="country" value="us"/> ! <!-- Options: letter for country=us, a4 for others --> ! <property name="papersize" value="a4"/> ! <!--property name="xsl.base" value="http://xmlresume.sourceforge.net/xsl"/--> ! <property name="xsl.base" value="../xsl"/> ! <!-- <property name="xsl.base" value="../src/www/xsl"/> --> ! <!-- ================================================================ Processing Software: ================================================================ --> ! <property name="xsl.processor" value="org.apache.xalan.xslt.Process"/> ! <property name="pdf.processor" value="org.apache.fop.apps.Fop"/> ! <!-- RTF generation currently requires you download a separate, closed-source jar file and add it to your java classpath: http://www.xmlmind.com/foconverter/downloadperso.shtml --> ! <property name="rtf.processor" value="com.xmlmind.fo.converter.Driver"/> ! <!-- You may have some luck with JFOR, an open source FO to RTF Converter: --> ! <!-- <property name="rtf.processor" value="ch.codeconsult.jfor.main.CmdLineConverter"/> --> ! <!-- Targeting Options: Element filtering allows you to create targeted resumes. --- 18,51 ---- ==================================================================== --> ! <!-- ================================================================ General Options ================================================================ --> ! <!-- The name and extension of the XML file containing your resume --> ! <property name="resume.in" value="${basedir}/resume" /> ! <property name="resume.extension" value="xml" /> ! <property name="output.dir" value="${basedir}/output"/> ! <property name="resume.out" value="${output.dir}/cv"/> ! <!-- Options: br de fr it nl uk us es --> ! <property name="country" value="us" /> ! <!-- Options: letter for country=us, a4 for others --> ! <property name="papersize" value="a4" /> ! <!--property name="xsl.base" value="http://xmlresume.sourceforge.net/xsl"/--> ! <property name="xsl.base" value="${basedir}/../xsl" /> ! <!-- <property name="xsl.base" value="../src/www/xsl"/> --> ! <!-- ================================================================ Processing Software: ================================================================ --> ! <property name="xsl.processor" value="org.apache.xalan.xslt.Process" /> ! <property name="pdf.processor" value="org.apache.fop.apps.Fop" /> ! <!-- RTF generation currently requires you download a separate, closed-source jar file and add it to your java classpath: http://www.xmlmind.com/foconverter/downloadperso.shtml --> ! <property name="rtf.processor" value="com.xmlmind.fo.converter.Driver" /> ! <!-- You may have some luck with JFOR, an open source FO to RTF Converter: --> ! <!-- <property name="rtf.processor" value="ch.codeconsult.jfor.main.CmdLineConverter"/> --> ! <!-- Targeting Options: Element filtering allows you to create targeted resumes. *************** *** 56,150 **** Take a look at example2.xml and try changing the filter targets to get a feel for how the filter works. --> ! <property name="filter.processor" value="net.sourceforge.xmlresume.filter.Filter"/> ! <property name="filter.targets" value="foodservice carpentry"/> ! <property name="filter.extension" value="-filtered"/> ! <!-- ================================================================ Stylesheets: ================================================================ --> ! <property name="html_style" value="${xsl.base}/output/${country}-html.xsl"/> ! <property name="text_style" value="${xsl.base}/output/${country}-text.xsl"/> ! <property name="fo_style" value="${xsl.base}/output/${country}-${papersize}.xsl"/> ! <!-- ================================================================ Classpath: ================================================================ --> <path id="project.classpath"> ! <pathelement location="../lib/*.jar"/> </path> ! <!-- ================================================================ END OF USER-CONFIGURABLE PARAMETERS ================================================================ --> ! <!-- Target Text --> ! <target name="txt" description="Makes a plain-text version of the resume."> ! <java classname="${xsl.processor}"> ! <arg value="-in"/> ! <arg value="${resume}.${resume.extension}"/> ! <arg value="-xsl"/> ! <arg value="${text_style}"/> ! <arg value="-out"/> ! <arg value="${resume}.txt"/> ! </java> ! </target> ! <!-- Target HTML --> ! <target name="html" description="Makes an HTML version of the resume."> ! <java classname="${xsl.processor}"> ! <arg value="-in"/> ! <arg value="${resume}.${resume.extension}"/> ! <arg value="-xsl"/> ! <arg value="${html_style}"/> ! <arg value="-out"/> ! <arg value="${resume}.html"/> ! </java> ! </target> ! <!-- Target FO --> ! <target name="fo" description="Makes an XML FO version of the resume."> ! <java classname="${xsl.processor}"> ! <arg value="-in"/> ! <arg value="${resume}.${resume.extension}"/> ! <arg value="-xsl"/> ! <arg value="${fo_style}"/> ! <arg value="-out"/> ! <arg value="${resume}.fo"/> ! </java> ! </target> ! <!-- Target PDF --> ! <target depends="fo" name="pdf" description="Makes a PDF version of the resume."> ! <java classname="${pdf.processor}" fork="true"> ! <classpath path="../lib"/> ! <arg value="-fo"/> ! <arg value="${resume}.fo"/> ! <arg value="-pdf"/> ! <arg value="${resume}.pdf"/> ! </java> ! </target> ! <!-- Target filter --> ! <target name="filter" description="Makes a filtered version of a resume."> ! <echo message="Writing filtered resume to ${resume}${filter.extension}"/> ! <java classname="${filter.processor}"> ! <arg value="-in"/> ! <arg value="${resume}.${resume.extension}"/> ! <arg value="-out"/> ! <arg value="${resume}${filter.extension}.${resume.extension}"/> ! <arg value="${filter.targets}"/> ! </java> ! </target> ! <!-- Target All --> ! <target depends="txt,html,fo,pdf" name="all" ! description="Makes all known formats of the resume."> ! <echo message="XXX resume = ${resume}"/> ! </target> ! <!-- Target clean --> ! <target description="Clean all build products." name="clean"> ! <delete file="${resume}.txt"/> ! <delete file="${resume}.html"/> ! <delete file="${resume}.fo"/> ! <delete file="${resume}.pdf"/> ! <delete file="${resume}${filter.extension}.txt"/> ! <delete file="${resume}${filter.extension}.html"/> ! <delete file="${resume}${filter.extension}.fo"/> ! <delete file="${resume}${filter.extension}.pdf"/> ! <delete file="${resume}${filter.extension}.${resume.extension}"/> ! </target> </project> --- 57,165 ---- Take a look at example2.xml and try changing the filter targets to get a feel for how the filter works. --> ! <property name="filter.processor" value="net.sourceforge.xmlresume.filter.Filter" /> ! <property name="filter.targets" value="foodservice carpentry" /> ! <property name="filter.extension" value="-filtered" /> ! ! <path id="classpath"> ! <fileset dir="../lib"> ! <include name="**/*.jar" /> ! </fileset> ! </path> ! <!-- ================================================================ Stylesheets: ================================================================ --> ! <!-- <property name="html_style" value="${xsl.base}/output/${country}-html.xsl" /> --> ! <property name="html_style" value="${xsl.base}/output/${country}-html.xsl"/> ! <property name="text_style" value="${xsl.base}/output/${country}-text.xsl" /> ! <property name="fo_style" value="${xsl.base}/output/${country}-${papersize}.xsl" /> ! <!-- ================================================================ Classpath: ================================================================ --> <path id="project.classpath"> ! <pathelement location="../lib/*.jar" /> </path> ! <!-- ================================================================ END OF USER-CONFIGURABLE PARAMETERS ================================================================ --> ! <target name="-init"> ! <mkdir dir="${output.dir}"/> ! </target> ! ! <!-- Target Text --> ! <target name="txt" description="Makes a plain-text version of the resume." depends="-init"> ! <java classname="${xsl.processor}"> ! <arg value="-in" /> ! <arg value="${resume.in}.${resume.extension}" /> ! <arg value="-xsl" /> ! <arg value="${text_style}" /> ! <arg value="-out" /> ! <arg value="${resume.out}.txt" /> ! <classpath refid="classpath" /> ! </java> ! </target> ! <!-- Target HTML --> ! <target name="html" description="Makes an HTML version of the resume." depends="-init"> ! <java classname="${xsl.processor}"> ! <arg value="-in" /> ! <arg value="${resume.in}.${resume.extension}" /> ! <arg value="-xsl" /> ! <arg value="${html_style}" /> ! <arg value="-out" /> ! <arg value="${resume.out}.html" /> ! <classpath refid="classpath"/> ! </java> ! </target> ! <!-- Target FO --> ! <target name="fo" description="Makes an XML FO version of the resume." depends="-init"> ! <java classname="${xsl.processor}"> ! <arg value="-in" /> ! <arg value="${resume.in}.${resume.extension}" /> ! <arg value="-xsl" /> ! <arg value="${fo_style}" /> ! <arg value="-out" /> ! <arg value="${resume.out}.fo" /> ! <classpath refid="classpath" /> ! </java> ! </target> ! <!-- Target PDF --> ! <target depends="fo" name="pdf" description="Makes a PDF version of the resume."> ! <java classname="${pdf.processor}" fork="true"> ! <classpath path="../lib" /> ! <arg value="-fo" /> ! <arg value="${resume.out}.fo" /> ! <arg value="-pdf" /> ! <arg value="${resume.out}.pdf" /> ! <classpath refid="classpath" /> ! </java> ! </target> ! <!-- Target filter --> ! <target name="filter" description="Makes a filtered version of a resume." depends="-init"> ! <echo message="Writing filtered resume to ${resume}${filter.extension}" /> ! <java classname="${filter.processor}"> ! <arg value="-in" /> ! <arg value="${resume.in}.${resume.extension}" /> ! <arg value="-out" /> ! <arg value="${resume.out}${filter.extension}.${resume.extension}" /> ! <arg value="${filter.targets}" /> ! </java> ! </target> ! <!-- Target All --> ! <target depends="txt,html,fo,pdf" name="all" description="Makes all known formats of the resume."> ! <echo message="XXX resume = ${resume}" /> ! </target> ! <!-- Target clean --> ! <target description="Clean all build products." name="clean"> ! <delete file="${resume.out}.txt" /> ! <delete file="${resume.out}.html" /> ! <delete file="${resume.out}.fo" /> ! <delete file="${resume.out}.pdf" /> ! <delete file="${resume.out}${filter.extension}.txt" /> ! <delete file="${resume.out}${filter.extension}.html" /> ! <delete file="${resume.out}${filter.extension}.fo" /> ! <delete file="${resume.out}${filter.extension}.pdf" /> ! <delete file="${resume.out}${filter.extension}.${resume.extension}" /> ! </target> </project> --- resume.fo DELETED --- --- example1.xml DELETED --- --- Makefile DELETED --- --- example2.xml DELETED --- --- resume.html DELETED --- Index: resume.xml =================================================================== RCS file: /cvsroot/rssmailer/CV/cvTomk/resume.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** resume.xml 6 Apr 2004 20:23:56 -0000 1.8 --- resume.xml 18 Jan 2005 20:54:32 -0000 1.9 *************** *** 87,94 **** for new technologies, and my being up-to-date on them. Information technology, and the web in particular, gets a lot of my time and attention. I currently have more than ! 4 years of professional experience in this field, but have worked with computers since my early childhood.</para> ! <para> ! In addition, I dispose an analytical mind, which allows my to swiftly come up with solutions for complex problems. Iâm also perfectly capable of explaining technical problems to less experienced programmers, which makes me an excellent coach.</para> --- 87,93 ---- for new technologies, and my being up-to-date on them. Information technology, and the web in particular, gets a lot of my time and attention. I currently have more than ! 5 years of professional experience in this field, but have worked with computers since my early childhood.</para> ! <para>In addition, I dispose an analytical mind, which allows my to swiftly come up with solutions for complex problems. Iâm also perfectly capable of explaining technical problems to less experienced programmers, which makes me an excellent coach.</para> *************** *** 116,119 **** --- 115,139 ---- <history> + <job> + <jobtitle>Lead Developer</jobtitle> + <employer>Retailability.IT</employer> + <period> + <from> + <date> + <month>September</month> + <year>2004</year> + </date> + </from> + <to> + <present/> + </to> + </period> + <description> + Retailability.IT provides software products to support supply chain management as a whole. + Starting from software to plan looms in a weaving factory, they also plan the production of + yarns that are needed and they steer the looms themselves to. My role is to develop the architecture + of the product, program the product, and guide other programmers in their job. + </description> + </job> <job> <jobtitle>IT Architect</jobtitle> *************** *** 128,132 **** </from> <to> ! <present /> </to> </period> --- 148,155 ---- </from> <to> ! <date> ! <month>September</month> ! <year>2004</year> ! </date> </to> </period> --- resumeFirstTry.txt DELETED --- --- resume.doc DELETED --- --- resume.txt DELETED --- |