Show
Ignore:
Timestamp:
05/12/08 16:18:28 (6 months ago)
Author:
Christopher Jung <bktheg@web.de>
git-committer:
Christopher Jung <bktheg@web.de> 1210601908 +0200
git-parent:

[5dc487d6f8fa08760e5156f406bf9475a1f8ce56]

git-author:
Christopher Jung <bktheg@web.de> 1210601908 +0200
Message:

[feature] Es wird nun eine Java-Session aufgebaut und ueber Requests hinweg erhalten

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • templates/main.html

    r07ac587 r9fc4d87  
    2121 
    2222        function checkPMStatus() { 
    23                 var url = './ajax'
     23                var url = location.href
    2424                var params = 'module={global.module}&sess={global.sess}&action=hasNewPm'; 
    25                  
     25 
    2626                var myAjax = new Ajax.Request( url, { 
    2727                                method: 'get',  
     
    7575                        $('helpboxtext').innerHTML = ''; 
    7676                         
    77                         var myAjax = new Ajax.Request( "./ajax",  { 
     77                        var myAjax = new Ajax.Request( location.href,  { 
    7878                                method: 'get',  
    7979                                parameters: 'module={global.module}&sess={global.sess}&action=getHelpText&page='+currentModule,  
     
    9696                        var cmd = $('adminConsoleCommand').value; 
    9797                        $('adminConsoleResponse').innerHTML = ''; 
    98                         var myAjax = new Ajax.Request( "./ajax",  { 
     98                        var myAjax = new Ajax.Request( location.href,  { 
    9999                                method: 'get',  
    100100                                parameters: 'module=admin&sess={global.sess}&action=ajax&namedplugin=net.driftingsouls.ds2.server.modules.admin.AdminConsole&responseOnly=1&cmd='+encodeURIComponent(cmd),