rssmailer-cvs Mailing List for Rss Mailing Aggregator
Status: Planning
Brought to you by:
tomklaasen
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
(56) |
Mar
|
Apr
(12) |
May
(142) |
Jun
(52) |
Jul
(32) |
Aug
(28) |
Sep
(45) |
Oct
(35) |
Nov
(133) |
Dec
(18) |
2004 |
Jan
(6) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(60) |
Sep
|
Oct
(1) |
Nov
(25) |
Dec
(21) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(4) |
May
(11) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Tom K. <tom...@us...> - 2005-05-26 20:15:11
|
Update of /cvsroot/rssmailer/Toolkit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13358 Modified Files: .classpath Log Message: Index: .classpath =================================================================== RCS file: /cvsroot/rssmailer/Toolkit/.classpath,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** .classpath 18 Apr 2004 21:03:11 -0000 1.5 --- .classpath 26 May 2005 20:14:54 -0000 1.6 *************** *** 5,9 **** <classpathentry exported="true" kind="lib" path="lib/mail.jar"/> <classpathentry kind="lib" path="lib/junit.jar"/> ! <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> </classpath> --- 5,9 ---- <classpathentry exported="true" kind="lib" path="lib/mail.jar"/> <classpathentry kind="lib" path="lib/junit.jar"/> ! <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK1.5.0_01"/> <classpathentry kind="output" path="bin"/> </classpath> |
From: Tom K. <tom...@us...> - 2005-05-26 20:12:41
|
Update of /cvsroot/rssmailer/dailystrips-mailer/resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12783/resources Added Files: run.cmd Log Message: --- NEW FILE: run.cmd --- java -jar dailystrips-mailer.jar |
From: Tom K. <tom...@us...> - 2005-05-26 20:12:41
|
Update of /cvsroot/rssmailer/dailystrips-mailer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12783 Added Files: build.xml .cvsignore Log Message: --- NEW FILE: .cvsignore --- build dist --- NEW FILE: build.xml --- <?xml version="1.0"?> <project name="dailystrips-mailer" default="dist" basedir="."> <property name="project" value="${ant.project.name}"/> <property name="toolkit.dist" value="../Toolkit/dist"/> <property name="build" value="build"/> <property name="dist" value="dist"/> <property name="jarfile.name" value="${project}.jar"/> <property name="jarfile" value="${dist}/${jarfile.name}"/> <property name="zipfile" value="${dist}/${project}.zip"/> <path id="classpath"> <fileset dir="${toolkit.dist}"/> </path> <target name="compile"> <mkdir dir="${build}"/> <javac srcdir="src" classpathref="classpath" destdir="${build}"/> </target> <target name="dist" depends="compile"> <mkdir dir="${dist}"/> <jar destfile="${jarfile}"> <manifest> <attribute name="Main-Class" value="be.tomk.dailystripsmailer.Mailer"/> <attribute name="Class-Path" value="activation.jar junit.jar mail.jar toolkit.jar"/> </manifest> <fileset dir="${build}"/> </jar> <zip destfile="${zipfile}"> <fileset dir="${dist}"> <include name="${jarfile.name}"/> </fileset> <fileset dir="${toolkit.dist}"/> <fileset dir="resources"> <include name="run.cmd"/> </fileset> </zip> </target> </project> |
From: Tom K. <tom...@us...> - 2005-05-26 20:09:31
|
Update of /cvsroot/rssmailer/dailystrips-mailer/resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12032/resources Log Message: Directory /cvsroot/rssmailer/dailystrips-mailer/resources added to the repository |
From: Tom K. <tom...@us...> - 2005-05-24 12:31:34
|
Update of /cvsroot/rssmailer/dailystrips-mailer/src/be/tomk/dailystripsmailer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1981/src/be/tomk/dailystripsmailer Added Files: Mailer.java Log Message: --- NEW FILE: Mailer.java --- package be.tomk.dailystripsmailer; import java.io.File; import java.io.FileFilter; import java.net.MalformedURLException; import java.net.URL; import java.text.SimpleDateFormat; import java.util.Date; import java.util.HashSet; import java.util.Set; import javax.mail.MessagingException; import javax.mail.internet.AddressException; import be.tomk.toolkit.mail.MailSender; public class Mailer { public static void main(String[] args) throws MalformedURLException, AddressException, MessagingException { String workdir = "C:/dailystrips-1.0.28/work"; final String today = new SimpleDateFormat("yyyy.MM.dd").format(new Date()); File work = new File(workdir); File[] dirs = work.listFiles(new DirectoryFilter()); FileFilter fileFilter = new FileFilter() { public boolean accept(File pathname) { return pathname.getName().startsWith(today); } }; Set<URL> urls = new HashSet<URL>(); for (int i = 0; i<dirs.length; i++) { File current = dirs[i]; File[] todaysFiles = current.listFiles(fileFilter); for (int j = 0; j < todaysFiles.length; j++) { urls.add(todaysFiles[j].toURL()); } } URL[] attachments = urls.toArray(new URL[urls.size()]); MailSender.send("uit.pandora.be", "dai...@to...", new String[]{"dai...@to..."}, "Dailystrips for "+today, "", true, attachments); } private static class DirectoryFilter implements FileFilter { public boolean accept(File pathname) { return pathname.isDirectory(); } } } |
From: Tom K. <tom...@us...> - 2005-05-24 12:31:33
|
Update of /cvsroot/rssmailer/dailystrips-mailer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1981 Added Files: .classpath .project Log Message: --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>dailystrips-mailer</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK1.5.0_01"/> <classpathentry kind="src" path="/Toolkit"/> <classpathentry kind="output" path="bin"/> </classpath> |
From: Tom K. <tom...@us...> - 2005-05-24 12:31:27
|
Update of /cvsroot/rssmailer/dailystrips-mailer/src/be In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1934/src/be Log Message: Directory /cvsroot/rssmailer/dailystrips-mailer/src/be added to the repository |
From: Tom K. <tom...@us...> - 2005-05-24 12:31:27
|
Update of /cvsroot/rssmailer/dailystrips-mailer/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1934/src Log Message: Directory /cvsroot/rssmailer/dailystrips-mailer/src added to the repository |
From: Tom K. <tom...@us...> - 2005-05-24 12:31:26
|
Update of /cvsroot/rssmailer/dailystrips-mailer/src/be/tomk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1934/src/be/tomk Log Message: Directory /cvsroot/rssmailer/dailystrips-mailer/src/be/tomk added to the repository |
From: Tom K. <tom...@us...> - 2005-05-24 12:31:25
|
Update of /cvsroot/rssmailer/dailystrips-mailer/src/be/tomk/dailystripsmailer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1934/src/be/tomk/dailystripsmailer Log Message: Directory /cvsroot/rssmailer/dailystrips-mailer/src/be/tomk/dailystripsmailer added to the repository |
From: Tom K. <tom...@us...> - 2005-05-24 12:31:00
|
Update of /cvsroot/rssmailer/dailystrips-mailer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1849/dailystrips-mailer Log Message: Directory /cvsroot/rssmailer/dailystrips-mailer added to the repository |
From: Tom K. <tom...@us...> - 2005-04-04 19:54:08
|
Update of /cvsroot/rssmailer/commissie/src/webapp/WEB-INF/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12750/src/webapp/WEB-INF/lib Modified Files: commons-digester.jar Added Files: commons-collections-2.1.1.jar commons-beanutils-1.6.1.jar mysql-connector-java-3.0.16-ga-bin.jar commons-logging-1.0.4.jar Removed Files: mm.mysql-2.0.13-bin.jar commons-collections.jar commons-beanutils.jar commons-logging.jar commons-validator.jar Log Message: --- commons-beanutils.jar DELETED --- --- commons-logging.jar DELETED --- --- NEW FILE: commons-collections-2.1.1.jar --- (This appears to be a binary file; contents omitted.) --- commons-validator.jar DELETED --- --- NEW FILE: mysql-connector-java-3.0.16-ga-bin.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: commons-logging-1.0.4.jar --- (This appears to be a binary file; contents omitted.) --- mm.mysql-2.0.13-bin.jar DELETED --- --- commons-collections.jar DELETED --- --- NEW FILE: commons-beanutils-1.6.1.jar --- (This appears to be a binary file; contents omitted.) Index: commons-digester.jar =================================================================== RCS file: /cvsroot/rssmailer/commissie/src/webapp/WEB-INF/lib/commons-digester.jar,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsdForJA and /tmp/cvsG2COuy differ |
From: Tom K. <tom...@us...> - 2005-04-04 19:53:54
|
Update of /cvsroot/rssmailer/commissie/src/webapp/WEB-INF In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12750/src/webapp/WEB-INF Modified Files: dbforms-config.xml Log Message: Index: dbforms-config.xml =================================================================== RCS file: /cvsroot/rssmailer/commissie/src/webapp/WEB-INF/dbforms-config.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dbforms-config.xml 25 Sep 2003 20:58:14 -0000 1.1 --- dbforms-config.xml 4 Apr 2005 19:53:44 -0000 1.2 *************** *** 33,41 **** <dbconnection ! name = "jdbc:mysql://localhost/mysql" isJndi = "false" ! conClass = "org.gjt.mm.mysql.Driver" ! username = "tomk" ! password = "tompie" /> </dbforms-config> --- 33,41 ---- <dbconnection ! name = "jdbc:mysql://localhost/commissie" isJndi = "false" ! conClass = "com.mysql.jdbc.Driver" ! username = "commissie" ! password = "commissie" /> </dbforms-config> |
From: Tom K. <tom...@us...> - 2005-04-04 19:53:54
|
Update of /cvsroot/rssmailer/commissie In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12750 Modified Files: .classpath Added Files: build.xml Log Message: Index: .classpath =================================================================== RCS file: /cvsroot/rssmailer/commissie/.classpath,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** .classpath 28 Jul 2004 13:21:30 -0000 1.4 --- .classpath 4 Apr 2005 19:53:43 -0000 1.5 *************** *** 5,8 **** --- 5,14 ---- <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/log4j.jar"/> <classpathentry kind="lib" path="lib/j2ee.jar"/> + <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/cos.jar"/> + <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/dbforms_v1_1_2.jar"/> + <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/jakarta-oro-2.0.6.jar"/> + <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/mysql-connector-java-3.0.16-ga-bin.jar"/> + <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/PoolMan.jar"/> + <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/commons-logging-1.0.4.jar"/> <classpathentry kind="output" path="bin"/> </classpath> --- NEW FILE: build.xml --- <project name="commissie" basedir="." default="dist"> <property name="tomcat.home" value="C:\Program Files\Apache Software Foundation\Tomcat 5.5" /> <property name="version" value="3.0"/> <property name="webapps.dir" value="${tomcat.home}/webapps" /> <property name="src" value="src"/> <property name="build" value="build"/> <property name="war.dir" value="${build}"/> <property name="war.name" value="commissie-${version}.war"/> <property name="war.file" value="${war.dir}/${war.name}"/> <target name="war"> <mkdir dir="${build}"/> <war basedir="${src}/webapp" webxml="${src}/webapp/WEB-INF/web.xml" destfile="${war.file}"> <exclude name="**/web.xml"/> </war> </target> <target name="dist" depends="war"> </target> <target name="deploy" depends="dist"> <unwar src="${war.file}" dest="${webapps.dir}/commissie"/> </target> <target name="clean"> <delete dir="${build}"/> </target> </project> |
From: Tom K. <tom...@us...> - 2005-04-04 19:53:52
|
Update of /cvsroot/rssmailer/commissie/etc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12750/etc Added Files: commissie.sql Log Message: --- NEW FILE: commissie.sql --- CREATE DATABASE `commissie` /*!40100 DEFAULT CHARACTER SET latin1 */; DROP TABLE IF EXISTS `commissie`.`bestelbon`; CREATE TABLE `bestelbon` ( `Bonnummer` varchar(50) NOT NULL default '', `Naam_klant` varchar(50) default NULL, `Klantnummer` varchar(50) default NULL, `Datum_bestelbon` datetime default NULL, `Kode_actie` varchar(50) default NULL, `Naam_actie` varchar(50) default NULL, `Bedrag_actie` int(11) unsigned default NULL, `Datum_van_betaling` datetime default NULL, `Naam_verkoper` varchar(50) default NULL, `Bedrag_Commissie_verkoper_auto` int(11) unsigned default NULL, `Beschrijving_Commissie_verkoper_auto` varchar(250) default NULL, `Bedrag_Commissie_verkoper_accessoires` int(11) unsigned default NULL, `Beschrijving_Commissie_verkoper_accessoires` varchar(250) default NULL, `Datum_van_betaling_commissie_verkoper` datetime default NULL, `Datum_verkoopfactuur` datetime default NULL, PRIMARY KEY (`Bonnummer`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
From: Tom K. <tom...@us...> - 2005-01-18 21:00:59
|
Update of /cvsroot/rssmailer/CV/cvTomk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7737/cvTomk Modified Files: resume.xml Log Message: Index: resume.xml =================================================================== RCS file: /cvsroot/rssmailer/CV/cvTomk/resume.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** resume.xml 18 Jan 2005 20:54:32 -0000 1.9 --- resume.xml 18 Jan 2005 21:00:47 -0000 1.10 *************** *** 315,318 **** --- 315,319 ---- <skill>Apache Struts</skill> <skill>Apache Cocoon</skill> + <skill>Tapestry</skill> </skillset> <skillset> *************** *** 323,326 **** --- 324,328 ---- <skill>Sybase</skill> <skill>MySQL</skill> + <skill>MS SQL Server</skill> </skillset> <skillset> *************** *** 344,348 **** <title>Version control / code management</title> <skill>CVS</skill> ! <skill>MS SourceSafe</skill> </skillset> <skillset> --- 346,351 ---- <title>Version control / code management</title> <skill>CVS</skill> ! <skill>Subversion (SVN)</skill> ! <skill>MS Visual SourceSafe (VSS)</skill> </skillset> <skillset> *************** *** 354,357 **** --- 357,361 ---- <skill>JUnit</skill> <skill>HttpUnit</skill> + <skill>DBUniet</skill> </skillset> <skillset> *************** *** 395,398 **** --- 399,403 ---- <skill>c3p0</skill> <skill>OpenJGraph</skill> + <skill>Tapestry</skill> <skill>...</skill> </skillset> |
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 --- |
From: Tom K. <tom...@us...> - 2005-01-18 20:55:24
|
Update of /cvsroot/rssmailer/CV/xsl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6045/xsl Modified Files: params.xsl Log Message: updated Index: params.xsl =================================================================== RCS file: /cvsroot/rssmailer/CV/xsl/params.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** params.xsl 25 Sep 2003 20:32:02 -0000 1.1 --- params.xsl 18 Jan 2005 20:54:33 -0000 1.2 *************** *** 135,139 **** <!-- Cascading stylesheet to use --> <!-- Make sure the path to the css file is correct! --> ! <xsl:param name="css.href">../../css/compact.css</xsl:param> <!-- Should style sheets be embedded within the html file? --> --- 135,139 ---- <!-- Cascading stylesheet to use --> <!-- Make sure the path to the css file is correct! --> ! <xsl:param name="css.href">../../css/tomk.css</xsl:param> <!-- Should style sheets be embedded within the html file? --> |
From: Tom K. <tom...@us...> - 2005-01-18 20:55:14
|
Update of /cvsroot/rssmailer/CV/xsl/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6045/xsl/misc Modified Files: html_professional.xsl Log Message: updated Index: html_professional.xsl =================================================================== RCS file: /cvsroot/rssmailer/CV/xsl/misc/html_professional.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** html_professional.xsl 25 Sep 2003 20:32:01 -0000 1.1 --- html_professional.xsl 18 Jan 2005 20:54:32 -0000 1.2 *************** *** 42,48 **** <xsl:output method="html" omit-xml-declaration="yes" indent="yes" encoding="UTF-8" doctype-public="-//W3C//DTD HTML 4.0//EN"/> <xsl:strip-space elements="*"/> ! <xsl:include href="./common/params.xsl"/> ! <xsl:include href="./common/address.xsl"/> ! <xsl:include href="./common/pub.xsl"/> <xsl:template match="/"> <html> --- 42,48 ---- <xsl:output method="html" omit-xml-declaration="yes" indent="yes" encoding="UTF-8" doctype-public="-//W3C//DTD HTML 4.0//EN"/> <xsl:strip-space elements="*"/> ! <xsl:include href="../params.xsl"/> ! <xsl:include href="../lib/address.xsl"/> ! <xsl:include href="../lib/pub.xsl"/> <xsl:template match="/"> <html> |
From: Tom K. <tom...@us...> - 2005-01-18 20:54:46
|
Update of /cvsroot/rssmailer/CV/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6045/css Added Files: tomk.css Log Message: updated --- NEW FILE: tomk.css --- <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> /* * compact.css -- Stylesheet suitable for printing an xmlresume to dead * trees without using too many of them (Arial font, white background) * * Contributed 2002 by Mark Miller (joup at bigfoot dot com) * http://xmlresume.sourceforge.net */ // This dummy style must be here because the xml tags above cause some // browsers (Konqueror, Mozilla) to ignore the first style .dummy { background-color: white } body, table { margin-top: 1cm; margin-bottom: 1cm; font-size: 8pt; background-color: white; font-family: Arial, Verdana, sans-serif; } .resume { padding-left: 20%; padding-right: 20%; padding-top: 5em; padding-bottom: 5em; } h2 { margin-left: -.8cm; font-family: sans-serif; color: black; border-bottom: solid 1pt black; font-size: 115%; } p { margin-bottom: 0.05cm; margin-top: 0.15cm; } em { font-weight: bold; } ul { margin-top: 0.1cm; } .projects p { font-style: italic } ul.degrees { padding-left: 0.2cm; } .subjectsHeading { font-style: italic } .awardTitle { font-weight: bold } .bookTitle { font-style: italic } .citation { font-style: italic } .copyright { font-size: 75% } li.degree { margin-bottom: 0.2cm; } .degreeTitle { font-weight: bold } .employer { font-style: italic } .headerBlock { text-align: left } .jobTitle { font-weight: bold } .lastModified { font-size: 75% } .nameHeading { font-family: sans-serif; font-size: 125%; } div.referee { margin-bottom: 0.5cm; } table.referees { width: 60%; margin-top: 0cm; margin-bottom: 0cm;} .refereeName { font-weight: bold } .skillsetTitle { font-weight: bold } .urlA { font-family:sans-serif; color:red; } </xsl:stylesheet> |
From: Tom K. <tom...@us...> - 2005-01-18 20:54:37
|
Update of /cvsroot/rssmailer/CV/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6045/lib Added Files: resolver.jar xercesSamples.jar xmlParserAPIs.jar xercesImpl.jar xml-apis.jar Log Message: updated --- NEW FILE: xmlParserAPIs.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: resolver.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xercesImpl.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xml-apis.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xercesSamples.jar --- (This appears to be a binary file; contents omitted.) |
From: Tom K. <tom...@us...> - 2004-12-21 16:49:57
|
Update of /cvsroot/rssmailer/JDK15Playpen/src/be/tomk/scrap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17367/src/be/tomk/scrap Added Files: IPScanner.java Log Message: scrap --- NEW FILE: IPScanner.java --- package be.tomk.scrap; import java.io.IOException; import java.net.InetAddress; public class IPScanner { public static void main(String[] args) throws IOException { for (int timeout = 1; timeout < 10; timeout++) { System.out.println("Timeout: "+timeout); for (int i = 1; i<255; i++) { InetAddress address = InetAddress.getByAddress(new byte[]{(byte)192, (byte)168, (byte)123, (byte)i}); System.out.println("Pinging "+address.getHostAddress()); if (address.isReachable(timeout*1000)) { System.out.println("Found "+address.getHostAddress()); } } } } } |
From: Tom K. <tom...@us...> - 2004-12-21 09:51:18
|
Update of /cvsroot/rssmailer/JDK15Playpen/src/be/tomk/scrap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17387/src/be/tomk/scrap Added Files: HashMapScrap.java Log Message: --- NEW FILE: HashMapScrap.java --- package be.tomk.scrap; import java.util.HashMap; import java.util.Vector; public class HashMapScrap { public static void main(String[] args) { HashMap<String, Vector> m = new HashMap<String, Vector>(); m.put("Jot", new Vector()); // ... // fill the map with String, Vector values // ... for (String key : m.keySet()) { Vector value = m.get(key); } } } |
From: Tom K. <tom...@us...> - 2004-12-21 09:51:14
|
Update of /cvsroot/rssmailer/JDK15Playpen/src/be In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17310/src/be Log Message: Directory /cvsroot/rssmailer/JDK15Playpen/src/be added to the repository |
From: Tom K. <tom...@us...> - 2004-12-21 09:51:11
|
Update of /cvsroot/rssmailer/JDK15Playpen/src/be/tomk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17310/src/be/tomk Log Message: Directory /cvsroot/rssmailer/JDK15Playpen/src/be/tomk added to the repository |