Changes for page Lua Script
Last modified by Devin Chen on 2025/11/10 16:04
From version 5.3
edited by xingzhi lin
on 2025/10/31 09:58
on 2025/10/31 09:58
Change comment:
There is no comment for this version
To version 11.1
edited by xingzhi lin
on 2025/11/03 11:23
on 2025/11/03 11:23
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -659,8 +659,20 @@ 659 659 |(% style="width:203px" %)11|(% style="width:967px" %)Characters are stored in one word 660 660 |(% style="width:203px" %)12|(% style="width:967px" %)Unicode text 661 661 662 +* element5:element 662 662 664 +|=(% style="width: 203px;" %)Value|=(% style="width: 967px;" %)Describe 665 +|(% style="width:203px" %)0|(% style="width:967px" %)Default 666 +|(% style="width:203px" %)4|(% style="width:967px" %)Gbk text, normal setting 667 +|(% style="width:203px" %)5|(% style="width:967px" %)Gbk text, the first byte is the string length 668 +|(% style="width:203px" %)12|(% style="width:967px" %)Unicode text 663 663 670 +* element6:element 671 + 672 +|=(% style="width: 203px;" %)Value|=(% style="width: 967px;" %)Describe 673 +|(% style="width:203px" %)0|(% style="width:967px" %)Default 674 +|(% style="width:203px" %)11|(% style="width:967px" %)Characters are stored in one word 675 + 664 664 Return: 665 665 666 666 * Success: true ... ... @@ -670,7 +670,7 @@ 670 670 671 671 {{code language="Lua"}} 672 672 local str = "Hello" 673 -we_bas_setstring("@W_HDW0", str) 685 +we_bas_setstring("@W_HDW0", str, 10, 0, 0, 0, 0) 674 674 {{/code}} 675 675 676 676 == [[we_bas_bmov>>||anchor="HAddressclass"]] == ... ... @@ -7831,6 +7831,337 @@ 7831 7831 |crc16_arc|0x8005|0x0000|0x0000|true|true|123456789|0xBB3D 7832 7832 |crc32|0x04C11DB7|0xFFFFFFF|0xFFFFFFF|true|true|123456789|0xCBF43926 7833 7833 7846 += LuaUserSecure = 7847 + 7848 +== user_secure.usersecure_getInfo == 7849 + 7850 +**Prototype : **user_secure.usersecure_getInfo() 7851 + 7852 +**Function: **Get all user information 7853 + 7854 +**Return: ** 7855 + 7856 +* Success: User data table 7857 +* Failure: Returns nil 7858 + 7859 +**Example** 7860 + 7861 +{{code language="LUA"}} 7862 +secure = user_secure.usersecure_getInfo() 7863 + for index,j in pairs(secure) do 7864 + for msg,value in pairs(j) do 7865 + if "permission" == msg then 7866 + print("index",index,"msg",msg,"value",table.concat(value,',')) 7867 + else 7868 + print("index",index,"msg",msg,"value",value) 7869 + end 7870 + 7871 + end 7872 + end 7873 + 7874 +{{/code}} 7875 + 7876 +== user_secure.usersecure_addInfo == 7877 + 7878 +**Prototype : **user_secure.usersecure_addInfo(username, password, supassword, desc, hide, permission) 7879 + 7880 +**Function: **Add user information 7881 + 7882 +**Parameters**: 7883 + 7884 +* username(string): New username (16 characters) 7885 +* password(string): Password (8 characters) 7886 +* supassword(string): Confirm password (8 characters) 7887 +* desc(string): Description (10 characters) 7888 +* hide(bool): Controls hiding; true: hide if insufficient permissions 7889 +* permission(table): Permissions; 1 for granted permissions, 0 for no permissions 7890 + 7891 +**Return: ** 7892 + 7893 +* Success: Return 0 7894 +* Failure: Returns nil 7895 + 7896 +**Example** 7897 + 7898 +{{code language="LUA"}} 7899 +tab = {0,1,1,1,1,1,1,1,1,1,1,1} 7900 +user_secure.usersecure_addInfo("user1","123","123","user1",false,"tab") 7901 +{{/code}} 7902 + 7903 +== user_secure.usersecure_deleteInfo == 7904 + 7905 +**Prototype : **user_secure.usersecure_deleteInfo(username) 7906 + 7907 +**Function: **Delete user information 7908 + 7909 +**Parameters**: 7910 + 7911 +* username 7912 + 7913 +**Return: ** 7914 + 7915 +* Failure: Returns nil 7916 + 7917 +**Example** 7918 + 7919 +{{code language="LUA"}} 7920 +ret, msg = user_secure.usersecure_deleteInfo("user1") 7921 +{{/code}} 7922 + 7923 +== user_secure.usersecure_updatepermission == 7924 + 7925 +**Prototype : **user_secure.usersecure_updatepermission(username, permission) 7926 + 7927 +**Function: **Modify permissions 7928 + 7929 +**Parameters**: 7930 + 7931 +* username 7932 +* permission(table): Permissions; 1 for granted permissions, 0 for no permissions 7933 + 7934 +**Return: ** 7935 + 7936 +* Failure: Returns nil 7937 + 7938 +**Example** 7939 + 7940 +{{code language="LUA"}} 7941 +tab = {0,1,1,1,1,1,1,1,1,1,1,1} 7942 +ret, msg =user_secure.usersecure_updatepermission("user1","tab") 7943 +{{/code}} 7944 + 7945 +== user_secure.usersecure_login == 7946 + 7947 +**Prototype : **user_secure.usersecure_login(username,pwd) 7948 + 7949 +**Function: **User login 7950 + 7951 +**Parameters**: 7952 + 7953 +* username 7954 +* pwd: password 7955 + 7956 +**Return: ** 7957 + 7958 +* Failure: Returns nil 7959 + 7960 +**Example** 7961 + 7962 +{{code language="LUA"}} 7963 +ret, msg = user_secure.usersecure_login("user1", "123") 7964 +{{/code}} 7965 + 7966 +== user_secure.usersecure_logout == 7967 + 7968 +**Prototype : **user_secure.usersecure_logout() 7969 + 7970 +**Function: **User logout 7971 + 7972 +**Return: ** 7973 + 7974 +* Failure: Returns nil 7975 + 7976 +**Example** 7977 + 7978 +{{code language="LUA"}} 7979 +ret, msg = user_secure.usersecure_logout 7980 +{{/code}} 7981 + 7982 +== user_secure.usersecure_updatepwd == 7983 + 7984 +**Prototype : **user_secure.usersecure_updatepwd (username, old, pwd, supwd) 7985 + 7986 +**Function: **Modify password 7987 + 7988 +**Parameters**: 7989 + 7990 +* username (string): Username, 16 characters 7991 +* old (string): Old password, 8 characters 7992 +* ((( 7993 +pwd (string): New password, 8 characterssupwd (string): Confirm password, 8 characters 7994 +))) 7995 + 7996 +**Return: ** 7997 + 7998 +* Success: CRC encrypted data 7999 +* Failure: Returns nil 8000 + 8001 +**Example** 8002 + 8003 +{{code language="LUA"}} 8004 +user_secure.usersecure_updatepwd("user1","123","321","321") 8005 +{{/code}} 8006 + 8007 += LuaChart = 8008 + 8009 +== chart.setAlarmBtnSpacing == 8010 + 8011 +**Prototype : **chart.setAlarmBtnSpacing(partname, spacing) 8012 + 8013 +**Function: **Set the spacing between new alarm buttons 8014 + 8015 +**Parameters**: 8016 + 8017 +* ((( 8018 +partname(string): Component name 8019 +))) 8020 +* ((( 8021 +spacing(int): Button spacing (unit: px (pixels)) 8022 +))) 8023 + 8024 +**Return: ** 8025 + 8026 +* Success: User data table 8027 +* Failure: Returns nil 8028 + 8029 +**Example** 8030 + 8031 +{{code language="LUA"}} 8032 +chart.setAlarmBtnSpacing("1_ALM_0", 5) 8033 +{{/code}} 8034 + 8035 +== chart.setAlarmBtnScale == 8036 + 8037 + 8038 +**Prototype : **chart.setAlarmBtnScale(partname, scale) 8039 + 8040 +**Function: **Set the new alarm button size scaling 8041 + 8042 +**Parameters**: 8043 + 8044 +* ((( 8045 +partname(string): Component name 8046 +))) 8047 +* ((( 8048 +scale(double): Scaling factor, default is 1, range [0.1, 5] 8049 +))) 8050 + 8051 +**Return: ** 8052 + 8053 +* Success: True 8054 +* Failure: False 8055 + 8056 +**Example** 8057 + 8058 +{{code language="LUA"}} 8059 +chart.setAlarmBtnScale("1_ALM_0", 1.5) 8060 +{{/code}} 8061 + 8062 + 8063 +== chart.setFormulaBtnSpacing == 8064 + 8065 + 8066 +**Prototype : **chart.setFormulaBtnSpacing(partname, spacing) 8067 + 8068 +**Function: **Set the spacing between new formula buttons 8069 + 8070 +**Parameters**: 8071 + 8072 +* ((( 8073 +partname(string): Component name 8074 +))) 8075 +* ((( 8076 +spacing(int): Button spacing (unit: px (pixels)) 8077 +))) 8078 + 8079 +**Return: ** 8080 + 8081 +* Success: True 8082 +* Failure: False 8083 + 8084 +**Example** 8085 + 8086 + 8087 +{{code language="LUA"}} 8088 +chart.setFormulaBtnSpacing("2_FOA_0", 5) 8089 +{{/code}} 8090 + 8091 +== chart.setFormulaBtnScale == 8092 + 8093 + 8094 +**Prototype : **chart.setFormulBtnScale(partname, scale) 8095 + 8096 +**Function: **Set the formula button size scaling 8097 + 8098 +**Parameters**: 8099 + 8100 +* ((( 8101 +partname(string): Component name 8102 +))) 8103 +* ((( 8104 +scale(double): Scaling factor, default is 1, range [0.1, 5] 8105 +))) 8106 + 8107 +**Return: ** 8108 + 8109 +* Success: True 8110 +* Failure: False 8111 + 8112 +**Example** 8113 + 8114 + 8115 +{{code language="LUA"}} 8116 +chart.setFormulaBtnScale("2_FOA_0", 1.5) 8117 +{{/code}} 8118 + 8119 +== chart.setBarChartBtnSpacing == 8120 + 8121 + 8122 +**Prototype : **chart.setBarChartBtnSpacing(partname, spacing) 8123 + 8124 +**Function: **Set the spacing between new barchart buttons 8125 + 8126 +**Parameters**: 8127 + 8128 +* ((( 8129 +partname(string): Component name 8130 +))) 8131 +* ((( 8132 +spacing(int): Button spacing (unit: px (pixels)) 8133 +))) 8134 + 8135 +**Return: ** 8136 + 8137 +* Success: True 8138 +* Failure: False 8139 + 8140 +**Example** 8141 + 8142 + 8143 +{{code language="LUA"}} 8144 +chart.setBarChartBtnSpacing("0_BC_0", 5) 8145 +{{/code}} 8146 + 8147 +== chart.setBarChartBtnScale == 8148 + 8149 + 8150 + 8151 +**Prototype : **chart.setBarChartBtnScale(partname, scale) 8152 + 8153 +**Function: **Set the barchart button size scaling 8154 + 8155 +**Parameters**: 8156 + 8157 +* ((( 8158 +partname(string): Component name 8159 +))) 8160 +* ((( 8161 +scale(double): Scaling factor, default is 1, range [0.1, 5] 8162 +))) 8163 + 8164 +**Return: ** 8165 + 8166 +* Success: True 8167 +* Failure: False 8168 + 8169 +**Example** 8170 + 8171 + 8172 + 8173 +{{code language="LUA"}} 8174 +chart.setBarChartBtnScale("0_BC_0", 1.5) 8175 +{{/code}} 8176 + 7834 7834 = Environment operation = 7835 7835 7836 7836 (% class="wikigeneratedid" id="HGetsqliteenvironment" %)