Index: openacs-4/packages/evaluation/catalog/evaluation.en_US.ISO-8859-1.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/catalog/evaluation.en_US.ISO-8859-1.xml,v
diff -u -r1.17.2.8 -r1.17.2.9
--- openacs-4/packages/evaluation/catalog/evaluation.en_US.ISO-8859-1.xml 19 Sep 2006 09:38:28 -0000 1.17.2.8
+++ openacs-4/packages/evaluation/catalog/evaluation.en_US.ISO-8859-1.xml 22 Sep 2006 16:36:22 -0000 1.17.2.9
@@ -288,7 +288,8 @@
Currently %content% is associated to this task solution, but you can associate a different url/file just by adding it here
Currently %content% is associated to this task, but you can associate a different url/file just by adding it here
Currently %title% is attached to this task solution, but you can attach a different file/url just by adding it here
- Currently $title is attached to this task, but you can attach a different file/url just by adding it here
+ Currently %title% is attached to this task solution, but you can attach a different file/url just by adding it here
+ Currently %title% is attached to this task, but you can attach a different file/url just by adding it here
Delete Assignment Type
Delete assignment type
Distribution for grade "%grade_plural_name%"
Index: openacs-4/packages/evaluation/tcl/evaluation-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/tcl/evaluation-procs.tcl,v
diff -u -r1.31.2.7 -r1.31.2.8
--- openacs-4/packages/evaluation/tcl/evaluation-procs.tcl 19 Jul 2005 17:03:54 -0000 1.31.2.7
+++ openacs-4/packages/evaluation/tcl/evaluation-procs.tcl 22 Sep 2006 16:36:23 -0000 1.31.2.8
@@ -460,7 +460,6 @@
-storage_type $storage_type]
}
-
set revision_id [content::revision::new \
-item_id $item_id \
-content_type $content_type \
Index: openacs-4/packages/evaluation/www/admin/grades/distribution-edit.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/www/admin/grades/distribution-edit.tcl,v
diff -u -r1.9.2.2 -r1.9.2.3
--- openacs-4/packages/evaluation/www/admin/grades/distribution-edit.tcl 16 Jun 2005 09:22:36 -0000 1.9.2.2
+++ openacs-4/packages/evaluation/www/admin/grades/distribution-edit.tcl 22 Sep 2006 16:36:23 -0000 1.9.2.3
@@ -28,7 +28,6 @@
evaluation::set_live_task -task_item_id $set_task_id_live
}
-ns_log notice "el grade es $grade_item_id !!"
set elements [list task_name \
[list label "[_ evaluation.name]" \
display_template {@grades.task_name@}\
Index: openacs-4/packages/evaluation/www/admin/tasks/solution-add-edit.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/www/admin/tasks/solution-add-edit.tcl,v
diff -u -r1.15.2.2 -r1.15.2.3
--- openacs-4/packages/evaluation/www/admin/tasks/solution-add-edit.tcl 8 Jun 2005 18:57:14 -0000 1.15.2.2
+++ openacs-4/packages/evaluation/www/admin/tasks/solution-add-edit.tcl 22 Sep 2006 16:36:23 -0000 1.15.2.3
@@ -52,7 +52,7 @@
{upload_file:file,optional
{label "[_ evaluation.File_]"}
{html "size 30"}
- {help_text "[_ evaluation.lt_Currently_title_is_at_2]"}
+ {help_text "[_ evaluation.lt_Currently_title_is_at_1]"}
}
{unattach_p:text(checkbox),optional
{label "[_ evaluation.Unattach_file_]"}
Index: openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-oracle.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-oracle.xql,v
diff -u -r1.3 -r1.3.2.1
--- openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-oracle.xql 7 Apr 2005 18:57:01 -0000 1.3
+++ openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-oracle.xql 22 Sep 2006 16:36:23 -0000 1.3.2.1
@@ -93,6 +93,15 @@
+
+
+
+ update evaluation_tasks set due_date = (select to_date(:due_date,'YYYY-MM-DD HH24:MI:SS') from dual)
+ where task_id = :revision_id
+
+
+
+
Index: openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-postgresql.xql,v
diff -u -r1.12 -r1.12.2.1
--- openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-postgresql.xql 7 Apr 2005 18:57:01 -0000 1.12
+++ openacs-4/packages/evaluation/www/admin/tasks/task-add-edit-postgresql.xql 22 Sep 2006 16:36:23 -0000 1.12.2.1
@@ -48,6 +48,15 @@
+
+
+
+ update evaluation_tasks set due_date = :due_date_ansi
+ where task_id = :revision_id
+
+
+
+
Index: openacs-4/packages/evaluation/www/admin/tasks/task-add-edit.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/www/admin/tasks/task-add-edit.tcl,v
diff -u -r1.25.2.3 -r1.25.2.4
--- openacs-4/packages/evaluation/www/admin/tasks/task-add-edit.tcl 14 Jun 2005 15:47:14 -0000 1.25.2.3
+++ openacs-4/packages/evaluation/www/admin/tasks/task-add-edit.tcl 22 Sep 2006 16:36:23 -0000 1.25.2.4
@@ -454,12 +454,9 @@
# by the moment, since I'm having a date problem with oracle10g, I have to do this in order
# to store the entire date
-
- db_dml update_date {
- update evaluation_tasks set due_date = (select to_date(:due_date,'YYYY-MM-DD HH24:MI:SS') from dual)
- where task_id = :revision_id
- }
+ db_dml update_date { *SQL* }
+
# initialize content_length in order to prevent wrong values
set content_length 0
db_dml lob_size { *SQL* }