Commit 0fab7df44eaa11945d2c2f745c82ecf9e0a8ffe8
1 parent
a8403c5a
rename menu as hk_menu
Showing
5 changed files
with
6 additions
and
6 deletions
Show diff stats
calexium_lib @ 5b85c04ccb6
hayamiki_generator.aproj
| @@ -494,9 +494,9 @@ | @@ -494,9 +494,9 @@ | ||
| 494 | <Compile Include="src\generation\files.anubis" /> | 494 | <Compile Include="src\generation\files.anubis" /> |
| 495 | <Compile Include="src\generation\fn_delete.anubis" /> | 495 | <Compile Include="src\generation\fn_delete.anubis" /> |
| 496 | <Compile Include="src\generation\header.anubis" /> | 496 | <Compile Include="src\generation\header.anubis" /> |
| 497 | + <Compile Include="src\generation\hk_menu.anubis" /> | ||
| 497 | <Compile Include="src\generation\html.anubis" /> | 498 | <Compile Include="src\generation\html.anubis" /> |
| 498 | <Compile Include="src\generation\icons.anubis" /> | 499 | <Compile Include="src\generation\icons.anubis" /> |
| 499 | - <Compile Include="src\generation\menu.anubis" /> | ||
| 500 | <Compile Include="src\generation\model.anubis" /> | 500 | <Compile Include="src\generation\model.anubis" /> |
| 501 | <Compile Include="src\generation\types.anubis" /> | 501 | <Compile Include="src\generation\types.anubis" /> |
| 502 | <Compile Include="src\generation\vt_edit.anubis" /> | 502 | <Compile Include="src\generation\vt_edit.anubis" /> |
hayamiki_lib @ 9ab9ecc773a
src/generation/files.anubis
| @@ -20,7 +20,7 @@ read generation/header.anubis | @@ -20,7 +20,7 @@ read generation/header.anubis | ||
| 20 | read generation/types.anubis | 20 | read generation/types.anubis |
| 21 | read generation/densaku.anubis | 21 | read generation/densaku.anubis |
| 22 | read generation/create_table.anubis | 22 | read generation/create_table.anubis |
| 23 | -read generation/menu.anubis | 23 | +read generation/hk_menu.anubis |
| 24 | read generation/fn_delete.anubis | 24 | read generation/fn_delete.anubis |
| 25 | read generation/choices_selector.anubis | 25 | read generation/choices_selector.anubis |
| 26 | read generation/vt_edit.anubis | 26 | read generation/vt_edit.anubis |
| @@ -237,7 +237,7 @@ define Maybe(One) | @@ -237,7 +237,7 @@ define Maybe(One) | ||
| 237 | println("Generating create for Database "+name); | 237 | println("Generating create for Database "+name); |
| 238 | if generate_create_table(apps, destination_dir) is failure then println("failure");failure else | 238 | if generate_create_table(apps, destination_dir) is failure then println("failure");failure else |
| 239 | println("Generating menu for Database "+name); | 239 | println("Generating menu for Database "+name); |
| 240 | - if generate_menus(apps, destination_dir) is failure then println("failure");failure else | 240 | + if generate_hk_menus(apps, destination_dir) is failure then println("failure");failure else |
| 241 | writeString(ini, "DB_MODEL", "SHA1", current_db_SHA1); | 241 | writeString(ini, "DB_MODEL", "SHA1", current_db_SHA1); |
| 242 | writeIniInfo(ini); | 242 | writeIniInfo(ini); |
| 243 | success(unique) | 243 | success(unique) |
src/generation/menu.anubis renamed to src/generation/hk_menu.anubis
| @@ -49,7 +49,7 @@ define String | @@ -49,7 +49,7 @@ define String | ||
| 49 | 49 | ||
| 50 | 50 | ||
| 51 | public define Maybe(One) | 51 | public define Maybe(One) |
| 52 | - generate_menus | 52 | + generate_hk_menus |
| 53 | ( | 53 | ( |
| 54 | List(HK_App) apps, //list of the table model description | 54 | List(HK_App) apps, //list of the table model description |
| 55 | String dest_dir | 55 | String dest_dir |