1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Wikibase.Scribunto: Support #statements keyword

This commit is contained in:
gnosygnu
2017-04-04 06:02:51 -04:00
parent 26a56950cd
commit 1ba6f094e3
15 changed files with 188 additions and 85 deletions

View File

@@ -273,5 +273,6 @@ kwd_mgr.New(Bool_.Y, Xol_kwd_grp_.Id_rev_protectionexpiry, "PROTECTIONEXPIRY");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_new_window_link, "#NewWindowLink");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_categorytree, "#categorytree");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_assessment, "#assessment");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_statements, "#statements");
}
}

View File

@@ -235,8 +235,9 @@ public static final int
, Id_assessment = 215
, Id_ttl_root_txt = 216
, Id_ttl_root_url = 217
, Id_statements = 218
;
public static final int Id__max = 218;
public static final int Id__max = 219;
private static byte[] ary_itm_(int id) {
switch (id) {
@@ -458,6 +459,7 @@ case Xol_kwd_grp_.Id_rev_protectionexpiry: return Bry_.new_u8("protectionexpiry"
case Xol_kwd_grp_.Id_new_window_link: return Bry_.new_u8("newwindowlink");
case Xol_kwd_grp_.Id_categorytree: return Bry_.new_u8("categorytree");
case Xol_kwd_grp_.Id_assessment: return Bry_.new_u8("assessment");
case Xol_kwd_grp_.Id_statements: return Bry_.new_u8("statements");
default: throw Err_.new_unhandled(id);
}
}