|
From: Maxim <wz...@us...> - 2005-09-09 14:45:42
|
Update of /cvsroot/bbps/bbps/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6776 Modified Files: admin_panel.tpl _footer.tpl _header.tpl Log Message: * made orphanes searchable * fixed most of the bugs that were on sf.net * making some extra comments * made upgrade schema more complete * for more info, see CHANGELOG entries for September 7 and September 9, 2005. Index: _header.tpl =================================================================== RCS file: /cvsroot/bbps/bbps/templates/_header.tpl,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** _header.tpl 4 Jun 2005 21:53:16 -0000 1.33 --- _header.tpl 9 Sep 2005 14:45:34 -0000 1.34 *************** *** 19,25 **** <?php if($GLOBALS['CONF_ENABLE_AUTOCOMPLETE']){ ?> ! <script language="javascript" type="text/javascript" src="js/actb.js"></script> ! <script language="javascript" type="text/javascript" src="js/common.js"></script> ! <?php } ?> </head> <body> --- 19,29 ---- <?php if($GLOBALS['CONF_ENABLE_AUTOCOMPLETE']){ ?> ! <script language="text/javascript" type="text/javascript" src="js/actb.js"></script> ! <script language="text/javascript" type="text/javascript" src="js/common.js"></script> ! <? ! if (DEBUG == TRUE) { ! echo '<script type="text/javascript">var starttime = new Date().getTime();</script>'; ! } ! } ?> </head> <body> Index: admin_panel.tpl =================================================================== RCS file: /cvsroot/bbps/bbps/templates/admin_panel.tpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** admin_panel.tpl 5 Jun 2005 16:24:33 -0000 1.15 --- admin_panel.tpl 9 Sep 2005 14:45:34 -0000 1.16 *************** *** 54,58 **** </form> <? ! if (DEBUG == 1) { echo "<br>"; echo "<b>Debug information:</b><br>"; --- 54,58 ---- </form> <? ! if (DEBUG == TRUE) { echo "<br>"; echo "<b>Debug information:</b><br>"; Index: _footer.tpl =================================================================== RCS file: /cvsroot/bbps/bbps/templates/_footer.tpl,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** _footer.tpl 29 Apr 2005 09:22:41 -0000 1.22 --- _footer.tpl 9 Sep 2005 14:45:34 -0000 1.23 *************** *** 10,14 **** </p> </div> ! <script type="javascript">window.status='Parsetime: <? echo timing('end'); ?> ';</script> </body> </html> --- 10,21 ---- </p> </div> ! <? if (DEBUG == TRUE) { ! ?> ! <script type="text/javascript"> ! var parsetime = ((new Date().getTime() - starttime) / 1000); ! window.status='Remote parsetime: <? echo timing('end'); ?>, local parsetime: '+parsetime+'';</script> </body> + <? + } + ?> </html> |