Index: openacs-4/packages/notifications/notifications.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/notifications.info,v diff -u -N -r1.29.2.2 -r1.29.2.3 --- openacs-4/packages/notifications/notifications.info 17 Jul 2005 17:54:03 -0000 1.29.2.2 +++ openacs-4/packages/notifications/notifications.info 22 Sep 2005 08:15:41 -0000 1.29.2.3 @@ -8,14 +8,14 @@ t notifications - + OpenACS Email notifications management 2003-11-07 OpenACS Provides an API for packages to provide subscription based email notifications and handle replies. Used by forums, bug-tracker, etc. The currently prefered package for email notifications. - + Index: openacs-4/packages/notifications/catalog/notifications.en_US.ISO-8859-1.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/catalog/notifications.en_US.ISO-8859-1.xml,v diff -u -N -r1.13.2.1 -r1.13.2.2 --- openacs-4/packages/notifications/catalog/notifications.en_US.ISO-8859-1.xml 16 Sep 2005 12:14:09 -0000 1.13.2.1 +++ openacs-4/packages/notifications/catalog/notifications.en_US.ISO-8859-1.xml 22 Sep 2005 08:15:42 -0000 1.13.2.2 @@ -4,18 +4,32 @@ Action Change Contents: + daily Delivery Method Frequency + hourly + instant Item Getting too much email? Manage your notifications at: %manage_notifications_url% + Notification Delivery Method + Notification Delivery Methods Notification Interval + Notification Intervals + Notification Requests Request Notification for %pretty_name% [%system_name% - Batched Notification] You have no notifications. You have requested notification for %pretty_name%. You may <a href="%sub_url%">unsubscribe</a>. You may <a href="%sub_url%">request notification</a> for %pretty_name%. Manage Notifications + Notification + Notification Replies + Notification Reply + Notification Request + Notification Type Notification type + Notification Types + Notifications Request Notification SUBJECT: Unsubscribe Index: openacs-4/packages/notifications/sql/postgresql/notifications-core-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/postgresql/notifications-core-create.sql,v diff -u -N -r1.13 -r1.13.2.1 --- openacs-4/packages/notifications/sql/postgresql/notifications-core-create.sql 24 Jul 2004 08:34:44 -0000 1.13 +++ openacs-4/packages/notifications/sql/postgresql/notifications-core-create.sql 22 Sep 2005 08:15:42 -0000 1.13.2.1 @@ -208,8 +208,8 @@ -- select acs_object_type__create_type( 'notification_interval', - 'Notification Interval', - 'Notification Intervals', + '#notifications.lt_Notification_Interval#', + '#notifications.lt_Notification_Interval_1#', 'acs_object', 'notification_intervals', 'interval_id', @@ -221,8 +221,8 @@ select acs_object_type__create_type( 'notification_delivery_method', - 'Notification Delivery Method', - 'Notification Delivery Methods', + '#notifications.lt_Notification_Delivery#', + '#notifications.lt_Notification_Delivery_1#', 'acs_object', 'notification_delivery_methods', 'delivery_method_id', @@ -234,8 +234,8 @@ select acs_object_type__create_type( 'notification_type', - 'Notification Type', - 'Notification Types', + '#notifications.Notification_Type#', + '#notifications.Notification_Types#', 'acs_object', 'notification_types', 'type_id', @@ -247,8 +247,8 @@ select acs_object_type__create_type( 'notification_request', - 'Notification Request', - 'Notification Requests', + '#notifications.Notification_Request#', + '#notifications.lt_Notification_Requests#', 'acs_object', 'notification_requests', 'request_id', @@ -260,8 +260,8 @@ select acs_object_type__create_type( 'notification', - 'Notification', - 'Notifications', + '#notifications.Notification#', + '#notifications.Notifications#', 'acs_object', 'notifications', 'notification_id', Index: openacs-4/packages/notifications/sql/postgresql/notifications-init.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/postgresql/notifications-init.sql,v diff -u -N -r1.5 -r1.5.8.1 --- openacs-4/packages/notifications/sql/postgresql/notifications-init.sql 28 Aug 2003 09:41:58 -0000 1.5 +++ openacs-4/packages/notifications/sql/postgresql/notifications-init.sql 22 Sep 2005 08:15:42 -0000 1.5.8.1 @@ -10,7 +10,7 @@ select notification_interval__new ( null, - 'daily', + '#notifications.daily#', 3600 * 24, now(), null, @@ -20,7 +20,7 @@ select notification_interval__new ( null, - 'hourly', + '#notifications.hourly#', 3600, now(), null, @@ -30,7 +30,7 @@ select notification_interval__new ( null, - 'instant', + '#notifications.instant#', 0, now(), null, Index: openacs-4/packages/notifications/sql/postgresql/notifications-replies-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/postgresql/notifications-replies-create.sql,v diff -u -N -r1.3 -r1.3.8.1 --- openacs-4/packages/notifications/sql/postgresql/notifications-replies-create.sql 17 May 2003 10:53:27 -0000 1.3 +++ openacs-4/packages/notifications/sql/postgresql/notifications-replies-create.sql 22 Sep 2005 08:15:42 -0000 1.3.8.1 @@ -35,8 +35,8 @@ select acs_object_type__create_type ( 'notification_reply', - 'Notification Reply', - 'Notification Replies', + '#notifications.Notification_Reply#', + '#notifications.Notification_Replies#', 'acs_object', 'notification_replies', 'reply_id',