lipog-commit Mailing List for Little Portal Gizmo (Page 5)
Status: Beta
Brought to you by:
jbu
You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(94) |
Jun
(14) |
Jul
(168) |
Aug
(39) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(6) |
Dec
|
From: Joerg B. <jb...@us...> - 2009-07-25 06:19:22
|
Update of /cvsroot/lipog/net.heilancoo.portal.examples.test/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10723/src Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.examples.test/src added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:19:22
|
Update of /cvsroot/lipog/net.heilancoo.portal.examples.test/src/net In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10723/src/net Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.examples.test/src/net added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:18:44
|
Update of /cvsroot/lipog/net.heilancoo.portal.examples.test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10668/net.heilancoo.portal.examples.test Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.examples.test added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:18:25
|
Update of /cvsroot/lipog/net.heilancoo.portal.examples/redirect/templates In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10591/redirect/templates Modified Files: listItems.html delEdit.html add.html Log Message: give ids or names to elements for HtmlUnit testability Index: delEdit.html =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal.examples/redirect/templates/delEdit.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** delEdit.html 24 Jul 2009 06:40:36 -0000 1.1 --- delEdit.html 25 Jul 2009 06:18:12 -0000 1.2 *************** *** 7,11 **** <h1>Edit To Do Item</h1> <p>User: ${user.name}</p> ! <form id="editForm" action="editSubmit"> <p>Text: </p> <input name="id" type="hidden" value="${id}"/> --- 7,11 ---- <h1>Edit To Do Item</h1> <p>User: ${user.name}</p> ! <form name="editForm" action="editSubmit"> <p>Text: </p> <input name="id" type="hidden" value="${id}"/> Index: add.html =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal.examples/redirect/templates/add.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** add.html 24 Jul 2009 06:40:36 -0000 1.1 --- add.html 25 Jul 2009 06:18:12 -0000 1.2 *************** *** 7,11 **** <h1>Add To Do Item</h1> <p>User: ${user.name}</p> ! <form id="addForm" action="addSubmit"> <p>Text: </p> <input name="text" type="text" value=""/> --- 7,11 ---- <h1>Add To Do Item</h1> <p>User: ${user.name}</p> ! <form name="addForm" action="addSubmit"> <p>Text: </p> <input name="text" type="text" value=""/> Index: listItems.html =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal.examples/redirect/templates/listItems.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** listItems.html 24 Jul 2009 06:40:36 -0000 1.1 --- listItems.html 25 Jul 2009 06:18:12 -0000 1.2 *************** *** 6,11 **** <link rel="stylesheet" type="text/css" href="/files/default.css" /> <h1>To Do List</h1> ! <p>User: ${user.name}</p> ! <form id="addForm" action="add"> <input name="add" type="submit" value="Add To Do Item"/> </form> --- 6,11 ---- <link rel="stylesheet" type="text/css" href="/files/default.css" /> <h1>To Do List</h1> ! <p>User: ${user.name}, <a id="logout" href="logout">Logout</a></p> ! <form name="addForm" action="add"> <input name="add" type="submit" value="Add To Do Item"/> </form> *************** *** 17,21 **** <#list items as t> <tr><td class="inp">${t.id}</td><td class="inp">${t.text}</td><td class="ctrl"> ! <form id="delEditForm" action="delEdit"> <input name="id" type="hidden" value="${t.id}"/> <input name="del" type="submit" value="Delete"/> --- 17,21 ---- <#list items as t> <tr><td class="inp">${t.id}</td><td class="inp">${t.text}</td><td class="ctrl"> ! <form name="delEditForm${t.id}" action="delEdit"> <input name="id" type="hidden" value="${t.id}"/> <input name="del" type="submit" value="Delete"/> |
From: Joerg B. <jb...@us...> - 2009-07-25 06:17:32
|
Update of /cvsroot/lipog/net.heilancoo.portal.examples/templates In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10515/templates Modified Files: login.html Log Message: login button needs a name Index: login.html =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal.examples/templates/login.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** login.html 3 Jul 2009 21:02:10 -0000 1.1 --- login.html 25 Jul 2009 06:17:23 -0000 1.2 *************** *** 11,15 **** <tr><td>Username:</td><td><input type="text" name="user"></td></tr> <tr><td>Password:</td><td><input type="password" name="password"></td></tr> ! <tr><td colspan="2" align="center"><input type="submit" value="Login"></td></tr> </table> </form> --- 11,15 ---- <tr><td>Username:</td><td><input type="text" name="user"></td></tr> <tr><td>Password:</td><td><input type="password" name="password"></td></tr> ! <tr><td colspan="2" align="center"><input type="submit" name="button" value="Login"></td></tr> </table> </form> |
From: Joerg B. <jb...@us...> - 2009-07-25 06:17:20
|
Update of /cvsroot/lipog/net.heilancoo.portal/statics In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10477/statics Modified Files: login.html Log Message: login button needs a name Index: login.html =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal/statics/login.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** login.html 20 Apr 2009 18:56:18 -0000 1.2 --- login.html 25 Jul 2009 06:17:06 -0000 1.3 *************** *** 10,14 **** <tr><td>Username:</td><td><input type="text" name="user"></td></tr> <tr><td>Password:</td><td><input type="password" name="password"></td></tr> ! <tr><td colspan="2" align="center"><input type="submit" value="Login"></td></tr> </table> </form> --- 10,14 ---- <tr><td>Username:</td><td><input type="text" name="user"></td></tr> <tr><td>Password:</td><td><input type="password" name="password"></td></tr> ! <tr><td colspan="2" align="center"><input type="submit" name="button" value="Login"></td></tr> </table> </form> |
From: Joerg B. <jb...@us...> - 2009-07-25 06:16:26
|
Update of /cvsroot/lipog/net.heilancoo.portal/src/net/heilancoo/portal In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10409/src/net/heilancoo/portal Modified Files: ServiceStarter.java PortalPlugin.java Log Message: changes for service startup triggered from JUnit/HtmlUnit test cases Index: PortalPlugin.java =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal/src/net/heilancoo/portal/PortalPlugin.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** PortalPlugin.java 6 Jul 2009 16:34:58 -0000 1.22 --- PortalPlugin.java 25 Jul 2009 06:16:18 -0000 1.23 *************** *** 323,327 **** } ! public void startHttpService() { if(!initialized || !initialisationOk) return; --- 323,327 ---- } ! public void startHttpService(int waitAfterStart) { if(!initialized || !initialisationOk) return; *************** *** 330,339 **** httpServiceThread = new Thread(s); ! logger.info("Starting HTTP service."); ! httpServiceThread.run(); } public void stopHttpService() { ! //httpServiceThread.stop(); } --- 330,352 ---- httpServiceThread = new Thread(s); ! if(waitAfterStart == 0) { ! logger.info("Starting HTTP service."); ! httpServiceThread.run(); ! } ! else { ! logger.info("Starting HTTP service in separte thread."); ! httpServiceThread.start(); ! ! try { ! Thread.sleep(waitAfterStart); ! } ! catch (InterruptedException e) { ! logger.error(e, e); ! } ! } } public void stopHttpService() { ! //httpServiceThread.stop();// TODO clean this up? } Index: ServiceStarter.java =================================================================== RCS file: /cvsroot/lipog/net.heilancoo.portal/src/net/heilancoo/portal/ServiceStarter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ServiceStarter.java 5 Jul 2009 13:12:14 -0000 1.4 --- ServiceStarter.java 25 Jul 2009 06:16:18 -0000 1.5 *************** *** 34,40 **** */ public Object start(IApplicationContext context) throws Exception { ! String [] args = (String[]) context.getArguments().get("application.args"); ! String logFile = trawlForLoggingArgs(args); PortalPlugin.getDefault().configureLogging(logFile, initOnly); --- 34,44 ---- */ public Object start(IApplicationContext context) throws Exception { ! String [] args = (String []) context.getArguments().get("application.args"); ! return startWithArgs(args, 0); ! } ! ! public Object startWithArgs(String [] args, int waitAfterStart) throws Exception { ! String logFile = args == null ? null : trawlForLoggingArgs(args); PortalPlugin.getDefault().configureLogging(logFile, initOnly); *************** *** 46,50 **** } ! PortalPlugin.getDefault().startHttpService(); return null; --- 50,54 ---- } ! PortalPlugin.getDefault().startHttpService(waitAfterStart); return null; |
From: Joerg B. <jb...@us...> - 2009-07-25 06:12:54
|
Update of /cvsroot/lipog/com.gargoylesoftware.htmlunit/META-INF In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9960/META-INF Modified Files: MANIFEST.MF Log Message: fixed vendor Index: MANIFEST.MF =================================================================== RCS file: /cvsroot/lipog/com.gargoylesoftware.htmlunit/META-INF/MANIFEST.MF,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MANIFEST.MF 25 Jul 2009 06:09:33 -0000 1.1 --- MANIFEST.MF 25 Jul 2009 06:12:44 -0000 1.2 *************** *** 19,23 **** xercesImpl-2.8.1.jar, xml-apis-1.3.04.jar ! Bundle-Vendor: Gargoyle Software and Others Export-Package: com.gargoylesoftware.htmlunit, com.gargoylesoftware.htmlunit.attachment, --- 19,23 ---- xercesImpl-2.8.1.jar, xml-apis-1.3.04.jar ! Bundle-Vendor: Gargoyle Software + Apache Foundation Export-Package: com.gargoylesoftware.htmlunit, com.gargoylesoftware.htmlunit.attachment, |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:54
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/META-INF In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9811/META-INF Added Files: MANIFEST.MF Log Message: utilities for HtmlUnit testing of web apps --- NEW FILE: MANIFEST.MF --- Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Testutils Bundle-SymbolicName: net.heilancoo.portal.testutils Bundle-Version: 1.0.0.alpha Bundle-Activator: net.heilancoo.portal.testutils.TestUtilsPlugin Bundle-Vendor: Heilan' Coo Require-Bundle: org.eclipse.core.runtime, net.heilancoo.portal;bundle-version="1.0.0";visibility:=reexport, org.junit4;bundle-version="4.5.0";visibility:=reexport, com.gargoylesoftware.htmlunit;bundle-version="2.5.0";visibility:=reexport Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ActivationPolicy: lazy Export-Package: net.heilancoo.portal.testutils |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:52
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/src/net In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9765/src/net Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils/src/net added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:51
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/.settings In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9765/.settings Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils/.settings added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:48
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/.settings In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9811/.settings Added Files: org.eclipse.jdt.core.prefs Log Message: utilities for HtmlUnit testing of web apps --- NEW FILE: org.eclipse.jdt.core.prefs --- #Fri Jul 24 12:12:01 CEST 2009 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 org.eclipse.jdt.core.compiler.compliance=1.6 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.source=1.6 |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:48
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9811 Added Files: build.properties .project .classpath Log Message: utilities for HtmlUnit testing of web apps --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>net.heilancoo.portal.testutils</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.ManifestBuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.SchemaBuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.pde.PluginNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: build.properties --- source.. = src/ output.. = bin/ bin.includes = META-INF/,\ . --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="src" path="src"/> <classpathentry kind="output" path="bin"/> </classpath> |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:47
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/src/net/heilancoo/portal/testutils In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9811/src/net/heilancoo/portal/testutils Added Files: TestUtilsPlugin.java Log Message: utilities for HtmlUnit testing of web apps --- NEW FILE: TestUtilsPlugin.java --- package net.heilancoo.portal.testutils; import net.heilancoo.portal.ServiceStarter; import org.apache.log4j.Logger; import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class TestUtilsPlugin extends Plugin { private static final Logger logger = Logger.getLogger(TestUtilsPlugin.class); // The plug-in ID public static final String PLUGIN_ID = "net.heilancoo.portal.testutils"; // The shared instance private static TestUtilsPlugin plugin; private boolean portalStarted = false; /** * The constructor */ public TestUtilsPlugin() { } /* * (non-Javadoc) * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) */ public void start(BundleContext context) throws Exception { super.start(context); plugin = this; } /* * (non-Javadoc) * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) */ public void stop(BundleContext context) throws Exception { plugin = null; super.stop(context); } public void startPortal(int waitAfterStart) { if(portalStarted) return; try { new ServiceStarter().startWithArgs(null, waitAfterStart); portalStarted = true; } catch (Exception e) { logger.error("Failed to start web service.", e); } } /** * Returns the shared instance * * @return the shared instance */ public static TestUtilsPlugin getDefault() { return plugin; } } |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:45
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9765/src Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils/src added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:44
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/src/net/heilancoo/portal/testutils In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9765/src/net/heilancoo/portal/testutils Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils/src/net/heilancoo/portal/testutils added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:44
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/META-INF In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9765/META-INF Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils/META-INF added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:44
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/src/net/heilancoo In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9765/src/net/heilancoo Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils/src/net/heilancoo added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:11:42
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils/src/net/heilancoo/portal In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9765/src/net/heilancoo/portal Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils/src/net/heilancoo/portal added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:10:53
|
Update of /cvsroot/lipog/net.heilancoo.portal.testutils In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9735/net.heilancoo.portal.testutils Log Message: Directory /cvsroot/lipog/net.heilancoo.portal.testutils added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:09:44
|
Update of /cvsroot/lipog/com.gargoylesoftware.htmlunit/META-INF In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8865/META-INF Added Files: MANIFEST.MF Log Message: HtmlUnit packaged up as plug-in for easy integration --- NEW FILE: MANIFEST.MF --- Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Htmlunit Bundle-SymbolicName: com.gargoylesoftware.htmlunit Bundle-Version: 2.5.0 Bundle-ClassPath: commons-codec-1.3.jar, commons-collections-3.2.1.jar, commons-httpclient-3.1.jar, commons-io-1.4.jar, commons-lang-2.4.jar, commons-logging-1.1.1.jar, cssparser-0.9.5.jar, htmlunit-2.5.jar, htmlunit-core-js-2.5.jar, nekohtml-1.9.12.jar, sac-1.3.jar, serializer-2.7.1.jar, xalan-2.7.1.jar, xercesImpl-2.8.1.jar, xml-apis-1.3.04.jar Bundle-Vendor: Gargoyle Software and Others Export-Package: com.gargoylesoftware.htmlunit, com.gargoylesoftware.htmlunit.attachment, com.gargoylesoftware.htmlunit.html, com.gargoylesoftware.htmlunit.html.applets, com.gargoylesoftware.htmlunit.html.xpath, com.gargoylesoftware.htmlunit.javascript, com.gargoylesoftware.htmlunit.javascript.background, com.gargoylesoftware.htmlunit.javascript.configuration, com.gargoylesoftware.htmlunit.javascript.host, com.gargoylesoftware.htmlunit.javascript.regexp, com.gargoylesoftware.htmlunit.protocol.about, com.gargoylesoftware.htmlunit.protocol.data, com.gargoylesoftware.htmlunit.protocol.javascript, com.gargoylesoftware.htmlunit.ssl, com.gargoylesoftware.htmlunit.util, com.gargoylesoftware.htmlunit.xml, com.steadystate.css.dom, com.steadystate.css.parser, com.steadystate.css.parser.selectors, com.steadystate.css.sac, com.steadystate.css.userdata, java_cup.runtime, javax.xml, javax.xml.datatype, javax.xml.namespace, javax.xml.parsers, javax.xml.transform, javax.xml.transform.dom, javax.xml.transform.sax, javax.xml.transform.stream, javax.xml.validation, javax.xml.xpath, net.sourceforge.htmlunit.corejs.classfile, net.sourceforge.htmlunit.corejs.javascript, net.sourceforge.htmlunit.corejs.javascript.debug, net.sourceforge.htmlunit.corejs.javascript.jdk13, net.sourceforge.htmlunit.corejs.javascript.jdk15, net.sourceforge.htmlunit.corejs.javascript.optimizer, net.sourceforge.htmlunit.corejs.javascript.regexp, net.sourceforge.htmlunit.corejs.javascript.serialize, net.sourceforge.htmlunit.corejs.javascript.xml, org.apache.bcel, org.apache.bcel.classfile, org.apache.bcel.generic, org.apache.bcel.util, org.apache.bcel.verifier, org.apache.bcel.verifier.exc, org.apache.bcel.verifier.statics, org.apache.bcel.verifier.structurals, org.apache.commons.codec, org.apache.commons.codec.binary, org.apache.commons.codec.digest, org.apache.commons.codec.language, org.apache.commons.codec.net, org.apache.commons.collections, org.apache.commons.collections.bag, org.apache.commons.collections.bidimap, org.apache.commons.collections.buffer, org.apache.commons.collections.collection, org.apache.commons.collections.comparators, org.apache.commons.collections.functors, org.apache.commons.collections.iterators, org.apache.commons.collections.keyvalue, org.apache.commons.collections.list, org.apache.commons.collections.map, org.apache.commons.collections.set, org.apache.commons.httpclient, org.apache.commons.httpclient.auth, org.apache.commons.httpclient.cookie, org.apache.commons.httpclient.methods, org.apache.commons.httpclient.methods.multipart, org.apache.commons.httpclient.params, org.apache.commons.httpclient.protocol, org.apache.commons.httpclient.util, org.apache.commons.io, org.apache.commons.io.comparator, org.apache.commons.io.filefilter, org.apache.commons.io.input, org.apache.commons.io.output, org.apache.commons.lang, org.apache.commons.lang.builder, org.apache.commons.lang.enums, org.apache.commons.lang.exception, org.apache.commons.lang.math, org.apache.commons.lang.mutable, org.apache.commons.lang.text, org.apache.commons.lang.time, org.apache.commons.logging, org.apache.commons.logging.impl, org.apache.html.dom, org.apache.regexp, org.apache.wml, org.apache.wml.dom, org.apache.xalan, org.apache.xalan.client, org.apache.xalan.extensions, org.apache.xalan.lib, org.apache.xalan.lib.sql, org.apache.xalan.processor, org.apache.xalan.res, org.apache.xalan.serialize, org.apache.xalan.templates, org.apache.xalan.trace, org.apache.xalan.transformer, org.apache.xalan.xslt, org.apache.xalan.xsltc, org.apache.xalan.xsltc.cmdline, org.apache.xalan.xsltc.cmdline.getopt, org.apache.xalan.xsltc.compiler, org.apache.xalan.xsltc.compiler.util, org.apache.xalan.xsltc.dom, org.apache.xalan.xsltc.runtime, org.apache.xalan.xsltc.runtime.output, org.apache.xalan.xsltc.trax, org.apache.xalan.xsltc.util, org.apache.xerces.dom, org.apache.xerces.dom.events, org.apache.xerces.dom3.as, org.apache.xerces.impl, org.apache.xerces.impl.dtd, org.apache.xerces.impl.dtd.models, org.apache.xerces.impl.dv, org.apache.xerces.impl.dv.dtd, org.apache.xerces.impl.dv.util, org.apache.xerces.impl.dv.xs, org.apache.xerces.impl.io, org.apache.xerces.impl.msg, org.apache.xerces.impl.validation, org.apache.xerces.impl.xpath, org.apache.xerces.impl.xpath.regex, org.apache.xerces.impl.xs, org.apache.xerces.impl.xs.identity, org.apache.xerces.impl.xs.models, org.apache.xerces.impl.xs.opti, org.apache.xerces.impl.xs.traversers, org.apache.xerces.impl.xs.util, org.apache.xerces.jaxp, org.apache.xerces.jaxp.datatype, org.apache.xerces.jaxp.validation, org.apache.xerces.parsers, org.apache.xerces.util, org.apache.xerces.xinclude, org.apache.xerces.xni, org.apache.xerces.xni.grammars, org.apache.xerces.xni.parser, org.apache.xerces.xpointer, org.apache.xerces.xs, org.apache.xerces.xs.datatypes, org.apache.xml.dtm, org.apache.xml.dtm.ref, org.apache.xml.dtm.ref.dom2dtm, org.apache.xml.dtm.ref.sax2dtm, org.apache.xml.res, org.apache.xml.serialize, org.apache.xml.serializer, org.apache.xml.serializer.dom3, org.apache.xml.serializer.utils, org.apache.xml.utils, org.apache.xml.utils.res, org.apache.xmlcommons, org.apache.xpath, org.apache.xpath.axes, org.apache.xpath.compiler, org.apache.xpath.domapi, org.apache.xpath.functions, org.apache.xpath.jaxp, org.apache.xpath.objects, org.apache.xpath.operations, org.apache.xpath.patterns, org.apache.xpath.res, org.cyberneko.html, org.cyberneko.html.filters, org.cyberneko.html.parsers, org.cyberneko.html.xercesbridge, org.w3c.css.sac, org.w3c.css.sac.helpers, org.w3c.dom, org.w3c.dom.bootstrap, org.w3c.dom.css, org.w3c.dom.events, org.w3c.dom.html, org.w3c.dom.ls, org.w3c.dom.ranges, org.w3c.dom.stylesheets, org.w3c.dom.traversal, org.w3c.dom.views, org.w3c.dom.xpath, org.xml.sax, org.xml.sax.ext, org.xml.sax.helpers Bundle-RequiredExecutionEnvironment: JavaSE-1.6 |
From: Joerg B. <jb...@us...> - 2009-07-25 06:09:44
|
Update of /cvsroot/lipog/com.gargoylesoftware.htmlunit/.settings In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8865/.settings Added Files: org.eclipse.jdt.core.prefs Log Message: HtmlUnit packaged up as plug-in for easy integration --- NEW FILE: org.eclipse.jdt.core.prefs --- #Fri Jul 24 12:33:04 CEST 2009 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 org.eclipse.jdt.core.compiler.compliance=1.6 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.source=1.6 |
Update of /cvsroot/lipog/com.gargoylesoftware.htmlunit In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8865 Added Files: sac-1.3.jar htmlunit-core-js-2.5.jar .project build.properties commons-logging-1.1.1.jar htmlunit-2.5.jar xercesImpl-2.8.1.jar commons-lang-2.4.jar commons-collections-3.2.1.jar commons-io-1.4.jar commons-httpclient-3.1.jar cssparser-0.9.5.jar LICENSE.txt xalan-2.7.1.jar .classpath commons-codec-1.3.jar xml-apis-1.3.04.jar serializer-2.7.1.jar nekohtml-1.9.12.jar Log Message: HtmlUnit packaged up as plug-in for easy integration --- NEW FILE: commons-collections-3.2.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: htmlunit-core-js-2.5.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: commons-io-1.4.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: commons-lang-2.4.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>com.gargoylesoftware.htmlunit</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.ManifestBuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.SchemaBuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.pde.PluginNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: xml-apis-1.3.04.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cssparser-0.9.5.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nekohtml-1.9.12.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: build.properties --- bin.includes = META-INF/,\ commons-codec-1.3.jar,\ commons-collections-3.2.1.jar,\ commons-httpclient-3.1.jar,\ commons-io-1.4.jar,\ commons-lang-2.4.jar,\ commons-logging-1.1.1.jar,\ cssparser-0.9.5.jar,\ htmlunit-2.5.jar,\ htmlunit-core-js-2.5.jar,\ nekohtml-1.9.12.jar,\ sac-1.3.jar,\ serializer-2.7.1.jar,\ xalan-2.7.1.jar,\ xercesImpl-2.8.1.jar,\ xml-apis-1.3.04.jar --- NEW FILE: commons-codec-1.3.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xercesImpl-2.8.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry exported="true" kind="lib" path="commons-codec-1.3.jar"/> <classpathentry exported="true" kind="lib" path="commons-collections-3.2.1.jar"/> <classpathentry exported="true" kind="lib" path="commons-httpclient-3.1.jar"/> <classpathentry exported="true" kind="lib" path="commons-io-1.4.jar"/> <classpathentry exported="true" kind="lib" path="commons-lang-2.4.jar"/> <classpathentry exported="true" kind="lib" path="commons-logging-1.1.1.jar"/> <classpathentry exported="true" kind="lib" path="cssparser-0.9.5.jar"/> <classpathentry exported="true" kind="lib" path="htmlunit-2.5.jar"/> <classpathentry exported="true" kind="lib" path="htmlunit-core-js-2.5.jar"/> <classpathentry exported="true" kind="lib" path="nekohtml-1.9.12.jar"/> <classpathentry exported="true" kind="lib" path="sac-1.3.jar"/> <classpathentry exported="true" kind="lib" path="serializer-2.7.1.jar"/> <classpathentry exported="true" kind="lib" path="xalan-2.7.1.jar"/> <classpathentry exported="true" kind="lib" path="xercesImpl-2.8.1.jar"/> <classpathentry exported="true" kind="lib" path="xml-apis-1.3.04.jar"/> <classpathentry kind="output" path="bin"/> </classpath> --- NEW FILE: commons-httpclient-3.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xalan-2.7.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: commons-logging-1.1.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: serializer-2.7.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: LICENSE.txt --- /* * Copyright (c) 2002-2009 Gargoyle Software Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --- NEW FILE: sac-1.3.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: htmlunit-2.5.jar --- (This appears to be a binary file; contents omitted.) |
From: Joerg B. <jb...@us...> - 2009-07-25 06:04:18
|
Update of /cvsroot/lipog/com.gargoylesoftware.htmlunit/META-INF In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8835/META-INF Log Message: Directory /cvsroot/lipog/com.gargoylesoftware.htmlunit/META-INF added to the repository |
From: Joerg B. <jb...@us...> - 2009-07-25 06:04:18
|
Update of /cvsroot/lipog/com.gargoylesoftware.htmlunit/.settings In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8835/.settings Log Message: Directory /cvsroot/lipog/com.gargoylesoftware.htmlunit/.settings added to the repository |