Index: openacs-4/packages/curriculum-central/tcl/uos-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/curriculum-central/tcl/uos-procs.tcl,v diff -u -r1.18 -r1.19 --- openacs-4/packages/curriculum-central/tcl/uos-procs.tcl 6 Jan 2006 05:47:44 -0000 1.18 +++ openacs-4/packages/curriculum-central/tcl/uos-procs.tcl 6 Jan 2006 06:43:38 -0000 1.19 @@ -97,33 +97,20 @@ privileges { read write } always_enabled_p t } - reassign { - pretty_name "#curriculum-central.reassign#" - pretty_past_tense "#curriculum-central.reassigned#" - allowed_roles { - stream_coordinator - } - privileges { write } - assigned_states { open } - edit_fields { role_unit_coordinator } - } edit_details { pretty_name "#curriculum-central.edit_details#" pretty_past_tense "#curriculum-central.edited_details#" allowed_roles { stream_coordinator - unit_coordinator - lecturer } privileges { write } assigned_states { open } edit_fields { - lecturer_id - objectives - learning_outcomes - syllabus - relevance - online_course_content + uos_code + uos_name + role_unit_coordinator + credit_value + semester } } edit_tl { @@ -136,6 +123,12 @@ } privileges { write } edit_fields { + lecturer_id + objectives + learning_outcomes + syllabus + relevance + online_course_content tl_approach_ids gradattr_ids formal_contact_hrs Index: openacs-4/packages/curriculum-central/www/coordinate/uos-edit.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/curriculum-central/www/coordinate/uos-edit.tcl,v diff -u -r1.10 -r1.11 --- openacs-4/packages/curriculum-central/www/coordinate/uos-edit.tcl 6 Jan 2006 04:50:18 -0000 1.10 +++ openacs-4/packages/curriculum-central/www/coordinate/uos-edit.tcl 6 Jan 2006 06:43:38 -0000 1.11 @@ -62,18 +62,20 @@ ad_form -name uos -cancel_url $return_url \ -mode display -has_edit 1 -actions $actions -# Add UoS Section -template::form::section uos [_ curriculum-central.uos] +# Add UoS Details Section +template::form::section uos [_ curriculum-central.uos_details] ad_form -extend -name uos -form { - {uos_code:text(inform) + {uos_code:text {label "[_ curriculum-central.uos_code]"} {value $uos(uos_code)} + {html {size 50}} {mode display} } - {uos_name:text(inform) + {uos_name:text {label "[_ curriculum-central.uos_name]"} {value $uos(uos_name)} + {html {size 50}} {mode display} } } @@ -86,21 +88,24 @@ -short_name unit_coordinator] ad_form -extend -name uos -form { - {credit_value:integer(inform) + {credit_value:integer {label "[_ curriculum-central.credit_value]"} {value $uos(credit_value)} - {mode display} + {html {size 3}} + {mode display} } - {semester:integer(inform) + {semester:integer {label "[_ curriculum-central.semester_offering]"} {value $uos(semester)} + {html {size 3}} {mode display} } } -# Add UoS Details Section -template::form::section uos [_ curriculum-central.uos_details] +# Add teaching and learning section. +template::form::section uos [_ curriculum-central.tl_arrangements_and_requirements] + # Retrieve Details info for Unit of Study. curriculum_central::uos::get_details \ -uos_id $uos_id \ @@ -154,9 +159,6 @@ } } -# Add teaching and learning section. -template::form::section uos [_ curriculum-central.tl_arrangements_and_requirements] - # Retrieve teaching and learning info for Unit of Study. curriculum_central::uos::get_tl \ -uos_id $uos_id \