1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2025-06-04 00:14:14 +00:00
gnosygnu_xowa/400_xowa/src/gplx/xowa/Xoa_app.java

66 lines
2.7 KiB
Java
Raw Normal View History

2015-07-13 01:10:02 +00:00
/*
XOWA: the XOWA Offline Wiki Application
Copyright (C) 2012 gnosygnu@gmail.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package gplx.xowa; import gplx.*;
2015-11-23 02:39:33 +00:00
import gplx.core.brys.*; import gplx.core.ios.*; import gplx.core.net.*;
2015-10-19 02:17:57 +00:00
import gplx.langs.jsons.*; import gplx.langs.htmls.encoders.*;
import gplx.xowa.apps.*; import gplx.xowa.apps.fsys.*; import gplx.xowa.apps.site_cfgs.*; import gplx.xowa.apps.metas.*; import gplx.xowa.apps.apis.*;
import gplx.xowa.apps.gfs.*;
2015-07-13 01:10:02 +00:00
import gplx.xowa.bldrs.css.*;
2015-10-19 02:17:57 +00:00
import gplx.xowa.files.caches.*; import gplx.xowa.files.imgs.*;
2016-04-25 02:05:38 +00:00
import gplx.xowa.guis.cbks.*;
2015-11-02 01:50:05 +00:00
import gplx.xowa.htmls.hrefs.*; import gplx.xowa.htmls.core.htmls.utls.*; import gplx.xowa.htmls.js.*; import gplx.xowa.htmls.bridges.*;
2015-10-19 02:17:57 +00:00
import gplx.xowa.wikis.*; import gplx.xowa.wikis.xwikis.*; import gplx.xowa.wikis.xwikis.parsers.*; import gplx.xowa.wikis.xwikis.sitelinks.*;
import gplx.xowa.langs.*;
import gplx.xowa.bldrs.wms.*;
2015-07-13 01:10:02 +00:00
import gplx.xowa.users.*;
2016-04-11 04:12:19 +00:00
import gplx.xowa.bldrs.*;
import gplx.xowa.addons.*; import gplx.xowa.addons.apps.specials.*;
2015-10-19 02:17:57 +00:00
public interface Xoa_app extends GfoInvkAble {
boolean Tid_is_edit();
Xoa_app_mode Mode();
2015-07-20 03:16:49 +00:00
Xoapi_root Api_root();
2015-07-13 01:10:02 +00:00
Xoa_fsys_mgr Fsys_mgr();
Xoa_wiki_mgr Wiki_mgri();
2015-10-19 02:17:57 +00:00
Xoa_lang_mgr Lang_mgr();
Xoa_gfs_mgr Gfs_mgr();
2015-07-13 01:10:02 +00:00
Xof_cache_mgr File__cache_mgr();
Xof_img_mgr File__img_mgr();
Io_download_fmt File__download_fmt();
Xoh_href_parser Html__href_parser();
2015-08-03 04:10:03 +00:00
Xoh_href_wtr Html__href_wtr();
2015-07-13 01:10:02 +00:00
Xoh_lnki_bldr Html__lnki_bldr();
Xoa_css_extractor Html__css_installer();
2015-07-20 03:16:49 +00:00
Xoh_bridge_mgr Html__bridge_mgr();
2016-04-25 02:05:38 +00:00
Xog_cbk_mgr Gui__cbk_mgr();
2015-07-13 01:10:02 +00:00
Xou_user User();
Xowmf_mgr Wmf_mgr();
boolean Xwiki_mgr__missing(byte[] domain);
2015-10-19 02:17:57 +00:00
Xoa_sitelink_mgr Xwiki_mgr__sitelink_mgr();
Xow_xwiki_itm_parser Xwiki_mgr__itm_parser();
2015-07-20 03:16:49 +00:00
boolean Bldr__running(); void Bldr__running_(boolean v);
2015-07-13 01:10:02 +00:00
Gfo_usr_dlg Usr_dlg();
Bry_bfr_mkr Utl__bfr_mkr();
2015-08-31 02:57:59 +00:00
Json_parser Utl__json_parser();
2015-09-21 03:43:51 +00:00
Gfo_inet_conn Utl__inet_conn();
2016-01-18 04:18:07 +00:00
Xoa_meta_mgr Dbmeta_mgr();
2015-10-19 02:17:57 +00:00
Xoa_site_cfg_mgr Site_cfg_mgr();
2016-04-11 04:12:19 +00:00
Xoax_addon_mgr Addon_mgr();
Xob_bldr Bldr();
Xoa_special_regy Special_regy();
2015-07-20 03:16:49 +00:00
}