Logo white

David RENÉ / hayamiki_lib

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits
  • Compare
  • Branches 5
  • Tags 0
  • hayamiki_lib
28 Mar, 2026
3 commits
  • add a new web_action hkc_create_row. Until now the create or update was managed … ...
    e41b7b8a
    …by update. The behavior of update is to create a row if not exist or update it if exists. But this behavior introduce a bug I didn't notice until now. By calling only update_row function the trigger belonging to create function are never applied. So the core was updated to distinguish the creation or update and then apply the correct trigger.
    David RENÉ authored
    2026-03-28 12:27:13 +0900  
    Browse Code »
  • remove debug message
    bacee7d0
    David RENÉ authored
    2026-03-28 12:27:13 +0900  
    Browse Code »
  • Add get_db_id_by_full_clause with a list of bind
    7db7d1ac
    David RENÉ authored
    2026-03-28 12:01:40 +0900  
    Browse Code »

16 Oct, 2025
1 commit
  • Revert the previous commit. This function was in use. ...
    284fba03
    Add a comment to replace it, because the trigger are not managed here.
    David RENÉ authored
    2025-10-16 22:36:14 +0900  
    Browse Code »

14 Oct, 2025
1 commit
  • comment unneeded function. Maybe completely remove in the future
    65fb8570
    David RENÉ authored
    2025-10-14 14:18:33 +0900  
    Browse Code »

21 Sep, 2025
1 commit
  • [+] add get_count_by_clause with list of binds
    229008fe
    David RENÉ authored
    2025-09-21 08:41:53 +0900  
    Browse Code »

25 Jun, 2025
1 commit
  • [~] remove some debug print
    0b1e3ee3
    David RENÉ authored
    2025-06-25 17:44:26 +0900  
    Browse Code »

05 Jun, 2025
1 commit
  • Add dialog uid as prefix for CKeditor. This prevent to have multiple CKeditor with same ID
    5e720a3f
    David RENÉ authored
    2025-06-05 19:28:55 +0900  
    Browse Code »

04 May, 2024
3 commits
  • Merge branch '1.19' of ssh://gitlab.anubis-lang.com:33000/totoro/hayamiki_lib into 1.19
    25d77d40
    David RENÉ authored
    2024-05-04 11:52:49 +0900  
    Browse Code »
  • reverse the result list to order it in right way
    4d0c7352
    David RENÉ authored
    2024-05-04 11:52:15 +0900  
    Browse Code »
  • add db_get_list_String with clause and binds
    8d022f53
    David RENÉ authored
    2024-05-04 11:47:03 +0900  
    Browse Code »

10 Jun, 2023
2 commits
  • Merge branch '1.19' of ssh://gitlab.anubis-lang.com:33000/totoro/hayamiki_lib into 1.19
    09d474fb
    David RENÉ authored
    2023-06-10 15:51:44 +0900  
    Browse Code »
  • [~] don't delete anything if no id provided
    be9ff1bd
    David RENÉ authored
    2023-06-10 15:51:20 +0900  
    Browse Code »

29 Apr, 2023
1 commit
  • [+] get_all_by_full_clause ...
    f929f8f4
    [~] in function insert_or_update() , add print debug info on failure
    David RENÉ authored
    2023-04-29 18:14:17 +0900  
    Browse Code »

13 Mar, 2023
1 commit
  • [+] db_get_float(db, clause), db_get_float(db, clause, binds). ...
    accc7490
    [+] db_get_Int(db, clause, binds).
    [+] db_get_ids_by_full_clause(db, table_name, id_col, full_clause, binds).
    David RENÉ authored
    2023-03-13 14:40:40 +0100  
    Browse Code »

23 Oct, 2022
1 commit
  • add label and column name in primary_key alternative. This allows to see and edi… ...
    d169d607
    …t the DB_id other than the first "id"
    David RENÉ authored
    2022-10-23 17:41:38 +0200  
    Browse Code »

16 Oct, 2022
1 commit
  • replace aws_controller and aws_action by aws_c and aws_a (no functional change)
    29f8d658
    David RENÉ authored
    2022-10-16 20:03:32 +0200  
    Browse Code »

17 Sep, 2022
1 commit
  • [+] add rich_editor function as CoreAttrs to edit directly on double click on te… ...
    e3cc0aaf
    …xt with reference on table_name, column to edit and id of the row
    David RENÉ authored
    2022-09-17 15:37:11 +0900  
    Browse Code »

