You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2007/05/28 03:51:38 UTC

svn commit: r542079 [3/4] - in /tapestry/tapestry4/trunk/src/site: ./ resources/jsdoc/ resources/jsdoc/files/ resources/jsdoc/files/widget/ resources/jsdoc/index/ resources/jsdoc/javascript/ resources/jsdoc/search/ resources/jsdoc/styles/

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/main.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/main.js?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/main.js (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/main.js Sun May 27 18:51:35 2007
@@ -0,0 +1,801 @@
+// This file is part of Natural Docs, which is Copyright (C) 2003-2005 Greg Valure
+// Natural Docs is licensed under the GPL
+
+
+//
+//  Browser Styles
+// ____________________________________________________________________________
+
+var agt=navigator.userAgent.toLowerCase();
+var browserType;
+var browserVer;
+
+if (agt.indexOf("opera") != -1)
+    {
+    browserType = "Opera";
+
+    if (agt.indexOf("opera 7") != -1 || agt.indexOf("opera/7") != -1)
+        {  browserVer = "Opera7";  }
+    else if (agt.indexOf("opera 8") != -1 || agt.indexOf("opera/8") != -1)
+        {  browserVer = "Opera8";  }
+    else if (agt.indexOf("opera 9") != -1 || agt.indexOf("opera/9") != -1)
+        {  browserVer = "Opera9";  }
+    }
+
+else if (agt.indexOf("khtml") != -1 || agt.indexOf("konq") != -1 || agt.indexOf("safari") != -1 || agt.indexOf("applewebkit") != -1)
+    {
+    browserType = "KHTML";
+    }
+
+else if (agt.indexOf("msie") != -1)
+    {
+    browserType = "IE";
+
+    if (agt.indexOf("msie 6") != -1)
+        {  browserVer = "IE6";  }
+    else if (agt.indexOf("msie 7") != -1)
+        {  browserVer = "IE7";  }
+    }
+
+else if (agt.indexOf("gecko") != -1)
+    {
+    browserType = "Firefox";
+
+    if (agt.indexOf("rv:1.7") != -1)
+        {  browserVer = "Firefox1";  }
+    else if (agt.indexOf("rv:1.8)") != -1 || agt.indexOf("rv:1.8.0") != -1)
+        {  browserVer = "Firefox15";  }
+    else if (agt.indexOf("rv:1.8.1") != -1)
+        {  browserVer = "Firefox2";  }
+    }
+
+
+//
+//  Support Functions
+// ____________________________________________________________________________
+
+
+function GetXPosition(item)
+    {
+    var position = 0;
+
+    if (item.offsetWidth != null)
+        {
+        while (item != document.body && item != null)
+            {
+            position += item.offsetLeft;
+            item = item.offsetParent;
+            };
+        };
+
+    return position;
+    };
+
+
+function GetYPosition(item)
+    {
+    var position = 0;
+
+    if (item.offsetWidth != null)
+        {
+        while (item != document.body && item != null)
+            {
+            position += item.offsetTop;
+            item = item.offsetParent;
+            };
+        };
+
+    return position;
+    };
+
+
+function MoveToPosition(item, x, y)
+    {
+    // Opera 5 chokes on the px extension, so it can use the Microsoft one instead.
+
+    if (item.style.left != null)
+        {
+        item.style.left = x + "px";
+        item.style.top = y + "px";
+        }
+    else if (item.style.pixelLeft != null)
+        {
+        item.style.pixelLeft = x;
+        item.style.pixelTop = y;
+        };
+    };
+
+
+//
+//  Menu
+// ____________________________________________________________________________
+
+
+function ToggleMenu(id)
+    {
+    if (!window.document.getElementById)
+        {  return;  };
+
+    var display = window.document.getElementById(id).style.display;
+
+    if (display == "none")
+        {  display = "block";  }
+    else
+        {  display = "none";  }
+
+    window.document.getElementById(id).style.display = display;
+    }
+
+
+//
+//  Tooltips
+// ____________________________________________________________________________
+
+
+var tooltipTimer = 0;
+
+function ShowTip(event, tooltipID, linkID)
+    {
+    if (tooltipTimer)
+        {  clearTimeout(tooltipTimer);  };
+
+    var docX = event.clientX + window.pageXOffset;
+    var docY = event.clientY + window.pageYOffset;
+
+    var showCommand = "ReallyShowTip('" + tooltipID + "', '" + linkID + "', " + docX + ", " + docY + ")";
+
+    tooltipTimer = setTimeout(showCommand, 1000);
+    }
+
+function ReallyShowTip(tooltipID, linkID, docX, docY)
+    {
+    tooltipTimer = 0;
+
+    var tooltip;
+    var link;
+
+    if (document.getElementById)
+        {
+        tooltip = document.getElementById(tooltipID);
+        link = document.getElementById(linkID);
+        }
+/*    else if (document.all)
+        {
+        tooltip = eval("document.all['" + tooltipID + "']");
+        link = eval("document.all['" + linkID + "']");
+        }
+*/
+    if (tooltip)
+        {
+        var left = GetXPosition(link);
+        var top = GetYPosition(link);
+        top += link.offsetHeight;
+
+
+        // The fallback method is to use the mouse X and Y relative to the document.  We use a separate if and test if its a number
+        // in case some browser snuck through the above if statement but didn't support everything.
+
+        if (!isFinite(top) || top == 0)
+            {
+            left = docX;
+            top = docY;
+            }
+
+        // Some spacing to get it out from under the cursor.
+
+        top += 10;
+
+        // Make sure the tooltip doesnt get smushed by being too close to the edge, or in some browsers, go off the edge of the
+        // page.  We do it here because Konqueror does get offsetWidth right even if it doesnt get the positioning right.
+
+        if (tooltip.offsetWidth != null)
+            {
+            var width = tooltip.offsetWidth;
+            var docWidth = document.body.clientWidth;
+
+            if (left + width > docWidth)
+                {  left = docWidth - width - 1;  }
+
+            // If there's a horizontal scroll bar we could go past zero because it's using the page width, not the window width.
+            if (left < 0)
+                {  left = 0;  };
+            }
+
+        MoveToPosition(tooltip, left, top);
+        tooltip.style.visibility = "visible";
+        }
+    }
+
+function HideTip(tooltipID)
+    {
+    if (tooltipTimer)
+        {
+        clearTimeout(tooltipTimer);
+        tooltipTimer = 0;
+        }
+
+    var tooltip;
+
+    if (document.getElementById)
+        {  tooltip = document.getElementById(tooltipID); }
+    else if (document.all)
+        {  tooltip = eval("document.all['" + tooltipID + "']");  }
+
+    if (tooltip)
+        {  tooltip.style.visibility = "hidden";  }
+    }
+
+
+//
+//  Blockquote fix for IE
+// ____________________________________________________________________________
+
+
+function NDOnLoad()
+    {
+    if (browserType == "IE")
+        {
+        var scrollboxes = document.getElementsByTagName('blockquote');
+
+        if (scrollboxes.item(0))
+            {
+            NDDoResize();
+            window.onresize=NDOnResize;
+            };
+        };
+    };
+
+
+var resizeTimer = 0;
+
+function NDOnResize()
+    {
+    if (resizeTimer != 0)
+        {  clearTimeout(resizeTimer);  };
+
+    resizeTimer = setTimeout(NDDoResize, 250);
+    };
+
+
+function NDDoResize()
+    {
+    var scrollboxes = document.getElementsByTagName('blockquote');
+
+    var i;
+    var item;
+
+    i = 0;
+    while (item = scrollboxes.item(i))
+        {
+        item.style.width = 100;
+        i++;
+        };
+
+    i = 0;
+    while (item = scrollboxes.item(i))
+        {
+        item.style.width = item.parentNode.offsetWidth;
+        i++;
+        };
+
+    clearTimeout(resizeTimer);
+    resizeTimer = 0;
+    }
+
+
+
+/* ________________________________________________________________________________________________________
+
+    Class: SearchPanel
+    ________________________________________________________________________________________________________
+
+    A class handling everything associated with the search panel.
+
+    Parameters:
+
+        name - The name of the global variable that will be storing this instance.  Is needed to be able to set timeouts.
+        mode - The mode the search is going to work in.  Pass <NaturalDocs::Builder::Base->CommandLineOption()>, so the
+                   value will be something like "HTML" or "FramedHTML".
+
+    ________________________________________________________________________________________________________
+*/
+
+
+function SearchPanel(name, mode, resultsPath)
+    {
+    if (!name || !mode || !resultsPath)
+        {  alert("Incorrect parameters to SearchPanel.");  };
+
+
+    // Group: Variables
+    // ________________________________________________________________________
+
+    /*
+        var: name
+        The name of the global variable that will be storing this instance of the class.
+    */
+    this.name = name;
+
+    /*
+        var: mode
+        The mode the search is going to work in, such as "HTML" or "FramedHTML".
+    */
+    this.mode = mode;
+
+    /*
+        var: resultsPath
+        The relative path from the current HTML page to the results page directory.
+    */
+    this.resultsPath = resultsPath;
+
+    /*
+        var: keyTimeout
+        The timeout used between a keystroke and when a search is performed.
+    */
+    this.keyTimeout = 0;
+
+    /*
+        var: keyTimeoutLength
+        The length of <keyTimeout> in thousandths of a second.
+    */
+    this.keyTimeoutLength = 500;
+
+    /*
+        var: lastSearchValue
+        The last search string executed, or an empty string if none.
+    */
+    this.lastSearchValue = "";
+
+    /*
+        var: lastResultsPage
+        The last results page.  The value is only relevant if <lastSearchValue> is set.
+    */
+    this.lastResultsPage = "";
+
+    /*
+        var: deactivateTimeout
+
+        The timeout used between when a control is deactivated and when the entire panel is deactivated.  Is necessary
+        because a control may be deactivated in favor of another control in the same panel, in which case it should stay
+        active.
+    */
+    this.deactivateTimout = 0;
+
+    /*
+        var: deactivateTimeoutLength
+        The length of <deactivateTimeout> in thousandths of a second.
+    */
+    this.deactivateTimeoutLength = 200;
+
+
+
+
+    // Group: DOM Elements
+    // ________________________________________________________________________
+
+
+    // Function: DOMSearchField
+    this.DOMSearchField = function()
+        {  return document.getElementById("MSearchField");  };
+
+    // Function: DOMSearchType
+    this.DOMSearchType = function()
+        {  return document.getElementById("MSearchType");  };
+
+    // Function: DOMPopupSearchResults
+    this.DOMPopupSearchResults = function()
+        {  return document.getElementById("MSearchResults");  };
+
+    // Function: DOMPopupSearchResultsWindow
+    this.DOMPopupSearchResultsWindow = function()
+        {  return document.getElementById("MSearchResultsWindow");  };
+
+    // Function: DOMSearchPanel
+    this.DOMSearchPanel = function()
+        {  return document.getElementById("MSearchPanel");  };
+
+
+
+
+    // Group: Event Handlers
+    // ________________________________________________________________________
+
+
+    /*
+        Function: OnSearchFieldFocus
+        Called when focus is added or removed from the search field.
+    */
+    this.OnSearchFieldFocus = function(isActive)
+        {
+        this.Activate(isActive);
+        };
+
+
+    /*
+        Function: OnSearchFieldChange
+        Called when the content of the search field is changed.
+    */
+    this.OnSearchFieldChange = function()
+        {
+        if (this.keyTimeout)
+            {
+            clearTimeout(this.keyTimeout);
+            this.keyTimeout = 0;
+            };
+
+        var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
+
+        if (searchValue != this.lastSearchValue)
+            {
+            if (searchValue != "")
+                {
+                this.keyTimeout = setTimeout(this.name + ".Search()", this.keyTimeoutLength);
+                }
+            else
+                {
+                if (this.mode == "HTML")
+                    {  this.DOMPopupSearchResultsWindow().style.display = "none";  };
+                this.lastSearchValue = "";
+                };
+            };
+        };
+
+
+    /*
+        Function: OnSearchTypeFocus
+        Called when focus is added or removed from the search type.
+    */
+    this.OnSearchTypeFocus = function(isActive)
+        {
+        this.Activate(isActive);
+        };
+
+
+    /*
+        Function: OnSearchTypeChange
+        Called when the search type is changed.
+    */
+    this.OnSearchTypeChange = function()
+        {
+        var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
+
+        if (searchValue != "")
+            {
+            this.Search();
+            };
+        };
+
+
+
+    // Group: Action Functions
+    // ________________________________________________________________________
+
+
+    /*
+        Function: CloseResultsWindow
+        Closes the results window.
+    */
+    this.CloseResultsWindow = function()
+        {
+        this.DOMPopupSearchResultsWindow().style.display = "none";
+        this.Activate(false, true);
+        };
+
+
+    /*
+        Function: Search
+        Performs a search.
+    */
+    this.Search = function()
+        {
+        this.keyTimeout = 0;
+
+        var searchValue = this.DOMSearchField().value.replace(/^ +/, "");
+        var searchTopic = this.DOMSearchType().value;
+
+        var pageExtension = searchValue.substr(0,1);
+
+        if (pageExtension.match(/^[a-z]/i))
+            {  pageExtension = pageExtension.toUpperCase();  }
+        else if (pageExtension.match(/^[0-9]/))
+            {  pageExtension = 'Numbers';  }
+        else
+            {  pageExtension = "Symbols";  };
+
+        var resultsPage;
+        var resultsPageWithSearch;
+        var hasResultsPage;
+
+        // indexSectionsWithContent is defined in searchdata.js
+        if (indexSectionsWithContent[searchTopic][pageExtension] == true)
+            {
+            resultsPage = this.resultsPath + '/' + searchTopic + pageExtension + '.html';
+            resultsPageWithSearch = resultsPage+'?'+escape(searchValue);
+            hasResultsPage = true;
+            }
+        else
+            {
+            resultsPage = this.resultsPath + '/NoResults.html';
+            resultsPageWithSearch = resultsPage;
+            hasResultsPage = false;
+            };
+
+        var resultsFrame;
+        if (this.mode == "HTML")
+            {  resultsFrame = window.frames.MSearchResults;  }
+        else if (this.mode == "FramedHTML")
+            {  resultsFrame = window.top.frames['Content'];  };
+
+
+        if (resultsPage != this.lastResultsPage ||
+
+            // Bug in IE.  If everything becomes hidden in a run, none of them will be able to be reshown in the next for some
+            // reason.  It counts the right number of results, and you can even read the display as "block" after setting it, but it
+            // just doesn't work in IE 6 or IE 7.  So if we're on the right page but the previous search had no results, reload the
+            // page anyway to get around the bug.
+            (browserType == "IE" && hasResultsPage && resultsFrame.searchResults.lastMatchCount == 0) )
+
+            {
+            resultsFrame.location.href = resultsPageWithSearch;
+            }
+
+        // So if the results page is right and there's no IE bug, reperform the search on the existing page.  We have to check if there
+        // are results because NoResults.html doesn't have any JavaScript, and it would be useless to do anything on that page even
+        // if it did.
+        else if (hasResultsPage)
+            {
+            // We need to check if this exists in case the frame is present but didn't finish loading.
+            if (resultsFrame.searchResults)
+                {  resultsFrame.searchResults.Search(searchValue);  }
+
+            // Otherwise just reload instead of waiting.
+            else
+                {  resultsFrame.location.href = resultsPageWithSearch;  };
+            };
+
+
+        var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow();
+
+        if (this.mode == "HTML" && domPopupSearchResultsWindow.style.display != "block")
+            {
+            var domSearchType = this.DOMSearchType();
+
+            var left = GetXPosition(domSearchType);
+            var top = GetYPosition(domSearchType) + domSearchType.offsetHeight;
+
+            MoveToPosition(domPopupSearchResultsWindow, left, top);
+            domPopupSearchResultsWindow.style.display = 'block';
+            };
+
+
+        this.lastSearchValue = searchValue;
+        this.lastResultsPage = resultsPage;
+        };
+
+
+
+    // Group: Activation Functions
+    // Functions that handle whether the entire panel is active or not.
+    // ________________________________________________________________________
+
+
+    /*
+        Function: Activate
+
+        Activates or deactivates the search panel, resetting things to their default values if necessary.  You can call this on every
+        control's OnBlur() and it will handle not deactivating the entire panel when focus is just switching between them transparently.
+
+        Parameters:
+
+            isActive - Whether you're activating or deactivating the panel.
+            ignoreDeactivateDelay - Set if you're positive the action will deactivate the panel and thus want to skip the delay.
+    */
+    this.Activate = function(isActive, ignoreDeactivateDelay)
+        {
+        // We want to ignore isActive being false while the results window is open.
+        if (isActive || (this.mode == "HTML" && this.DOMPopupSearchResultsWindow().style.display == "block"))
+            {
+            if (this.inactivateTimeout)
+                {
+                clearTimeout(this.inactivateTimeout);
+                this.inactivateTimeout = 0;
+                };
+
+            this.DOMSearchPanel().className = 'MSearchPanelActive';
+
+            var searchField = this.DOMSearchField();
+
+            if (searchField.value == 'Search')
+                 {  searchField.value = "";  }
+            }
+        else if (!ignoreDeactivateDelay)
+            {
+            this.inactivateTimeout = setTimeout(this.name + ".InactivateAfterTimeout()", this.inactivateTimeoutLength);
+            }
+        else
+            {
+            this.InactivateAfterTimeout();
+            };
+        };
+
+
+    /*
+        Function: InactivateAfterTimeout
+
+        Called by <inactivateTimeout>, which is set by <Activate()>.  Inactivation occurs on a timeout because a control may
+        receive OnBlur() when focus is really transferring to another control in the search panel.  In this case we don't want to
+        actually deactivate the panel because not only would that cause a visible flicker but it could also reset the search value.
+        So by doing it on a timeout instead, there's a short period where the second control's OnFocus() can cancel the deactivation.
+    */
+    this.InactivateAfterTimeout = function()
+        {
+        this.inactivateTimeout = 0;
+
+        this.DOMSearchPanel().className = 'MSearchPanelInactive';
+        this.DOMSearchField().value = "Search";
+        };
+    };
+
+
+
+
+/* ________________________________________________________________________________________________________
+
+   Class: SearchResults
+   _________________________________________________________________________________________________________
+
+   The class that handles everything on the search results page.
+   _________________________________________________________________________________________________________
+*/
+
+
+function SearchResults(name, mode)
+    {
+    /*
+        var: mode
+        The mode the search is going to work in, such as "HTML" or "FramedHTML".
+    */
+    this.mode = mode;
+
+    /*
+        var: lastMatchCount
+        The number of matches from the last run of <Search()>.
+    */
+    this.lastMatchCount = 0;
+
+
+    /*
+        Function: Toggle
+        Toggles the visibility of the passed element ID.
+    */
+    this.Toggle = function(id)
+        {
+        if (this.mode == "FramedHTML")
+            {  return;  };
+
+        var parentElement = document.getElementById(id);
+
+        var element = parentElement.firstChild;
+
+        while (element && element != parentElement)
+            {
+            if (element.nodeName == 'DIV' && element.className == 'ISubIndex')
+                {
+                if (element.style.display == 'block')
+                    {  element.style.display = "none";  }
+                else
+                    {  element.style.display = 'block';  }
+                };
+
+            if (element.nodeName == 'DIV' && element.hasChildNodes())
+                {  element = element.firstChild;  }
+            else if (element.nextSibling)
+                {  element = element.nextSibling;  }
+            else
+                {
+                do
+                    {
+                    element = element.parentNode;
+                    }
+                while (element && element != parentElement && !element.nextSibling);
+
+                if (element && element != parentElement)
+                    {  element = element.nextSibling;  };
+                };
+            };
+        };
+
+
+    /*
+        Function: Search
+
+        Searches for the passed string.  If there is no parameter, it takes it from the URL query.
+
+        Always returns true, since other documents may try to call it and that may or may not be possible.
+    */
+    this.Search = function(search)
+        {
+        if (!search)
+            {
+            search = window.location.search;
+            search = search.substring(1);  // Remove the leading ?
+            search = unescape(search);
+            };
+
+        search = search.replace(/^ +/, "");
+        search = search.replace(/ +$/, "");
+        search = search.toLowerCase();
+
+        if (search.match(/[^a-z0-9]/)) // Just a little speedup so it doesn't have to go through the below unnecessarily.
+            {
+            search = search.replace(/\_/g, "_und");
+            search = search.replace(/\ +/gi, "_spc");
+            search = search.replace(/\~/g, "_til");
+            search = search.replace(/\!/g, "_exc");
+            search = search.replace(/\@/g, "_att");
+            search = search.replace(/\#/g, "_num");
+            search = search.replace(/\$/g, "_dol");
+            search = search.replace(/\%/g, "_pct");
+            search = search.replace(/\^/g, "_car");
+            search = search.replace(/\&/g, "_amp");
+            search = search.replace(/\*/g, "_ast");
+            search = search.replace(/\(/g, "_lpa");
+            search = search.replace(/\)/g, "_rpa");
+            search = search.replace(/\-/g, "_min");
+            search = search.replace(/\+/g, "_plu");
+            search = search.replace(/\=/g, "_equ");
+            search = search.replace(/\{/g, "_lbc");
+            search = search.replace(/\}/g, "_rbc");
+            search = search.replace(/\[/g, "_lbk");
+            search = search.replace(/\]/g, "_rbk");
+            search = search.replace(/\:/g, "_col");
+            search = search.replace(/\;/g, "_sco");
+            search = search.replace(/\"/g, "_quo");
+            search = search.replace(/\'/g, "_apo");
+            search = search.replace(/\</g, "_lan");
+            search = search.replace(/\>/g, "_ran");
+            search = search.replace(/\,/g, "_com");
+            search = search.replace(/\./g, "_per");
+            search = search.replace(/\?/g, "_que");
+            search = search.replace(/\//g, "_sla");
+            search = search.replace(/[^a-z0-9\_]i/gi, "_zzz");
+            };
+
+        var resultRows = document.getElementsByTagName("div");
+        var matches = 0;
+
+        var i = 0;
+        while (i < resultRows.length)
+            {
+            var row = resultRows.item(i);
+
+            if (row.className == "SRResult")
+                {
+                var rowMatchName = row.id.toLowerCase();
+                rowMatchName = rowMatchName.replace(/^sr\d*_/, '');
+
+                if (search.length <= rowMatchName.length && rowMatchName.substr(0, search.length) == search)
+                    {
+                    row.style.display = "block";
+                    matches++;
+                    }
+                else
+                    {  row.style.display = "none";  };
+                };
+
+            i++;
+            };
+
+        document.getElementById("Searching").style.display="none";
+
+        if (matches == 0)
+            {  document.getElementById("NoMatches").style.display="block";  }
+        else
+            {  document.getElementById("NoMatches").style.display="none";  }
+
+        this.lastMatchCount = matches;
+
+        return true;
+        };
+    };
+

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/main.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/main.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/main.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/searchdata.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/searchdata.js?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/searchdata.js (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/searchdata.js Sun May 27 18:51:35 2007
@@ -0,0 +1,152 @@
+var indexSectionsWithContent = {
+   "General": {
+      "Symbols": false,
+      "Numbers": false,
+      "A": true,
+      "B": true,
+      "C": true,
+      "D": false,
+      "E": true,
+      "F": true,
+      "G": true,
+      "H": false,
+      "I": true,
+      "J": false,
+      "K": false,
+      "L": true,
+      "M": false,
+      "N": false,
+      "O": false,
+      "P": true,
+      "Q": false,
+      "R": true,
+      "S": true,
+      "T": true,
+      "U": false,
+      "V": true,
+      "W": false,
+      "X": false,
+      "Y": false,
+      "Z": false
+      },
+   "Functions": {
+      "Symbols": false,
+      "Numbers": false,
+      "A": true,
+      "B": true,
+      "C": true,
+      "D": false,
+      "E": true,
+      "F": true,
+      "G": true,
+      "H": false,
+      "I": true,
+      "J": false,
+      "K": false,
+      "L": true,
+      "M": false,
+      "N": false,
+      "O": false,
+      "P": true,
+      "Q": false,
+      "R": true,
+      "S": true,
+      "T": false,
+      "U": false,
+      "V": false,
+      "W": false,
+      "X": false,
+      "Y": false,
+      "Z": false
+      },
+   "Files": {
+      "Symbols": false,
+      "Numbers": false,
+      "A": false,
+      "B": false,
+      "C": false,
+      "D": false,
+      "E": false,
+      "F": false,
+      "G": false,
+      "H": false,
+      "I": false,
+      "J": false,
+      "K": false,
+      "L": false,
+      "M": false,
+      "N": false,
+      "O": false,
+      "P": false,
+      "Q": false,
+      "R": false,
+      "S": false,
+      "T": true,
+      "U": false,
+      "V": false,
+      "W": false,
+      "X": false,
+      "Y": false,
+      "Z": false
+      },
+   "Classes": {
+      "Symbols": false,
+      "Numbers": false,
+      "A": false,
+      "B": false,
+      "C": false,
+      "D": false,
+      "E": false,
+      "F": false,
+      "G": false,
+      "H": false,
+      "I": false,
+      "J": false,
+      "K": false,
+      "L": false,
+      "M": false,
+      "N": false,
+      "O": false,
+      "P": false,
+      "Q": false,
+      "R": false,
+      "S": false,
+      "T": true,
+      "U": false,
+      "V": false,
+      "W": false,
+      "X": false,
+      "Y": false,
+      "Z": false
+      },
+   "Properties": {
+      "Symbols": false,
+      "Numbers": false,
+      "A": true,
+      "B": false,
+      "C": true,
+      "D": false,
+      "E": false,
+      "F": true,
+      "G": false,
+      "H": false,
+      "I": false,
+      "J": false,
+      "K": false,
+      "L": false,
+      "M": false,
+      "N": false,
+      "O": false,
+      "P": true,
+      "Q": false,
+      "R": false,
+      "S": false,
+      "T": false,
+      "U": false,
+      "V": true,
+      "W": false,
+      "X": false,
+      "Y": false,
+      "Z": false
+      }
+   }
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/searchdata.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/searchdata.js
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/javascript/searchdata.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/menu.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/menu.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/menu.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/menu.html Sun May 27 18:51:35 2007
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><title>Menu - </title><base target="Content"><link rel="stylesheet" type="text/css" href="styles/main.css"><script language=JavaScript src="javascript/main.js"></script><script language=JavaScript src="javascript/searchdata.js"></script></head><body id=FramedMenuPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Menu><div class="MFile MEntry"><a href="files/core-js.html">tapestry</a></div><div class="MFile MEntry"><a href="files/form-js.html">tapestry.form</a></div><div class="MFile MEntry"><a href="files/form_compat-js.html">tapestry.<span class=HB> </span>form_compat</a></div><div class="MFile MEntry"><a href="files/fx-js.html">tapestry.fx</a></div><div class="MFile MEntry"><a href="files/widget/AlertDialog-js.html">tapestry.<span class=HB> </span>widget.<span class=HB> </span>AlertDialog</a></div><div class="MFile MEntry"><a href="files/widget/TDebugConsole-js.html">tapestry.<span class=HB> </span>widget.<span class=HB> </span>TDebugConsole</a></div><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent1')" target="_self">Index</a><div class=MGroupContent id=MGroupContent1><div class="MIndex MEntry"><a href="index/General.html">Everything</a></div><div class="MIndex MEntry"><a href="index/Classes.html">Classes</a></div><div class="MIndex MEntry"><a href=
 "index/Files.html">Files</a></div><div class="MIndex MEntry"><a href="index/Functions.html">Functions</a></div><div class="MIndex MEntry"><a href="index/Properties.html">Properties</a></div></div></div><script type="text/javascript"><!--
+var searchPanel = new SearchPanel("searchPanel", "FramedHTML", "search");
+--></script><div id=MSearchPanel class=MSearchPanelInactive><input type=text id=MSearchField value=Search onFocus="searchPanel.OnSearchFieldFocus(true)" onBlur="searchPanel.OnSearchFieldFocus(false)" onKeyUp="searchPanel.OnSearchFieldChange()"><select id=MSearchType onFocus="searchPanel.OnSearchTypeFocus(true)" onBlur="searchPanel.OnSearchTypeFocus(false)" onChange="searchPanel.OnSearchTypeChange()"><option  id=MSearchEverything selected value="General">Everything</option><option value="Classes">Classes</option><option value="Files">Files</option><option value="Functions">Functions</option><option value="Properties">Properties</option></select></div></div><!--Menu-->
+
+
+<div id=Footer><p><a href="http://www.naturaldocs.org">Generated by Natural Docs</a></p></div><!--Footer-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/menu.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/menu.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/menu.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/ClassesT.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/ClassesT.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/ClassesT.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/ClassesT.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_tapestry><div class=IEntry><a href="../files/core-js.html#tapestry" class=ISymbol>tapestry</a></div></div><div class=SRResult id=SR_tapestry_perevent><div class=IEntry><a href="../files/core-js.html#tapestry.event" class=ISymbol>tapestry.<span class=HB> </span>event</a></div></div><div class=SRResult id=SR_tapestry_perform><div class=IEntry><a href="../files/form-js.html#tapestry.form" class=ISymbol>tapestry.form</a></div></div><div class=SRResult id=SR_tapestry_perform_undcompat><div class=IEntry><a href="../files/form_compat-js.html#tapestry.form_compat" class=ISymbol>tapestry.<span class=HB> </span>form_compat</a></div></div><div class=SRResult id=SR_tapestry_perfx><div class=IEntry><a href="../files/fx-js.html#tapestry.fx" class=ISymbol>tapestry.fx</a></div></div><div class=SRResult id=SR_tapestry_per
 html><div class=IEntry><a href="../files/core-js.html#tapestry.html" class=ISymbol>tapestry.html</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/ClassesT.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/ClassesT.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/ClassesT.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FilesT.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FilesT.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FilesT.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FilesT.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_tapestry_perwidget_perAlertDialog><div class=IEntry><a href="../files/widget/AlertDialog-js.html#tapestry.widget.AlertDialog" class=ISymbol>tapestry.<span class=HB> </span>widget.<span class=HB> </span>AlertDialog</a></div></div><div class=SRResult id=SR_tapestry_perwidget_perTDebugConsole><div class=IEntry><a href="../files/widget/TDebugConsole-js.html#tapestry.widget.TDebugConsole" class=ISymbol>tapestry.<span class=HB> </span>widget.<span class=HB> </span>TDebugConsole</a></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FilesT.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FilesT.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FilesT.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsA.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsA.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsA.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsA.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_attachAjaxStatus><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.attachAjaxStatus" class=ISymbol>attachAjaxStatus</a>, <span class=IParent>tapestry.fx</span></div></div><div class=SRResult id=SR_attachPostEffect><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.attachPostEffect" class=ISymbol>attachPostEffect</a>, <span class=IParent>tapestry.fx</span></div></div><div class=SRResult id=SR_attachPreEffect><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.attachPreEffect" class=ISymbol>attachPreEffect</a>, <span class=IParent>tapestry.fx</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsA.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsA.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsA.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsB.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsB.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsB.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsB.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_bind><div class=IEntry><a href="../files/core-js.html#tapestry.bind" class=ISymbol>bind</a>, <span class=IParent>tapestry</span></div></div><div class=SRResult id=SR_buildEventProperties><div class=IEntry><a href="../files/core-js.html#tapestry.event.buildEventProperties" class=ISymbol>buildEventProperties</a>, <span class=IParent>tapestry.<span class=HB> </span>event</span></div></div><div class=SRResult id=SR_buildNodeProperties><div class=IEntry><a href="../files/core-js.html#tapestry.event.buildNodeProperties" class=ISymbol>buildNodeProperties</a>, <span class=IParent>tapestry.<span class=HB> </span>event</span></div></div><div class=SRResult id=SR_buildTargetProperties><div class=IEntry><a href="../files/core-js.html#tapestry.event.buildTargetProperties" class=ISymbol>buildTargetProperties</a>, <span
  class=IParent>tapestry.<span class=HB> </span>event</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsB.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsB.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsB.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsC.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsC.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsC.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsC.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_cancel><div class=IEntry><a href="../files/form-js.html#tapestry.form.cancel" class=ISymbol>cancel</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_cleanConnect><div class=IEntry><a href="../files/core-js.html#tapestry.cleanConnect" class=ISymbol>cleanConnect</a>, <span class=IParent>tapestry</span></div></div><div class=SRResult id=SR_clearProfiles><div class=IEntry><a href="../files/form-js.html#tapestry.form.clearProfiles" class=ISymbol>clearProfiles</a>, <span class=IParent>tapestry.form</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsC.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsC.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsC.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsE.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsE.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsE.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsE.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_error><div class=IEntry><a href="../files/core-js.html#tapestry.error" class=ISymbol>error</a>, <span class=IParent>tapestry</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsE.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsE.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsE.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsF.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsF.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsF.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsF.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_fillInTemplate><div class=IEntry><a href="../files/widget/TDebugConsole-js.html#fillInTemplate" class=ISymbol>fillInTemplate</a></div></div><div class=SRResult id=SR_focusField><div class=IEntry><a href="../files/form-js.html#tapestry.form.focusField" class=ISymbol>focusField</a>, <span class=IParent>tapestry.form</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsF.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsF.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsF.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsG.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsG.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsG.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsG.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_getContentAsString><div class=IEntry><a href="../files/core-js.html#tapestry.html.getContentAsString" class=ISymbol>getContentAsString</a>, <span class=IParent>tapestry.html</span></div></div><div class=SRResult id=SR_getElementAsString><div class=IEntry><a href="../files/core-js.html#tapestry.html.getElementAsString" class=ISymbol>getElementAsString</a>, <span class=IParent>tapestry.html</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsG.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsG.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsG.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsI.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsI.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsI.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsI.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_isServingRequests><div class=IEntry><a href="../files/core-js.html#tapestry.isServingRequests" class=ISymbol>isServingRequests</a>, <span class=IParent>tapestry</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsI.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsI.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsI.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsL.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsL.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsL.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsL.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_load><div class=IEntry><a href="../files/core-js.html#tapestry.load" class=ISymbol>load</a>, <span class=IParent>tapestry</span></div></div><div class=SRResult id=SR_loadContent><div class=IEntry><a href="../files/core-js.html#tapestry.loadContent" class=ISymbol>loadContent</a>, <span class=IParent>tapestry</span></div></div><div class=SRResult id=SR_loadScriptContent><div class=IEntry><a href="../files/core-js.html#tapestry.loadScriptContent" class=ISymbol>loadScriptContent</a>, <span class=IParent>tapestry</span></div></div><div class=SRResult id=SR_loadScriptFromUrl><div class=IEntry><a href="../files/core-js.html#tapestry.loadScriptFromUrl" class=ISymbol>loadScriptFromUrl</a>, <span class=IParent>tapestry</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus 
 id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsL.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsL.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsL.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsP.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsP.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsP.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsP.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_postCreate><div class=IEntry><a href="../files/widget/AlertDialog-js.html#postCreate" class=ISymbol>postCreate</a></div></div><div class=SRResult id=SR_presentException><div class=IEntry><a href="../files/core-js.html#tapestry.presentException" class=ISymbol>presentException</a>, <span class=IParent>tapestry</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsP.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsP.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsP.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsR.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsR.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsR.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsR.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_refresh><div class=IEntry><a href="../files/form-js.html#tapestry.form.refresh" class=ISymbol>refresh</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_registerForm><div class=IEntry><a href="../files/form-js.html#tapestry.form.registerForm" class=ISymbol>registerForm</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_registerProfile><div class=IEntry><a href="../files/form-js.html#tapestry.form.registerProfile" class=ISymbol>registerProfile</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_removeAll><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.removeAll" class=ISymbol>removeAll</a>, <span class=IParent>tapestry.fx</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div
  class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsR.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsR.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsR.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsS.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsS.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsS.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsS.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_setFormValidating><div class=IEntry><a href="../files/form-js.html#tapestry.form.setFormValidating" class=ISymbol>setFormValidating</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_submit><div class=IEntry><a href="../files/form-js.html#tapestry.form.submit" class=ISymbol>submit</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_submitAsync><div class=IEntry><a href="../files/form-js.html#tapestry.form.submitAsync" class=ISymbol>submitAsync</a>, <span class=IParent>tapestry.form</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsS.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsS.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/FunctionsS.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralA.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralA.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralA.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralA.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_ajaxStatusAction><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.ajaxStatusAction" class=ISymbol>ajaxStatusAction</a>, <span class=IParent>tapestry.fx</span></div></div><div class=SRResult id=SR_attachAjaxStatus><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.attachAjaxStatus" class=ISymbol>attachAjaxStatus</a>, <span class=IParent>tapestry.fx</span></div></div><div class=SRResult id=SR_attachPostEffect><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.attachPostEffect" class=ISymbol>attachPostEffect</a>, <span class=IParent>tapestry.fx</span></div></div><div class=SRResult id=SR_attachPreEffect><div class=IEntry><a href="../files/fx-js.html#tapestry.fx.attachPreEffect" class=ISymbol>attachPreEffect</a>, <span class=IParent>tapestry.fx</span></div></div></table><div class=SR
 Status id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralA.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralA.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralA.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralB.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralB.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralB.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralB.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_bind><div class=IEntry><a href="../files/core-js.html#tapestry.bind" class=ISymbol>bind</a>, <span class=IParent>tapestry</span></div></div><div class=SRResult id=SR_buildEventProperties><div class=IEntry><a href="../files/core-js.html#tapestry.event.buildEventProperties" class=ISymbol>buildEventProperties</a>, <span class=IParent>tapestry.<span class=HB> </span>event</span></div></div><div class=SRResult id=SR_buildNodeProperties><div class=IEntry><a href="../files/core-js.html#tapestry.event.buildNodeProperties" class=ISymbol>buildNodeProperties</a>, <span class=IParent>tapestry.<span class=HB> </span>event</span></div></div><div class=SRResult id=SR_buildTargetProperties><div class=IEntry><a href="../files/core-js.html#tapestry.event.buildTargetProperties" class=ISymbol>buildTargetProperties</a>, <span
  class=IParent>tapestry.<span class=HB> </span>event</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralB.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralB.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralB.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralC.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralC.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralC.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralC.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_cancel><div class=IEntry><a href="../files/form-js.html#tapestry.form.cancel" class=ISymbol>cancel</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_cleanConnect><div class=IEntry><a href="../files/core-js.html#tapestry.cleanConnect" class=ISymbol>cleanConnect</a>, <span class=IParent>tapestry</span></div></div><div class=SRResult id=SR_clearProfiles><div class=IEntry><a href="../files/form-js.html#tapestry.form.clearProfiles" class=ISymbol>clearProfiles</a>, <span class=IParent>tapestry.form</span></div></div><div class=SRResult id=SR_currentFocus><div class=IEntry><a href="../files/form-js.html#tapestry.form.currentFocus" class=ISymbol>currentFocus</a>, <span class=IParent>tapestry.form</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div cla
 ss=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralC.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralC.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralC.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralE.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralE.html?view=auto&rev=542079
==============================================================================
--- tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralE.html (added)
+++ tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralE.html Sun May 27 18:51:35 2007
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+
+<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=FramedSearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!--
+if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script>
+
+
+
+
+<!--  Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) -->
+<!--  http://www.naturaldocs.org  -->
+
+<!-- saved from url=(0026)http://www.naturaldocs.org -->
+
+
+
+
+<div id=Index><div class=IPageTitle>Search Results</div><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_error><div class=IEntry><a href="../files/core-js.html#tapestry.error" class=ISymbol>error</a>, <span class=IParent>tapestry</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!--
+document.getElementById("Loading").style.display="none";
+document.getElementById("NoMatches").style.display="none";
+var searchResults = new SearchResults("searchResults", "FramedHTML");
+searchResults.Search();
+--></script></div><!--Index-->
+
+
+<script language=JavaScript><!--
+if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralE.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralE.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry4/trunk/src/site/resources/jsdoc/search/GeneralE.html
------------------------------------------------------------------------------
    svn:mime-type = text/html