forked from samohtred/X-Tree-M
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuc_browsing_setup.js
More file actions
24 lines (20 loc) · 1.67 KB
/
uc_browsing_setup.js
File metadata and controls
24 lines (20 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// mother of all setups
var c_DEFAULT_UC_BROWSING_SETUP_COOKIE = "UC_Browsing_Setup";
var c_DEFAULT_UC_BROWSING_SETUP = {};
c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_type = c_DATA_SOURCE_TYPE_ID_PAUL;
c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_path = "http://xtreem.datokrat.sirius.uberspace.de/api/nodes/";
// "local"; // "local" is always used when Database is located at same location
// as the rest of the code; otherwise use the following style :
// "www.google.de" (no "http://" and no "/" at the end !!!)
c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_params = {};
c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_params.db_name = "uc_browsing_tree_db.xml";
c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_params.php_name = "uc_browsing_upload.php";
c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_params.root_item = "1"; //"575" // "root"; //
c_DEFAULT_UC_BROWSING_SETUP.tree_last_selected = c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_params.root_item;
c_DEFAULT_UC_BROWSING_SETUP.tree_locked_item = c_DEFAULT_UC_BROWSING_SETUP.tree_data_src_params.root_item;
c_DEFAULT_UC_BROWSING_SETUP.info_ticker1_item_id = null;
c_DEFAULT_UC_BROWSING_SETUP.info_ticker2_item_id = null;
c_DEFAULT_UC_BROWSING_SETUP.info_timer = 600000; // every 10 minutes
c_DEFAULT_UC_BROWSING_SETUP.favorites = [];
var uc_browsing_setup = jQuery.extend(true, {}, c_DEFAULT_UC_BROWSING_SETUP);
var uc_browsing_change_permission = 0;