mirror of
https://github.com/gnosygnu/xowa.git
synced 2024-10-27 20:34:16 +00:00
if catpage link is missing, output page_id not ~{itm_text}
This commit is contained in:
parent
1342a16269
commit
ab3bedcc9f
@ -29,7 +29,7 @@ public class Xoctg_catpage_mgr__basic__tst {
|
|||||||
Xoctg_catpage_itm itm = fxt.Ctg().Grp_by_tid(Xoa_ctg_mgr.Tid__page).Itms__get_at(0);
|
Xoctg_catpage_itm itm = fxt.Ctg().Grp_by_tid(Xoa_ctg_mgr.Tid__page).Itms__get_at(0);
|
||||||
itm.Page_ttl_(Xoa_ttl.Null);
|
itm.Page_ttl_(Xoa_ttl.Null);
|
||||||
itm.Sortkey_handle_make(Bry_bfr_.New(), Bry_.Empty);
|
itm.Sortkey_handle_make(Bry_bfr_.New(), Bry_.Empty);
|
||||||
fxt.Test__html__page(Xoa_ctg_mgr.Tid__page, Byte_ascii.Ltr_A, "\n <li class=\"xowa-missing-category-entry\"><span title=\"id not found: #0 might be talk/user page\">A1 (missing)</li>");
|
fxt.Test__html__page(Xoa_ctg_mgr.Tid__page, Byte_ascii.Ltr_A, "\n <li class=\"xowa-missing-category-entry\"><span title=\"id not found: #0 might be talk/user page\">missing page (0)</li>");
|
||||||
}
|
}
|
||||||
@Test public void Visited_doesnt_work_for_space() {// PURPOSE: xowa-visited not inserted for pages with space
|
@Test public void Visited_doesnt_work_for_space() {// PURPOSE: xowa-visited not inserted for pages with space
|
||||||
byte[] page_bry = Bry_.new_a7("A 1");
|
byte[] page_bry = Bry_.new_a7("A 1");
|
||||||
|
@ -66,25 +66,24 @@ public abstract class Xoctg_fmt_itm_base implements gplx.core.brys.Bfr_arg {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Xoa_ttl itm_ttl = itm.Page_ttl();
|
Xoa_ttl itm_ttl = itm.Page_ttl();
|
||||||
|
if (itm_ttl == Xoa_ttl.Null)
|
||||||
|
Fmt__missing.Bld_many(bfr, itm.Page_id());
|
||||||
|
else
|
||||||
Bld_html(bfr, wiki, history_mgr, href_parser, itm, itm_ttl);
|
Bld_html(bfr, wiki, history_mgr, href_parser, itm, itm_ttl);
|
||||||
}
|
}
|
||||||
loop_end_idx = grp_end;
|
loop_end_idx = grp_end;
|
||||||
loop_ends_at_col = true;
|
loop_ends_at_col = true;
|
||||||
}
|
}
|
||||||
@gplx.Virtual public void Bld_html(Bry_bfr bfr, Xow_wiki wiki, Xou_history_mgr history_mgr, Xoh_href_parser href_parser, Xoctg_catpage_itm itm, Xoa_ttl ttl) {
|
@gplx.Virtual public void Bld_html(Bry_bfr bfr, Xow_wiki wiki, Xou_history_mgr history_mgr, Xoh_href_parser href_parser, Xoctg_catpage_itm itm, Xoa_ttl ttl) {
|
||||||
if (ttl == Xoa_ttl.Null)
|
|
||||||
Fmt__missing.Bld_many(bfr, itm.Page_id());
|
|
||||||
else {
|
|
||||||
byte[] itm_full_ttl = Gfh_utl.Escape_html_as_bry(tmp_bfr, ttl.Full_txt_w_ttl_case());// NOTE: ttl.Full_txt() to get full ns; EX: Template:A instead of just "A"
|
byte[] itm_full_ttl = Gfh_utl.Escape_html_as_bry(tmp_bfr, ttl.Full_txt_w_ttl_case());// NOTE: ttl.Full_txt() to get full ns; EX: Template:A instead of just "A"
|
||||||
byte[] itm_href = wiki.Html__href_wtr().Build_to_bry(wiki, ttl);
|
byte[] itm_href = wiki.Html__href_wtr().Build_to_bry(wiki, ttl);
|
||||||
byte[] itm_atr_cls = Xoh_lnki_wtr.Lnki_cls_visited(history_mgr, wiki.Domain_bry(), ttl.Page_txt()); // NOTE: must be ttl.Page_txt() in order to match Xou_history_mgr.Add
|
byte[] itm_atr_cls = Xoh_lnki_wtr.Lnki_cls_visited(history_mgr, wiki.Domain_bry(), ttl.Page_txt()); // NOTE: must be ttl.Page_txt() in order to match Xou_history_mgr.Add
|
||||||
Fmt__exists.Bld_many(bfr, itm_href, itm_atr_cls, itm_full_ttl, itm_full_ttl, gplx.core.encoders.Hex_utl_.Encode_bry(itm.Sortkey_binary()));
|
Fmt__exists.Bld_many(bfr, itm_href, itm_atr_cls, itm_full_ttl, itm_full_ttl, gplx.core.encoders.Hex_utl_.Encode_bry(itm.Sortkey_binary()));
|
||||||
}
|
}
|
||||||
}
|
private static final Bry_fmt
|
||||||
protected static final Bry_fmt
|
|
||||||
Fmt__missing = Bry_fmt.Auto_nl_skip_last
|
Fmt__missing = Bry_fmt.Auto_nl_skip_last
|
||||||
( ""
|
( ""
|
||||||
, " <li class=\"xowa-missing-category-entry\"><span title=\"id not found: #~{itm_id} might be talk/user page\">~{itm_text} (missing)</li>"
|
, " <li class=\"xowa-missing-category-entry\"><span title=\"id not found: #~{itm_id} might be talk/user page\">missing page (~{itm_id})</li>"
|
||||||
)
|
)
|
||||||
, Fmt__exists = Bry_fmt.Auto_nl_skip_last
|
, Fmt__exists = Bry_fmt.Auto_nl_skip_last
|
||||||
( ""
|
( ""
|
||||||
|
@ -23,10 +23,6 @@ import gplx.xowa.users.history.*;
|
|||||||
class Xoctg_fmt_itm_subc extends Xoctg_fmt_itm_base {
|
class Xoctg_fmt_itm_subc extends Xoctg_fmt_itm_base {
|
||||||
private final Bry_bfr tmp_bfr = Bry_bfr_.New();
|
private final Bry_bfr tmp_bfr = Bry_bfr_.New();
|
||||||
@Override public void Bld_html(Bry_bfr bfr, Xow_wiki wiki, Xou_history_mgr history_mgr, Xoh_href_parser href_parser, Xoctg_catpage_itm itm, Xoa_ttl ttl) {
|
@Override public void Bld_html(Bry_bfr bfr, Xow_wiki wiki, Xou_history_mgr history_mgr, Xoh_href_parser href_parser, Xoctg_catpage_itm itm, Xoa_ttl ttl) {
|
||||||
if (ttl == Xoa_ttl.Null) {
|
|
||||||
Fmt__missing.Bld_many(bfr, itm.Page_id());
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
byte[] itm_href = wiki.Html__href_wtr().Build_to_bry(wiki, ttl);
|
byte[] itm_href = wiki.Html__href_wtr().Build_to_bry(wiki, ttl);
|
||||||
int count_subcs = 0;
|
int count_subcs = 0;
|
||||||
int count_pages = 0;
|
int count_pages = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user