Commit 0038cab0 authored by Christophe Dumez's avatar Christophe Dumez

2006-06-22 chris

* erp5Subversion is now XHTML Strict compliant
* erp5Subversion works with erp5_xhtml_style

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8144 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ff66e9b1
...@@ -67,10 +67,7 @@ ...@@ -67,10 +67,7 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>Default</string>
<string>left</string> <string>left</string>
<string>right</string>
<string>center</string>
<string>bottom</string> <string>bottom</string>
</list> </list>
</value> </value>
...@@ -79,22 +76,8 @@ ...@@ -79,22 +76,8 @@
<key> <string>groups</string> </key> <key> <string>groups</string> </key>
<value> <value>
<dictionary> <dictionary>
<item>
<key> <string>Default</string> </key>
<value>
<list>
<string>title_orphan</string>
</list>
</value>
</item>
<item> <item>
<key> <string>bottom</string> </key> <key> <string>bottom</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>center</string> </key>
<value> <value>
<list> <list>
<string>listbox</string> <string>listbox</string>
...@@ -104,13 +87,9 @@ ...@@ -104,13 +87,9 @@
<item> <item>
<key> <string>left</string> </key> <key> <string>left</string> </key>
<value> <value>
<list/> <list>
</value> <string>title_orphan</string>
</item> </list>
<item>
<key> <string>right</string> </key>
<value>
<list/>
</value> </value>
</item> </item>
</dictionary> </dictionary>
......
...@@ -61,9 +61,6 @@ ...@@ -61,9 +61,6 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>left</string>
<string>right</string>
<string>center</string>
<string>bottom</string> <string>bottom</string>
</list> </list>
</value> </value>
...@@ -74,30 +71,12 @@ ...@@ -74,30 +71,12 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>bottom</string> </key> <key> <string>bottom</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>center</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>left</string> </key>
<value> <value>
<list> <list>
<string>listbox</string> <string>listbox</string>
</list> </list>
</value> </value>
</item> </item>
<item>
<key> <string>right</string> </key>
<value>
<list/>
</value>
</item>
</dictionary> </dictionary>
</value> </value>
</item> </item>
......
...@@ -72,11 +72,6 @@ ...@@ -72,11 +72,6 @@
from Products.ERP5Subversion.SubversionClient import SubversionSSLTrustError, SubversionLoginError\n from Products.ERP5Subversion.SubversionClient import SubversionSSLTrustError, SubversionLoginError\n
\n \n
if "changelog" in context.REQUEST.keys() and context.REQUEST["changelog"].strip()!=\'\':\n
changelog=context.REQUEST["changelog"]\n
else:\n
changelog=None\n
\n
commit_non_recurs = added\n commit_non_recurs = added\n
if commit_non_recurs != \'\' and commit_non_recurs != \'none\':\n if commit_non_recurs != \'\' and commit_non_recurs != \'none\':\n
if modified != \'\' and modified != \'none\':\n if modified != \'\' and modified != \'none\':\n
...@@ -92,12 +87,12 @@ if removed != \'\' and removed != \'none\':\n ...@@ -92,12 +87,12 @@ if removed != \'\' and removed != \'none\':\n
else:\n else:\n
commit_recurs = removed\n commit_recurs = removed\n
\n \n
if \'changelog\' not in context.REQUEST.keys() :\n if not changelog :\n
context.REQUEST.set(\'portal_status_message\', \'Please set a changelog message...\')\n context.REQUEST.set(\'portal_status_message\', \'Please set a changelog message...\')\n
context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n
return context.asContext(added=added, modified=modified, removed=removed).BusinessTemplate_viewSvnChangelog()\n return context.asContext(added=added, modified=modified, removed=removed).BusinessTemplate_viewSvnChangelog()\n
\n \n
if not changelog :\n if changelog.strip() == \'\' :\n
context.REQUEST.set(\'portal_status_message\', "Error: Changelog Message can\'t be empty.")\n context.REQUEST.set(\'portal_status_message\', "Error: Changelog Message can\'t be empty.")\n
context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n
return context.asContext(added=added, modified=modified, removed=removed).BusinessTemplate_viewSvnChangelog()\n return context.asContext(added=added, modified=modified, removed=removed).BusinessTemplate_viewSvnChangelog()\n
...@@ -110,11 +105,11 @@ try:\n ...@@ -110,11 +105,11 @@ try:\n
except SubversionSSLTrustError, error:\n except SubversionSSLTrustError, error:\n
context.REQUEST.set(\'portal_status_message\', \'SSL Certificate was not recognized\')\n context.REQUEST.set(\'portal_status_message\', \'SSL Certificate was not recognized\')\n
context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n
return context.asContext(added=added, modified=modified, removed=removed, trust_dict = error.getTrustDict(), caller=\'commit\', changelog=changelog).BusinessTemplate_viewSvnSSLTrust()\n return context.asContext(added=added, modified=modified, removed=removed, changelog=changelog, trust_dict = error.getTrustDict(), caller=\'commit\').BusinessTemplate_viewSvnSSLTrust()\n
except SubversionLoginError, error1 :\n except SubversionLoginError, error1 :\n
context.REQUEST.set(\'portal_status_message\', \'Server needs authentication, no cookie found\')\n context.REQUEST.set(\'portal_status_message\', \'Server needs authentication, no cookie found\')\n
context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n context.REQUEST.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n
return context.asContext(added=added, modified=modified, removed=removed, caller=\'commit\', realm = error1.getRealm(), changelog=changelog, username = context.getPortalObject()["portal_subversion"].getPreferredUsername()).BusinessTemplate_viewSvnLogin()\n return context.asContext(added=added, modified=modified, removed=removed, changelog=changelog, caller=\'commit\', realm = error1.getRealm(), username = context.getPortalObject()["portal_subversion"].getPreferredUsername()).BusinessTemplate_viewSvnLogin()\n
\n \n
context.REQUEST.set(\'portal_status_message\', \'Files commited successfully.\')\n context.REQUEST.set(\'portal_status_message\', \'Files commited successfully.\')\n
context.REQUEST.set(\'do_extract\', \'False\')\n context.REQUEST.set(\'do_extract\', \'False\')\n
...@@ -135,7 +130,7 @@ return context.BusinessTemplate_viewSvnStatus()\n ...@@ -135,7 +130,7 @@ return context.BusinessTemplate_viewSvnStatus()\n
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
<value> <string>added=\'\',modified=\'\',removed=\'\',**kw</string> </value> <value> <string>added=\'\',modified=\'\',removed=\'\', changelog=None, **kw</string> </value>
</item> </item>
<item> <item>
<key> <string>errors</string> </key> <key> <string>errors</string> </key>
...@@ -155,7 +150,7 @@ return context.BusinessTemplate_viewSvnStatus()\n ...@@ -155,7 +150,7 @@ return context.BusinessTemplate_viewSvnStatus()\n
<dictionary> <dictionary>
<item> <item>
<key> <string>co_argcount</string> </key> <key> <string>co_argcount</string> </key>
<value> <int>3</int> </value> <value> <int>4</int> </value>
</item> </item>
<item> <item>
<key> <string>co_varnames</string> </key> <key> <string>co_varnames</string> </key>
...@@ -164,16 +159,15 @@ return context.BusinessTemplate_viewSvnStatus()\n ...@@ -164,16 +159,15 @@ return context.BusinessTemplate_viewSvnStatus()\n
<string>added</string> <string>added</string>
<string>modified</string> <string>modified</string>
<string>removed</string> <string>removed</string>
<string>changelog</string>
<string>kw</string> <string>kw</string>
<string>Products.ERP5Subversion.SubversionClient</string> <string>Products.ERP5Subversion.SubversionClient</string>
<string>SubversionSSLTrustError</string> <string>SubversionSSLTrustError</string>
<string>SubversionLoginError</string> <string>SubversionLoginError</string>
<string>commit_non_recurs</string>
<string>_getattr_</string> <string>_getattr_</string>
<string>context</string>
<string>_getitem_</string> <string>_getitem_</string>
<string>changelog</string> <string>context</string>
<string>None</string>
<string>commit_non_recurs</string>
<string>commit_recurs</string> <string>commit_recurs</string>
<string>False</string> <string>False</string>
<string>True</string> <string>True</string>
...@@ -194,6 +188,7 @@ return context.BusinessTemplate_viewSvnStatus()\n ...@@ -194,6 +188,7 @@ return context.BusinessTemplate_viewSvnStatus()\n
<string></string> <string></string>
<string></string> <string></string>
<string></string> <string></string>
<none/>
</tuple> </tuple>
</value> </value>
</item> </item>
......
...@@ -61,9 +61,6 @@ ...@@ -61,9 +61,6 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>right</string>
<string>left</string>
<string>center</string>
<string>bottom</string> <string>bottom</string>
</list> </list>
</value> </value>
...@@ -73,31 +70,13 @@ ...@@ -73,31 +70,13 @@
<value> <value>
<dictionary> <dictionary>
<item> <item>
<key> <string>bottom</string> </key> <key> <string>bottom</string> </key>
<value> <value>
<list> <list>
<string>listbox</string> <string>listbox</string>
</list> </list>
</value> </value>
</item> </item>
<item>
<key> <string>center</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>left</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>right</string> </key>
<value>
<list/>
</value>
</item>
</dictionary> </dictionary>
</value> </value>
</item> </item>
......
...@@ -61,8 +61,8 @@ ...@@ -61,8 +61,8 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>Default</string> <string>left</string>
<string>hidden</string> <string>right</string>
</list> </list>
</value> </value>
</item> </item>
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
<value> <value>
<dictionary> <dictionary>
<item> <item>
<key> <string>Default</string> </key> <key> <string>left</string> </key>
<value> <value>
<list> <list>
<string>my_changelog</string> <string>my_changelog</string>
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
</value> </value>
</item> </item>
<item> <item>
<key> <string>hidden</string> </key> <key> <string>right</string> </key>
<value> <value>
<list> <list>
<string>my_modified</string> <string>my_modified</string>
......
...@@ -48,35 +48,50 @@ ...@@ -48,35 +48,50 @@
<key> <string>_text</string> </key> <key> <string>_text</string> </key>
<value> <string encoding="cdata"><![CDATA[ <value> <string encoding="cdata"><![CDATA[
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n <tal:block tal:replace="nothing"\n
"DTD/xhtml1-strict.dtd">\n xmlns:tal="http://xml.zope.org/namespaces/tal"\n
<?xml-stylesheet href="erp5.css" rel="stylesheet" type="text/css"?>\n xmlns:metal="http://xml.zope.org/namespaces/metal"\n
<link rel="STYLESHEET" type="text/css" href="css/movableMenu.css">\n xmlns:i18n="http://xml.zope.org/namespaces/i18n">\n
<!--\n
Copyright (c) 2006 Nexedi SARL and Contributors. All Rights Reserved.\n
Christophe Dumez <christophe@nexedi.com>\n
\n \n
<tal:block metal:use-macro="here/view_master/macros/master">\n This program is Free Software; you can redistribute it and/or\n
<tal:block metal:fill-slot="main">\n modify it under the terms of the GNU General Public License\n
as published by the Free Software Foundation; either version 2\n
of the License, or (at your option) any later version.\n
\n
This program is distributed in the hope that it will be useful,\n
but WITHOUT ANY WARRANTY; without even the implied warranty of\n
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n
GNU General Public License for more details.\n
\n
You should have received a copy of the GNU General Public License\n
along with this program; if not, write to the Free Software\n
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
-->\n
</tal:block>\n
<tal:block tal:define="css_list python: [\'css/movableMenu.css\',];\n
js_list python: [\'js/menuico.js\', \'js/movableMenu.js\', \'js/BusinessTemplate_doCreateJavaScriptDiff\']">\n
<tal:block metal:use-macro="here/document/macros/master">\n
<tal:block metal:fill-slot="main">\n
<!-- Form Hidden : Selected files -->\n <!-- Form Hidden : Selected files -->\n
<input type=\'hidden\' name=\'removed\' tal:attributes="value python:context.REQUEST[\'removed\']"/>\n <input type=\'hidden\' name=\'removed\' tal:attributes="value python:context.REQUEST[\'removed\']"/>\n
<input type=\'hidden\' name=\'added\' tal:attributes="value python:context.REQUEST[\'added\']"/>\n <input type=\'hidden\' name=\'added\' tal:attributes="value python:context.REQUEST[\'added\']"/>\n
<input type=\'hidden\' name=\'modified\' tal:attributes="value python:context.REQUEST[\'modified\']"/>\n <input type=\'hidden\' name=\'modified\' tal:attributes="value python:context.REQUEST[\'modified\']"/>\n
<!-- End Hidden -->\n <!-- End Hidden -->\n
<script src="js/movableMenu.js"></script>\n
<script src="js/menuico.js"></script>\n
<tal:js replace="structure \n
here/BusinessTemplate_doCreateJavaScriptDiff">JavaScript here</tal:js>\n
<tal:py replace="structure \n <tal:py replace="structure \n
here/BusinessTemplate_doSvnDiff">diff here</tal:py>\n here/BusinessTemplate_doSvnDiff">diff here</tal:py>\n
<center>\n \n
<script>\n <script type="text/javascript">\n
// Menu Customization\n // Menu Customization\n
var MenuToolBar=new CreateToolBarMenu("#dae6e6", "#ffffff", "#b1bbbb", "#6699ff", "font-family:verdana;font-size:11px;color:black;font-weight:bold", 16, 16)\n var MenuToolBar=new CreateToolBarMenu("#dae6e6", "#ffffff", "#b1bbbb", "#6699ff", "font-family:verdana;font-size:11px;color:black;font-weight:bold", 16, 16)\n
MenuToolBar.Add("imgs/revertoff.png", "imgs/reverton.png", "Back", "#", "goBack()");\n MenuToolBar.Add("imgs/revertoff.png", "imgs/reverton.png", "Back", "#", "goBack()");\n
MenuToolBar.Add("imgs/captionoff.png", "imgs/captionon.png", "Show Legend", "#", "winList[\'captionWindow\'].open();");\n MenuToolBar.Add("imgs/captionoff.png", "imgs/captionon.png", "Show Legend", "#", "winList[\'captionWindow\'].open();");\n
MenuToolBar.Add("imgs/execoff.png", "imgs/execon.png", "Commit Changes", "#", "doCommit(document.main_form);");\n MenuToolBar.Add("imgs/execoff.png", "imgs/execon.png", "Commit Changes", "#", "doCommit(document.getElementById(\'main_form\'));");\n
// Menu Display\n // Menu Display\n
MenuToolBar.Display();\n MenuToolBar.Display();\n
</script>\n </script>\n
</center>\n
\n \n
<div id="captionWindow" class="window" style="right:20px;left:auto;top:180px;width:120px;background-color:#dae6e6;border-color:#ebf8f8 #c0caca #c0caca #c0caca;">\n <div id="captionWindow" class="window" style="right:20px;left:auto;top:180px;width:120px;background-color:#dae6e6;border-color:#ebf8f8 #c0caca #c0caca #c0caca;">\n
<div class="titleBar" style="background-color:#dae6e6;color:black;">\n <div class="titleBar" style="background-color:#dae6e6;color:black;">\n
...@@ -88,27 +103,27 @@ here/BusinessTemplate_doSvnDiff">diff here</tal:py>\n ...@@ -88,27 +103,27 @@ here/BusinessTemplate_doSvnDiff">diff here</tal:py>\n
<area shape="rect" coords="34,0,49,13" href="" alt="" title="Close" onclick="this.parentWindow.close();return false;" />\n <area shape="rect" coords="34,0,49,13" href="" alt="" title="Close" onclick="this.parentWindow.close();return false;" />\n
</map>\n </map>\n
</div>\n </div>\n
<div class="clientArea" style="height:80px; background-color:#fffdfd;color:#806040;border-color:#c0caca #c0caca #c0caca #c0caca;">\n <div class="clientArea" style="background-color:#fffdfd;color:#806040;border-color:#c0caca #c0caca #c0caca #c0caca;text-align:center;">\n
<b><font color="black"><center>Legend</center></font></b><hr/>\n <span style="font-weight: bold; color: black;">Legend</span><hr/>\n
<center><table style="border: 1px solid gray;" width="80%" cellpadding="0" cellspacing="0">\n <table cellpadding="0" cellspacing="0" style="margin-left:auto; margin-right:auto;width:80%; border: 1px solid gray;">\n
<tbody>\n <tbody>\n
<tr height="18">\n <tr>\n
<td style="text-align: center; background-color: rgb(253, 117, 74);">Removed</td>\n <td style="text-align: center; background-color: rgb(253, 117, 74);">Removed</td>\n
<td>&nbsp;</td>\n <td>&nbsp;</td>\n
</tr>\n </tr>\n
<tr height="18">\n <tr>\n
<td colspan="2" style="text-align: center; background-color: rgb(253, 228, 6);">Changed</td>\n <td colspan="2" style="text-align: center; background-color: rgb(253, 228, 6);">Changed</td>\n
</tr>\n </tr>\n
<tr height="18">\n <tr>\n
<td>&nbsp;</td>\n <td>&nbsp;</td>\n
<td style="text-align: center; background-color: rgb(83, 253, 74);">Added</td>\n <td style="text-align: center; background-color: rgb(83, 253, 74);">Added</td>\n
</tr>\n </tr>\n
</tbody>\n </tbody>\n
</table></center>\n </table>\n
</div>\n </div>\n
</div>\n </div>\n
\n \n
<script>\n <script type="text/javascript">\n
winInit();\n winInit();\n
if (winList[\'captionWindow\']){\n if (winList[\'captionWindow\']){\n
winList[\'captionWindow\'].open();\n winList[\'captionWindow\'].open();\n
...@@ -118,7 +133,7 @@ here/BusinessTemplate_doSvnDiff">diff here</tal:py>\n ...@@ -118,7 +133,7 @@ here/BusinessTemplate_doSvnDiff">diff here</tal:py>\n
\n \n
</tal:block>\n </tal:block>\n
</tal:block>\n </tal:block>\n
</tal:block>
]]></string> </value> ]]></string> </value>
</item> </item>
......
...@@ -61,10 +61,9 @@ ...@@ -61,10 +61,9 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>right</string>
<string>left</string> <string>left</string>
<string>center</string>
<string>bottom</string> <string>bottom</string>
<string>hidden</string>
</list> </list>
</value> </value>
</item> </item>
...@@ -77,24 +76,19 @@ ...@@ -77,24 +76,19 @@
<value> <value>
<list> <list>
<string>listbox</string> <string>listbox</string>
<string>listbox_message</string>
</list> </list>
</value> </value>
</item> </item>
<item> <item>
<key> <string>center</string> </key> <key> <string>hidden</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>left</string> </key>
<value> <value>
<list/> <list>
<string>listbox_message</string>
</list>
</value> </value>
</item> </item>
<item> <item>
<key> <string>right</string> </key> <key> <string>left</string> </key>
<value> <value>
<list> <list>
<string>my_title</string> <string>my_title</string>
......
...@@ -61,8 +61,8 @@ ...@@ -61,8 +61,8 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>Default</string> <string>left</string>
<string>4</string> <string>right</string>
</list> </list>
</value> </value>
</item> </item>
...@@ -71,25 +71,25 @@ ...@@ -71,25 +71,25 @@
<value> <value>
<dictionary> <dictionary>
<item> <item>
<key> <string>4</string> </key> <key> <string>left</string> </key>
<value> <value>
<list> <list>
<string>my_changelog</string> <string>my_realm</string>
<string>my_realm_hidden</string> <string>my_user</string>
<string>my_added</string> <string>my_password</string>
<string>my_modified</string>
<string>my_removed</string>
</list> </list>
</value> </value>
</item> </item>
<item> <item>
<key> <string>Default</string> </key> <key> <string>right</string> </key>
<value> <value>
<list> <list>
<string>my_realm</string> <string>my_added</string>
<string>my_user</string> <string>my_modified</string>
<string>my_password</string> <string>my_removed</string>
<string>my_caller</string> <string>my_caller</string>
<string>my_changelog</string>
<string>my_realm_hidden</string>
</list> </list>
</value> </value>
</item> </item>
......
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>_text</string> </key> <key> <string>_text</string> </key>
<value> <string>here/changelog</string> </value> <value> <string>here/REQUEST/changelog</string> </value>
</item> </item>
</dictionary> </dictionary>
</pickle> </pickle>
......
...@@ -61,8 +61,8 @@ ...@@ -61,8 +61,8 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>Default</string> <string>left</string>
<string>hidden</string> <string>right</string>
</list> </list>
</value> </value>
</item> </item>
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
<value> <value>
<dictionary> <dictionary>
<item> <item>
<key> <string>Default</string> </key> <key> <string>left</string> </key>
<value> <value>
<list> <list>
<string>my_valid_until</string> <string>my_valid_until</string>
...@@ -85,21 +85,21 @@ ...@@ -85,21 +85,21 @@
</value> </value>
</item> </item>
<item> <item>
<key> <string>hidden</string> </key> <key> <string>right</string> </key>
<value> <value>
<list> <list>
<string>my_caller</string>
<string>my_added</string>
<string>my_modified</string>
<string>my_removed</string>
<string>my_valid_until_hidden</string> <string>my_valid_until_hidden</string>
<string>my_valid_from_hidden</string> <string>my_valid_from_hidden</string>
<string>my_realm_hidden</string> <string>my_realm_hidden</string>
<string>my_hostname_hidden</string> <string>my_hostname_hidden</string>
<string>my_failures_hidden</string> <string>my_failures_hidden</string>
<string>my_changelog</string>
<string>my_finger_print_hidden</string> <string>my_finger_print_hidden</string>
<string>my_issuer_dname_hidden</string> <string>my_issuer_dname_hidden</string>
<string>my_caller</string> <string>my_changelog</string>
<string>my_added</string>
<string>my_modified</string>
<string>my_removed</string>
</list> </list>
</value> </value>
</item> </item>
......
...@@ -124,7 +124,9 @@ ...@@ -124,7 +124,9 @@
</item> </item>
<item> <item>
<key> <string>default</string> </key> <key> <string>default</string> </key>
<value> <string></string> </value> <value>
<persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent>
</value>
</item> </item>
<item> <item>
<key> <string>description</string> </key> <key> <string>description</string> </key>
...@@ -267,4 +269,23 @@ ...@@ -267,4 +269,23 @@
</dictionary> </dictionary>
</pickle> </pickle>
</record> </record>
<record id="2" aka="AAAAAAAAAAI=">
<pickle>
<tuple>
<tuple>
<string>Products.Formulator.TALESField</string>
<string>TALESMethod</string>
</tuple>
<none/>
</tuple>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>_text</string> </key>
<value> <string>here/REQUEST/changelog</string> </value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData> </ZopeData>
...@@ -61,9 +61,6 @@ ...@@ -61,9 +61,6 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>right</string>
<string>left</string>
<string>center</string>
<string>bottom</string> <string>bottom</string>
</list> </list>
</value> </value>
...@@ -73,31 +70,13 @@ ...@@ -73,31 +70,13 @@
<value> <value>
<dictionary> <dictionary>
<item> <item>
<key> <string>bottom</string> </key> <key> <string>bottom</string> </key>
<value> <value>
<list> <list>
<string>listbox</string> <string>listbox</string>
</list> </list>
</value> </value>
</item> </item>
<item>
<key> <string>center</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>left</string> </key>
<value>
<list/>
</value>
</item>
<item>
<key> <string>right</string> </key>
<value>
<list/>
</value>
</item>
</dictionary> </dictionary>
</value> </value>
</item> </item>
......
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
<key> <string>group_list</string> </key> <key> <string>group_list</string> </key>
<value> <value>
<list> <list>
<string>Default</string> <string>left</string>
</list> </list>
</value> </value>
</item> </item>
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<value> <value>
<dictionary> <dictionary>
<item> <item>
<key> <string>Default</string> </key> <key> <string>left</string> </key>
<value> <value>
<list> <list>
<string>my_preferred_subversion_user_name</string> <string>my_preferred_subversion_user_name</string>
......
...@@ -68,21 +68,14 @@ ...@@ -68,21 +68,14 @@
</item> </item>
<item> <item>
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string encoding="cdata"><![CDATA[ <value> <string>return \'\'\'function doCommit(form){\n
submitAction(form,\'BusinessTemplate_doSvnCommit\');\n
return \'\'\'<script>\n
\n
function doCommit(form){\n
submitAction(form,\'%(absURL)s/BusinessTemplate_doSvnCommit\');\n
}\n }\n
\n \n
function goBack(){\n function goBack(){\n
open(\'%(absURL)s/BusinessTemplate_viewSvnStatus?do_extract=False\', \'_self\');\n open(\'BusinessTemplate_viewSvnStatus?do_extract=False\', \'_self\');\n
} \n }\'\'\'\n
</script>\'\'\'% {\'absURL\' : context.absolute_url(), }\n </string> </value>
]]></string> </value>
</item> </item>
<item> <item>
<key> <string>_code</string> </key> <key> <string>_code</string> </key>
...@@ -92,7 +85,7 @@ return \'\'\'<script>\n ...@@ -92,7 +85,7 @@ return \'\'\'<script>\n
</item> </item>
<item> <item>
<key> <string>_filepath</string> </key> <key> <string>_filepath</string> </key>
<value> <string>Script (Python):/erp5/portal_skins/erp5_svn/BusinessTemplate_doCreateJavaScriptDiff</string> </value> <value> <string>Script (Python):/nexedi/portal_skins/erp5_svn/js/BusinessTemplate_doCreateJavaScriptDiff</string> </value>
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
...@@ -121,10 +114,7 @@ return \'\'\'<script>\n ...@@ -121,10 +114,7 @@ return \'\'\'<script>\n
<item> <item>
<key> <string>co_varnames</string> </key> <key> <string>co_varnames</string> </key>
<value> <value>
<tuple> <tuple/>
<string>_getattr_</string>
<string>context</string>
</tuple>
</value> </value>
</item> </item>
</dictionary> </dictionary>
......
...@@ -80,8 +80,7 @@ if "files" in context.REQUEST.keys():\n ...@@ -80,8 +80,7 @@ if "files" in context.REQUEST.keys():\n
else:\n else:\n
files = None\n files = None\n
\n \n
print \'\'\'\n return \'\'\'\n
<script>\n
var tree = null;\n var tree = null;\n
var business_template;\n var business_template;\n
var is_expanded=false;\n var is_expanded=false;\n
...@@ -101,6 +100,36 @@ print \'\'\'\n ...@@ -101,6 +100,36 @@ print \'\'\'\n
} else if(document.all) {\n } else if(document.all) {\n
var ie4 = true;\n var ie4 = true;\n
}\n }\n
\n
function showObject() {\n
if (ns4) {\n
var splash = document.splashScreen;\n
\tsplash.visibility = "visible";\n
}\n
if (ie4) {\n
var splash = document.all.splashScreen;\n
\tsplash.style.visibility = "visible";\n
}\n
if (upLevel){\n
var splash = document.getElementById("splashScreen");\n
splash.style.visibility = "visible";\n
}\n
}\n
\n
function hideObject() {\n
if (ns4) {\n
var splash = document.splashScreen;\n
\t splash.visibility = "hide";\n
}\n
if (ie4) {\n
var splash = document.all.splashScreen;\n
\t splash.style.visibility = "hidden";\n
}\n
if (upLevel){\n
var splash = document.getElementById("splashScreen");\n
splash.style.visibility = "hidden";\n
}\n
}\n
\n \n
function preLoadImages(){\n function preLoadImages(){\n
var imSrcAr = new \n var imSrcAr = new \n
...@@ -114,6 +143,7 @@ print \'\'\'\n ...@@ -114,6 +143,7 @@ print \'\'\'\n
\n \n
function doOnLoad(){\n function doOnLoad(){\n
preLoadImages();\n preLoadImages();\n
\n
tree=new dhtmlXTreeObject(document.getElementById(\'treebox1\'),\'100%%\',\'100%%\',0);\n tree=new dhtmlXTreeObject(document.getElementById(\'treebox1\'),\'100%%\',\'100%%\',0);\n
tree.setImagePath(\'imgs/\');\n tree.setImagePath(\'imgs/\');\n
tree.setDragHandler();\n tree.setDragHandler();\n
...@@ -210,7 +240,7 @@ print \'\'\'\n ...@@ -210,7 +240,7 @@ print \'\'\'\n
if (nbRemoved==0 && nbAdded==0 && nbModified==0) {\n if (nbRemoved==0 && nbAdded==0 && nbModified==0) {\n
alert(\'Nothing to commit !\');\n alert(\'Nothing to commit !\');\n
} else {\n } else {\n
submitAction(form,\'%(absURL)s/BusinessTemplate_doSvnCommit\');\n submitAction(form,\'BusinessTemplate_doSvnCommit\');\n
}\n }\n
}\n }\n
\n \n
...@@ -264,7 +294,7 @@ print \'\'\'\n ...@@ -264,7 +294,7 @@ print \'\'\'\n
alert("Nothing to revert !");\n alert("Nothing to revert !");\n
} else {\n } else {\n
if(confirm(\'Are you sure you want to revert changes?\')){\n if(confirm(\'Are you sure you want to revert changes?\')){\n
submitAction(form,\'%(absURL)s/BusinessTemplate_doSvnRevert\');\n submitAction(form,\'BusinessTemplate_doSvnRevert\');\n
}\n }\n
}\n }\n
}\n }\n
...@@ -317,7 +347,7 @@ print \'\'\'\n ...@@ -317,7 +347,7 @@ print \'\'\'\n
if (nbRemoved==0 && nbAdded==0 && nbModified==0) {\n if (nbRemoved==0 && nbAdded==0 && nbModified==0) {\n
alert(\'Nothing to diff !\');\n alert(\'Nothing to diff !\');\n
} else {\n } else {\n
submitAction(form,\'%(absURL)s/BusinessTemplate_viewSvnDiff\');\n submitAction(form,\'BusinessTemplate_viewSvnDiff\');\n
}\n }\n
}\n }\n
\n \n
...@@ -369,46 +399,43 @@ print \'\'\'\n ...@@ -369,46 +399,43 @@ print \'\'\'\n
document.onmousemove = getMouse;\n document.onmousemove = getMouse;\n
\n \n
function update(){\n function update(){\n
open(\'%(absURL)s/BusinessTemplate_doSvnUpdate\', \'_self\');\n open(\'BusinessTemplate_doSvnUpdate\', \'_self\');\n
}\n }\n
\n \n
function infos(){\n function infos(){\n
open(\'%(absURL)s/BusinessTemplate_doSvnInfo\', \'_self\');\n open(\'BusinessTemplate_doSvnInfo\', \'_self\');\n
}\n }\n
\n \n
function cleanup(){\n function cleanup(){\n
open(\'%(absURL)s/BusinessTemplate_doSvnCleanup\', \'_self\');\n open(\'BusinessTemplate_doSvnCleanup\', \'_self\');\n
}\n }\n
\n \n
function log(){\n function log(){\n
//hide popup\n //hide popup\n
document.getElementById(\'menudiv\').style.display = "none";\n document.getElementById(\'menudiv\').style.display = "none";\n
open(\'%(absURL)s/BusinessTemplate_doSvnLog?added=\'+tree.getSelectedItemId(), \'_self\');\n open(\'BusinessTemplate_doSvnLog?added=\'+tree.getSelectedItemId(), \'_self\');\n
}\n }\n
\n \n
function ls(){\n function ls(){\n
//hide popup\n //hide popup\n
document.getElementById(\'menudiv\').style.display = "none";\n document.getElementById(\'menudiv\').style.display = "none";\n
open(\'%(absURL)s/BusinessTemplate_doSvnLs?added=\'+tree.getSelectedItemId(), \'_self\');\n open(\'BusinessTemplate_doSvnLs?added=\'+tree.getSelectedItemId(), \'_self\');\n
}\n }\n
\n \n
function treeTaller(){\n function treeTaller(){\n
if(curHeight < 1000){\n if(curHeight < 1000){\n
curHeight += 100;\n curHeight += 100;\n
document.getElementById(\'MainTreeTD\').style.height = curHeight+"px";\n document.getElementById(\'treebox1\').style.height = curHeight+"px";\n
}\n }\n
}\n }\n
\n \n
function treeShorter(){\n function treeShorter(){\n
if(curHeight > 200){\n if(curHeight > 200){\n
curHeight -= 100;\n curHeight -= 100;\n
document.getElementById(\'MainTreeTD\').style.height = curHeight+"px";\n document.getElementById(\'treebox1\').style.height = curHeight+"px";\n
}\n }\n
}\n }\n
</script>\n \'\'\'% {\'btId\' : context.getId(), \'extract\' : do_extract}\n
\'\'\'% {\'btId\' : context.getId(), \'absURL\' : context.absolute_url(), \'extract\' : do_extract}\n
\n
return printed\n
]]></string> </value> ]]></string> </value>
...@@ -421,7 +448,7 @@ return printed\n ...@@ -421,7 +448,7 @@ return printed\n
</item> </item>
<item> <item>
<key> <string>_filepath</string> </key> <key> <string>_filepath</string> </key>
<value> <string>Script (Python):/erp5/portal_skins/erp5_svn/BusinessTemplate_doCreateJavaScriptStatus</string> </value> <value> <string>Script (Python):/nexedi/portal_skins/erp5_svn/js/BusinessTemplate_doCreateJavaScriptStatus</string> </value>
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
...@@ -451,8 +478,6 @@ return printed\n ...@@ -451,8 +478,6 @@ return printed\n
<key> <string>co_varnames</string> </key> <key> <string>co_varnames</string> </key>
<value> <value>
<tuple> <tuple>
<string>_print_</string>
<string>_print</string>
<string>_getattr_</string> <string>_getattr_</string>
<string>context</string> <string>context</string>
<string>do_extract</string> <string>do_extract</string>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<dictionary> <dictionary>
<item> <item>
<key> <string>_EtagSupport__etag</string> </key> <key> <string>_EtagSupport__etag</string> </key>
<value> <string>ts45550322.52</string> </value> <value> <string>ts50974111.7</string> </value>
</item> </item>
<item> <item>
<key> <string>__ac_local_roles__</string> </key> <key> <string>__ac_local_roles__</string> </key>
...@@ -62,15 +62,15 @@ ...@@ -62,15 +62,15 @@
\n \n
function DisplayToolBarMenu() {\n function DisplayToolBarMenu() {\n
if (document.getElementById || document.all) {\n if (document.getElementById || document.all) {\n
var Z="<TABLE border=0 cellpadding=1 cellspacing=1><TR>";\n var Z="<div style=\'text:align: center;\'><table cellpadding=\'1\' cellspacing=\'1\' style=\'border:0;margin-left:auto; margin-right:auto;\'><tr>";\n
for (var i=0; i<this.nb; i++) {\n for (var i=0; i<this.nb; i++) {\n
Z+="<TD onMouseOver=\'DisplayToolBarMenuOver(this,"+i+")\' onMouseOut=\'DisplayToolBarMenuOut(this,"+i+")\' onMouseDown=\'DisplayToolBarMenuDown(this,"+i+")\' onClick=\'DisplayToolBarMenuClick(this,"+i+")\' style=\'border-style:solid;border-width:1px;border-color:"+this.colBackground+";"+this.style+";cursor:pointer\'><IMG name=\'MenuToolBarIMG"+i+"\' src=\'"+this[i].imgOff+"\' border=0 width="+this.width+" height="+this.height+" align=top>&nbsp;"+this[i].text+"</TD>";\n Z+="<td onMouseOver=\'DisplayToolBarMenuOver(this,"+i+")\' onMouseOut=\'DisplayToolBarMenuOut(this,"+i+")\' onMouseDown=\'DisplayToolBarMenuDown(this,"+i+")\' onClick=\'DisplayToolBarMenuClick(this,"+i+")\' style=\'border-style:solid;border-width:1px;border-color:"+this.colBackground+";"+this.style+";cursor:pointer\'><img name=\'MenuToolBarIMG"+i+"\' src=\'"+this[i].imgOff+"\' border=0 width="+this.width+" height="+this.height+" align=top>&nbsp;"+this[i].text+"</TD>";\n
}\n }\n
Z+="</TR></TABLE>";\n Z+="</tr></table></div";\n
} else {\n } else {\n
var Z="| &nbsp;";\n var Z="| &nbsp;";\n
for (var i=0; i<this.nb; i++) {\n for (var i=0; i<this.nb; i++) {\n
Z+="<A href=\'"+this[i].url+"\' style=\'"+this.style+"\'><IMG name=\'MenuToolBarIMG"+i+"\' src=\\""+this[i].imgOff+"\\" border=0 width="+this.width+" height="+this.height+" align=top>&nbsp;"+this[i].text+"</A>&nbsp;|&nbsp;";\n Z+="<a href=\'"+this[i].url+"\' style=\'"+this.style+"\'><img name=\'MenuToolBarIMG"+i+"\' src=\\""+this[i].imgOff+"\\" border=0 width="+this.width+" height="+this.height+" align=top>&nbsp;"+this[i].text+"</a>&nbsp;|&nbsp;";\n
}\n }\n
}\n }\n
document.write(Z);\n document.write(Z);\n
...@@ -131,7 +131,7 @@ ...@@ -131,7 +131,7 @@
</item> </item>
<item> <item>
<key> <string>size</string> </key> <key> <string>size</string> </key>
<value> <int>3561</int> </value> <value> <int>3648</int> </value>
</item> </item>
<item> <item>
<key> <string>title</string> </key> <key> <string>title</string> </key>
......
2006-06-22 chris
* erp5Subversion is now XHTML Strict compliant
* erp5Subversion works with erp5_xhtml_style
2006-06-12 chris 2006-06-12 chris
* added Shorted/Taller buttons to adjust tree height * added Shorted/Taller buttons to adjust tree height
......
0.8.0 0.8.1
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment