From: Wolfgang M. M. <wol...@us...> - 2004-04-14 12:17:33
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xupdate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20167/src/org/exist/xupdate Modified Files: Modification.java Append.java Log Message: Improved page organization in dom.dbx to fix known XUpdate issues. Index: Modification.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xupdate/Modification.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Modification.java 29 Jan 2004 15:06:45 -0000 1.19 --- Modification.java 14 Apr 2004 12:17:23 -0000 1.20 *************** *** 74,78 **** AST ast = parser.getAST(); - LOG.debug("generated AST: " + ast.toStringTree()); PathExpr expr = new PathExpr(context); --- 74,77 ---- Index: Append.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xupdate/Append.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Append.java 29 Jan 2004 15:06:45 -0000 1.11 --- Append.java 14 Apr 2004 12:17:23 -0000 1.12 *************** *** 13,17 **** /** ! * Append.java * * @author Wolfgang Meier --- 13,17 ---- /** ! * Implements an XUpate append statement. * * @author Wolfgang Meier *************** *** 26,29 **** --- 26,30 ---- super(broker, docs, selectStmt); } + /** * @see org.exist.xupdate.Modification#process() |