1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00
This commit is contained in:
gnosygnu
2015-09-06 21:31:25 -04:00
parent 5fc4eb41ec
commit 2145f6382c
89 changed files with 2250 additions and 671 deletions

View File

@@ -70,7 +70,7 @@ public class Xob_orig_regy_update_bmk_mgr implements GfoInvkAble {
}
public void Save() {
if (repo_enable && repo_dirty) {
Save(Cfg_repo_prv, Byte_.Xto_str(repo_prv));
Save(Cfg_repo_prv, Byte_.To_str(repo_prv));
repo_dirty = false;
}
if (ns_enable && ns_dirty) {

View File

@@ -51,7 +51,7 @@ public class Xob_orig_regy_update_cmd extends Xob_itm_basic_base implements Xob_
String sql = String_.Concat_lines_nl_skip_last
( "SELECT lnki_ttl"
, "FROM orig_regy"
, "WHERE lnki_repo >= '" + Byte_.Xto_str(prv_repo_id) + "'"
, "WHERE lnki_repo >= '" + Byte_.To_str(prv_repo_id) + "'"
, "AND lnki_ttl > '" + prv_ttl + "'"
, "AND oimg_orig_page_id = -1;"
);

View File

@@ -66,9 +66,9 @@ public class Xob_xfer_update_cmd extends Xob_itm_basic_base implements Xob_cmd {
, ", cur.lnki_count"
, ", CASE"
, " WHEN old.lnki_ttl IS NULL THEN" // not in old table; mark todo
, " " + Byte_.Xto_str(Xob_xfer_regy_tbl.Status_todo)
, " " + Byte_.To_str(Xob_xfer_regy_tbl.Status_todo)
, " ELSE" // in old table; mark processed
, " " + Byte_.Xto_str(Xob_xfer_regy_tbl.Status_ignore_processed)
, " " + Byte_.To_str(Xob_xfer_regy_tbl.Status_ignore_processed)
, " END"
, ", cur.xfer_bin_tid"
, ", cur.xfer_bin_msg"