Index: lams_tool_wiki/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/build.xml,v
diff -u -r1.1 -r1.2
--- lams_tool_wiki/build.xml 8 Oct 2008 05:33:01 -0000 1.1
+++ lams_tool_wiki/build.xml 17 Oct 2008 01:58:37 -0000 1.2
@@ -211,6 +211,7 @@
+
Index: lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties,v
diff -u -r1.2 -r1.3
--- lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties 15 Oct 2008 03:30:46 -0000 1.2
+++ lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties 17 Oct 2008 01:58:37 -0000 1.3
@@ -103,18 +103,22 @@
label.authoring.basic.instructions =Instructions:
label.wiki.body =Wiki Body
label.wiki.edit =Edit
+label.wiki.edit.toolTip =Edit the current Wiki page
label.wiki.add =Add
+label.wiki.add.toolTip =Add a new Wiki page to this Wiki
label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title.
label.wiki.add.title.required =A title is required for the Wiki page.
label.wiki.last.edit =Last edited by {0}, at {1}
label.wiki.view =View
+label.wiki.view.toolTip =View this Wiki page
label.wiki.remove =Remove
+label.wiki.remove.toolTip =Remove this Wiki page
label.wiki.remove.confirm =Delete entire Wiki page? This action cannot be undone.
label.wiki.pages =Wiki Pages
-label.wiki.main =(Main)
label.wiki.savechanges =Save changes
label.wiki.remove.confirm =Are you sure you want to delete this Wiki page? This action cannot be undone.
label.wiki.history =History
+label.wiki.history.toolTip =View previous versions of this Wiki page
label.wiki.history.version =Version
label.wiki.history.empty =There are no previous versions of this Wiki page.
label.wiki.history.date =Edit Date
Index: lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/conf/language/rams/Attic/ApplicationResources_en_AU.properties,v
diff -u -r1.6 -r1.7
--- lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties 15 Oct 2008 03:30:46 -0000 1.6
+++ lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties 17 Oct 2008 01:58:37 -0000 1.7
@@ -102,19 +102,24 @@
titleHeading.instructions =Instructions
label.authoring.basic.instructions =Instructions:
label.wiki.body =Wiki Body
-label.wiki.edit =Edit
-label.wiki.add =Add
+label.wiki.edit =Edit Page
+label.wiki.edit.toolTip =Edit the current Wiki page
+label.wiki.add =Add New Page
+label.wiki.add.toolTip =Add a new Wiki page to this wiki
label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title.
label.wiki.add.title.required =A title is required for the Wiki page.
label.wiki.last.edit =Last edited by {0}, at {1}
-label.wiki.view =View
-label.wiki.remove =Remove
+label.wiki.view =View Page
+label.wiki.view.toolTip =View this wiki page
+label.wiki.remove =Remove Page
+label.wiki.remove.toolTip =Remove this wiki page
label.wiki.remove.confirm =Delete entire Wiki page? This action cannot be undone.
label.wiki.pages =Wiki Pages
label.wiki.main =(Main)
label.wiki.savechanges =Save changes
label.wiki.remove.confirm =Are you sure you want to delete this Wiki page? This action cannot be undone.
-label.wiki.history =History
+label.wiki.history =View Page History
+label.wiki.history.toolTip =View previous versions of this Wiki page
label.wiki.history.version =Version
label.wiki.history.empty =There are no previous versions of this Wiki page.
label.wiki.history.date =Edit Date
Index: lams_tool_wiki/web/images/tree_closed.gif
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/web/images/tree_closed.gif,v
diff -u
Binary files differ
Index: lams_tool_wiki/web/images/tree_open.gif
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/web/images/tree_open.gif,v
diff -u
Binary files differ
Index: lams_tool_wiki/web/includes/javascript/wikiCommon.js
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/web/includes/javascript/wikiCommon.js,v
diff -u -r1.2 -r1.3
--- lams_tool_wiki/web/includes/javascript/wikiCommon.js 10 Oct 2008 01:18:47 -0000 1.2
+++ lams_tool_wiki/web/includes/javascript/wikiCommon.js 17 Oct 2008 01:58:37 -0000 1.3
@@ -65,3 +65,21 @@
compareWindow = window.open(url,'compareWindow','resizable,width=796,height=570,scrollbars');
compareWindow.window.focus();
}
+
+function toggleWikiList(webUrl)
+{
+
+ var wikiListDiv = document.getElementById("wikiList");
+ var wikiListImage = document.getElementById("wikiListImage");
+
+ if (wikiListDiv.style.display=="block")
+ {
+ wikiListDiv.style.display = "none";
+ wikiListImage.src = webUrl +"/images/tree_closed.gif";
+ }
+ else
+ {
+ wikiListDiv.style.display = "block";
+ wikiListImage.src = webUrl + "/images/tree_open.gif";
+ }
+}
Index: lams_tool_wiki/web/pages/aa.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_tool_wiki/web/pages/Attic/aa.jsp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ lams_tool_wiki/web/pages/aa.jsp 17 Oct 2008 01:58:37 -0000 1.1
@@ -0,0 +1,27 @@
+
+
+<%@ include file="/common/taglibs.jsp"%>
+
+