Monotone-Parent: 6e0ac31d3221ebff37ebe3b730483079aafa8b52

Monotone-Revision: aac4c2b6ef4eb503b192dfb0ac6784b3f50c3f4c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-09T15:18:47
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-11-09 15:18:47 +00:00
parent f24bc66403
commit 458280a93b
4 changed files with 25 additions and 14 deletions
+8 -14
View File
@@ -84,6 +84,10 @@
};
};
methods = {
view = {
protectedBy = "View";
pageName = "UIxMailListView";
};
subscribe = {
protectedBy = "<public>";
actionClass = "UIxMailFolderActions";
@@ -99,10 +103,6 @@
actionClass = "UIxMailFolderActions";
actionName = "quotas";
};
view = {
protectedBy = "View";
pageName = "UIxMailListView";
};
ajax = {
protectedBy = "View";
pageName = "UIxMailAjaxRequest";
@@ -378,16 +378,6 @@
);
};
};
methods = {
view = {
protectedBy = "View";
pageName = "UIxMailListView";
};
getMail = {
protectedBy = "View";
pageName = "UIxMailListView";
};
};
};
SOGoDraftObject = {
@@ -398,6 +388,10 @@
};
};
methods = {
view = {
protectedBy = "View";
pageName = "UIxMailEditor";
};
edit = {
protectedBy = "View";
pageName = "UIxMailEditor";
+3
View File
@@ -66,6 +66,8 @@
<div id="pageContent"><var:component-content/></div>
<div id="javascriptSafetyNet"><!-- space --></div>
<script type="text/javascript">
var ApplicationBaseURL = '<var:string value="applicationPath" />';
var ResourcesURL = '/SOGo.woa/WebServerResources';
@@ -95,6 +97,7 @@
<var:foreach list="additionalJSFiles" item="item"
><script type="text/javascript" var:src="item"><!-- space --></script>
</var:foreach>
<script type="text/javascript">addEvent(window, 'load', onFinalLoadHandler);</script>
</var:if>
<var:if condition="isCompatibleBrowser" const:negate="YES">
<div id="loginScreen">
+8
View File
@@ -503,6 +503,14 @@ INPUT#searchValue
background-position: 2px 2px;
color: #aaa; }
DIV#javascriptSafetyNet
{ position: absolute;
background-color: transparent;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px; }
DIV.javascriptPopupBackground
{ position: absolute;
background-color: #999;
+6
View File
@@ -1437,6 +1437,12 @@ function createFolderCallback(http) {
}
}
function onFinalLoadHandler(event) {
var safetyNet = $("javascriptSafetyNet");
if (safetyNet)
safetyNet.parentNode.removeChild(safetyNet);
}
addEvent(window, 'load', onLoadHandler);
function parent$(element) {