Browse Source

Remove maxlength limit from RSS feeds in WebUI

URL's and feed names including paths could be longer then 100 characters, so the limit was removed.
adaptive-webui-19844
Sepro 4 years ago
parent
commit
65636e644f
  1. 2
      src/webui/www/private/newfeed.html
  2. 2
      src/webui/www/private/newfolder.html
  3. 2
      src/webui/www/private/rename_feed.html

2
src/webui/www/private/newfeed.html

@ -68,7 +68,7 @@ @@ -68,7 +68,7 @@
<body>
<div style="padding: 10px 10px 0px 10px;">
<p style="font-weight: bold;">QBT_TR(Feed URL:)QBT_TR[CONTEXT=RSSWidget]</p>
<input type="text" id="feedURL" value="" maxlength="100" style="width: 320px;" />
<input type="text" id="feedURL" value="" style="width: 320px;" />
<div style="text-align: center; padding-top: 10px;">
<input type="button" value="QBT_TR(OK)QBT_TR[CONTEXT=HttpServer]" id="submitButton" />
</div>

2
src/webui/www/private/newfolder.html

@ -67,7 +67,7 @@ @@ -67,7 +67,7 @@
<body>
<div style="padding: 10px 10px 0px 10px;">
<p style="font-weight: bold;">QBT_TR(Folder name:)QBT_TR[CONTEXT=RSSWidget]</p>
<input type="text" id="folderName" value="" maxlength="100" style="width: 320px;" />
<input type="text" id="folderName" value="" style="width: 320px;" />
<div style="text-align: center; padding-top: 10px;">
<input type="button" value="QBT_TR(OK)QBT_TR[CONTEXT=HttpServer]" id="submitButton" />
</div>

2
src/webui/www/private/rename_feed.html

@ -78,7 +78,7 @@ @@ -78,7 +78,7 @@
<body>
<div style="padding: 10px 10px 0px 10px;">
<p style="font-weight: bold;">QBT_TR(New feed name:)QBT_TR[CONTEXT=RSSWidget]</p>
<input type="text" id="rename" value="" maxlength="100" style="width: 320px;" />
<input type="text" id="rename" value="" style="width: 320px;" />
<div style="text-align: center; padding-top: 10px;">
<input type="button" value="QBT_TR(Save)QBT_TR[CONTEXT=HttpServer]" id="renameButton" />
</div>

Loading…
Cancel
Save