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-08-17 02:09:16 -04:00
parent 34c34f227c
commit df10db140c
421 changed files with 4867 additions and 2429 deletions

View File

@@ -23,7 +23,7 @@ public class Xof_meta_fil_tst {
@Test public void Bld_url() {fxt.Bld_url("mem/root/", "abcdef", 3, "mem/root/a/b/abc.csv");}
}
class Xof_meta_fil_fxt {
byte[] md5_(byte[] name) {return Xof_file_wkr_.Md5_(name);}
byte[] md5_(byte[] name) {return Xof_file_wkr_.Md5(name);}
public void Ini() {}
public void Bld_url(String root, String md5, int depth, String expd) {Tfds.Eq(expd, Xof_meta_fil.Bld_url(Io_url_.new_dir_(root), Bry_.new_a7(md5), depth).Raw());}
}

View File

@@ -37,7 +37,7 @@ public class Xof_meta_mgr implements GfoInvkAble {
}
return rv;
}
public Xof_meta_itm Get_itm_or_new(byte[] ttl) {return Get_itm_or_new(ttl, gplx.xowa.files.Xof_file_wkr_.Md5_(ttl));}
public Xof_meta_itm Get_itm_or_new(byte[] ttl) {return Get_itm_or_new(ttl, gplx.xowa.files.Xof_file_wkr_.Md5(ttl));}
public Xof_meta_itm Get_itm_or_new(byte[] ttl, byte[] md5) {
Xof_meta_fil fil = this.Get_fil_or_new(md5);
return fil.Get_or_new(ttl);

View File

@@ -59,7 +59,7 @@ public class Xof_meta_mgr_tst {
}
class Xof_file_regy_fxt {
Xof_meta_mgr regy_mgr;
byte[] md5_(byte[] name) {return Xof_file_wkr_.Md5_(name);}
byte[] md5_(byte[] name) {return Xof_file_wkr_.Md5(name);}
public void Ini() {
Io_mgr.I.InitEngine_mem();
Xoae_app app = Xoa_app_fxt.app_();