Changeset 3674 for branches

Show
Ignore:
Timestamp:
12/07/07 17:33:14 (1 year ago)
Author:
mscott
Message:

Remove old commentary; use XHTML 1.1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/async-wx-70b/Server/schevoserver/public/schevo/navigator.html

    r3672 r3674  
    1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
    2 <html> 
     1<?xml version="1.0" encoding="UTF-8"?> 
     2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 
     3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 
    34  <head> 
    45    <title>Schevo Database Navigator</title> 
     
    67 
    78    <!-- ExtJS resources --> 
    8     <link rel="stylesheet" type="text/css" href="/ext-2.0/resources/css/ext-all.css"></link> 
    9     <script type="text/javascript" src="/ext-2.0/adapter/ext/ext-base.js"></script> 
    10     <script type="text/javascript" src="/ext-2.0/ext-all-debug.js"></script> 
     9    <link rel="stylesheet" type="text/css"  
     10          href="/ext-2.0/resources/css/ext-all.css" /> 
     11    <script type="text/javascript" src="/ext-2.0/adapter/ext/ext-base.js" /> 
     12    <script type="text/javascript" src="/ext-2.0/ext-all-debug.js" /> 
    1113 
    1214    <!-- Schevo resources --> 
    13     <script type="text/javascript" src="/schevo/navigator.js"></script> 
    14  
     15    <script type="text/javascript" src="/schevo/navigator.js" /> 
    1516  </head> 
    1617  <body> 
    1718  </body> 
    1819</html> 
    19  
    20  
    21 <!--             var dbPanes = { --> 
    22 <!--                 // db: accordionPane --> 
    23 <!--             }; --> 
    24  
    25 <!--             var addDbToAccordion = function (db) { --> 
    26 <!--                 db.withLabel(function (label) { --> 
    27 <!--                     var accordion = dijit.byId("dbAccordion"); --> 
    28 <!--                     var newPane = new dijit.layout.AccordionPane({ --> 
    29 <!--                         db: db, --> 
    30 <!--                         title: label --> 
    31 <!--                     }); --> 
    32 <!--                     accordion.addChild(newPane); --> 
    33 <!--                     // Store it for later use. --> 
    34 <!--                     dbPanes[db] = newPane; --> 
    35 <!--                 }); --> 
    36 <!-- /*                // Create the database activity tree. --> 
    37 <!--                 dojo.xhrGet({ --> 
    38 <!--                     url: "../databases/" + dbName + "/extents", --> 
    39 <!--                     handleAs: "json", --> 
    40 <!--                     load: function (responseObject, ioArgs) { --> 
    41 <!--                         console.log(responseObject); --> 
    42 <!--                     } --> 
    43 <!--                 }); --> 
    44 <!--                 var activityTree = new dijit.Tree({ --> 
    45 <!--                 });*/ --> 
    46 <!--             }; --> 
    47  
    48 <!--             dojo.addOnLoad(function(){ --> 
    49 <!--                 dijit.setWaiRole(dojo.body(), "application"); --> 
    50 <!--                 // Get the list of databases and populate the accordion --> 
    51 <!--                 // container. --> 
    52 <!--                 var server = new schevo.Server("../"); --> 
    53 <!--                 server.withDatabases(function (dbs) { --> 
    54 <!--                     for (dbName in dbs) { --> 
    55 <!--                         addDbToAccordion(dbs[dbName]); --> 
    56 <!--                     }; --> 
    57 <!--                 }); --> 
    58 <!--             }); --> 
    59 <!--         </script> --> 
    60  
    61 <!--         <style type="text/css"> --> 
    62 <!--             @import "http://o.aolcdn.com/dojo/1.0.0/dojo/resources/dojo.css"; --> 
    63 <!--             @import "http://o.aolcdn.com/dojo/1.0.0/dijit/themes/soria/soria.css"; --> 
    64 <!--         </style> --> 
    65  
    66 <!--     <body class="soria"> --> 
    67  
    68 <!--         <div dojoType="dijit.layout.LayoutContainer" id="main" --> 
    69 <!--              style="width:100%; height:100%;"> --> 
    70  
    71 <!--             <div dojoType="dijit.layout.SplitContainer" --> 
    72 <!--                  orientation="horizontal" sizerWidth="5" activeSizing="0" --> 
    73 <!--                  title="Database Navigator" layoutAlign="client"> --> 
    74  
    75 <!--                 <div dojoType="dijit.layout.AccordionContainer" id="dbAccordion" --> 
    76 <!--                      sizeMin="20" sizeShare="20"> --> 
    77 <!-- <\!--                    <div dojoType="dijit.layout.AccordionPane" --> 
    78 <!--                          title="Schevo Database"> --> 
    79 <!--                         <div id="ExtentsPane" dojoType="dijit.layout.ContentPane" --> 
    80 <!--                              sizeMin="20" sizeShare="20"> --> 
    81 <!--                             Extent List Goes Here. --> 
    82 <!--                         </div> --> 
    83 <!--                     </div>-\-> --> 
    84 <!--                 </div> --> 
    85  
    86 <!--                 <div id="rightPane" dojoType="dijit.layout.SplitContainer" --> 
    87 <!--                      orientation="vertical" sizerWidth="5" activeSizing="0" --> 
    88 <!--                      sizeShare="80"> --> 
    89  
    90 <!--                     <div id="entitiesPane" dojoType="dijit.layout.ContentPane" --> 
    91 <!--                          sizeMin="20" sizeShare="20"> --> 
    92 <!--                         Entity grid will go here --> 
    93 <!--                     </div> --> 
    94  
    95 <!--                     <div id="detailsPane" dojoType="dijit.layout.ContentPane" --> 
    96 <!--                          sizeMin="20" sizeShare="80"> --> 
    97 <!--                         Entity details will go here --> 
    98 <!--                     </div> --> 
    99 <!--                 </div> --> 
    100  
    101 <!--             </div> --> 
    102  
    103 <!--         </div> --> 
    104  
    105 <!--     </body> --> 
    106