Commit 72f76e72917415ca8be07fe558f2e28e0bd47402
1 parent
f533b816
add view_name for editor view
Showing
4 changed files
with
8 additions
and
4 deletions
Show diff stats
calexium_lib @ ef333ee770f
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
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, | ... | ... |