• last updated 11 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
removed calendar_have_group_cal_p

added calendar_name, calendar_admin_p to select_calendar_list and removed the unnecesary adjust_calendar_list_query

moved adjust_calendar_list functionality into the calendar_list proc and then removed it

noquote fixes: moved as much html generation into adp files

  1. … 40 more files in changeset.
Fixed some minor acs-lang stuff and a few noquote things.

    • -0
    • +11
    ./calendar-display-procs-oracle.xql
    • -3
    • +91
    ./calendar-display-procs-postgresql.xql
  1. … 5 more files in changeset.
reverted to 1.34 o maintain backward compatibility and marked the tcl procs as deprecatd

draft version of noquoted calendar package

    • -117
    • +0
    ./calendar-display-procs-postgresql.xql
  1. … 21 more files in changeset.
fixed select_list_items query so that column names are the ones expected in the tcl files

    • -3
    • +5
    ./calendar-display-procs-postgresql.xql
fixed select_item_data so that result column names are the ones expected in the tcl file

merge of 4.6.3b1 to HEAD

    • -2
    • +44
    ./calendar-display-procs-postgresql.xql
    • -7
    • +7
    ./calendar-outlook-procs-postgresql.xql
  1. … 69 more files in changeset.
A variety of changes that add up to making outlook synchronization work

with PostgreSQL (at all) and Oracle (better).

1. Changed calendar to read SystemTimezone rather than hardwire it to

US/Eastern.

2. Made calendar depend on acs-lang since that's where the param lives.

3. Fixed the query on the acs-lang page that lets you set the timezone

(used the Oracle-ism UNIQUE rather than the standard DISTINCT)

4. Saw that the test stuff doesn't work and got rid of the links on the

index page - people can live without testing it for this release (we

should fix it for 4.7)

5. Fixed timezone__local_to_utc so it works with calendar, though it's

very whacky (shifted so the timezone'd date part is the UTC date, would

be much much better to use timestamp without timezone but PG doesn't

accept that syntax for function returns and we're not ready to drop

PG 7.2 support yet so I can't take advantage of the timestamp/timestamptz

type names, sigh)

    • -7
    • +7
    ./calendar-outlook-procs-postgresql.xql
  1. … 5 more files in changeset.

Migrated over changes to move some GIF resources into a common subdirectory

in the subsite package, so anyone who can read the main site can read

the images (previously you had to grant read privs to "/doc" explicitly

to get the graphics stored by acs-datetime to show up.

  1. … 38 more files in changeset.
Changed &lt to the datetime arrows like we use everywhere else 'cause

they're cute!

  1. … 1 more file in changeset.
Fixed bug #76: Day summary throws an error when you have multiple personal calendars. Now we only look for your personal calendar among the calendars displayed in your portlet (problem exposed in dotLRN).

Reverting to the previous version 1.11, since oracle doesn't have an interval data type

More PG 7.3 changes ...

    • -3
    • +3
    ./calendar-display-procs-postgresql.xql
  1. … 4 more files in changeset.
I've changed "timestamp" to "timestamptz" and have begun fixing some

code that used to be legal but as of PG 7.3 is not. You can no longer

subtract an integer from a timestamp but must cast to date, "timestamp"

disappeared (must use "interval" now), "datetime" disappeared ("timestamptz"),

and suchwhat.

Not done but closer than it was before ...

    • -1
    • +1
    ./calendar-display-procs-postgresql.xql
  1. … 50 more files in changeset.
Swapped e.name and a.name in cal::item::get query to show event name instead of activity name.

removing temporary log statements

  1. … 1 more file in changeset.
Outlook sync was broken because of a changed column name

I18NL: localizing the display of dates and time using the lc_time_fmt proc from acs-lang, removing key ADD from catalog file as it's not used

  1. … 3 more files in changeset.
merge from oacs-4-6

  1. … 125 more files in changeset.
Removed a couple  's between day number and plus

Date/time/number localization

    • -56
    • +11
    ./calendar-display-procs-oracle.xql
    • -52
    • +8
    ./calendar-display-procs-postgresql.xql
  1. … 79 more files in changeset.
use permission api rather than hit db directly

- fix date difference of zero now means dates_valid_p = yes

- fix urlencode bug.

- note hardcoding of prev_ next_ links page as directory, not good

-- fix attribute order

-- add context_id as on_which_calendar (id)

cleanup javadoc tags (eg @cvs_id @cvs @cvs-id: instead if @cvs-id)

  1. … 690 more files in changeset.
Fixed permissions settings in calendar. The original code skirted around

the fact that context_id in the calendar item was being set to NULL by

physically copying the parent calendar's permissions and attaching them

to the new item.

This messed up recurring items because the code to copy an item didn't copy

the permissions, just context_id.

I changed the calendar item create code to set context_id to the calendar

parent, which seems to work fine. After all this is how the perms system

is meant to work ...