• last updated 10 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
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.

Fix missing ; in content_type__is_content_type for postgresql.

    • -0
    • +21
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
No longer necessary, replaced by the 5.0.0 to 5.1.0d1 version

    • -0
    • +134
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
    • -15
    • +0
    ./upgrade/upgrade-5.0.0b4-5.1.0d1.sql
Add missing "then" to content_folder__copy. Already fixed in upgrade script.

Fix content_item_copy2 to use NULL for target name instead of empty string.

Fix syntax error in content_folder copy.

    • -87
    • +80
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
Added define_function_arg calls to non-content-revision objects and to

create_type and create_attributes, so we can do these operations via

Tcl. Content revisions, due to LOB/non-LOB issues and the incompatibility

of LOB operations between DBs need their own "smart" Tcl API.

    • -0
    • +15
    ./upgrade/upgrade-5.0.0b4-5.1.0d1.sql
  1. … 1 more file in changeset.
merge of changes between oacs-5-0-0b4 and oacs-5-0-0-final to HEAD

    • -0
    • +55
    ./upgrade/upgrade-5.0.0b4-5.0.0b5.sql
  1. … 284 more files in changeset.
Upgrade scripts for changes to copy and move. Bumped up version number.

    • -0
    • +558
    ./upgrade/upgrade-5.0.0-5.1.0d1.sql
  1. … 2 more files in changeset.
Added optional name parameter for copy functions.

Added versions of content_item__copy and content_item__move to support

optional name parameter to copy/move and rename in one step.