Added documentation

git-svn-id: https://svn.libreccm.org/ccm/trunk@3049 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2014-12-13 19:44:13 +00:00
parent 911c302e4d
commit ef3645d98d
6 changed files with 67 additions and 2 deletions

View File

@ -18,5 +18,4 @@
-- $Id: drop_app_table.sql pboy $ -- $Id: drop_app_table.sql pboy $
-- Don't do it! Application table is required with this package. -- Don't do it! Application table is required with this package.
-- drop table atoz_app ; -- drop table atoz_app ;

View File

@ -1,3 +1,28 @@
--
-- Copyright (C) 2008 Red Hat Inc. All Rights Reserved.
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public License
-- as published by the Free Software Foundation; either version 2.1 of
-- the License, or (at your option) any later version.
--
-- This library is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public
-- License along with this library; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
--
-- classohm: changed AtoZ to not hide a category when an alias has been
-- defined for it;
-- changed AtoZ to allow more than one alias to be defined for
-- a category (version 1.0.5 / r2914, never officially released)
-- $Id: $
@@ default/add-cat_aliases.sql @@ default/add-cat_aliases.sql
insert into atoz_cat_aliases (object_id, provider_id, category_id, letter, title) insert into atoz_cat_aliases (object_id, provider_id, category_id, letter, title)

View File

@ -1,3 +1,28 @@
--
-- Copyright (C) 2008 Red Hat Inc. All Rights Reserved.
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public License
-- as published by the Free Software Foundation; either version 2.1 of
-- the License, or (at your option) any later version.
--
-- This library is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public
-- License along with this library; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
--
-- classohm: changed AtoZ to not hide a category when an alias has been
-- defined for it;
-- changed AtoZ to allow more than one alias to be defined for
-- a category (version 1.0.5 / r2914, never officially released)
-- $Id: $
begin; begin;
\i default/add-cat_aliases.sql \i default/add-cat_aliases.sql

View File

@ -9,6 +9,9 @@
<script sql="ccm-atoz/upgrade/::database::-6.3.0-6.3.1.sql"/> <script sql="ccm-atoz/upgrade/::database::-6.3.0-6.3.1.sql"/>
</version> </version>
<version from="6.5.0" to="6.6.0"> <version from="6.5.0" to="6.6.0">
<!-- classohm: changed AtoZ to not hide a category when an alias
has been defined for it; allow more than one alias
to be defined for a category (version 1.0.5 / r2914) -->
<script sql="ccm-atoz/upgrade/::database::-6.5.0-6.6.0.sql"/> <script sql="ccm-atoz/upgrade/::database::-6.5.0-6.6.0.sql"/>
</version> </version>
<version from="6.6.0" to="6.6.1"> <version from="6.6.0" to="6.6.1">

View File

@ -19,5 +19,11 @@
PROMPT Red Hat Enterprise CORE 6.6.0 -> 6.6.1 Upgrade Script (Oracle) PROMPT Red Hat Enterprise CORE 6.6.0 -> 6.6.1 Upgrade Script (Oracle)
-- This update just removes database tables to store and manage style sheets.
-- These are not used anymore but replaces by a pattern driven style sheet
-- selection
@@ default/6.6.0-6.6.1/drop_tables_acs_stylesheets.sql @@ default/6.6.0-6.6.1/drop_tables_acs_stylesheets.sql
-- not needed for oracle @@ oracle-se/6.6.0-6.6.1/recreate_users_index.sql
-- Once while updated postgres database required, not needed for oracle, it
-- is still/already there (during tests with Camden database).
-- @@ oracle-se/6.6.0-6.6.1/recreate_users_index.sql

View File

@ -21,7 +21,14 @@
begin; begin;
-- This update just removes database tables to store and manage style sheets.
-- These are not used anymore but replaces by a pattern driven style sheet
-- selection
\i default/6.6.0-6.6.1/drop_tables_acs_stylesheets.sql \i default/6.6.0-6.6.1/drop_tables_acs_stylesheets.sql
-- Once while updating postgres recreation was required, while with Oracle not.
-- may have been specific to that update situation and may probably be skipped
-- in other postgres updates as well.
\i postgres/6.6.0-6.6.1/recreate_users_index.sql \i postgres/6.6.0-6.6.1/recreate_users_index.sql
commit; commit;