You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by mi...@apache.org on 2009/06/23 00:19:02 UTC

svn commit: r787424 [7/11] - in /lucene/java/trunk: ./ contrib/ contrib/analyzers/ contrib/analyzers/src/java/org/apache/lucene/analysis/br/ contrib/analyzers/src/java/org/apache/lucene/analysis/cjk/ contrib/analyzers/src/java/org/apache/lucene/analysi...

Propchange: lucene/java/trunk/contrib/xml-query-parser/docs/LuceneCoreQuery.dtd.html
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: lucene/java/trunk/contrib/xml-query-parser/docs/cctree.js
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/xml-query-parser/docs/cctree.js?rev=787424&r1=787423&r2=787424&view=diff
==============================================================================
--- lucene/java/trunk/contrib/xml-query-parser/docs/cctree.js (original)
+++ lucene/java/trunk/contrib/xml-query-parser/docs/cctree.js Mon Jun 22 22:18:56 2009
@@ -1,291 +1,291 @@
-/* This code is based on the one originally provided by
-   Geir Landrö in his dTree 2.05 package. You can get it
-   at : www.destroydrop.com/javascript/tree/.
-   
-   Therefore, the DTDDoc team considers that this code is 
-   Copyright (c) 2002-2003 Geir Landrö. Since the original
-   author didn't clearly forbids copies of this part, we
-   assume we're not doing anything wrong in porviding it
-   to you, in a modified or non-modified form.
-*/
-
-/*   
-   Geir Landrö : Orignal version, for dTree.
-   
-   Michael Koehrsen (10/2004) : Original modification to
-      allow DTDDoc to use this.
-   
-   Stefan Champailler (10/2004) : Make sure that the first
-      level of the tree is not shown (aesthetic stuff).
-*/
-
-//----------------------------------------------------------------
-// CCTree
-// Implements a DHTML tree with the following features:
-// - Supports a general directed graph as the underlying model.
-// - Supports a concept of an "always open" node.
-//----------------------------------------------------------------
-
-// Private class _CCTreeModelNode
-function _CCTreeModelNode(id,label,link,alwaysOpen,initiallyOpen)
-{
-    this.id = id;
-    this.label = label;
-    this.link = link;
-    this.alwaysOpen = alwaysOpen;
-    this.initiallyOpen = initiallyOpen;
-
-    // children and childLabels are parallel arrays.
-    // By default, childLabels[i] == children[i].label,
-    // but the link operation may optionally specify
-    // a child label that is specific to that parent-child 
-    // relationship.  
-    this.children = new Array();
-    this.childLabels = new Array();
-}
-
-_CCTreeModelNode.prototype.addChild = function(child,childLabel)
-{
-    this.children.push(child);
-    if (childLabel) this.childLabels.push(childLabel);
-    else this.childLabels.push(child.label);
-}
-
-// Private class _CCDisplayNode
-function _CCDisplayNode(modelNode,parentNode,treeId,label)
-{
-    this.modelNode = modelNode;
-    this.parentNode = parentNode;
-    this.treeId = treeId;
-
-    if (label) this.label = label;
-    else this.label = modelNode.label;
-
-    this.isLastChild = false;
-
-    if (this.parentNode) {
-        this.id = this.parentNode.id + ":" + this.modelNode.id;
-
-        /* Stefan Champailler : This little fix is clever ! Let's check the
-           following tree:
-           
-           alpha (1) -+-> beta (69)
-                      \-> beta (69).
-                      
-           This describes a tree with three nodes. Two of them are links
-           (beta). In that case, both the "beta" node have an id of "1:69".
-           So if one calls openNode on any of them, what happens is that only
-           one actually gets opened. To prevent that, I change the id of the
-           node on the fly to make sure there are only unique id's. 
-           
-           Please note this code is not very efficient (and yes, the right
-           number of slash will be added :)) */
-           
-        for( var k=0; k<parentNode.children.length; k++) {
-            if( parentNode.children[k].id == this.id)
-                this.id = this.id + "/";
-        }
-        
-        /* end of fix */
-    }
-    else this.id = this.modelNode.id;
-
-    CCTree.trees[this.treeId].allDisplayNodes[this.id] = this;
-
-    this.isOpen = this.modelNode.alwaysOpen || this.modelNode.initiallyOpen;
-    if (this.isOpen)
-    {
-        this.constructChildren();
-    }
-}
-
-_CCDisplayNode.prototype.toInnerHTML = function()
-{
-    var indent = "";
-
-    if (this.isOpen && !this.children) this.constructChildren();
-
-    if (this.isLastChild)
-    {
-        if (this.modelNode.alwaysOpen)
-            indent = this.imageTag("joinbottom.gif");
-        else if (this.isOpen)
-            indent = this.imageTag("minusbottom.gif","close")
-        else if (this.modelNode.children.length)
-            indent = this.imageTag("plusbottom.gif","open");
-        else
-            indent = this.imageTag("joinbottom.gif");
-    }
-    else
-    {
-        if (this.modelNode.alwaysOpen)
-            indent = this.imageTag("join.gif");
-        else if (this.isOpen)
-            indent = this.imageTag("minus.gif","close");
-        else if (this.modelNode.children.length)
-            indent = this.imageTag("plus.gif","open");
-        else
-            indent = this.imageTag("join.gif");
-    }
-
-    /* Construct a horizontal line of the tree */
-
-    var currAnc = this.parentNode;
-    while (currAnc)
-    {
-        if (currAnc.isLastChild)
-            indent = this.imageTag("empty.gif") + indent;
-        else
-            indent = this.imageTag("line.gif") + indent;
-        currAnc = currAnc.parentNode;
-    }
-
-    var result = indent + this.nodeContent();
-
-    /* Recurse deeper in the tree */
-    
-    if (this.isOpen && this.children)
-    {
-        var ix;
-        for (ix in this.children)
-        {
-            result += this.children[ix];
-        }
-    }
-
-    return result;
-}
-
-_CCDisplayNode.prototype.toString = function()
-{
-    return "<div class='cctree-node' id='" + this.divId() + "'>" + this.toInnerHTML() + "</div>";
-}
-
-_CCDisplayNode.prototype.constructChildren = function()
-{
-    if (this.modelNode.children.length > 0)
-    {
-        this.children = new Array();
-        var ix;
-        for (ix in this.modelNode.children)
-        {
-            this.children.push(new _CCDisplayNode(this.modelNode.children[ix],
-                                                  this,
-                                                  this.treeId,
-                                                  this.modelNode.childLabels[ix]));
-        }
-        this.children[this.children.length-1].isLastChild = true;
-    }
-}
-
-_CCDisplayNode.prototype.imageTag = function(imgName,action)
-{
-    var href =  null;
-
-    if (action == "open") href="CCTree.trees[" + this.treeId + "].openNode('" + this.id + "')";
-    if (action == "close") href="CCTree.trees[" + this.treeId + "].closeNode('" + this.id +  "')";
-
-    if (href) return "<a href=\"javascript:" + href + "\"><img src='img/" + imgName + "' border='0'></a>";
-    else return "<img src='img/" + imgName + "'>";
-}
-
-_CCDisplayNode.prototype.divId = function()
-{
-    return "CCTree_" + this.treeId + "_" + this.id;
-}
-
-_CCDisplayNode.prototype.nodeContent = function()
-{
-    var target = "";
-
-    if (CCTree.trees[this.treeId].linkTarget) target = " target='" + CCTree.trees[this.treeId].linkTarget + "'";
-
-    if (this.modelNode.link)
-        return "<a href='" + this.modelNode.link + "'" + target + ">" + this.label + "</a>";
-    else return this.label;
-}
-
-_CCDisplayNode.prototype.open = function()
-{
-    this.isOpen = true;
-    // document.all is known to work on IE but not on Konqueror or Mozilla.
-    // So I've changed it to something more portable.
-    
-    //document.all[this.divId()].innerHTML = this.toInnerHTML();
-    document.getElementById(this.divId()).innerHTML = this.toInnerHTML();
-}
-
-_CCDisplayNode.prototype.close = function()
-{
-    this.isOpen = false;
-    //document.all[this.divId()].innerHTML = this.toInnerHTML();
-    document.getElementById(this.divId()).innerHTML = this.toInnerHTML();
-}
-
-// Public class CCTree
-CCTree = function(linkTarget)
-{
-    // may have multiple roots:
-    this.rootModelNodes = new Array();
-    this.allModelNodes = new Array();
-    this.treeId = CCTree.trees.length;
-    this.allDisplayNodes = new Array(); // indexed by id
-    this.linkTarget = linkTarget;
-    CCTree.trees.push(this);
-}
-
-// static variables
-CCTree.trees = new Array();
-
-CCTree.prototype.addRootNode = function (id,label,link,alwaysOpen,initiallyOpen)
-{
-    this.rootModelNodes[id] = this.addNode(id,label,link,alwaysOpen,initiallyOpen);
-}
-
-CCTree.prototype.addNode = function(id,label,link,alwaysOpen,initiallyOpen)
-{
-    var newNode = new _CCTreeModelNode(id,label,link,alwaysOpen,initiallyOpen);
-    this.allModelNodes[id] = newNode;
-    return newNode;
-}
-
-CCTree.prototype.linkNodes = function(parentId,childId,childLabel)
-{
-    this.allModelNodes[parentId].addChild(this.allModelNodes[childId],childLabel);
-}
-
-CCTree.prototype.constructDisplayNodes = function()
-{
-    this.rootDisplayNodes = new Array();
-    var ix;
-    for (ix in this.rootModelNodes)
-    {
-        this.rootDisplayNodes.push(new _CCDisplayNode(this.rootModelNodes[ix],null,this.treeId));
-    }
-    this.rootDisplayNodes[this.rootDisplayNodes.length-1].isLastChild = true;
-}
-
-CCTree.prototype.openNode = function(displayNodeId)
-{
-    this.allDisplayNodes[displayNodeId].open();
-}
-
-CCTree.prototype.closeNode = function(displayNodeId) 
-{
-    this.allDisplayNodes[displayNodeId].close();
-}
-
-CCTree.prototype.toString = function()
-{
-    this.constructDisplayNodes();
-
-    var ix;
-    var result = "";
-
-    for (ix in this.rootDisplayNodes)
-    {
-        result += this.rootDisplayNodes[ix].toString();
-    }
-
-    return result;
-}
+/* This code is based on the one originally provided by
+   Geir Landrö in his dTree 2.05 package. You can get it
+   at : www.destroydrop.com/javascript/tree/.
+   
+   Therefore, the DTDDoc team considers that this code is 
+   Copyright (c) 2002-2003 Geir Landrö. Since the original
+   author didn't clearly forbids copies of this part, we
+   assume we're not doing anything wrong in porviding it
+   to you, in a modified or non-modified form.
+*/
+
+/*   
+   Geir Landrö : Orignal version, for dTree.
+   
+   Michael Koehrsen (10/2004) : Original modification to
+      allow DTDDoc to use this.
+   
+   Stefan Champailler (10/2004) : Make sure that the first
+      level of the tree is not shown (aesthetic stuff).
+*/
+
+//----------------------------------------------------------------
+// CCTree
+// Implements a DHTML tree with the following features:
+// - Supports a general directed graph as the underlying model.
+// - Supports a concept of an "always open" node.
+//----------------------------------------------------------------
+
+// Private class _CCTreeModelNode
+function _CCTreeModelNode(id,label,link,alwaysOpen,initiallyOpen)
+{
+    this.id = id;
+    this.label = label;
+    this.link = link;
+    this.alwaysOpen = alwaysOpen;
+    this.initiallyOpen = initiallyOpen;
+
+    // children and childLabels are parallel arrays.
+    // By default, childLabels[i] == children[i].label,
+    // but the link operation may optionally specify
+    // a child label that is specific to that parent-child 
+    // relationship.  
+    this.children = new Array();
+    this.childLabels = new Array();
+}
+
+_CCTreeModelNode.prototype.addChild = function(child,childLabel)
+{
+    this.children.push(child);
+    if (childLabel) this.childLabels.push(childLabel);
+    else this.childLabels.push(child.label);
+}
+
+// Private class _CCDisplayNode
+function _CCDisplayNode(modelNode,parentNode,treeId,label)
+{
+    this.modelNode = modelNode;
+    this.parentNode = parentNode;
+    this.treeId = treeId;
+
+    if (label) this.label = label;
+    else this.label = modelNode.label;
+
+    this.isLastChild = false;
+
+    if (this.parentNode) {
+        this.id = this.parentNode.id + ":" + this.modelNode.id;
+
+        /* Stefan Champailler : This little fix is clever ! Let's check the
+           following tree:
+           
+           alpha (1) -+-> beta (69)
+                      \-> beta (69).
+                      
+           This describes a tree with three nodes. Two of them are links
+           (beta). In that case, both the "beta" node have an id of "1:69".
+           So if one calls openNode on any of them, what happens is that only
+           one actually gets opened. To prevent that, I change the id of the
+           node on the fly to make sure there are only unique id's. 
+           
+           Please note this code is not very efficient (and yes, the right
+           number of slash will be added :)) */
+           
+        for( var k=0; k<parentNode.children.length; k++) {
+            if( parentNode.children[k].id == this.id)
+                this.id = this.id + "/";
+        }
+        
+        /* end of fix */
+    }
+    else this.id = this.modelNode.id;
+
+    CCTree.trees[this.treeId].allDisplayNodes[this.id] = this;
+
+    this.isOpen = this.modelNode.alwaysOpen || this.modelNode.initiallyOpen;
+    if (this.isOpen)
+    {
+        this.constructChildren();
+    }
+}
+
+_CCDisplayNode.prototype.toInnerHTML = function()
+{
+    var indent = "";
+
+    if (this.isOpen && !this.children) this.constructChildren();
+
+    if (this.isLastChild)
+    {
+        if (this.modelNode.alwaysOpen)
+            indent = this.imageTag("joinbottom.gif");
+        else if (this.isOpen)
+            indent = this.imageTag("minusbottom.gif","close")
+        else if (this.modelNode.children.length)
+            indent = this.imageTag("plusbottom.gif","open");
+        else
+            indent = this.imageTag("joinbottom.gif");
+    }
+    else
+    {
+        if (this.modelNode.alwaysOpen)
+            indent = this.imageTag("join.gif");
+        else if (this.isOpen)
+            indent = this.imageTag("minus.gif","close");
+        else if (this.modelNode.children.length)
+            indent = this.imageTag("plus.gif","open");
+        else
+            indent = this.imageTag("join.gif");
+    }
+
+    /* Construct a horizontal line of the tree */
+
+    var currAnc = this.parentNode;
+    while (currAnc)
+    {
+        if (currAnc.isLastChild)
+            indent = this.imageTag("empty.gif") + indent;
+        else
+            indent = this.imageTag("line.gif") + indent;
+        currAnc = currAnc.parentNode;
+    }
+
+    var result = indent + this.nodeContent();
+
+    /* Recurse deeper in the tree */
+    
+    if (this.isOpen && this.children)
+    {
+        var ix;
+        for (ix in this.children)
+        {
+            result += this.children[ix];
+        }
+    }
+
+    return result;
+}
+
+_CCDisplayNode.prototype.toString = function()
+{
+    return "<div class='cctree-node' id='" + this.divId() + "'>" + this.toInnerHTML() + "</div>";
+}
+
+_CCDisplayNode.prototype.constructChildren = function()
+{
+    if (this.modelNode.children.length > 0)
+    {
+        this.children = new Array();
+        var ix;
+        for (ix in this.modelNode.children)
+        {
+            this.children.push(new _CCDisplayNode(this.modelNode.children[ix],
+                                                  this,
+                                                  this.treeId,
+                                                  this.modelNode.childLabels[ix]));
+        }
+        this.children[this.children.length-1].isLastChild = true;
+    }
+}
+
+_CCDisplayNode.prototype.imageTag = function(imgName,action)
+{
+    var href =  null;
+
+    if (action == "open") href="CCTree.trees[" + this.treeId + "].openNode('" + this.id + "')";
+    if (action == "close") href="CCTree.trees[" + this.treeId + "].closeNode('" + this.id +  "')";
+
+    if (href) return "<a href=\"javascript:" + href + "\"><img src='img/" + imgName + "' border='0'></a>";
+    else return "<img src='img/" + imgName + "'>";
+}
+
+_CCDisplayNode.prototype.divId = function()
+{
+    return "CCTree_" + this.treeId + "_" + this.id;
+}
+
+_CCDisplayNode.prototype.nodeContent = function()
+{
+    var target = "";
+
+    if (CCTree.trees[this.treeId].linkTarget) target = " target='" + CCTree.trees[this.treeId].linkTarget + "'";
+
+    if (this.modelNode.link)
+        return "<a href='" + this.modelNode.link + "'" + target + ">" + this.label + "</a>";
+    else return this.label;
+}
+
+_CCDisplayNode.prototype.open = function()
+{
+    this.isOpen = true;
+    // document.all is known to work on IE but not on Konqueror or Mozilla.
+    // So I've changed it to something more portable.
+    
+    //document.all[this.divId()].innerHTML = this.toInnerHTML();
+    document.getElementById(this.divId()).innerHTML = this.toInnerHTML();
+}
+
+_CCDisplayNode.prototype.close = function()
+{
+    this.isOpen = false;
+    //document.all[this.divId()].innerHTML = this.toInnerHTML();
+    document.getElementById(this.divId()).innerHTML = this.toInnerHTML();
+}
+
+// Public class CCTree
+CCTree = function(linkTarget)
+{
+    // may have multiple roots:
+    this.rootModelNodes = new Array();
+    this.allModelNodes = new Array();
+    this.treeId = CCTree.trees.length;
+    this.allDisplayNodes = new Array(); // indexed by id
+    this.linkTarget = linkTarget;
+    CCTree.trees.push(this);
+}
+
+// static variables
+CCTree.trees = new Array();
+
+CCTree.prototype.addRootNode = function (id,label,link,alwaysOpen,initiallyOpen)
+{
+    this.rootModelNodes[id] = this.addNode(id,label,link,alwaysOpen,initiallyOpen);
+}
+
+CCTree.prototype.addNode = function(id,label,link,alwaysOpen,initiallyOpen)
+{
+    var newNode = new _CCTreeModelNode(id,label,link,alwaysOpen,initiallyOpen);
+    this.allModelNodes[id] = newNode;
+    return newNode;
+}
+
+CCTree.prototype.linkNodes = function(parentId,childId,childLabel)
+{
+    this.allModelNodes[parentId].addChild(this.allModelNodes[childId],childLabel);
+}
+
+CCTree.prototype.constructDisplayNodes = function()
+{
+    this.rootDisplayNodes = new Array();
+    var ix;
+    for (ix in this.rootModelNodes)
+    {
+        this.rootDisplayNodes.push(new _CCDisplayNode(this.rootModelNodes[ix],null,this.treeId));
+    }
+    this.rootDisplayNodes[this.rootDisplayNodes.length-1].isLastChild = true;
+}
+
+CCTree.prototype.openNode = function(displayNodeId)
+{
+    this.allDisplayNodes[displayNodeId].open();
+}
+
+CCTree.prototype.closeNode = function(displayNodeId) 
+{
+    this.allDisplayNodes[displayNodeId].close();
+}
+
+CCTree.prototype.toString = function()
+{
+    this.constructDisplayNodes();
+
+    var ix;
+    var result = "";
+
+    for (ix in this.rootDisplayNodes)
+    {
+        result += this.rootDisplayNodes[ix].toString();
+    }
+
+    return result;
+}

Propchange: lucene/java/trunk/contrib/xml-query-parser/docs/cctree.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lucene/java/trunk/contrib/xml-query-parser/docs/dtreeStyle.css
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: lucene/java/trunk/contrib/xml-query-parser/docs/elementsIndex.html
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/xml-query-parser/docs/elementsIndex.html?rev=787424&r1=787423&r2=787424&view=diff
==============================================================================
--- lucene/java/trunk/contrib/xml-query-parser/docs/elementsIndex.html (original)
+++ lucene/java/trunk/contrib/xml-query-parser/docs/elementsIndex.html Mon Jun 22 22:18:56 2009
@@ -1,60 +1,60 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html><head><title>elements' index</title>
-<meta http-equiv='CONTENT-TYPE' content='text/html' />
-<link rel='StyleSheet' href='DTDDocStyle.css' type='text/css' media='screen' />
-</head><body>
-<p class='DTDSource'>Elements - Entities - Source | <a href='intro.html'>Intro</a> - <a href='elementsIndex.html'>Index</a><br /><a href='index.html' target='_top'>FRAMES</a>&nbsp;/&nbsp;<a href='elementsIndex.html' target='_top'>NO FRAMES</a></p><a href='#B'>B</a> <a href='#C'>C</a> <a href='#D'>D</a> <a href='#E'>E</a> <a href='#F'>F</a> <a href='#I'>I</a> <a href='#L'>L</a> <a href='#M'>M</a> <a href='#Q'>Q</a> <a href='#R'>R</a> <a href='#S'>S</a> <a href='#T'>T</a> <a href='#U'>U</a> <br />
-<a name='B'></a>
-<h2>B</h2>
-BooleanFilter - <a href='LuceneContribQuery.dtd.html#BooleanFilter'>Contrib Lucene</a><br />
-BooleanQuery - <a href='LuceneContribQuery.dtd.html#BooleanQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#BooleanQuery'>Core Lucene</a><br />
-BoostingQuery - <a href='LuceneContribQuery.dtd.html#BoostingQuery'>Contrib Lucene</a><br />
-BoostQuery - <a href='LuceneContribQuery.dtd.html#BoostQuery'>Contrib Lucene</a><br />
-<a name='C'></a>
-<h2>C</h2>
-CachedFilter - <a href='LuceneContribQuery.dtd.html#CachedFilter'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#CachedFilter'>Core Lucene</a><br />
-Clause - <a href='LuceneContribQuery.dtd.html#Clause'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Clause'>Core Lucene</a><br />
-ConstantScoreQuery - <a href='LuceneContribQuery.dtd.html#ConstantScoreQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#ConstantScoreQuery'>Core Lucene</a><br />
-<a name='D'></a>
-<h2>D</h2>
-DuplicateFilter - <a href='LuceneContribQuery.dtd.html#DuplicateFilter'>Contrib Lucene</a><br />
-<a name='E'></a>
-<h2>E</h2>
-Exclude - <a href='LuceneContribQuery.dtd.html#Exclude'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Exclude'>Core Lucene</a><br />
-<a name='F'></a>
-<h2>F</h2>
-Field - <a href='LuceneContribQuery.dtd.html#Field'>Contrib Lucene</a><br />
-Filter - <a href='LuceneContribQuery.dtd.html#Filter'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Filter'>Core Lucene</a><br />
-FilteredQuery - <a href='LuceneContribQuery.dtd.html#FilteredQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#FilteredQuery'>Core Lucene</a><br />
-FuzzyLikeThisQuery - <a href='LuceneContribQuery.dtd.html#FuzzyLikeThisQuery'>Contrib Lucene</a><br />
-<a name='I'></a>
-<h2>I</h2>
-Include - <a href='LuceneContribQuery.dtd.html#Include'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Include'>Core Lucene</a><br />
-<a name='L'></a>
-<h2>L</h2>
-LikeThisQuery - <a href='LuceneContribQuery.dtd.html#LikeThisQuery'>Contrib Lucene</a><br />
-<a name='M'></a>
-<h2>M</h2>
-MatchAllDocsQuery - <a href='LuceneContribQuery.dtd.html#MatchAllDocsQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#MatchAllDocsQuery'>Core Lucene</a><br />
-<a name='Q'></a>
-<h2>Q</h2>
-Query - <a href='LuceneContribQuery.dtd.html#Query'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Query'>Core Lucene</a><br />
-<a name='R'></a>
-<h2>R</h2>
-RangeFilter - <a href='LuceneContribQuery.dtd.html#RangeFilter'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#RangeFilter'>Core Lucene</a><br />
-<a name='S'></a>
-<h2>S</h2>
-SpanFirst - <a href='LuceneContribQuery.dtd.html#SpanFirst'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanFirst'>Core Lucene</a><br />
-SpanNear - <a href='LuceneContribQuery.dtd.html#SpanNear'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanNear'>Core Lucene</a><br />
-SpanNot - <a href='LuceneContribQuery.dtd.html#SpanNot'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanNot'>Core Lucene</a><br />
-SpanOr - <a href='LuceneContribQuery.dtd.html#SpanOr'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanOr'>Core Lucene</a><br />
-SpanOrTerms - <a href='LuceneContribQuery.dtd.html#SpanOrTerms'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanOrTerms'>Core Lucene</a><br />
-SpanTerm - <a href='LuceneContribQuery.dtd.html#SpanTerm'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanTerm'>Core Lucene</a><br />
-<a name='T'></a>
-<h2>T</h2>
-TermQuery - <a href='LuceneContribQuery.dtd.html#TermQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#TermQuery'>Core Lucene</a><br />
-TermsFilter - <a href='LuceneContribQuery.dtd.html#TermsFilter'>Contrib Lucene</a><br />
-TermsQuery - <a href='LuceneContribQuery.dtd.html#TermsQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#TermsQuery'>Core Lucene</a><br />
-<a name='U'></a>
-<h2>U</h2>
-UserQuery - <a href='LuceneContribQuery.dtd.html#UserQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#UserQuery'>Core Lucene</a></body></html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html><head><title>elements' index</title>
+<meta http-equiv='CONTENT-TYPE' content='text/html' />
+<link rel='StyleSheet' href='DTDDocStyle.css' type='text/css' media='screen' />
+</head><body>
+<p class='DTDSource'>Elements - Entities - Source | <a href='intro.html'>Intro</a> - <a href='elementsIndex.html'>Index</a><br /><a href='index.html' target='_top'>FRAMES</a>&nbsp;/&nbsp;<a href='elementsIndex.html' target='_top'>NO FRAMES</a></p><a href='#B'>B</a> <a href='#C'>C</a> <a href='#D'>D</a> <a href='#E'>E</a> <a href='#F'>F</a> <a href='#I'>I</a> <a href='#L'>L</a> <a href='#M'>M</a> <a href='#Q'>Q</a> <a href='#R'>R</a> <a href='#S'>S</a> <a href='#T'>T</a> <a href='#U'>U</a> <br />
+<a name='B'></a>
+<h2>B</h2>
+BooleanFilter - <a href='LuceneContribQuery.dtd.html#BooleanFilter'>Contrib Lucene</a><br />
+BooleanQuery - <a href='LuceneContribQuery.dtd.html#BooleanQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#BooleanQuery'>Core Lucene</a><br />
+BoostingQuery - <a href='LuceneContribQuery.dtd.html#BoostingQuery'>Contrib Lucene</a><br />
+BoostQuery - <a href='LuceneContribQuery.dtd.html#BoostQuery'>Contrib Lucene</a><br />
+<a name='C'></a>
+<h2>C</h2>
+CachedFilter - <a href='LuceneContribQuery.dtd.html#CachedFilter'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#CachedFilter'>Core Lucene</a><br />
+Clause - <a href='LuceneContribQuery.dtd.html#Clause'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Clause'>Core Lucene</a><br />
+ConstantScoreQuery - <a href='LuceneContribQuery.dtd.html#ConstantScoreQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#ConstantScoreQuery'>Core Lucene</a><br />
+<a name='D'></a>
+<h2>D</h2>
+DuplicateFilter - <a href='LuceneContribQuery.dtd.html#DuplicateFilter'>Contrib Lucene</a><br />
+<a name='E'></a>
+<h2>E</h2>
+Exclude - <a href='LuceneContribQuery.dtd.html#Exclude'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Exclude'>Core Lucene</a><br />
+<a name='F'></a>
+<h2>F</h2>
+Field - <a href='LuceneContribQuery.dtd.html#Field'>Contrib Lucene</a><br />
+Filter - <a href='LuceneContribQuery.dtd.html#Filter'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Filter'>Core Lucene</a><br />
+FilteredQuery - <a href='LuceneContribQuery.dtd.html#FilteredQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#FilteredQuery'>Core Lucene</a><br />
+FuzzyLikeThisQuery - <a href='LuceneContribQuery.dtd.html#FuzzyLikeThisQuery'>Contrib Lucene</a><br />
+<a name='I'></a>
+<h2>I</h2>
+Include - <a href='LuceneContribQuery.dtd.html#Include'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Include'>Core Lucene</a><br />
+<a name='L'></a>
+<h2>L</h2>
+LikeThisQuery - <a href='LuceneContribQuery.dtd.html#LikeThisQuery'>Contrib Lucene</a><br />
+<a name='M'></a>
+<h2>M</h2>
+MatchAllDocsQuery - <a href='LuceneContribQuery.dtd.html#MatchAllDocsQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#MatchAllDocsQuery'>Core Lucene</a><br />
+<a name='Q'></a>
+<h2>Q</h2>
+Query - <a href='LuceneContribQuery.dtd.html#Query'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#Query'>Core Lucene</a><br />
+<a name='R'></a>
+<h2>R</h2>
+RangeFilter - <a href='LuceneContribQuery.dtd.html#RangeFilter'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#RangeFilter'>Core Lucene</a><br />
+<a name='S'></a>
+<h2>S</h2>
+SpanFirst - <a href='LuceneContribQuery.dtd.html#SpanFirst'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanFirst'>Core Lucene</a><br />
+SpanNear - <a href='LuceneContribQuery.dtd.html#SpanNear'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanNear'>Core Lucene</a><br />
+SpanNot - <a href='LuceneContribQuery.dtd.html#SpanNot'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanNot'>Core Lucene</a><br />
+SpanOr - <a href='LuceneContribQuery.dtd.html#SpanOr'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanOr'>Core Lucene</a><br />
+SpanOrTerms - <a href='LuceneContribQuery.dtd.html#SpanOrTerms'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanOrTerms'>Core Lucene</a><br />
+SpanTerm - <a href='LuceneContribQuery.dtd.html#SpanTerm'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#SpanTerm'>Core Lucene</a><br />
+<a name='T'></a>
+<h2>T</h2>
+TermQuery - <a href='LuceneContribQuery.dtd.html#TermQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#TermQuery'>Core Lucene</a><br />
+TermsFilter - <a href='LuceneContribQuery.dtd.html#TermsFilter'>Contrib Lucene</a><br />
+TermsQuery - <a href='LuceneContribQuery.dtd.html#TermsQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#TermsQuery'>Core Lucene</a><br />
+<a name='U'></a>
+<h2>U</h2>
+UserQuery - <a href='LuceneContribQuery.dtd.html#UserQuery'>Contrib Lucene</a>, <a href='LuceneCoreQuery.dtd.html#UserQuery'>Core Lucene</a></body></html>

