/adei/ui

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/ui

« back to all changes in this revision

Viewing changes to index.php

  • Committer: Suren A. Chilingaryan
  • Date: 2008-04-20 05:22:25 UTC
  • Revision ID: csa@dside.dyndns.org-20080420052225-enu1yngq1pny531z
Layout redesign: search tab, controls, menu

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
} else {
25
25
    $_SESSION['setup'] = $SETUP;
26
26
}
27
 
?>
28
 
 
29
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 
27
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
30
28
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
31
29
<head>
32
30
    <title>ADEI (Advanced Data Extraction Infrastracture) </title>
86
84
//<![CDATA[
87
85
        function Geometry() {
88
86
            var new_width = windowGetWidth();
89
 
            var new_height = (windowGetHeight() - document.getElementById("header_div").offsetHeight);
 
87
            var new_height = windowGetHeight();
90
88
            <?moduleAdjustGeometry("new_width", "new_height");?>
91
89
        }
92
90
 
96
94
                echo "adei_options." . $key . "=\"" . $value . "\";\n";
97
95
            }?>
98
96
            
99
 
            adei = new ADEI("main_sidebar", "menu_zone", "<?echo session_id();?>");
 
97
            adei = new ADEI("main_div", "main_sidebar", "main_statusbar", "menu_zone", "<?echo session_id();?>");
100
98
            adei.SetOptions(adei_options);
101
99
            
102
100
            adei.SetProperty('window_border', <?echo $AJAX_WINDOW_BORDER;?>);
127
125
        <table width="100%" cellspacing="0" cellpadding="0"><tr>
128
126
            <td class="title">
129
127
                <b><?echo $TITLE;?></b>
130
 
            </td><td class="links">
131
 
                <div><?moduleLinkModules();?></div>
 
128
            </td><td class="right">
 
129
                <div class="search"><input/></div>
 
130
                <div class="links"><table width="100%" height="100%" cellspacing="0" cellpadding="0"><tr><td>
 
131
                    <?moduleLinkModules();?>
 
132
                </td></tr></table></div>
132
133
            </td>
133
134
        </tr></table>
134
135
    </div>
135
 
    
136
 
    <table align="center" cellspacing="0" cellpadding="0">
 
136
    <div id="menu_zone" class="menu_button"></div>
 
137
    <div><table align="center" cellspacing="0" cellpadding="0">
137
138
        <tr><td colspan="2">
138
139
 
139
140
        </td></tr>
140
141
        <tr <?/*style="height: 100%"*/?>>
141
 
            <td id="main_sidebar">
142
 
                <div id="menu_zone" class="menu_button"></div>
 
142
            <td id="main_sidebar"><div>
 
143
                <?/*<div id="menu_zone" class="menu_button"></div>*/?>
143
144
                <?moduleLinkPopups();?>
144
 
            </td>
145
 
            <td width="100%"><?modulePlacePages();?></td>
 
145
            </div></td>
 
146
            <td width="100%"><div id="main_div">
 
147
                <?modulePlacePages();?>
 
148
            </div></td>
146
149
        </tr>
147
 
    </table>
 
150
    </table></div>
 
151
    <div id="main_statusbar" class="statusbar">
 
152
        <div>aaa</div>
 
153
    </div>
148
154
</div>
149
155
</body>
150
156
</html>