[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL - action.pt:1.1.4.3 limit.pt:1.1.4.4 main.pt:1.1.4.3
Jim Fulton
jim@zope.com
Mon, 10 Jun 2002 10:52:14 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL
In directory cvs.zope.org:/tmp/cvs-serv30254/lib/python/Zope/App/OFS/Content/Folder/Views/XUL
Modified Files:
Tag: Zope-3x-branch
action.pt limit.pt main.pt
Log Message:
Implemented:
http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/PathNamespaceQualificationSyntax
without a short-hand syntax for the creation namespace which may go
away.
=== Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL/action.pt 1.1.4.2 => 1.1.4.3 ===
function action(limit) {
var s = new SOAPCall();
- s.transportURI = "http://physics.cbu.edu:8082/loaded/view::methods/";
+ s.transportURI = "http://physics.cbu.edu:8082/loaded/@@methods/";
s.verifySourceHeader = true;
if (!s.verifySourceHeader)
netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
var p1 = new SOAPParameter(parseInt(limit), "limit");
- s.encode(0, "setLimit", "http://physics.cbu.edu:8082/loaded/view::methods/", 0, null, 1, new Array(p1));
+ s.encode(0, "setLimit", "http://physics.cbu.edu:8082/loaded/@@methods/", 0, null, 1, new Array(p1));
s.invoke();
- s.encode(0, "getLimit", "http://physics.cbu.edu:8082/loaded/view::methods/", 0, null, 0, new Array());
+ s.encode(0, "getLimit", "http://physics.cbu.edu:8082/loaded/@@methods/", 0, null, 0, new Array());
var r = s.invoke();
oncompletion(r, s, 0);
=== Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL/limit.pt 1.1.4.3 => 1.1.4.4 ===
title view/title">
- <script src="http://physics.cbu.edu:8080/loaded/view::limit_xul/action_js" />
+ <script src="http://physics.cbu.edu:8080/loaded/@@limit_xul/action_js" />
<description tal:content="view/description">
Form Description
=== Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL/main.pt 1.1.4.2 => 1.1.4.3 ===
<hbox height="600">
- <iframe id="tabs" src="./view::main_xul/menu"/>
+ <iframe id="tabs" src="@@main_xul/menu"/>
<splitter collapse="before" resizeafter="farthest">
<spacer flex="1"/>
<grippy/>
<spacer flex="1"/>
</splitter>
- <iframe flex="1" id="content" src="./view::limit_xul"/>
+ <iframe flex="1" id="content" src="@@limit_xul"/>
</hbox>