24 Jul, 2022
8 commits
  • Merge branch '1.19' into HEAD
    d57036b4
    David RENÉ authored
    2022-07-24 10:08:06 +0900  
    Browse Code »
  • resolve conflict
    d0cef010
    David RENÉ authored
    2022-07-24 10:07:23 +0900  
    Browse Code »
  • fix typo
    6ae75b2a
    David RENÉ authored
    2022-07-24 10:05:08 +0900  
    Browse Code »
  • [+] introduce helper for getting row show string directly from vtm, table_name and id
    ce99911c
    David RENÉ authored
    2022-07-24 10:04:51 +0900  
    Browse Code »
  • in javascipt code change the double quote by single quote which more readable under anubis source
    b4174bba
    David RENÉ authored
    2022-07-24 10:03:55 +0900  
    Browse Code »
  • No longer print the 2 different type on load_vtm because it's unreadable, becaus… ...
    2cf7bf21
    …e these types are to big. The good solution is to have a diff function on these type to show the difference
    David RENÉ authored
    2022-07-24 10:02:47 +0900  
    Browse Code »
  • fix typo
    3b41dfa9
    David RENÉ authored
    2022-07-24 09:59:40 +0900  
    Browse Code »
  • [+] add println in SQL error case instead of nothing. Next time it must in logging part ...
    0ebe8ade
    [+] add get_db_ids_by_full_clause which allow to make query on any table, set the column id, give the full clause. Return a list of DB_id.
    [+] add get_all_by_full_clause which allow to make query on any table, set the column id, give the full clause and provide the extractor for this column data type.
    David RENÉ authored
    2022-07-24 08:50:28 +0900  
    Browse Code »

26 May, 2022
1 commit
  • change the way to show error when loading the vtm plugin. Now not show the diffe… ...
    77ea06e9
    …rent type anymore because it was useless.
    David RENÉ authored
    2022-05-26 03:35:27 +0200  
    Browse Code »

15 May, 2022
1 commit
  • add get_show_string as entry into HK_Table_controller
    121721e0
    David RENÉ authored
    2022-05-15 22:54:06 +0200  
    Browse Code »

14 May, 2022
1 commit
  • replace select by select2 in jqgrid
    79e0a36f
    David RENÉ authored
    2022-05-14 14:21:27 +0200  
    Browse Code »

10 Apr, 2022
2 commits
  • [+] add settings_table model here, which can use by many application whom use hayamiki
    646095a1
    David RENÉ authored
    2022-04-10 18:33:46 +0200  
    Browse Code »
  • [+] get_db_ids_by_clause helper to get list of DB_id from table and column. For … ...
    c91bcb7a
    …example this help to get list of foreign keys
    David RENÉ authored
    2022-04-10 18:17:48 +0200  
    Browse Code »

27 Nov, 2021
1 commit
  • [~] replace the random uid of ckeditor by the c_name which is the column name of… ...
    2c3918d5
    … the database. This is useful because the name is predictable and the CKEDITOR can be destroyed easily
    David RENÉ authored
    2021-11-27 08:11:46 +0100  
    Browse Code »

26 Oct, 2021
2 commits
  • [+] add get_count_float_by_full_clause
    456d0986
    David RENÉ authored
    2021-10-26 23:52:43 +0200  
    Browse Code »
  • add log and speed up the construction of the drop down into the jqgrid
    ee6c417d
    David RENÉ authored
    2021-10-26 23:49:20 +0200  
    Browse Code »

16 Oct, 2021
1 commit
  • [+] add get_db_ids_by_clause which return a list of DB_id according to provided clause
    25fea527
    David RENÉ authored
    2021-10-16 20:45:12 +0200  
    Browse Code »

21 Feb, 2021
1 commit
  • change the path to jscolor.min.js to the new path prefixed with hayamiki
    c7a326a8
    David RENÉ authored
    2021-02-21 02:18:45 +0900  
    Browse Code »

15 Feb, 2021
3 commits
  • Merge branch '1.19' of ssh://gitlab.anubis-lang.com:33000/totoro/hayamiki_lib into 1.19
    0f4cd29c
    David RENÉ authored
    2021-02-15 14:35:44 +0900  
    Browse Code »
  • print the version when the generator is loaded ...
    050bbffb
    move css file in the new path (hayamiki/css/ or hayamiki/js/)
    David RENÉ authored
    2021-02-15 14:33:32 +0900  
    Browse Code »
  • continue to migrate to Xlib and change the folder for js and css files
    055806ac
    David RENÉ authored
    2021-02-15 14:24:09 +0900  
    Browse Code »

11 Feb, 2021
1 commit
  • update to xlib with renamed files and references
    e7921b1c
    David RENÉ authored
    2021-02-11 16:58:20 +0900  
    Browse Code »