From: Santi B. <san...@us...> - 2007-12-09 01:01:40
|
Update of /cvsroot/babeldoc/modules/jabber In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24096 Modified Files: .project build.properties .classpath build.xml Log Message: Upgrade of smack library and some changes to send messages and keep delivery status. Index: .project =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/.project,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .project 4 Dec 2007 00:27:42 -0000 1.1 --- .project 9 Dec 2007 01:01:43 -0000 1.2 *************** *** 4,7 **** --- 4,8 ---- <comment></comment> <projects> + <project>babeldoc</project> </projects> <buildSpec> *************** *** 11,14 **** --- 12,25 ---- </arguments> </buildCommand> + <buildCommand> + <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> + <triggers>auto,full,incremental,</triggers> + <arguments> + <dictionary> + <key>LaunchConfigHandle</key> + <value><project>/.externalToolBuilders/jabber.launch</value> + </dictionary> + </arguments> + </buildCommand> </buildSpec> <natures> Index: build.xml =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 5 Dec 2003 23:40:34 -0000 1.2 --- build.xml 9 Dec 2007 01:01:43 -0000 1.3 *************** *** 45,49 **** </javac> ! <!-- Copy the configuration files to build/core/... --> <mkdir dir="${module_path}/${Module}"/> <copy toDir="${module_path}/${Module}"> --- 45,49 ---- </javac> ! <!-- Copy the configuration files to build/jabber/... --> <mkdir dir="${module_path}/${Module}"/> <copy toDir="${module_path}/${Module}"> Index: build.properties =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/build.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.properties 5 Dec 2003 23:40:34 -0000 1.2 --- build.properties 9 Dec 2007 01:01:43 -0000 1.3 *************** *** 4,7 **** ModuleClass=com.babeldoc.jabber.module.XmppWriterModule ! babeldoc_home=../../Babeldoc/build --- 4,9 ---- ModuleClass=com.babeldoc.jabber.module.XmppWriterModule ! babeldoc_home=../babeldoc/build ! custom = true ! Index: .classpath =================================================================== RCS file: /cvsroot/babeldoc/modules/jabber/.classpath,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .classpath 4 Dec 2007 00:27:42 -0000 1.1 --- .classpath 9 Dec 2007 01:01:43 -0000 1.2 *************** *** 4,10 **** <classpathentry kind="src" path="config"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry combineaccessrules="false" exported="true" kind="src" path="/babeldoc"/> ! <classpathentry kind="lib" path="lib/smack.jar"/> ! <classpathentry kind="lib" path="lib/smackx.jar"/> <classpathentry kind="output" path="build"/> </classpath> --- 4,10 ---- <classpathentry kind="src" path="config"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry combineaccessrules="false" kind="src" path="/babeldoc"/> ! <classpathentry exported="true" kind="lib" path="lib/smack.jar"/> ! <classpathentry exported="true" kind="lib" path="lib/smackx.jar"/> <classpathentry kind="output" path="build"/> </classpath> |