summaryrefslogtreecommitdiff
path: root/js/CommonDialogs.js
AgeCommit message (Collapse)Author
2025-10-14Remove 'App.byId()', which was essentially an alias of ↵supahgreg
'document.getElementById()'.
2025-10-12Clean up unnecessary eslint-disable directives (per ESLint).supahgreg
2025-10-12Address rule 'no-redeclare' for 'dojo' and 'dijit' (defined as globals in ↵supahgreg
'eslint.config.js'). Also take care of 2 'no-prototype-builtins' and a 'no-useless-escape'. * https://eslint.org/docs/latest/rules/no-redeclare * https://eslint.org/docs/latest/rules/no-prototype-builtins * https://eslint.org/docs/latest/rules/no-useless-escape
2025-10-12Address ESLint rule 'no-prototype-builtins'.supahgreg
https://eslint.org/docs/latest/rules/no-prototype-builtins
2025-10-12Address ESLint rule 'eqeqeq'.supahgreg
https://eslint.org/docs/latest/rules/eqeqeq
2025-10-06Switch links to the 'tt-rss' GitHub organization.supahgreg
2025-10-05Switch from 'tt-rss-web-static' links to wiki links.supahgreg
2025-10-03Remove references to, and integrations with, 'tt-rss.org'.supahgreg
2025-07-06Separate feed type detection from init, don't subscribe on failures.wn_
Also some FeedParser tweaks.
2025-06-19Clean up displaying subscription error info, log more detailed info to the ↵wn_
event log.
2025-06-17Remove unused subscription return code 6wn_
2025-06-17Escape error content displayed when subscribing fails (as it might contain ↵wn_
HTML).
2025-06-17Show some HTML content as a hover tip when the 'feed URL' returned HTML ↵wn_
without feeds. Also tweak the 'Feeds::_subscribe()' documentation a bit.
2025-03-19allow setting update interval in subcribe to feed dialogAndrew Dolgov
2024-05-16Add option to debug feeds in 'Feeds with update errors' dialog.wn_
Also, prevent opening that dialog from modifying the URL.
2023-12-23Ensure the feed name is easily visible when looking at the feeds with errors ↵wn_
list.
2023-10-26Fix class names in some more places.wn_
Related to the PSR-4 move via 865ecc87963dc3b26e66296616eef2a1cc41ac3f
2023-10-25move to psr-4 autoloaderAndrew Dolgov
2023-04-01Make edit feed dialog's 'remove icon' button a regular button.wn_
Previously it was of type 'submit', and hitting Enter anywhere in the modal triggered its action (rather than the other submit button for saving).
2021-11-14show safe mode warning dialog in prefsAndrew Dolgov
2021-11-10add two helper account access levels:Andrew Dolgov
- read only - can't subscribe to more feeds, feed updates are skipped - disabled - can't login define used access levels as UserHelper constants and refactor code to use them instead of hardcoded numbers
2021-03-16use svg icon for the subscribe dialogAndrew Dolgov
2021-03-06add some more dialog iconsAndrew Dolgov
2021-03-06some small layout fixes, remove a few inline stylesAndrew Dolgov
2021-03-06 * don't try to update custom set feed faviconsAndrew Dolgov
* cleanup update_rss_feed() a bit, use ORM
2021-03-05add a bunch of button iconsAndrew Dolgov
2021-03-03reduce Amount of Caps Used in Multiple DialogsAndrew Dolgov
2021-02-21move published opml JS code to pref helpersAndrew Dolgov
2021-02-21Open the default feed after unsubscribing.wn_
Previously the UI appeared to hang, even though the backend request had already completed successfully.
2021-02-20feed editor: use client dialogAndrew Dolgov
2021-02-20wip: feed editor client-sideAndrew Dolgov
2021-02-19 * switch to xhr.post() almost everywhereAndrew Dolgov
* call App.handlerpcjson() automatically on json request (if possible) * show net/log indicators in prefs
2021-02-19migrate a bunch of xhrPost invocationsAndrew Dolgov
2021-02-19migrate xhrJson invocations to the new helperAndrew Dolgov
2021-02-19fix some eslint-related stuffAndrew Dolgov
2021-02-19properly validate feed editor dialogAndrew Dolgov
2021-02-18initial for RIP prototype/scriptaculousAndrew Dolgov
2021-02-17 * App: rename hidden to hidden_tagAndrew Dolgov
* search: use client dialog * add some form field helpers
2021-02-16CommonDialogs.addLabel: remove long unused parametersAndrew Dolgov
2021-02-15subscribe to feed: use client dialogAndrew Dolgov
2021-02-15shared opml and feed dialogs: remove unique target element id, move ↵Andrew Dolgov
associated methods into dialog
2021-02-14render headline-specific toolbar on the clientAndrew Dolgov
2021-02-13feeds with errors: use client dialogAndrew Dolgov
2021-02-12silence some more eslint warningsAndrew Dolgov
2021-02-12prefs: fix published shared URL dialogAndrew Dolgov
2021-02-12move some dialogs to xhr loadingAndrew Dolgov
2021-02-12more dialog-related cleanupAndrew Dolgov
2021-02-12* OPML import: don't reload everything, just feed treeAndrew Dolgov
* dialogs: use auto-destroying dialog for almost all dialogs instead of destroying them manually * some general dialog-related cleanup
2021-02-12* customizeCSS: client dialogAndrew Dolgov
* remove hardcoded width from most dialogs (move to css) * add helper to easily get dialog from its widget * rework some dialog buttons to use current object instead of calling dialog by name
2021-02-11generated feed: use client dialogAndrew Dolgov