mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
code cleanup; initial button usage
This commit is contained in:
@@ -17,9 +17,8 @@
|
||||
print "<p>".__("Help topic not found.")."</p>";
|
||||
}
|
||||
print "<div align='center'>
|
||||
<input type='submit' class='button'
|
||||
onclick=\"javascript:window.close()\"
|
||||
value=\"".__('Close this window')."\"></div>";
|
||||
<button onclick=\"javascript:window.close()\">".
|
||||
__('Close this window')."</button></div>";
|
||||
|
||||
if (!$_REQUEST["noheaders"]) {
|
||||
print "</body></html>";
|
||||
|
||||
@@ -72,11 +72,9 @@
|
||||
|
||||
print __("URL:") . " ";
|
||||
|
||||
print "<input size=\"40\" onblur=\"javascript:enableHotkeys()\"
|
||||
print "<input size=\"40\"
|
||||
onkeypress=\"return filterCR(event, subscribeToFeed)\"
|
||||
onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
|
||||
onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
|
||||
onfocus=\"javascript:disableHotkeys()\" name=\"feed_url\"></td></tr>";
|
||||
name=\"feed_url\"></td></tr>";
|
||||
|
||||
print "<br/>";
|
||||
|
||||
@@ -87,31 +85,15 @@
|
||||
|
||||
print "</div>";
|
||||
|
||||
|
||||
/* print "<tr><td colspan='2'><div class='insensitive'>";
|
||||
|
||||
print __("Some feeds require authentication. If you subscribe to such
|
||||
feed, you will have to enter your login and password in Feed Editor");
|
||||
|
||||
print "</div></td></tr>"; */
|
||||
|
||||
/* print "<div id='fadd_login_prompt'><br/>
|
||||
<a href='javascript:appearBlockElement(\"fadd_login_container\",
|
||||
\"fadd_login_prompt\")'>".__('Click here if this feed requires authentication.')."</a></div>"; */
|
||||
|
||||
print "<div id='fadd_login_container' style='display:none'>
|
||||
|
||||
<div class=\"dlgSec\">".__("Authentication")."</div>
|
||||
<div class=\"dlgSecCont\">".
|
||||
|
||||
__('Login:') . " <input name='auth_login' size=\"20\"
|
||||
onfocus=\"javascript:disableHotkeys()\"
|
||||
onfocus=\"javascript:disableHotkeys()\"
|
||||
onkeypress=\"return filterCR(event, subscribeToFeed)\"> ".
|
||||
__('Password:') . "<input type='password'
|
||||
name='auth_pass' size=\"20\"
|
||||
onfocus=\"javascript:disableHotkeys()\"
|
||||
onfocus=\"javascript:disableHotkeys()\"
|
||||
onkeypress=\"return filterCR(event, subscribeToFeed)\">
|
||||
</div></div>";
|
||||
|
||||
@@ -125,15 +107,10 @@
|
||||
print "</form>";
|
||||
|
||||
print "<div class=\"dlgButtons\">
|
||||
<input class=\"button\"
|
||||
id=\"fadd_submit_btn\" disabled=\"true\"
|
||||
type=\"submit\" onclick=\"return subscribeToFeed()\" value=\"".__('Subscribe')."\">
|
||||
<input class=\"button\"
|
||||
type=\"submit\" onclick=\"return browseFeeds()\" value=\"".__('More feeds')."\">
|
||||
|
||||
<input class=\"button\"
|
||||
type=\"submit\" onclick=\"return closeInfoBox()\"
|
||||
value=\"".__('Cancel')."\"></div>";
|
||||
<button class=\"button\" id=\"fadd_submit_btn\"
|
||||
onclick=\"return subscribeToFeed()\">".__('Subscribe')."</button>
|
||||
<button onclick=\"return browseFeeds()\">".__('More feeds')."</button>
|
||||
<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button></div>";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -121,15 +121,12 @@
|
||||
$owner_uid = $_SESSION["uid"];
|
||||
|
||||
print "<ul class='browseFeedList' id='browseFeedList'>";
|
||||
$subscribe_btn_disabled = print_feed_browser($link, $search, 25) == 0 ? "disabled" : "";
|
||||
print_feed_browser($link, $search, 25);
|
||||
print "</ul>";
|
||||
|
||||
print "<div align='center'>
|
||||
<input type=\"submit\" class=\"button\" id=\"feed_browser_subscribe\"
|
||||
$subscribe_btn_disabled
|
||||
onclick=\"feedBrowserSubscribe()\" value=\"".__('Subscribe')."\">
|
||||
<input type='submit' class='button'
|
||||
onclick=\"closeInfoBox()\" value=\"".__('Cancel')."\"></div>";
|
||||
<button onclick=\"feedBrowserSubscribe()\">".__('Subscribe')."</button>
|
||||
<button onclick=\"closeInfoBox()\" >".__('Cancel')."</button></div>";
|
||||
|
||||
print "</div>";
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user