feed debugger: dojoify controls
This commit is contained in:
parent
420e71280a
commit
55d2e5871a
|
@ -830,8 +830,23 @@ class Feeds extends Handler_Protected {
|
||||||
<head>
|
<head>
|
||||||
<?php echo stylesheet_tag("css/default.css") ?>
|
<?php echo stylesheet_tag("css/default.css") ?>
|
||||||
<title>Feed Debugger</title>
|
<title>Feed Debugger</title>
|
||||||
|
<?php
|
||||||
|
echo stylesheet_tag("css/default.css");
|
||||||
|
echo javascript_tag("lib/prototype.js");
|
||||||
|
echo javascript_tag("lib/dojo/dojo.js");
|
||||||
|
echo javascript_tag("lib/dojo/tt-rss-layer.js");
|
||||||
|
?>
|
||||||
</head>
|
</head>
|
||||||
<body class="ttrss_utility feed_debugger">
|
<body class="flat ttrss_utility feed_debugger">
|
||||||
|
<script type="text/javascript">
|
||||||
|
require(['dojo/parser', "dojo/ready", 'dijit/form/Button','dijit/form/CheckBox', 'dijit/form/Form',
|
||||||
|
'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser, ready){
|
||||||
|
ready(function() {
|
||||||
|
parser.parse();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Feed Debugger: <?php echo "$feed_id: " . $this->getFeedTitle($feed_id) ?></h1>
|
<h1>Feed Debugger: <?php echo "$feed_id: " . $this->getFeedTitle($feed_id) ?></h1>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
@ -842,10 +857,16 @@ class Feeds extends Handler_Protected {
|
||||||
<input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
|
<input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
|
||||||
<input type="hidden" name="action" value="do_update">
|
<input type="hidden" name="action" value="do_update">
|
||||||
<input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
|
<input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
|
||||||
<input type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch<br/>
|
|
||||||
<input type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash<br/>
|
|
||||||
|
|
||||||
<p/><button type="submit">Continue</button>
|
<fieldset>
|
||||||
|
<label class="checkbox"><input dojoType="dijit.form.CheckBox" type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch</label>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset>
|
||||||
|
<label class="checkbox"><input dojoType="dijit.form.CheckBox" type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash</label>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<button type="submit" dojoType="dijit.form.Button" class="alt-primary">Continue</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -1498,6 +1498,10 @@ body.ttrss_utility .content fieldset > label:first-of-type {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
body.ttrss_utility .content fieldset > label.checkbox {
|
||||||
|
display: inline;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
body.ttrss_utility a {
|
body.ttrss_utility a {
|
||||||
color: #257aa7;
|
color: #257aa7;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -52,6 +52,12 @@ body.ttrss_utility {
|
||||||
text-align : right;
|
text-align : right;
|
||||||
font-weight : bold;
|
font-weight : bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fieldset > label.checkbox {
|
||||||
|
display : inline;
|
||||||
|
font-weight : normal;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
|
@ -1499,6 +1499,10 @@ body.ttrss_utility .content fieldset > label:first-of-type {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
body.ttrss_utility .content fieldset > label.checkbox {
|
||||||
|
display: inline;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
body.ttrss_utility a {
|
body.ttrss_utility a {
|
||||||
color: #b87d2c;
|
color: #b87d2c;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1499,6 +1499,10 @@ body.ttrss_utility .content fieldset > label:first-of-type {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
body.ttrss_utility .content fieldset > label.checkbox {
|
||||||
|
display: inline;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
body.ttrss_utility a {
|
body.ttrss_utility a {
|
||||||
color: #257aa7;
|
color: #257aa7;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue