Timeframe: 30 days, Total Commits: 192 Total Number of Files Changed: 272
Date | Author | File/Message |
---|---|---|
2005-04-20 22:46:49 | Elliotte Rusty Harold | Removing SNAPSHOT from version |
2005-04-20 22:46:15 | Elliotte Rusty Harold | Adding TODO comment |
2005-04-20 22:45:26 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-20 22:44:41 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-20 22:43:27 | Elliotte Rusty Harold | Inverting order of unique && matches. Assumption is unique,contains is faster |
2005-04-20 22:42:24 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/iter/IterableChildAxis.java v 1.7 Minro code reformatting for line length |
2005-04-20 22:41:38 | Elliotte Rusty Harold |
src/java/main/org/jaxen/javabean/DocumentNavigator.java v 1.6 Removing unnecessary inner class |
2005-04-20 22:40:42 | Elliotte Rusty Harold | Adding test for XPathSyntaxException creation that was failing in pre-1.4 VMs |
2005-04-19 13:37:33 | Elliotte Rusty Harold | Fixing unintentional (and unnecessary) Java 1.4 dependence |
2005-04-18 20:15:15 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-17 14:33:56 | Elliotte Rusty Harold | Minor optimization of inlining method |
2005-04-17 14:19:25 | Elliotte Rusty Harold | Removing apparently unnecessary null check. I'm a little nervous about this; but this method is a performance hot spot, and removing this check doesn't break any test cases. If this breaks anything for anyone, provide a test case; and I'll put the check back in. |
2005-04-17 14:14:49 | Elliotte Rusty Harold | Minor optimization of declaring local variables final |
2005-04-17 14:08:36 | Elliotte Rusty Harold | Minor optimization of using actuyal type opf lists (ArrayLists) rather than supertype on local variables |
2005-04-17 13:19:29 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultXPathFactory.java v 1.13 Removing vestigial comment |
2005-04-17 13:18:44 | Elliotte Rusty Harold | Fixing bugs in handling of null and empty namespace URIs when using named navigators |
2005-04-16 17:57:38 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultNameStep.java v 1.42 Removing dependence on java.util.IdentityHashMap |
2005-04-16 16:06:41 | Elliotte Rusty Harold | Removing org.jaxen.util.IdentityHashMap |
2005-04-16 15:32:53 | Elliotte Rusty Harold | Specifying that unbound prefixes return null for their namespace URIs |
2005-04-16 15:06:15 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultAndExpr.java v 1.11 Removing org.jaxen.util.IdentityHashMap |
2005-04-16 14:23:05 | Elliotte Rusty Harold | Removing interface declaration that's redundant with superclass |
2005-04-16 14:22:46 | Elliotte Rusty Harold | Removing interface declaration that's redundant with superclass |
2005-04-16 14:18:12 | Elliotte Rusty Harold | Using NumberFormat rather than Double.valueOf to convert doubles to strings. This avoids the use of exponential notation. |
2005-04-16 14:17:19 | Elliotte Rusty Harold | Removing unused import |
2005-04-16 14:16:44 | Elliotte Rusty Harold | Adding test that integers are formatted as ints |
2005-04-16 13:54:22 | Elliotte Rusty Harold | Adding tests that demonstrate bugs in handling of large and small doubles. Theya re currently being formatted using exponential notation which XPath doesn't allow. |
2005-04-16 13:45:12 | Elliotte Rusty Harold | Not necessary to test for negative 0 separately |
2005-04-16 10:16:23 | Elliotte Rusty Harold | Marking AttributeIterator inner class private and static |
2005-04-16 10:08:55 | Elliotte Rusty Harold | Marking EmptyNodeList inner class private and static |
2005-04-16 10:03:25 | Elliotte Rusty Harold | Changing value == Boolean.FALSE to ! value.booleanValue() to avoid possible problems with different Boolean objects that are equal but not == |
2005-04-16 09:59:11 | Elliotte Rusty Harold | Changing value == Boolean.TRUE to value.booleanValue() to avoid possible problems with different Boolean objects that are equal but not == |
2005-04-16 09:54:50 | Elliotte Rusty Harold | Replacing boolean constrcutor with Boolean.valueOf to save memory |
2005-04-16 09:52:08 | Elliotte Rusty Harold | Changing version to BETA-6-SNAPSHOT |
2005-04-15 23:21:18 | Elliotte Rusty Harold | correcting JavaDoc reference to Map.Entry |
2005-04-15 21:28:41 | Elliotte Rusty Harold | Updating for beta 5 |
2005-04-15 20:36:47 | Elliotte Rusty Harold | Adding cobertura directory to .cvsignore |
2005-04-15 20:27:59 | Elliotte Rusty Harold | Removing SNAPSHOT from version number |
2005-04-15 20:24:04 | Elliotte Rusty Harold | Adding TODO comment |
2005-04-15 20:23:24 | Elliotte Rusty Harold | Removing equalSiblings method in favor of equals() |
2005-04-15 20:19:47 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-15 20:18:32 | Elliotte Rusty Harold | Uncommenting test for Jaxen-24 |
2005-04-15 14:13:52 | Elliotte Rusty Harold | Removing redundant EmptyHashIterator inner class; using JaxenConstants.EMPTY_ITERATOR instead |
2005-04-14 13:06:37 | Elliotte Rusty Harold |
src/java/main/org/jaxen/saxpath/base/DefaultXPathHandler.java v 1.3 Removing pointless inner class |
2005-04-12 17:10:07 | Elliotte Rusty Harold | Adding doc-comment to stringValueOf method |
2005-04-12 17:06:11 | Elliotte Rusty Harold | Fixing Jaxen-22 (again). The problem seems to be in the getPrecedingAxisIterator function. For the moment, I just deleted this method so we'll inherit the working version from the superclass instead. Possibly this is slower, though not necessarily. A lot depends on the details of the DOM implementation. |
2005-04-12 17:04:31 | Elliotte Rusty Harold | Various tests for tracking down Jaxen-22 |
2005-04-12 17:02:17 | Elliotte Rusty Harold | Various tests for tracking down Jaxen-22 |
2005-04-12 13:17:29 | Elliotte Rusty Harold |
src/java/main/org/jaxen/function/StartsWithFunction.java v 1.5 Correcting typo in exception message |
2005-04-12 13:16:46 | Elliotte Rusty Harold | Working around possibility that a text node is a List, as it is in the XOM built-in navigator |
2005-04-12 12:53:41 | Elliotte Rusty Harold | Removing unnecessary local variable |
2005-04-11 19:14:10 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/PrecedingSiblingAxisIterator.java v 1.12 Removing unused import |
2005-04-11 19:07:17 | Elliotte Rusty Harold | Adding the test data to the distribution |
2005-04-11 18:29:00 | Elliotte Rusty Harold | Minor JavaDoc edits |
2005-04-11 18:21:39 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultXPathFactory.java v 1.12 XPathFactory should not extend Operator. This violates the principle that inheritance means an "is a" relationship. This shouldn't break anything major. It appears to have just been a hack to get around the lack of static imports in Java 1.4 and earlier. |
2005-04-11 17:59:19 | Elliotte Rusty Harold | Removing unused versions and branches elements |
2005-04-11 17:54:55 | Elliotte Rusty Harold | Fixing project.xml to validate against schema |
2005-04-11 17:46:33 | Elliotte Rusty Harold | Adding "-SNAPSHOT" to version string per Maven recommendation |
2005-04-11 17:33:51 | Elliotte Rusty Harold | Removing deprecated, unused, and nonexistent elements |
2005-04-10 01:52:57 | Elliotte Rusty Harold |
src/java/test/org/jaxen/function/FunctionTests.java v 1.13 src/java/test/org/jaxen/function/SubstringAfterTest.java v 1.1 Adding tests for substring-after function |
2005-04-10 01:49:45 | Elliotte Rusty Harold |
src/java/test/org/jaxen/function/FunctionTests.java v 1.12 src/java/test/org/jaxen/function/SubstringBeforeTest.java v 1.1 Adding tests for substring-before function |
2005-04-10 01:26:07 | Elliotte Rusty Harold | Rewriting in third person |
2005-04-10 01:24:14 | Elliotte Rusty Harold | Changing version to beta 5 |
2005-04-10 01:24:44 | Elliotte Rusty Harold | Adding more explicit links to latest beta releases |
2005-04-09 21:59:16 | Elliotte Rusty Harold | Upgrading to JDOM 1.0 |
2005-04-09 21:56:31 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-09 14:16:22 | Elliotte Rusty Harold | Removing double spacing |
2005-04-09 14:08:18 | Elliotte Rusty Harold | JavaDoc corrections |
2005-04-09 14:06:04 | Elliotte Rusty Harold | Throwing exception rather than returning null for unrecognized token type |
2005-04-09 14:03:38 | Elliotte Rusty Harold |
src/java/main/org/jaxen/saxpath/helpers/XPathReaderFactory.java v 1.4 Nesting exceptions |
2005-04-09 13:58:14 | Elliotte Rusty Harold | JavaDoc corrections |
2005-04-09 13:54:05 | Elliotte Rusty Harold |
src/java/main/org/jaxen/saxpath/SAXPathParseException.java v 1.3 JavaDoc corrections |
2005-04-09 13:53:33 | Elliotte Rusty Harold | JavaDoc corrections |
2005-04-09 13:52:05 | Elliotte Rusty Harold | Adding constrcutor that takes a message but no wrapped exception |
2005-04-09 13:51:32 | Elliotte Rusty Harold | Throwing exception rather returning null for unrecognized axis number |
2005-04-08 14:39:13 | Elliotte Rusty Harold | By making SelfAxisIterator extend SingleObjectIterator, we can eliminate several methods |
2005-04-08 14:32:16 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/PrecedingSiblingAxisIterator.java v 1.11 Using JaxenConstants.EMPTY_ITERATOR instead of Collections.EMPTY_LIST.iterator(); |
2005-04-08 14:28:41 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/DescendantOrSelfAxisIterator.java v 1.8 Replacing SingletonList.iterator with SingleObjectIterator |
2005-04-08 14:22:08 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/AncestorAxisIterator.java v 1.11 src/java/main/org/jaxen/util/AncestorOrSelfAxisIterator.java v 1.9 Removing unnecessary call to hasNext |
2005-04-08 14:14:57 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/PrecedingSiblingAxisIterator.java v 1.10 Inlining stepAhead method |
2005-04-08 14:05:42 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/PrecedingSiblingAxisIterator.java v 1.9 Removing unnecessary null check |
2005-04-08 14:00:37 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/PrecedingSiblingAxisIterator.java v 1.8 Replacing while loop with if statement |
2005-04-08 13:55:46 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/PrecedingSiblingAxisIterator.java v 1.7 Code cleanup to remove casts |
2005-04-08 13:51:08 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/PrecedingSiblingAxisIterator.java v 1.6 Fix for Jaxen-47: use equals() to compare nodes rather than == |
2005-04-07 20:41:33 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/FollowingSiblingAxisIterator.java v 1.7 Fix for Jaxen-47: use equals() to compare nodes rather than == |
2005-04-07 20:40:20 | Elliotte Rusty Harold | Fix for Jaxen-47: use equals() to compare nodes rather than == |
2005-04-07 13:39:07 | Elliotte Rusty Harold | Encouraging users to upgrade to 1.1 |
2005-04-07 12:00:40 | Elliotte Rusty Harold | Rewriting to account for 1.1 beta 4. |
2005-04-07 11:25:58 | Elliotte Rusty Harold | Adding XOM 1.1 news. Fixing URL to Jaxen chapter of processing XML with Java. Changing "nightly build" to latest beta of 1.1, since we're not doing nightly builds right now. |
2005-04-06 23:35:04 | Peter Royal | set repo properties |
2005-04-06 21:55:34 | Elliotte Rusty Harold | Adding bin directory to CVS .ignore because generated files shouldn't be in CVS anyway |
2005-04-06 21:53:14 | Elliotte Rusty Harold | For the moment we're only shipping one jAR. We can revert to the earlier instructions if we figure out how to set up Maven to generate multiple jars. |
2005-04-06 21:49:16 | Elliotte Rusty Harold | Adding test that id() function allows at most one argument |
2005-04-06 21:48:25 | Elliotte Rusty Harold | javaDoc correction |
2005-04-06 21:47:37 | Elliotte Rusty Harold | Correcting line break problem |
2005-04-06 11:10:50 | Elliotte Rusty Harold | Adding doc comment to evaluate method |
2005-04-06 11:07:41 | Elliotte Rusty Harold | Various bug fixes: mostly noting that the argument does not have to be a string and the context node list should always be length 1. Also making evaluate methods private. |
2005-04-06 10:56:36 | Elliotte Rusty Harold | Various tests for the lang() function |
2005-04-06 10:55:46 | Elliotte Rusty Harold | Various tests for the lang() function |
2005-04-06 10:06:26 | Elliotte Rusty Harold | JavaDoc edits; <tt> and <i> are deprecated font-style elements; replacing with <code> and <em> |
2005-04-06 10:01:42 | Elliotte Rusty Harold | The number-value of an empty node-set is NaN, not null |
2005-04-06 10:00:22 | Elliotte Rusty Harold | The number-value of an empty node-set is NaN, not null |
2005-04-06 09:52:01 | Elliotte Rusty Harold | Removing extra exception |
2005-04-06 09:23:34 | Elliotte Rusty Harold | Replacing ElectricXML with XOM |
2005-04-06 09:22:38 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-06 09:21:43 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-06 09:20:11 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-06 09:19:15 | Elliotte Rusty Harold | JavaDoc edits; "namespace" is not a proper noun |
2005-04-06 09:16:46 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-06 09:15:15 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-06 09:13:58 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/FollowingSiblingAxisIterator.java v 1.6 Using Collections.EMPTY_LIST.iterator() instead of an empty LinkedList |
2005-04-06 09:12:37 | Elliotte Rusty Harold | Removing comment about node order; that has now been fixed; also setting initial size of ArrayLists |
2005-04-06 09:10:51 | Elliotte Rusty Harold | Using FollowingSibling rather than child axis iterator to compare siblings for document order |
2005-04-06 09:09:19 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultLocationPath.java v 1.24 Removing comment about node order; that has now been fixed |
2005-04-06 09:08:53 | Elliotte Rusty Harold | Removing comment about node order; that has now been fixed |
2005-04-06 09:08:05 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-06 09:07:07 | Elliotte Rusty Harold | Marking constructor private to enforce Singleton pattern |
2005-04-06 08:56:39 | Elliotte Rusty Harold | Removing separate install instructions for SAXPATH since it's now bundled |
2005-04-06 08:21:16 | Elliotte Rusty Harold | Organizing maven.compile properties |
2005-04-05 19:45:07 | Elliotte Rusty Harold | Correcting spelling error |
2005-04-05 18:41:42 | Elliotte Rusty Harold | Updated URLs |
2005-04-05 18:37:27 | Elliotte Rusty Harold | Updated URL for JAXM |
2005-04-05 18:35:10 | Elliotte Rusty Harold | Correcting DOM URL |
2005-04-05 18:32:17 | Elliotte Rusty Harold | Removing obsolete references to ElextricXML and replacing with XOM |
2005-04-05 18:31:55 | Elliotte Rusty Harold | Removing obsolete references to ElextricXML and replacing with XOM |
2005-04-05 18:18:54 | Elliotte Rusty Harold | Removing broken links to other projects' JavaDocs |
2005-04-05 18:12:33 | Elliotte Rusty Harold | Correcting well-formedness errors |
2005-04-05 17:45:05 | Elliotte Rusty Harold | Removing dependence on dom4j |
2005-04-05 00:46:22 | Elliotte Rusty Harold | Adding function tests |
2005-04-05 00:27:26 | Elliotte Rusty Harold | Replacing deprecated id elements with groupId and artifactId; also excluding currently broken JDOM test cases because brain-damaged Maven doesn't believe you might want to compile even when a couple of minor tests are broken. However, if someone would like to fix the JDOM problems, that would really nice. |
2005-04-04 21:43:42 | Elliotte Rusty Harold |
src/java/test/org/jaxen/function/ContainsTest.java v 1.1 src/java/test/org/jaxen/function/FalseTest.java v 1.1 src/java/test/org/jaxen/function/FunctionTests.java v 1.10 src/java/test/org/jaxen/function/LastTest.java v 1.1 src/java/test/org/jaxen/function/LocalNameTest.java v 1.3 src/java/test/org/jaxen/function/NotTest.java v 1.1 src/java/test/org/jaxen/function/StartsWithTest.java v 1.1 src/java/test/org/jaxen/function/StringLengthTest.java v 1.1 More tests for various functions |
2005-04-04 17:20:57 | Elliotte Rusty Harold | No point to catching an exception and immediately failing; better to just let the exception be thrown so we don't mask the real problem |
2005-04-04 17:15:03 | Elliotte Rusty Harold | Correcting DOM namespace used for namespace declaration attributes |
2005-04-04 17:10:59 | Elliotte Rusty Harold | No point to catching an exception and immediately failing; better to just let the exception be thrown so we don't mask the real problem |
2005-04-04 17:09:49 | Elliotte Rusty Harold | No point to catching an exception and immediately failing; better to just let the exception be thrown so we don't mask the real problem |
2005-04-04 17:07:47 | Elliotte Rusty Harold | No point to catching an exception and immediately failing; better to just let the exception be thrown so we don't mask the real problem |
2005-04-04 17:04:52 | Elliotte Rusty Harold | No point to catching an exception and immediately failing; better to just let the exception be thrown so we don't mask the real problem |
2005-04-04 16:55:54 | Elliotte Rusty Harold | Removing unnecessary dependence on XOM |
2005-04-04 16:53:11 | Elliotte Rusty Harold | Removing unnecessary dependence on XOM 1.1 |
2005-04-04 03:46:08 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/FollowingSiblingAxisIterator.java v 1.5 Speed up this axis and reduce memory usage by not pre-traversing it. The idea is that the following siblign axis is basically just the parent axis starting right after the context node so we can delegate to a ChildIterator for the parent. |
2005-04-03 23:02:47 | Elliotte Rusty Harold | Fixing some bugs in sorting namespace nodes into document order |
2005-04-03 22:57:57 | Elliotte Rusty Harold | Fixing some bugs in sorting attributes into document order |
2005-04-03 22:54:36 | Elliotte Rusty Harold | Fixing some bugs in sorting attributes into document order |
2005-04-03 04:47:24 | Elliotte Rusty Harold | Adding test case for Jaxen-54; which appears to be invalid |
2005-04-03 04:25:29 | Elliotte Rusty Harold | All legal expressions return nodes in document order |
2005-04-03 04:18:43 | Elliotte Rusty Harold | Test for sorting attribute and namespace nodes in result set |
2005-04-03 01:30:10 | Elliotte Rusty Harold | Union expressions now return nodes in document order |
2005-04-03 01:27:21 | Elliotte Rusty Harold | Adding test that union expressions use document order |
2005-04-03 01:21:36 | Elliotte Rusty Harold | Adding tests for proper handling of NaN |
2005-04-03 01:18:25 | Elliotte Rusty Harold | Tests for = operator |
2005-04-03 01:17:31 | Elliotte Rusty Harold | Removing unused import |
2005-04-03 01:16:45 | Elliotte Rusty Harold | More direct isNaN function |
2005-04-03 01:16:01 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-03 01:15:04 | Elliotte Rusty Harold | Splitting complex statement into multiple statements for easier debugging |
2005-04-03 01:14:06 | Elliotte Rusty Harold | Making sure nodes are always sorted into document order in compound location paths |
2005-04-03 01:13:43 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultLocationPath.java v 1.23 Making sure nodes are always sorted into document order in compound location paths |
2005-04-03 00:05:09 | Elliotte Rusty Harold | getParentNode was sometimes returning the node itself when it should have been returning null; i.e. when the node had no parent |
2005-04-02 22:09:29 | Elliotte Rusty Harold | Adding tests for floor function |
2005-04-02 21:55:41 | Elliotte Rusty Harold | Adding tests for ceiling function |
2005-04-02 21:16:29 | Elliotte Rusty Harold | More tests for boolean() function with wrong numbers of arguments |
2005-04-02 21:11:50 | Elliotte Rusty Harold | More tests for boolean() function |
2005-04-01 02:20:59 | Elliotte Rusty Harold | JavaDoc edits |
2005-04-01 02:14:22 | Elliotte Rusty Harold | Code cleanup and minro optimization on ArrayList initial size |
2005-04-01 02:10:01 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultLocationPath.java v 1.22 src/java/main/org/jaxen/util/AncestorAxisIterator.java v 1.10 src/java/main/org/jaxen/util/AncestorOrSelfAxisIterator.java v 1.8 All single step location paths now return node-sets in document order. Basically, the reverse axes are reversed before returning. Positional predicates still work with this approach as they did not with my previous attempt to fix this. This should make full sorting a lot faster. |
2005-03-31 21:38:38 | Elliotte Rusty Harold | The mod operator is defined for non-integers |
2005-03-31 03:01:12 | Elliotte Rusty Harold | Correcting infinite loop |
2005-03-29 07:44:05 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultLocationPath.java v 1.21 Pulling creation of StepContext object out of loop |
2005-03-29 01:19:05 | Elliotte Rusty Harold | Pulling variable declarations inside loops |
2005-03-29 01:12:20 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultFunctionCallExpr.java v 1.12 Pulling variable declarations inside loops |
2005-03-29 01:08:57 | Elliotte Rusty Harold | The mod operator is defined for non-integers |
2005-03-29 00:54:21 | Elliotte Rusty Harold | Removing vestigial comment |
2005-03-29 00:53:19 | Elliotte Rusty Harold | Removing vestigial comment |
2005-03-29 00:27:21 | Elliotte Rusty Harold | Marking field private |
2005-03-29 00:25:42 | Elliotte Rusty Harold | Moving variable declaration inside loop to reduce scope |
2005-03-29 00:23:05 | Elliotte Rusty Harold | Moving variable declaration inside loop to reduce scope |
2005-03-29 00:22:18 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/DefaultLocationPath.java v 1.20 Pulling call to getContextSupport out of loop |
2005-03-29 00:08:17 | Elliotte Rusty Harold |
src/java/main/org/jaxen/util/AncestorAxisIterator.java v 1.9 src/java/main/org/jaxen/util/AncestorOrSelfAxisIterator.java v 1.7 AncestorAxisIterator now returns nodes in document order. |
2005-03-29 00:07:26 | Elliotte Rusty Harold | AncestorAxisIterator now returns nodes in document order. |
2005-03-28 23:46:22 | Elliotte Rusty Harold | Correcting ancestor axis test, and adding test for ancestor-or-self axis |
2005-03-28 22:34:11 | Elliotte Rusty Harold | Adding tests for id() function |
2005-03-28 22:01:55 | Elliotte Rusty Harold | Pulling getContextSupport outside of loop |
2005-03-28 21:15:24 | Elliotte Rusty Harold | Removing unnecessary loop label and variable declaration |
2005-03-25 23:22:29 | Elliotte Rusty Harold |
src/java/main/org/jaxen/dom/html/DocumentNavigator.java v 1.4 Correcting JavaDoc spelling errors. Multiline if-else statements should use braces |
2005-03-25 14:07:48 | Elliotte Rusty Harold | Code clean up for naming conventions and indentation |
2005-03-23 13:14:18 | Elliotte Rusty Harold | Deleting build.xml; generated files should not be in CVS |
2005-03-23 13:13:20 | Elliotte Rusty Harold | TODO comment |
2005-03-23 13:12:54 | Elliotte Rusty Harold | TODO comment |
2005-03-23 13:12:08 | Elliotte Rusty Harold | JavaDoc improvement |
2005-03-23 13:11:18 | Elliotte Rusty Harold | Correcting spelling error |
2005-03-23 13:05:09 | Elliotte Rusty Harold | Removing unused imports |
2005-03-23 13:04:22 | Elliotte Rusty Harold | Removing unused imports |
2005-03-23 13:02:22 | Elliotte Rusty Harold | Adding myself (Elliotte Rusty Harold) as a contributor and updating Xerces and XML APIs jars to latest version |
2005-03-21 22:39:16 | Elliotte Rusty Harold |
src/java/main/org/jaxen/expr/AllNodeStep.java v 1.2 src/java/main/org/jaxen/expr/CommentNodeStep.java v 1.2 src/java/main/org/jaxen/expr/DefaultAllNodeStep.java v 1.9 src/java/main/org/jaxen/expr/DefaultAndExpr.java v 1.9 src/java/main/org/jaxen/expr/DefaultCommentNodeStep.java v 1.9 src/java/main/org/jaxen/expr/DefaultDivExpr.java v 1.8 src/java/main/org/jaxen/expr/DefaultEqualityExpr.java v 1.11 src/java/main/org/jaxen/expr/DefaultEqualsExpr.java v 1.8 src/java/main/org/jaxen/expr/DefaultExpr.java v 1.10 src/java/main/org/jaxen/expr/DefaultFilterExpr.java v 1.14 src/java/main/org/jaxen/expr/DefaultGreaterThanEqualExpr.java v 1.9 src/java/main/org/jaxen/expr/DefaultGreaterThanExpr.java v 1.9 src/java/main/org/jaxen/expr/DefaultLessThanEqualExpr.java v 1.9 src/java/main/org/jaxen/expr/DefaultLessThanExpr.java v 1.10 src/java/main/org/jaxen/expr/DefaultLiteralExpr.java v 1.7 src/java/main/org/jaxen/expr/DefaultLocationPath.java v 1.19 src/java/main/org/jaxen/expr/DefaultLogicalExpr.java v 1.5 src/java/main/org/jaxen/expr/DefaultMultiplicativeExpr.java v 1.6 src/java/main/org/jaxen/expr/DefaultNameStep.java v 1.35 src/java/main/org/jaxen/expr/DefaultNotEqualsExpr.java v 1.9 src/java/main/org/jaxen/expr/DefaultOrExpr.java v 1.10 src/java/main/org/jaxen/expr/DefaultPlusExpr.java v 1.9 src/java/main/org/jaxen/expr/DefaultPredicate.java v 1.8 src/java/main/org/jaxen/expr/DefaultProcessingInstructionNodeStep.java v 1.12 src/java/main/org/jaxen/expr/DefaultRelationalExpr.java v 1.11 src/java/main/org/jaxen/expr/DefaultRelativeLocationPath.java v 1.7 src/java/main/org/jaxen/expr/DefaultTextNodeStep.java v 1.9 src/java/main/org/jaxen/expr/DefaultUnaryExpr.java v 1.11 src/java/main/org/jaxen/expr/DefaultVariableReferenceExpr.java v 1.8 src/java/main/org/jaxen/expr/EqualityExpr.java v 1.2 src/java/main/org/jaxen/expr/Expr.java v 1.8 src/java/main/org/jaxen/expr/FilterExpr.java v 1.7 src/java/main/org/jaxen/expr/FunctionCallExpr.java v 1.5 src/java/main/org/jaxen/expr/LiteralExpr.java v 1.5 src/java/main/org/jaxen/expr/LogicalExpr.java v 1.2 src/java/main/org/jaxen/expr/MultiplicativeExpr.java v 1.2 src/java/main/org/jaxen/expr/Predicate.java v 1.8 src/java/main/org/jaxen/expr/PredicateSet.java v 1.16 src/java/main/org/jaxen/expr/ProcessingInstructionNodeStep.java v 1.2 src/java/main/org/jaxen/expr/RelationalExpr.java v 1.2 src/java/main/org/jaxen/expr/TextNodeStep.java v 1.2 src/java/main/org/jaxen/expr/VariableReferenceExpr.java v 1.5 src/java/main/org/jaxen/expr/Visitable.java v 1.2 Removing double spacing |