Commit 0fab7df44eaa11945d2c2f745c82ecf9e0a8ffe8

Authored by totoro
1 parent a8403c5a

rename menu as hk_menu

calexium_lib @ 5b85c04ccb6
1   -Subproject commit 626989691473574cf1896048f55f618bd1a9a6c7
  1 +Subproject commit 5b85c04ccb6f2723207bb2b0640de7ec64850665
... ...
hayamiki_generator.aproj
... ... @@ -494,9 +494,9 @@
494 494 <Compile Include="src\generation\files.anubis" />
495 495 <Compile Include="src\generation\fn_delete.anubis" />
496 496 <Compile Include="src\generation\header.anubis" />
  497 + <Compile Include="src\generation\hk_menu.anubis" />
497 498 <Compile Include="src\generation\html.anubis" />
498 499 <Compile Include="src\generation\icons.anubis" />
499   - <Compile Include="src\generation\menu.anubis" />
500 500 <Compile Include="src\generation\model.anubis" />
501 501 <Compile Include="src\generation\types.anubis" />
502 502 <Compile Include="src\generation\vt_edit.anubis" />
... ...
hayamiki_lib @ 9ab9ecc773a
1   -Subproject commit 523830e5bcc852cc87262ed92f96d7a0ec0d0032
  1 +Subproject commit 9ab9ecc773adfda2d84d6cd559b1fe7ef305880e
... ...
src/generation/files.anubis
... ... @@ -20,7 +20,7 @@ read generation/header.anubis
20 20 read generation/types.anubis
21 21 read generation/densaku.anubis
22 22 read generation/create_table.anubis
23   -read generation/menu.anubis
  23 +read generation/hk_menu.anubis
24 24 read generation/fn_delete.anubis
25 25 read generation/choices_selector.anubis
26 26 read generation/vt_edit.anubis
... ... @@ -237,7 +237,7 @@ define Maybe(One)
237 237 println("Generating create for Database "+name);
238 238 if generate_create_table(apps, destination_dir) is failure then println("failure");failure else
239 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 241 writeString(ini, "DB_MODEL", "SHA1", current_db_SHA1);
242 242 writeIniInfo(ini);
243 243 success(unique)
... ...
src/generation/menu.anubis renamed to src/generation/hk_menu.anubis
... ... @@ -49,7 +49,7 @@ define String
49 49  
50 50  
51 51 public define Maybe(One)
52   - generate_menus
  52 + generate_hk_menus
53 53 (
54 54 List(HK_App) apps, //list of the table model description
55 55 String dest_dir
... ...