]> git.wh0rd.org - tt-rss.git/blob - prefs.php
remove mentions of deprecated.js
[tt-rss.git] / prefs.php
1 <?php
2 if (file_exists("install") && !file_exists("config.php")) {
3 header("Location: install/");
4 }
5
6 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
7 get_include_path());
8
9 if (!file_exists("config.php")) {
10 print "<b>Fatal Error</b>: You forgot to copy
11 <b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
12 exit;
13 }
14
15 require_once "autoload.php";
16 require_once "sessions.php";
17 require_once "functions.php";
18 require_once "sanity_check.php";
19 require_once "version.php";
20 require_once "config.php";
21 require_once "db-prefs.php";
22
23 if (!init_plugins()) return;
24
25 login_sequence();
26
27 header('Content-Type: text/html; charset=utf-8');
28 ?>
29 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
30 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
31 <html>
32 <head>
33 <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
34 <meta name="viewport" content="initial-scale=1,width=device-width" />
35
36 <script type="text/javascript">
37 var __ttrss_version = "<?php echo VERSION ?>"
38 </script>
39
40 <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
41
42 <?php if ($_SESSION["uid"]) {
43 $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
44 if ($theme && theme_valid("$theme")) {
45 echo stylesheet_tag(get_theme_path($theme));
46 } else {
47 echo stylesheet_tag("css/default.css");
48 }
49 }
50 ?>
51
52 <?php print_user_stylesheet() ?>
53
54 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
55 <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
56
57 <script>
58 dojoConfig = {
59 async: true,
60 cacheBust: new Date(),
61 packages: [
62 { name: "lib", location: "../" },
63 { name: "fox", location: "../../js" },
64 ]
65 };
66 </script>
67
68 <?php
69 foreach (array("lib/prototype.js",
70 "lib/scriptaculous/scriptaculous.js?load=effects,controls",
71 "lib/dojo/dojo.js",
72 "lib/dojo/tt-rss-layer.js",
73 "errors.php?mode=js") as $jsfile) {
74
75 echo javascript_tag($jsfile);
76
77 } ?>
78
79 <script type="text/javascript">
80 require({cache:{}});
81 <?php
82 require_once 'lib/jshrink/Minifier.php';
83
84 foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
85 if (method_exists($p, "get_prefs_js")) {
86 echo "try {";
87 echo JShrink\Minifier::minify($p->get_prefs_js());
88 echo "} catch (e) {
89 console.warn('failed to initialize plugin JS: $n');
90 console.warn(e);
91 }";
92 }
93 }
94
95 print get_minified_js(["functions.js", "prefs.js"]);
96
97 init_js_translations();
98 ?>
99 </script>
100
101 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
102
103 <script type="text/javascript">
104 Event.observe(window, 'load', function() {
105 init();
106 });
107 </script>
108
109 </head>
110
111 <body class="claro ttrss_main ttrss_prefs">
112
113 <div id="notify" class="notify"></div>
114 <div id="cmdline" style="display : none"></div>
115
116 <div id="overlay">
117 <div id="overlay_inner">
118 <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
119 <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
120 progress="0" maximum="100">
121 </div>
122 <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
123 </div>
124 </div>
125
126 <div id="header" dojoType="dijit.layout.ContentPane" region="top">
127 <!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
128 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
129 </div>
130
131 <div id="main" dojoType="dijit.layout.BorderContainer">
132
133 <div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
134 <div id="genConfigTab" dojoType="dijit.layout.ContentPane"
135 href="backend.php?op=pref-prefs"
136 title="<?php echo __('Preferences') ?>"></div>
137 <div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
138 href="backend.php?op=pref-feeds"
139 title="<?php echo __('Feeds') ?>"></div>
140 <div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
141 href="backend.php?op=pref-filters"
142 title="<?php echo __('Filters') ?>"></div>
143 <div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
144 href="backend.php?op=pref-labels"
145 title="<?php echo __('Labels') ?>"></div>
146 <?php if ($_SESSION["access_level"] >= 10) { ?>
147 <div id="userConfigTab" dojoType="dijit.layout.ContentPane"
148 href="backend.php?op=pref-users"
149 title="<?php echo __('Users') ?>"></div>
150 <div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
151 href="backend.php?op=pref-system"
152 title="<?php echo __('System') ?>"></div>
153 <?php } ?>
154 <?php
155 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,
156 "hook_prefs_tabs", false);
157 ?>
158 </div>
159
160 <div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
161 <a class="insensitive" target="_blank" href="http://tt-rss.org/">
162 Tiny Tiny RSS</a>
163 <?php if (!defined('HIDE_VERSION')) { ?>
164 v<?php echo VERSION ?>
165 <?php } ?>
166 &copy; 2005-<?php echo date('Y') ?>
167 <a class="insensitive" target="_blank"
168 href="http://fakecake.org/">Andrew Dolgov</a>
169 </div> <!-- footer -->
170
171 </div>
172
173 </body>
174 </html>