|
|
@ -1,3 +1,4 @@
|
|
|
|
|
|
|
|
<?php startup_gettext(); ?>
|
|
|
|
<html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<head>
|
|
|
|
<title>Tiny Tiny RSS : Login</title>
|
|
|
|
<title>Tiny Tiny RSS : Login</title>
|
|
|
@ -6,12 +7,12 @@
|
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<script type="text/javascript" src="lib/dojo/dojo.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/dojo/dojo.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/dijit/dijit.js"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/prototype.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/prototype.js"></script>
|
|
|
|
<script type="text/javascript" src="js/functions.js"></script>
|
|
|
|
<script type="text/javascript" src="js/functions.js"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8" src="errors.php?mode=js"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8" src="errors.php?mode=js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
require({cache:{}});
|
|
|
|
Event.observe(window, 'load', function() {
|
|
|
|
Event.observe(window, 'load', function() {
|
|
|
|
init();
|
|
|
|
init();
|
|
|
|
});
|
|
|
|
});
|
|
|
@ -104,20 +105,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
<script type="text/javascript">
|
|
|
|
function init() {
|
|
|
|
function init() {
|
|
|
|
dojo.require("dijit.form.Button");
|
|
|
|
|
|
|
|
dojo.require("dijit.form.CheckBox");
|
|
|
|
|
|
|
|
dojo.require("dijit.form.Form");
|
|
|
|
|
|
|
|
dojo.require("dijit.form.Select");
|
|
|
|
|
|
|
|
dojo.require("dijit.form.TextBox");
|
|
|
|
|
|
|
|
dojo.require("dijit.form.ValidationTextBox");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dojo.parser.parse();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
require(['dojo/parser','dijit/form/Button','dijit/form/CheckBox','dijit/form/Form',
|
|
|
|
|
|
|
|
'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser){
|
|
|
|
|
|
|
|
parser.parse();
|
|
|
|
|
|
|
|
//show tooltip node only after this widget is instaniated.
|
|
|
|
|
|
|
|
dojo.query('div[dojoType="dijit.Tooltip"]').style({
|
|
|
|
|
|
|
|
display:''
|
|
|
|
|
|
|
|
});
|
|
|
|
fetchProfiles();
|
|
|
|
fetchProfiles();
|
|
|
|
|
|
|
|
|
|
|
|
dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
|
|
|
|
dijit.byId("bw_limit").attr("checked", getCookie("ttrss_bwlimit") == 'true');
|
|
|
|
|
|
|
|
|
|
|
|
document.forms.loginForm.login.focus();
|
|
|
|
document.forms.loginForm.login.focus();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function fetchProfiles() {
|
|
|
|
function fetchProfiles() {
|
|
|
@ -217,7 +217,7 @@ function bwLimitChange(elem) {
|
|
|
|
<label id="bw_limit_label" style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
|
|
|
|
<label id="bw_limit_label" style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below">
|
|
|
|
<div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
|
|
|
|
<?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
|
|
|
|
<?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|