• last updated 10 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
I'd accidently changed some old upgrade files to use edit_name rather than

rename (for Oracle 9.2) and had not added the needed upgrade files for 5.1.

  1. … 11 more files in changeset.
file upgrade-5.1.1-5.1.2.sql was initially added on branch oacs-5-1.

    • -0
    • +0
    ./upgrade/upgrade-5.1.1-5.1.2.sql
  1. … 1 more file in changeset.
Changed CR "rename" procs to "edit_name" to avoid issues with Oracle 9.2 (and

changed PG for consistency)

  1. … 23 more files in changeset.
Minor cosmetic change vs. 1858

Fixed Bug #1858: qualifying "rename" works in 8i bug chokes in 9i causing

the reported error on installation. Fixed by changing the name to "edit_name"

and implemented it for PG as well (to keep names similar)

  1. … 26 more files in changeset.
merge changes on oacs-5-1 branch to head, changes between jcd-merge-20040420 and jcd-merge-5-1-20040517 were merged, head pre changes is jcd-merge-pre-20040517 and post is jcd-merge-post-20040517

    • -0
    • +92
    ./upgrade/upgrade-5.1.1d1-5.1.1d2.sql
  1. … 831 more files in changeset.
Fix typo in parameter name, reference to non-existant parameter.

Fixes bug#1793

    • -1
    • +17
    ./upgrade/upgrade-5.1.1d1-5.1.1d2.sql
file upgrade-5.1.1d1-5.1.1d2.sql was initially added on branch oacs-5-1.

    • -0
    • +0
    ./upgrade/upgrade-5.1.1d1-5.1.1d2.sql
Fix reference to chid instead of child in cr_items_update_tr. Upgrade script

included. Fixes bug#1791

    • -0
    • +76
    ./upgrade/upgrade-5.1.1d1-5.1.1d2.sql
second occurance of bug 1738 version match on OS X problem

content_type__drop_type doesn't work on OS X (7.2 was matching sp[uriously) bug 1738 patch 498 Jarkko Laine

cascade deletes for table cr_folder_type_map when folder or content_type are deleted

  1. … 2 more files in changeset.
missed the pg upgrade script for cascade delete on root folder map table

    • -0
    • +8
    ./upgrade/upgrade-5.2.0d2-5.2.0d3.sql
Fixed a couple of search trigger functions which either didn't work so well or not at all. Static Pages can now be deleted or updated and will be un-indexed or re-indexed respectively.

Appled Jarrko's patch 498 for bug 1738: check for PG 7.2 failed on Mac OS X

because the check string was just '%7.2%' and Mac OS X ships with darwin 7.2

merge all the changes on the oacs-5-1 and dotlrn-2-0 branches up to tag jcd-merge-20040420

    • -2
    • +108
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
  1. … 647 more files in changeset.
Added MIME types for Open Office documents

    • -0
    • +23
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
  1. … 2 more files in changeset.
Fix typos in content_item__move, add missing content_folder__move function with

name parameter, and cr_items_tree_update_tr along with upgrade script.

    • -2
    • +85
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
add package_id to content_folder__new define_function_args, upgrade script

fix typo in content_folder__rename, bump to 5.2.0d2, upgrade script, postgres only

    • -0
    • +39
    ./upgrade/upgrade-5.2.0d1-5.2.0d2.sql
  1. … 1 more file in changeset.
various bug fixes for package_id, title addition to acs_objects

  1. … 7 more files in changeset.
Remerge Timo's changes for tip 42,43, cf tip 53

    • -0
    • +440
    ./upgrade/upgrade-5.1.0d2-5.1.0d3.sql
  1. … 89 more files in changeset.
rollback of Timo's name, package_id commit; see TIP 53

    • -440
    • +0
    ./upgrade/upgrade-5.1.0d2-5.1.0d3.sql
  1. … 88 more files in changeset.
TIP#42,43: adding package_id and title to acs_objects table

    • -0
    • +440
    ./upgrade/upgrade-5.1.0d2-5.1.0d3.sql
  1. … 88 more files in changeset.
modified content_item.get_title to return a useful label for extlinks (postgres and oracle)

  1. … 1 more file in changeset.
We still want security_inherit_p to default to 't', otherwise bcms::folder::create_folder breaks, because null is not a valid boolean value. This is also consistent with what the comments in the function says (default true)

Fixed , typo and simple optimization per Jeff's proposal

Fix for bug where tree_sortkey would start from zero for each parent that wasn't a cr_item (since parent_id's foreign key constraint is on acs_objects, not cr_items). Now all non-cr_item-parent-ids are treated as one big pool of 'null' parent_id's, allowing you to create as many logical roots as you darn well please. I would appreciate review from the OCT on this patch (and am going to solicit one by email).

    • -0
    • +129
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
  1. … 1 more file in changeset.
PG 7.3 doesn't support 'current_timestamp' as a literal any more (it still

is defined as a variable, of course). Also define_function_args assumes

NULL as the default value if none is specified, 'null' <> NULL ...

Fixed bug with default values for creating folders; default values in define_function_args are literal strings, not expressions, so security_inherit_p;null is treated as the literal string 'null', and so is creation_date;current_timestamp treated as the literal string 'current_timestamp', which is not a valid timestamp format. There are probably other similar bugs introduced, we just fixed the ones that were blocking us. Emailing OCT about this.