Commit 7d0ef78607c53d82c6b692f36c7a108e19b8bd14
1 parent
6b95d3a5
Change the copyright to the right person
Showing
26 changed files
with
30 additions
and
33 deletions
Show diff stats
controller/hk_controller.anubis
controller/hk_delete.anubis
controller/hk_rows_import.anubis
controller/hk_sql_utils.anubis
controller/hk_trigger.anubis
ds_files/ds_types.anubis
hk_generator.anubis
model/app.anubis
model/columns.anubis
model/database.anubis
model/display.anubis
model/fields.anubis
model/help.anubis
model/icons.anubis
model/model.anubis
model/tables.anubis
model/utils.anubis
types/hayamiki.anubis
view/hk_filter.anubis
view/jqgrid.anubis
view/load_vtm.anubis
view/types/hk_form_entry.anubis
view/view_apps_renderer.anubis
view/view_editor_renderer.anubis
view/view_rows_import.anubis
| ... | ... | @@ -3,7 +3,7 @@ |
| 3 | 3 | * User: フランスのトトロ aka (David RENÉ) |
| 4 | 4 | * Date: 06/05/2017 |
| 5 | 5 | * Time: 10:33 |
| 6 | - * © Calexium | |
| 6 | + * © David RENÉ | |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | read locale/L3.anubis |
| ... | ... | @@ -184,8 +184,8 @@ public define HTML_Partial_Content |
| 184 | 184 | List((String,String)) target_columns_choices, |
| 185 | 185 | String separator, |
| 186 | 186 | String uploaded_file, |
| 187 | - WEB_Action_Name cancel_action, | |
| 188 | - (String) -> String _T, | |
| 187 | + WEB_Action_Name cancel_action, // | |
| 188 | + (String) -> String _T // translator from dictionary | |
| 189 | 189 | )= |
| 190 | 190 | partial_content([css(css_file("css/cxm/cxm_dnd.css")), |
| 191 | 191 | css(css_file("css/changelists.css")), |
| ... | ... | @@ -205,12 +205,9 @@ public define HTML_Partial_Content |
| 205 | 205 | row([], [cell(empty), cell(text(_T("FILE_ENCODING"))), cell(text("choose encoding"))]), |
| 206 | 206 | row([], [cell(empty), cell(text(_T("REMOVE_CSV_HEADER"))), cell(check_box([], no_label, html_Id(""), wan("hk_remove_csv_header"), true))]), |
| 207 | 207 | row([], [cell(empty), cell(text(_T("IMPORT_TYPE"))), cell(selector_c([], no_label, html_Id("import_type"), wan("import_type"), 1, csv_import_type_combo(_T), init(separator)),)]), |
| 208 | - | |
| 209 | -// row([], [cell(empty), cell(text(_T("OPT_OUT"))), cell(check_box([], no_label, html_Id(""), wan("import_opt_out"), wav("1"), false))])] //end of row | |
| 210 | 208 | ]), |
| 211 | 209 | br, |
| 212 | - div([id("dragLists")], | |
| 213 | - sequence([ | |
| 210 | + div([id("dragLists")], [ | |
| 214 | 211 | //SOURCE column |
| 215 | 212 | div([style("float: left; margin: 5px;")], div([class("dndContainer ")], |
| 216 | 213 | source_file_column_table(if explode(separator) is { [] then ';', [h . _] then h }, uploaded_file, _T))), |
| ... | ... | @@ -219,7 +216,7 @@ public define HTML_Partial_Content |
| 219 | 216 | target_column_table(target_columns_choices, _T))), |
| 220 | 217 | |
| 221 | 218 | div_empty([class("clear")]) |
| 222 | - ])), | |
| 219 | + ]), | |
| 223 | 220 | ])), //end of sequence in form |
| 224 | 221 | // )]) |
| 225 | 222 | partial(jquery_button(jquery_img_button(icn16_cross, _T("CANCEL"), "", jQuery_actioner(same, jqlink(cancel_action)), left))), | ... | ... |