[cvs] commit: sesha client.php device.php device_version.php index.php ip.php listclients.php prefs.php project.php search.php viewclient.php viewdevice.php sesha/config conf.php.dist prefs.php.dist sesha/docs TODO sesha/graphics add.gif checkbox.gif ...

Bo Daley bo at tilda.com.au
Thu Jan 29 07:51:03 PST 2004


bo          2004/01/29 07:51:03 PST

  Added files:
    .                    client.php device.php device_version.php 
                         index.php ip.php listclients.php 
                         prefs.php project.php search.php 
                         viewclient.php viewdevice.php 
    config               conf.php.dist prefs.php.dist 
    docs                 TODO 
    graphics             add.gif checkbox.gif delete.gif down.gif 
                         edit.gif list.gif refresh.gif search.gif 
                         up.gif 
    lib/Driver           sql.php 
    lib                  Driver.php Sesha.php api.php base.php 
    templates            common-footer.inc common-header.inc 
    templates/device     begin.inc device.inc end.inc 
    templates/deviceversion begin.inc deviceversion.inc end.inc 
    templates/deviceview description.inc headers.inc ips.inc 
                         ips_footer.inc ips_header.inc 
                         ips_navbar.inc navbar.inc no-memo.inc 
                         packages.inc packages_footer.inc 
                         packages_header.inc packages_navbar.inc 
    templates/index      notconfigured.inc 
    templates/ipview     begin.inc end.inc ip.inc 
    templates/list       empty.inc footer.inc header.inc 
                         javascript.inc navbar.inc row_footers.inc 
                         row_headers.inc row_summaries.inc 
    templates/menu       menu.inc 
    templates/project    description.inc headers.inc navbar.inc 
                         no-tickets.inc ticket_footer.inc 
                         ticket_header.inc ticket_summary.inc 
    templates/view       description.inc devices.inc 
                         devices_footer.inc devices_header.inc 
                         devices_navbar.inc headers.inc navbar.inc 
                         no-memo.inc project.inc 
                         projects_footer.inc projects_header.inc 
                         projects_hide.inc 
  Log:
  first commit of 'Sesha', the computer/network inventory support database.
  needs lots of cleanup and probably isn't functional just yet.
  I'll take a good solid look at it once I'm back in front of a full-time
  network connection.
  
  Revision  Changes    Path
  1.1       +75 -0     sesha/client.php (new)
  1.1       +30 -0     sesha/config/conf.php.dist (new)
  1.1       +28 -0     sesha/config/prefs.php.dist (new)
  1.1       +155 -0    sesha/device.php (new)
  1.1       +108 -0    sesha/device_version.php (new)
  1.1       +23 -0     sesha/docs/TODO (new)
  1.1       +3 -0      sesha/graphics/add.gif (new)
  1.1       +1 -0      sesha/graphics/checkbox.gif (new)
  1.1       +2 -0      sesha/graphics/delete.gif (new)
  1.1       +3 -0      sesha/graphics/down.gif (new)
  1.1       +5 -0      sesha/graphics/edit.gif (new)
  1.1       +2 -0      sesha/graphics/list.gif (new)
  1.1       +2 -0      sesha/graphics/refresh.gif (new)
  1.1       +4 -0      sesha/graphics/search.gif (new)
  1.1       +1 -0      sesha/graphics/up.gif (new)
  1.1       +21 -0     sesha/index.php (new)
  1.1       +124 -0    sesha/ip.php (new)
  1.1       +32 -0     sesha/lib/Driver.php (new)
  1.1       +545 -0    sesha/lib/Driver/sql.php (new)
  1.1       +291 -0    sesha/lib/Sesha.php (new)
  1.1       +244 -0    sesha/lib/api.php (new)
  1.1       +63 -0     sesha/lib/base.php (new)
  1.1       +101 -0    sesha/listclients.php (new)
  1.1       +46 -0     sesha/prefs.php (new)
  1.1       +70 -0     sesha/project.php (new)
  1.1       +84 -0     sesha/search.php (new)
  1.1       +9 -0      sesha/templates/common-footer.inc (new)
  1.1       +26 -0     sesha/templates/common-header.inc (new)
  1.1       +11 -0     sesha/templates/device/begin.inc (new)
  1.1       +125 -0    sesha/templates/device/device.inc (new)
  1.1       +10 -0     sesha/templates/device/end.inc (new)
  1.1       +7 -0      sesha/templates/deviceversion/begin.inc (new)
  1.1       +59 -0     sesha/templates/deviceversion/deviceversion.inc (new)
  1.1       +10 -0     sesha/templates/deviceversion/end.inc (new)
  1.1       +98 -0     sesha/templates/deviceview/description.inc (new)
  1.1       +31 -0     sesha/templates/deviceview/headers.inc (new)
  1.1       +30 -0     sesha/templates/deviceview/ips.inc (new)
  1.1       +3 -0      sesha/templates/deviceview/ips_footer.inc (new)
  1.1       +23 -0     sesha/templates/deviceview/ips_header.inc (new)
  1.1       +12 -0     sesha/templates/deviceview/ips_navbar.inc (new)
  1.1       +25 -0     sesha/templates/deviceview/navbar.inc (new)
  1.1       +6 -0      sesha/templates/deviceview/no-memo.inc (new)
  1.1       +42 -0     sesha/templates/deviceview/packages.inc (new)
  1.1       +3 -0      sesha/templates/deviceview/packages_footer.inc (new)
  1.1       +24 -0     sesha/templates/deviceview/packages_header.inc (new)
  1.1       +19 -0     sesha/templates/deviceview/packages_navbar.inc (new)
  1.1       +57 -0     sesha/templates/index/notconfigured.inc (new)
  1.1       +7 -0      sesha/templates/ipview/begin.inc (new)
  1.1       +10 -0     sesha/templates/ipview/end.inc (new)
  1.1       +52 -0     sesha/templates/ipview/ip.inc (new)
  1.1       +1 -0      sesha/templates/list/empty.inc (new)
  1.1       +2 -0      sesha/templates/list/footer.inc (new)
  1.1       +35 -0     sesha/templates/list/header.inc (new)
  1.1       +28 -0     sesha/templates/list/javascript.inc (new)
  1.1       +11 -0     sesha/templates/list/navbar.inc (new)
  1.1       +9 -0      sesha/templates/list/row_footers.inc (new)
  1.1       +39 -0     sesha/templates/list/row_headers.inc (new)
  1.1       +45 -0     sesha/templates/list/row_summaries.inc (new)
  1.1       +32 -0     sesha/templates/menu/menu.inc (new)
  1.1       +36 -0     sesha/templates/project/description.inc (new)
  1.1       +9 -0      sesha/templates/project/headers.inc (new)
  1.1       +19 -0     sesha/templates/project/navbar.inc (new)
  1.1       +3 -0      sesha/templates/project/no-tickets.inc (new)
  1.1       +3 -0      sesha/templates/project/ticket_footer.inc (new)
  1.1       +25 -0     sesha/templates/project/ticket_header.inc (new)
  1.1       +24 -0     sesha/templates/project/ticket_summary.inc (new)
  1.1       +16 -0     sesha/templates/view/description.inc (new)
  1.1       +21 -0     sesha/templates/view/devices.inc (new)
  1.1       +3 -0      sesha/templates/view/devices_footer.inc (new)
  1.1       +22 -0     sesha/templates/view/devices_header.inc (new)
  1.1       +12 -0     sesha/templates/view/devices_navbar.inc (new)
  1.1       +30 -0     sesha/templates/view/headers.inc (new)
  1.1       +24 -0     sesha/templates/view/navbar.inc (new)
  1.1       +6 -0      sesha/templates/view/no-memo.inc (new)
  1.1       +42 -0     sesha/templates/view/project.inc (new)
  1.1       +4 -0      sesha/templates/view/projects_footer.inc (new)
  1.1       +27 -0     sesha/templates/view/projects_header.inc (new)
  1.1       +18 -0     sesha/templates/view/projects_hide.inc (new)
  1.1       +96 -0     sesha/viewclient.php (new)
  1.1       +92 -0     sesha/viewdevice.php (new)

  Chora Links:
  http://cvsweb.horde.org/co.php/sesha/client.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/config/conf.php.dist?r=1.1
  http://cvsweb.horde.org/co.php/sesha/config/prefs.php.dist?r=1.1
  http://cvsweb.horde.org/co.php/sesha/device.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/device_version.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/docs/TODO?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/add.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/checkbox.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/delete.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/down.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/edit.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/list.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/refresh.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/search.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/graphics/up.gif?r=1.1
  http://cvsweb.horde.org/co.php/sesha/index.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/ip.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/lib/Driver.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/lib/Driver/sql.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/lib/Sesha.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/lib/api.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/lib/base.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/listclients.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/prefs.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/project.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/search.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/common-footer.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/common-header.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/device/begin.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/device/device.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/device/end.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceversion/begin.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceversion/deviceversion.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceversion/end.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/description.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/headers.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/ips.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/ips_footer.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/ips_header.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/ips_navbar.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/navbar.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/no-memo.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/packages.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/packages_footer.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/packages_header.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/deviceview/packages_navbar.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/index/notconfigured.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/ipview/begin.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/ipview/end.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/ipview/ip.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/empty.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/footer.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/header.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/javascript.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/navbar.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/row_footers.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/row_headers.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/list/row_summaries.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/menu/menu.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/project/description.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/project/headers.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/project/navbar.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/project/no-tickets.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/project/ticket_footer.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/project/ticket_header.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/project/ticket_summary.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/description.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/devices.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/devices_footer.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/devices_header.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/devices_navbar.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/headers.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/navbar.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/no-memo.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/project.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/projects_footer.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/projects_header.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/templates/view/projects_hide.inc?r=1.1
  http://cvsweb.horde.org/co.php/sesha/viewclient.php?r=1.1
  http://cvsweb.horde.org/co.php/sesha/viewdevice.php?r=1.1


More information about the cvs mailing list