]> code.citadel.org Git - citadel.git/blobdiff - webcit/static/t/summary/page.html
One id too many: the summary page was already displayed in a div marked as id="content"
[citadel.git] / webcit / static / t / summary / page.html
index 085cfa3520779581af7ac57e590b1fa97db7e009..6daa3be86776060868ee9944f3ccf57b447e4e88 100644 (file)
@@ -1,4 +1,4 @@
-<div id="Xroom_banner_override">
+<div id="room_banner_override">
 <table border=0><tr>
 <td><img src="static/webcit_icons/essen/32x32/summary.png"></td>
 <td><h1><?_("Summary page for ")>
@@ -12,7 +12,7 @@
 * In the future we might consider updating individual sections of the summary
 * instead of the whole thing.
 ")>
-<div id="content" class="service">
+<div class="service">
   <table width="98%" cellspacing="3" cellpadding="0">
     <tr valign=top>
       <td width="33%">
@@ -21,7 +21,7 @@
            <?_("Messages")>
          </div><div class="boxcontent">        
            <div id="msg_inner">
-             <?SUMMARY:NEWMESSAGES_SELECTION>
+               <img src="static/webcit_icons/throbber.gif">
        </div></div></div>
       </td>
       <td width="33%">
@@ -30,7 +30,7 @@
            <?_("Tasks")>
          </div><div class="boxcontent">        
            <div id="tasks_inner">      
-             <?SUMMARY:TASKSSECTION>
+               <img src="static/webcit_icons/throbber.gif">
        </div></div></div>
       </td>
       <td width="33%">
@@ -39,7 +39,7 @@
            <?_("Today&nbsp;on&nbsp;your&nbsp;calendar")>
          </div><div class="boxcontent">        
            <div id="calendar_inner">
-             <?SUMMARY:CALENDAR_SECTION>
+               <img src="static/webcit_icons/throbber.gif">
        </div></div></div>
       </td>
       
@@ -50,7 +50,9 @@
          <div class="boxlabel">        
            <?_("Who‘s&nbsp;online&nbsp;now")>
          </div><div class="boxcontent">
-           <div id="who_inner"><?=("who_summary")></div></div></div>
+           <div id="who_inner">
+               <img src="static/webcit_icons/throbber.gif">
+           </div></div></div>
       </td>
       <td width="33%">
        <div class="box">       
 </div>
 
 <script type="text/javascript">
- new Ajax.PeriodicalUpdater('msg_inner', 'new_messages_html',
-                            { method: 'get', frequency: 60 }  );
- new Ajax.PeriodicalUpdater('tasks_inner', 'tasks_inner_html',
-                            { method: 'get', frequency: 120 }  );
- new Ajax.PeriodicalUpdater('calendar_inner', 'calendar_inner_html',
-                            { method: 'get', frequency: 90 }  );
- new Ajax.PeriodicalUpdater('do_template', 'template=who_summary',
-                            { method: 'get', frequency: 30 }  );
+ new Ajax.PeriodicalUpdater('msg_inner', 'new_messages_html', { method: 'get', frequency: 60 }  );
+ new Ajax.PeriodicalUpdater('tasks_inner', 'tasks_inner_html', { method: 'get', frequency: 120 }  );
+ new Ajax.PeriodicalUpdater('calendar_inner', 'calendar_inner_html', { method: 'get', frequency: 90 }  );
+ new Ajax.PeriodicalUpdater('who_inner', 'do_template?template=who_summary', { method: 'get', frequency: 30 }  );
 </script>