[cvs] commit: odin COPYING addobject.php addobjectaction.php data.php deleteobject.php displayobject.php editobject.php editobjectaction.php index.php menu.php prefs.php query.php odin/config attributes.php.dist conf.xml html.php.dist ...

Chuck Hagenbuch chuck@horde.org
Wed, 25 Sep 2002 13:10:29 -0700 (PDT)


chuck       2002/09/25 13:10:29 PDT

  Added files:
    .                    COPYING addobject.php addobjectaction.php 
                         data.php deleteobject.php 
                         displayobject.php editobject.php 
                         editobjectaction.php index.php menu.php 
                         prefs.php query.php 
    config               attributes.php.dist conf.xml 
                         html.php.dist menu.php.dist 
                         prefs.php.dist sources.php.dist 
    config/themes        html-green.php html-orange.php 
    docs                 CHANGES CREDITS 
    graphics             add.gif checkbox.gif datadump.gif 
                         down.gif group.gif lhand.gif odin.gif 
                         rhand.gif search.gif up.gif user.gif 
                         view.gif 
    lib                  AbstractObject.php Driver.php List.php 
                         ListView.php Object.php ObjectView.php 
                         Odin.php Source.php base.php version.php 
    lib/Driver           sql.php 
    templates            common-footer.inc common-header.inc 
    templates/add        add.inc noadd.inc select.inc 
    templates/advanced   criteria.inc foot.inc head.inc 
                         results_head.inc 
    templates/data       export.inc import.inc 
    templates/display    display.inc 
    templates/edit       edit.inc 
    templates/index      css.inc notconfigured.inc 
    templates/menu       menu.inc 
    templates/prefs      columnselect.inc 
    templates/query      column_footers.inc column_headers.inc 
                         footer.inc header.inc javascript.inc 
                         row.inc search.inc 
  Log:
  Initial Odin import. Based on Turba; originally ported by Eric Rechlin
  <eric@hpcalc.org>.
  
  Revision  Changes    Path
  1.1       +51 -0     odin/COPYING (new)
  1.1       +57 -0     odin/addobject.php (new)
  1.1       +52 -0     odin/addobjectaction.php (new)
  1.1       +200 -0    odin/config/attributes.php.dist (new)
  1.1       +18 -0     odin/config/conf.xml (new)
  1.1       +12 -0     odin/config/html.php.dist (new)
  1.1       +41 -0     odin/config/menu.php.dist (new)
  1.1       +69 -0     odin/config/prefs.php.dist (new)
  1.1       +141 -0    odin/config/sources.php.dist (new)
  1.1       +12 -0     odin/config/themes/html-green.php (new)
  1.1       +15 -0     odin/config/themes/html-orange.php (new)
  1.1       +547 -0    odin/data.php (new)
  1.1       +38 -0     odin/deleteobject.php (new)
  1.1       +40 -0     odin/displayobject.php (new)
  1.1       +5 -0      odin/docs/CHANGES (new)
  1.1       +13 -0     odin/docs/CREDITS (new)
  1.1       +48 -0     odin/editobject.php (new)
  1.1       +44 -0     odin/editobjectaction.php (new)
  1.1       +1 -0      odin/graphics/add.gif (new)
  1.1       +1 -0      odin/graphics/checkbox.gif (new)
  1.1       +3 -0      odin/graphics/datadump.gif (new)
  1.1       +3 -0      odin/graphics/down.gif (new)
  1.1       +5 -0      odin/graphics/group.gif (new)
  1.1       +2 -0      odin/graphics/lhand.gif (new)
  1.1       +3 -0      odin/graphics/odin.gif (new)
  1.1       +1 -0      odin/graphics/rhand.gif (new)
  1.1       +2 -0      odin/graphics/search.gif (new)
  1.1       +1 -0      odin/graphics/up.gif (new)
  1.1       +2 -0      odin/graphics/user.gif (new)
  1.1       +1 -0      odin/graphics/view.gif (new)
  1.1       +34 -0     odin/index.php (new)
  1.1       +108 -0    odin/lib/AbstractObject.php (new)
  1.1       +161 -0    odin/lib/Driver.php (new)
  1.1       +314 -0    odin/lib/Driver/sql.php (new)
  1.1       +239 -0    odin/lib/List.php (new)
  1.1       +64 -0     odin/lib/ListView.php (new)
  1.1       +30 -0     odin/lib/Object.php (new)
  1.1       +53 -0     odin/lib/ObjectView.php (new)
  1.1       +117 -0    odin/lib/Odin.php (new)
  1.1       +304 -0    odin/lib/Source.php (new)
  1.1       +65 -0     odin/lib/base.php (new)
  1.1       +1 -0      odin/lib/version.php (new)
  1.1       +30 -0     odin/menu.php (new)
  1.1       +56 -0     odin/prefs.php (new)
  1.1       +205 -0    odin/query.php (new)
  1.1       +78 -0     odin/templates/add/add.inc (new)
  1.1       +12 -0     odin/templates/add/noadd.inc (new)
  1.1       +15 -0     odin/templates/add/select.inc (new)
  1.1       +22 -0     odin/templates/advanced/criteria.inc (new)
  1.1       +3 -0      odin/templates/advanced/foot.inc (new)
  1.1       +26 -0     odin/templates/advanced/head.inc (new)
  1.1       +35 -0     odin/templates/advanced/results_head.inc (new)
  1.1       +9 -0      odin/templates/common-footer.inc (new)
  1.1       +34 -0     odin/templates/common-header.inc (new)
  1.1       +28 -0     odin/templates/data/export.inc (new)
  1.1       +38 -0     odin/templates/data/import.inc (new)
  1.1       +79 -0     odin/templates/display/display.inc (new)
  1.1       +78 -0     odin/templates/edit/edit.inc (new)
  1.1       +27 -0     odin/templates/index/css.inc (new)
  1.1       +52 -0     odin/templates/index/notconfigured.inc (new)
  1.1       +51 -0     odin/templates/menu/menu.inc (new)
  1.1       +256 -0    odin/templates/prefs/columnselect.inc (new)
  1.1       +8 -0      odin/templates/query/column_footers.inc (new)
  1.1       +26 -0     odin/templates/query/column_headers.inc (new)
  1.1       +1 -0      odin/templates/query/footer.inc (new)
  1.1       +13 -0     odin/templates/query/header.inc (new)
  1.1       +21 -0     odin/templates/query/javascript.inc (new)
  1.1       +63 -0     odin/templates/query/row.inc (new)
  1.1       +100 -0    odin/templates/query/search.inc (new)

  Chora Links:
  http://cvs.horde.org/co.php/odin/COPYING?r=1.1
  http://cvs.horde.org/co.php/odin/addobject.php?r=1.1
  http://cvs.horde.org/co.php/odin/addobjectaction.php?r=1.1
  http://cvs.horde.org/co.php/odin/config/attributes.php.dist?r=1.1
  http://cvs.horde.org/co.php/odin/config/conf.xml?r=1.1
  http://cvs.horde.org/co.php/odin/config/html.php.dist?r=1.1
  http://cvs.horde.org/co.php/odin/config/menu.php.dist?r=1.1
  http://cvs.horde.org/co.php/odin/config/prefs.php.dist?r=1.1
  http://cvs.horde.org/co.php/odin/config/sources.php.dist?r=1.1
  http://cvs.horde.org/co.php/odin/config/themes/html-green.php?r=1.1
  http://cvs.horde.org/co.php/odin/config/themes/html-orange.php?r=1.1
  http://cvs.horde.org/co.php/odin/data.php?r=1.1
  http://cvs.horde.org/co.php/odin/deleteobject.php?r=1.1
  http://cvs.horde.org/co.php/odin/displayobject.php?r=1.1
  http://cvs.horde.org/co.php/odin/docs/CHANGES?r=1.1
  http://cvs.horde.org/co.php/odin/docs/CREDITS?r=1.1
  http://cvs.horde.org/co.php/odin/editobject.php?r=1.1
  http://cvs.horde.org/co.php/odin/editobjectaction.php?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/add.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/checkbox.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/datadump.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/down.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/group.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/lhand.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/odin.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/rhand.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/search.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/up.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/user.gif?r=1.1
  http://cvs.horde.org/co.php/odin/graphics/view.gif?r=1.1
  http://cvs.horde.org/co.php/odin/index.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/AbstractObject.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/Driver.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/Driver/sql.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/List.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/ListView.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/Object.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/ObjectView.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/Odin.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/Source.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/base.php?r=1.1
  http://cvs.horde.org/co.php/odin/lib/version.php?r=1.1
  http://cvs.horde.org/co.php/odin/menu.php?r=1.1
  http://cvs.horde.org/co.php/odin/prefs.php?r=1.1
  http://cvs.horde.org/co.php/odin/query.php?r=1.1
  http://cvs.horde.org/co.php/odin/templates/add/add.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/add/noadd.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/add/select.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/advanced/criteria.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/advanced/foot.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/advanced/head.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/advanced/results_head.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/common-footer.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/common-header.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/data/export.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/data/import.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/display/display.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/edit/edit.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/index/css.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/index/notconfigured.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/menu/menu.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/prefs/columnselect.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/query/column_footers.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/query/column_headers.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/query/footer.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/query/header.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/query/javascript.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/query/row.inc?r=1.1
  http://cvs.horde.org/co.php/odin/templates/query/search.inc?r=1.1