+ }, eval_json_result);
+}
+
+// -------------------------------------------------------------------------
+// ------------------------------ text blocks ------------------------------
+// -------------------------------------------------------------------------
+
+function find_text_block_id(clicked_elt) {
+ // console.log("id: " + $(clicked_elt).attr('id'));
+ var id = $(clicked_elt).attr('id');
+ if (/^text-block-\d+$/.test(id)) {
+ // console.log("find_text_block_id: case 1: " + id.substr(11));
+ return id.substr(11) * 1;
+ }
+
+ id = $(clicked_elt).closest("[id*=text-block-]").attr('id')
+ if (/^text-block-\d+$/.test(id)) {
+ // console.log("find_text_block_id: case 2: " + id.substr(11));
+ return id.substr(11) * 1;
+ }
+
+ id = $(clicked_elt).closest("[id*=tb-]").attr('id')
+ if (/^tb-\d+$/.test(id)) {
+ // console.log("find_text_block_id: case 3: " + id.substr(3));
+ return id.substr(3) * 1;
+ }
+
+ // console.log("find_text_block_id: case undef");
+ return undefined;
+}
+
+function find_text_block_output_position(clicked_elt) {
+ var output_position = $(clicked_elt).closest('#text-block-list-container').find('#text_block_output_position').val();
+ if (output_position)
+ return output_position;
+
+ var type = $(clicked_elt).closest('#tb-back,#tb-front').data('type');
+ if (/^text-blocks-(front|back)/.test(type))
+ return type == "text-blocks-front" ? 0 : 1;
+
+ return undefined;
+}
+
+function disable_edit_text_block_commands(key, opt) {
+ return find_text_block_id(opt.$trigger) == undefined;
+}
+
+function standard_text_block_ajax_call(key, opt, other_data) {
+ var data = {
+ action: "RequirementSpecTextBlock/ajax_" + key,
+ requirement_spec_id: $('#requirement_spec_id').val(),
+ id: find_text_block_id(opt.$trigger),
+ output_position: find_text_block_output_position(opt.$trigger),
+ current_content_type: $('#current_content_type').val(),
+ current_content_id: $('#current_content_id').val()
+ };
+
+ $.post("controller.pl", $.extend(data, other_data || {}), eval_json_result);
+
+ return true;
+}
+
+function cancel_edit_text_block_form(id_base) {
+ var id = $('#' + id_base + '_id').val();
+ $('#' + id_base + '_form').remove();
+ if (id)
+ $('#text-block-' + id).show();
+}
+
+function ask_delete_text_block(key, opt) {
+ if (confirm(kivi.t8("Are you sure?")))
+ standard_text_block_ajax_call(key, opt);
+ return true;
+}
+
+// --------------------------------------------------------------------------------
+// ------------------------------ sections and items ------------------------------
+// --------------------------------------------------------------------------------
+
+function find_item_id(clicked_elt) {
+ // console.log("clicked id: " + $(clicked_elt).attr('id'));
+ var id = $(clicked_elt).attr('id');
+ var result = /^(function-block|function-block-content|sub-function-block|sub-function-block-content|section|section-header)-(\d+)$/.exec(id);
+ if (result) {
+ // console.log("find_item_id: case 1: " + result[2]);
+ return result[2];
+ }
+
+ id = $(clicked_elt).closest("[id*=fb-]").attr('id')
+ if (/^fb-\d+$/.test(id)) {
+ // console.log("find_item_id: case 2: " + id.substr(3));
+ return id.substr(3) * 1;
+ }
+
+ // console.log("find_item_id: case undef");
+ return undefined;
+}
+
+function standard_item_ajax_call(key, opt, other_data) {
+ var data = {
+ action: "RequirementSpecItem/ajax_" + key,
+ requirement_spec_id: $('#requirement_spec_id').val(),
+ id: find_item_id(opt.$trigger),
+ current_content_type: $('#current_content_type').val(),
+ current_content_id: $('#current_content_id').val()
+ };
+
+ // console.log("I would normally POST the following now:");
+ // console.log(data);
+ $.post("controller.pl", $.extend(data, other_data || {}), eval_json_result);
+
+ return true;