Index: lams_tool_wiki/build.xml =================================================================== diff -u -r1082bdcc357c105126a5641cecc68acfa645b66b -r40fb72d3289330a49552817cf29d032ba4e203a1 --- lams_tool_wiki/build.xml (.../build.xml) (revision 1082bdcc357c105126a5641cecc68acfa645b66b) +++ lams_tool_wiki/build.xml (.../build.xml) (revision 40fb72d3289330a49552817cf29d032ba4e203a1) @@ -211,6 +211,7 @@ + Index: lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties =================================================================== diff -u -ra765c868e65385168275af7a88c5391097ecdf35 -r40fb72d3289330a49552817cf29d032ba4e203a1 --- lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision a765c868e65385168275af7a88c5391097ecdf35) +++ lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 40fb72d3289330a49552817cf29d032ba4e203a1) @@ -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 =================================================================== diff -u -ra765c868e65385168275af7a88c5391097ecdf35 -r40fb72d3289330a49552817cf29d032ba4e203a1 --- lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision a765c868e65385168275af7a88c5391097ecdf35) +++ lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision 40fb72d3289330a49552817cf29d032ba4e203a1) @@ -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 =================================================================== diff -u Binary files differ Index: lams_tool_wiki/web/images/tree_open.gif =================================================================== diff -u Binary files differ Index: lams_tool_wiki/web/includes/javascript/wikiCommon.js =================================================================== diff -u -r16b67860ab51e6ba2a8f91220dda61d67334e1b0 -r40fb72d3289330a49552817cf29d032ba4e203a1 --- lams_tool_wiki/web/includes/javascript/wikiCommon.js (.../wikiCommon.js) (revision 16b67860ab51e6ba2a8f91220dda61d67334e1b0) +++ lams_tool_wiki/web/includes/javascript/wikiCommon.js (.../wikiCommon.js) (revision 40fb72d3289330a49552817cf29d032ba4e203a1) @@ -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 =================================================================== diff -u --- lams_tool_wiki/web/pages/aa.jsp (revision 0) +++ lams_tool_wiki/web/pages/aa.jsp (revision 40fb72d3289330a49552817cf29d032ba4e203a1) @@ -0,0 +1,27 @@ + + +<%@ include file="/common/taglibs.jsp"%> + + + + + + + + + + + + + \ No newline at end of file Index: lams_tool_wiki/web/pages/authoring/basic.jsp =================================================================== diff -u -r4b8cea74035b17a81af0b29e54877b2f027641dd -r40fb72d3289330a49552817cf29d032ba4e203a1 --- lams_tool_wiki/web/pages/authoring/basic.jsp (.../basic.jsp) (revision 4b8cea74035b17a81af0b29e54877b2f027641dd) +++ lams_tool_wiki/web/pages/authoring/basic.jsp (.../basic.jsp) (revision 40fb72d3289330a49552817cf29d032ba4e203a1) @@ -1,202 +1,256 @@ <%@ include file="/common/taglibs.jsp"%> + - - - - -
+



-
-

${currentWikiPage.title}

-
- - - - - - - +
+

+ ${currentWikiPage.title} +

+ +
+ + + + + + + + + ${currentWikiPage.currentWikiContentDTO.editorDTO.firstName} ${currentWikiPage.currentWikiContentDTO.editorDTO.lastName} - - - - - -
-
-
${currentWikiPage.currentWikiContentDTO.body}
+ + + + + + +
+ +
+
+ +
+ ${currentWikiPage.currentWikiContentDTO.body} +
+

+ - ${currentWikiPage.title} +

+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ ${wikiContentPageVersion.version} + + + + + + ${wikiContentPageVersion.editorDTO.firstName} ${wikiContentPageVersion.editorDTO.firstName} + + + + + + + + + +   + + + +   + + + +
+
+ + + +
+



-
+
+
- - - ${wikiPage.title} - - -
-
+ +  +${mainWikiPage.title} + + -
- + +
+
+
+ + +
+ +
+ +   + ${mainWikiPage.title} + + + + + <%@ include file="parts/finishButton.jsp"%> + + +
+