Commit 72f76e72917415ca8be07fe558f2e28e0bd47402

Authored by totoro
1 parent f533b816

add view_name for editor view

calexium_lib @ ef333ee770f
1   -Subproject commit 64fc7e3c2d3c906e186588d5cf800915903eeb2e
  1 +Subproject commit ef333ee770f743a4ffcbe8f571acca40a96d5d1a
... ...
hayamiki.aproj
... ... @@ -131,6 +131,10 @@
131 131 <Compile Include="hayamiki_lib\types\model\icons.anubis" />
132 132 <Compile Include="hayamiki_lib\types\model\model.anubis" />
133 133 <Compile Include="hayamiki_lib\types\model\tables.anubis" />
  134 + <Compile Include="hayamiki_lib\view\view_table_manager.anubis" />
  135 + <Compile Include="hayamiki_lib\view\view_table_manager_types.anubis" />
  136 + <Compile Include="hayamiki_lib\view\view_table_renderer.anubis" />
  137 + <Compile Include="hayamiki_lib\view\view_table_types.anubis" />
134 138 <Compile Include="library\a2a\C\formater.anubis" />
135 139 <Compile Include="library\a2a\example.anubis" />
136 140 <Compile Include="library\a2a\generic\preformater.anubis" />
... ... @@ -677,8 +681,8 @@
677 681 <Folder Include="hayamiki_lib\controller" />
678 682 <Folder Include="hayamiki_lib\types" />
679 683 <Folder Include="hayamiki_lib\types\model" />
680   - <Folder Include="hayamiki_lib\types\controler" />
681 684 <Folder Include="hayamiki_lib\types\view" />
  685 + <Folder Include="hayamiki_lib\view" />
682 686 <Folder Include="library" />
683 687 <Folder Include="library\a2a" />
684 688 <Folder Include="library\a2a\C" />
... ...
hayamiki_lib @ f6c73ca7279
1   -Subproject commit 291e3895c2e2e9db694cff91e266a4d756fa5b4d
  1 +Subproject commit f6c73ca7279c2073d848468064774426eda32441
... ...
src/generation/vt_edit.anubis
... ... @@ -54,7 +54,7 @@ public define Maybe(One)
54 54 " [\n"+
55 55 edit_entries(columns, table_name, " ", [])+"\n"+
56 56 " ],\n"+
57   - " vt_edit(\""+table_name+"\", edit_entries).\n\n"
  57 + " vt_edit(\""+table_name+"\", \""+view_name+"\", edit_entries).\n\n"
58 58 ) is //end of the function
59 59 {
60 60 failure then println("can't write generate_VT_view "+type_name); failure,
... ...