Commit a50af1f9dab595727bca6161131dbac99c58874e
1 parent
8974f9cf
use WEB_Action_Name in HTML_cell
Showing
3 changed files
with
4 additions
and
2 deletions
Show diff stats
calexium_lib @ 955d2c3164d
hayamiki_generator.aproj
| ... | ... | @@ -84,6 +84,7 @@ |
| 84 | 84 | <Compile Include="calexium_lib\web\CXM_multihost_http_server.anubis" /> |
| 85 | 85 | <Compile Include="calexium_lib\web\CXM_style_tools.anubis" /> |
| 86 | 86 | <Compile Include="calexium_lib\web\CXM_urllib.anubis" /> |
| 87 | + <Compile Include="calexium_lib\web\CXM_web_action.anubis" /> | |
| 87 | 88 | <Compile Include="calexium_lib\web\CXM_web_arg_encode.anubis" /> |
| 88 | 89 | <Compile Include="calexium_lib\web\CXM_web_arg_utils.anubis" /> |
| 89 | 90 | <Compile Include="calexium_lib\web\CXM_web_dump.anubis" /> | ... | ... |
src/generation/html.anubis
| ... | ... | @@ -9,6 +9,7 @@ |
| 9 | 9 | read system/string.anubis |
| 10 | 10 | read tools/basis.anubis |
| 11 | 11 | read calexium_lib/web/CXM_making_a_web_site.anubis |
| 12 | +read calexium_lib/web/CXM_web_action.anubis | |
| 12 | 13 | read hayamiki_lib/types/hayamiki.anubis |
| 13 | 14 | |
| 14 | 15 | read icons.anubis |
| ... | ... | @@ -49,7 +50,7 @@ public define String |
| 49 | 50 | String general_type_name, |
| 50 | 51 | WEB_Action_Name action_name |
| 51 | 52 | )= |
| 52 | - "link_id_action(to_String("+data_name+".id), "+to_String(column, data_name, general_type_name)+", \""+format_web_action_name(action_name)+"\")". | |
| 53 | + "link_id_action(to_String("+data_name+".id), "+to_String(column, data_name, general_type_name)+", "+to_Anubis_Source(action_name)+")". | |
| 53 | 54 | |
| 54 | 55 | |
| 55 | 56 | public define String | ... | ... |