Fisheye: Tag 1.7 refers to a dead (removed) revision in file `openacs-4/packages/dotlrn/www/admin/class-instance-new-oracle.xql'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/packages/dotlrn/www/admin/class-instance-new-postgresql.xql'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/dotlrn/www/admin/class-instance-new.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/class-instance-new.xql,v diff -u -r1.4 -r1.5 --- openacs-4/packages/dotlrn/www/admin/class-instance-new.xql 15 Dec 2006 22:45:22 -0000 1.4 +++ openacs-4/packages/dotlrn/www/admin/class-instance-new.xql 22 Nov 2017 13:33:02 -0000 1.5 @@ -20,4 +20,14 @@ + + + select dotlrn_terms.term_name || ' ' || dotlrn_terms.term_year as term, + dotlrn_terms.term_id + from dotlrn_terms + where dotlrn_terms.end_date > current_timestamp + order by dotlrn_terms.start_date + + + Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/packages/dotlrn/www/admin/class-oracle.xql'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/packages/dotlrn/www/admin/class-postgresql.xql'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/dotlrn/www/admin/class.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/class.xql,v diff -u -r1.12 -r1.13 --- openacs-4/packages/dotlrn/www/admin/class.xql 13 Jan 2005 13:57:21 -0000 1.12 +++ openacs-4/packages/dotlrn/www/admin/class.xql 22 Nov 2017 13:36:41 -0000 1.13 @@ -101,4 +101,16 @@ + + + select dotlrn_terms.term_name || ' ' || dotlrn_terms.term_year, + dotlrn_terms.term_id + from dotlrn_terms + where dotlrn_terms.end_date > current_date - 360) + and dotlrn_terms.start_date < current_date + 360) + order by dotlrn_terms.start_date, + dotlrn_terms.end_date + + +