BUG 0000 User Experience (single app option added) 1st commit

- login added
- "single application" option added
- simplified improved
This commit is contained in:
Erik Amaru Ortiz
2012-02-24 19:32:24 -04:00
parent 04abe5f19f
commit f8ab55a061
133 changed files with 24507 additions and 1539 deletions

View File

@@ -6,7 +6,7 @@ function openPMFolder( uid, rootfolder ){
getPMFolderContent(uid);
return;
}
document.getElementById('child_'+uid).innerHTML = "<img src='/js/maborak/core/images/loader_B.gif' >";//<div style="background: transparent url(http://hugo.opensource.colosa.net/js/maborak/core/images/loader_B.gif) no-repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; width: 32px; height: 32px; position: absolute; display: none; top: 514.5px; left: 609.5px;" class="panel_loader___processmaker"></div><div style="" class="panel_statusBar___processmaker"><div style="position: relative; text-align: center; display: none;" class="panel_statusButtons___processmaker"></div>';
document.getElementById('child_'+uid).innerHTML = "<img src='/images/classic/loader_B.gif' >";
var oRPC = new leimnud.module.rpc.xmlhttp({
@@ -30,7 +30,7 @@ function openPMFolder( uid, rootfolder ){
}
function getPMFolderContent(uid){
document.getElementById('spanFolderContent').innerHTML = "<img src='/js/maborak/core/images/loader_B.gif' >";//"Loading..";
document.getElementById('spanFolderContent').innerHTML = "<img src='/images/classic/loader_B.gif' >";//"Loading..";
var oRPC = new leimnud.module.rpc.xmlhttp({
url : 'appFolderAjax',
async : true,
@@ -51,7 +51,7 @@ function getPMFolderContent(uid){
}
function getPMFolderSearchResult(searchKeyword,type){
document.getElementById('spanFolderContent').innerHTML = "<img src='/js/maborak/core/images/loader_B.gif' >";//"Loading..";
document.getElementById('spanFolderContent').innerHTML = "<img src='/images/classic/loader_B.gif' >";//"Loading..";
var oRPC = new leimnud.module.rpc.xmlhttp({
url : 'appFolderAjax',
async : true,
@@ -72,7 +72,7 @@ function getPMFolderSearchResult(searchKeyword,type){
}
function getPMFolderTags(rootfolder){
document.getElementById('tags_cloud').innerHTML = "<img src='/js/maborak/core/images/loader_B.gif' >";//"Loading..";
document.getElementById('tags_cloud').innerHTML = "<img src='/images/classicloader_B.gif' >";//"Loading..";
var oRPC = new leimnud.module.rpc.xmlhttp({
url : 'appFolderAjax',
async : false,
@@ -251,21 +251,21 @@ var documentInfo = function(docID,appDocId,docVersion,actionType,appId,docType,u
};
var documentdelete = function(docID,appDocId,docVersion,actionType,appId,docType,usrUid){
new leimnud.module.app.confirm().make({
label : G_STRINGS.ID_MSG_CONFIRM_DELETE_FILE,
action: function() {
var oRPC = new leimnud.module.rpc.xmlhttp({
new leimnud.module.app.confirm().make({
label : G_STRINGS.ID_MSG_CONFIRM_DELETE_FILE,
action: function() {
var oRPC = new leimnud.module.rpc.xmlhttp({
url : 'appFolderAjax',
async : true,
method:'POST',
method:'POST',
args: 'action=documentdelete&sFileUID='+appDocId+'&docVersion='+docVersion
});
oRPC.callback = function(oRPC) {
window.location = 'appFolderList';
}.extend(this);
oRPC.make();
}.extend(this)
});
oRPC.callback = function(oRPC) {
window.location = 'appFolderList';
}.extend(this);
oRPC.make();
}.extend(this)
});
@@ -277,21 +277,21 @@ var documentdelete = function(docID,appDocId,docVersion,actionType,appId,docType
function deletePMFolder( uid, rootfolder ){
new leimnud.module.app.confirm().make({
label : G_STRINGS.ID_MSG_CONFIRM_DELETE_FILE,
action: function() {
var oRPC = new leimnud.module.rpc.xmlhttp({
new leimnud.module.app.confirm().make({
label : G_STRINGS.ID_MSG_CONFIRM_DELETE_FILE,
action: function() {
var oRPC = new leimnud.module.rpc.xmlhttp({
url : 'appFolderAjax',
async : true,
method:'POST',
method:'POST',
args: 'action=deletePMFolder&sFileUID='+uid+'&rootfolder='+rootfolder
});
oRPC.callback = function(oRPC) {
window.location = 'appFolderList';
}.extend(this);
oRPC.make();
}.extend(this)
});
oRPC.callback = function(oRPC) {
window.location = 'appFolderList';
}.extend(this);
oRPC.make();
}.extend(this)
});
}