Propchange: lucene/java/trunk/contrib/xml-query-parser/docs/elementsIndex.html
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: lucene/java/trunk/contrib/xml-query-parser/docs/intro.html
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/xml-query-parser/docs/intro.html?rev=787424&r1=787423&r2=787424&view=diff
==============================================================================
--- lucene/java/trunk/contrib/xml-query-parser/docs/intro.html (original)
+++ lucene/java/trunk/contrib/xml-query-parser/docs/intro.html Mon Jun 22 22:18:56 2009
@@ -1,12 +1,12 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html><head><title>DTDDoc for Lucene XML Query syntax</title>
-<link rel='StyleSheet' href='DTDDocStyle.css' type='text/css' media='screen' />
-</head><body>
-<p class='DTDSource'>Elements - Entities - Source | <a href='intro.html'>Intro</a> - <a href='elementsIndex.html'>Index</a><br /><a href='index.html' target='_top'>FRAMES</a>&nbsp;/&nbsp;<a href='intro.html' target='_top'>NO FRAMES</a></p><h1>Lucene XML Query syntax</h1>
-<table border='1' cellspacing='0'>
-<tr><td><code><a href='LuceneContribQuery.dtd.html'>LuceneContribQuery.dtd</a></code></td><td>Contrib Lucene</td></tr>
-<tr><td><code><a href='LuceneCoreQuery.dtd.html'>LuceneCoreQuery.dtd</a></code></td><td>Core Lucene</td></tr>
-</table>
-<p>This documentation was generated by <a href='http://dtddoc.sourceforge.net'>DTDDoc</a> 1.1.0 (2007-02-03) !</p>
-<p>Use the left menu to navigate through the DTDs !</p>
-</body></html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html><head><title>DTDDoc for Lucene XML Query syntax</title>
+<link rel='StyleSheet' href='DTDDocStyle.css' type='text/css' media='screen' />
+</head><body>
+<p class='DTDSource'>Elements - Entities - Source | <a href='intro.html'>Intro</a> - <a href='elementsIndex.html'>Index</a><br /><a href='index.html' target='_top'>FRAMES</a>&nbsp;/&nbsp;<a href='intro.html' target='_top'>NO FRAMES</a></p><h1>Lucene XML Query syntax</h1>
+<table border='1' cellspacing='0'>
+<tr><td><code><a href='LuceneContribQuery.dtd.html'>LuceneContribQuery.dtd</a></code></td><td>Contrib Lucene</td></tr>
+<tr><td><code><a href='LuceneCoreQuery.dtd.html'>LuceneCoreQuery.dtd</a></code></td><td>Core Lucene</td></tr>
+</table>
+<p>This documentation was generated by <a href='http://dtddoc.sourceforge.net'>DTDDoc</a> 1.1.0 (2007-02-03) !</p>
+<p>Use the left menu to navigate through the DTDs !</p>
+</body></html>

Propchange: lucene/java/trunk/contrib/xml-query-parser/docs/intro.html
------------------------------------------------------------------------------
    svn:eol-style = native