]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.php
pngcrush.sh
[tt-rss.git] / prefs.php
index b20678abebdc577501403a01af7ef5553861e991..ef08ab86bd1ed684d3e0fece102f91499ec9be09 100644 (file)
--- a/prefs.php
+++ b/prefs.php
 <html>
 <head>
        <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
+    <meta name="viewport" content="initial-scale=1,width=device-width" />
 
        <script type="text/javascript">
                var __ttrss_version = "<?php echo VERSION ?>"
        </script>
 
        <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
-       <?php echo stylesheet_tag("css/layout.css"); ?>
 
        <?php if ($_SESSION["uid"]) {
-               $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
+               $theme = get_pref("USER_CSS_THEME", false, false);
                if ($theme && theme_valid("$theme")) {
                        echo stylesheet_tag(get_theme_path($theme));
                } else {
-                       echo stylesheet_tag("themes/default.css");
+                       echo stylesheet_tag("css/default.css");
                }
        }
        ?>
        <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
        <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
 
+       <script>
+               dojoConfig = {
+                       async: true,
+                       cacheBust: new Date(),
+                       packages: [
+                               { name: "lib", location: "../" },
+                               { name: "fox", location: "../../js" },
+                       ]
+               };
+       </script>
+
        <?php
        foreach (array("lib/prototype.js",
                                "lib/scriptaculous/scriptaculous.js?load=effects,controls",
        } ?>
 
        <script type="text/javascript">
+               'use strict';
                require({cache:{}});
        <?php
-               require_once 'lib/jshrink/Minifier.php';
-
+               print get_minified_js(["functions.js", "prefs.js"]);
+       ?>
+       </script>
+       <script type="text/javascript">
+       <?php
                foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
                        if (method_exists($p, "get_prefs_js")) {
+                               echo "try {";
                                echo JShrink\Minifier::minify($p->get_prefs_js());
+                               echo "} catch (e) {
+                                       console.warn('failed to initialize plugin JS: $n');
+                                       console.warn(e);
+                               }";
                        }
                }
 
-               print get_minified_js(array("../lib/CheckBoxTree","functions", "deprecated", "prefs", "PrefFeedTree", "PrefFilterTree", "PrefLabelTree"));
-
                init_js_translations();
        ?>
        </script>
 
 </head>
 
-<body id="ttrssPrefs" class="claro">
+<body class="claro ttrss_main ttrss_prefs">
 
 <div id="notify" class="notify"></div>
 <div id="cmdline" style="display : none"></div>
        <?php if (!defined('HIDE_VERSION')) { ?>
                 v<?php echo VERSION ?>
        <?php } ?>
-       &copy; 2005-<?php echo date('Y') ?>
-       <a class="insensitive" target="_blank"
-       href="http://fakecake.org/">Andrew Dolgov</a>
 </div> <!-- footer -->
 
 </div>