You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vk...@apache.org on 2015/03/04 02:31:38 UTC

[08/50] [abbrv] incubator-ignite git commit: # ignite-204 : fix GridGain occurrences - delete unused functions from assembly/docfiles/tools.js

# ignite-204 : fix GridGain occurrences - delete unused functions from assembly/docfiles/tools.js


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/0cf20b30
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/0cf20b30
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/0cf20b30

Branch: refs/heads/master
Commit: 0cf20b3013eb12d30fc2827ba300b1eb8cf2acb4
Parents: 56818bd
Author: Artem Shutak <as...@gridgain.com>
Authored: Mon Feb 16 14:40:19 2015 +0300
Committer: Artem Shutak <as...@gridgain.com>
Committed: Mon Feb 16 14:40:19 2015 +0300

----------------------------------------------------------------------
 assembly/docfiles/tools.js | 30 ------------------------------
 1 file changed, 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/0cf20b30/assembly/docfiles/tools.js
----------------------------------------------------------------------
diff --git a/assembly/docfiles/tools.js b/assembly/docfiles/tools.js
index b37eda4..3bd8323 100644
--- a/assembly/docfiles/tools.js
+++ b/assembly/docfiles/tools.js
@@ -27,33 +27,3 @@ function toggleDisplay(id) {
         e.style.visibility = 'visible';
     }
 }
-
-/*
- * Produces forum search form.
- */
-function forumSearchForm(root) {
-    document.write(
-        "<form  method='POST' action='http://www.gridgainsystems.com/jiveforums/search.jspa' target='forum' style='margin: 1px; padding: 1px'>" +
-            "" +
-            "<input class='search_text' type='text' style='color: #ccc' onClick='this.value=\"\"; this.style.color=\"#333\"' name='q' value=' find...' size='20' maxlength='100'>" +
-            "&nbsp;" +
-            "<input title='Search Forum' class='search_button' name='button' type='submit' value='f o r u m'>" +
-        "</form>"
-    );
-}
-
-/*
- * Produces Wiki search form.
- */
-function wikiSearchForm(root) {
-    document.write(
-        "<form method='POST' action='http://www.gridgainsystems.com:8080/wiki/dosearchsite.action' target='wiki' style='margin: 1px; padding: 1px' name='search_form'>" +
-            "" +
-            "<input type='hidden' name='quickSearch' value='true'>" +
-            "<input type='hidden' name='searchQuery.spaceKey' value='conf_global'>" +
-            "<input class='search_text' type='text' style='color: #ccc' onClick='this.value=\"\"; this.style.color=\"#333\"' accessKey='s' value=' find...' name='searchQuery.queryString' size='20'>" +
-            "&nbsp;" +
-            "<input title='Search Wiki' class='search_button' name='button' type='submit' value='w i k i'>" +
-        "</form>"
-    );
-}