1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2024-09-28 22:40:50 +00:00

Release: v3.10.4.6

This commit is contained in:
gnosygnu 2016-11-06 22:33:55 -05:00
parent a056a5b2e6
commit fd712c16f3
3 changed files with 4 additions and 3 deletions

View File

@ -32,7 +32,7 @@ public class Xoa_app_ {
}
}
public static final String Name = "xowa";
public static final String Version = "3.10.4.4";
public static final String Version = "3.10.4.6";
public static String Build_date = "2012-12-30 00:00:00";
public static String Op_sys_str;
public static String User_agent = "";

View File

@ -18,9 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
package gplx.xowa.addons.parsers.mediawikis; import gplx.*; import gplx.xowa.*; import gplx.xowa.addons.*; import gplx.xowa.addons.parsers.*;
public class Xop_mediawiki_mgr {
private final Xoae_app app;
public Xop_mediawiki_mgr(Io_url root_dir) {
public Xop_mediawiki_mgr(String root_str) {
Gfo_usr_dlg usr_dlg = Xoa_app_.New__usr_dlg__console();
Gfo_usr_dlg_.Instance = usr_dlg;
Io_url root_dir = Io_url_.new_dir_(root_str);
this.app = new Xoae_app(usr_dlg, gplx.xowa.apps.Xoa_app_mode.Itm_cmd
, root_dir

View File

@ -28,7 +28,7 @@ public class Xop_mediawiki_wkr__tst {
}
}
class Xop_mediawiki_wkr__fxt {
private final Xop_mediawiki_mgr mgr = new Xop_mediawiki_mgr(Io_url_.new_dir_("mem/xowa/wiki/en.wikipedia.org"));
private final Xop_mediawiki_mgr mgr = new Xop_mediawiki_mgr("mem/xowa/wiki/en.wikipedia.org/");
private Xop_mediawiki_wkr wkr;
public void Init__wkr(String wiki) {
this.wkr = mgr.Make(wiki);