<feed xmlns='http://www.w3.org/2005/Atom'>
<title>FreshRSS (Customized)/app/views/feed, branch 1.16.2</title>
<subtitle>Customized version of FreshRSS, a self-hosted RSS feed aggregator</subtitle>
<id>https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.16.2</id>
<link rel='self' href='https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.16.2'/>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/'/>
<updated>2020-04-20T21:27:17+00:00</updated>
<entry>
<title>Enhance the way help elements are displayed (#2911)</title>
<updated>2020-04-20T21:27:17+00:00</updated>
<author>
<name>Julien-Pierre Avérous</name>
<email>github@sourcemac.com</email>
</author>
<published>2020-04-20T21:27:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=acca89505be6ec062ba1acd9cc7df49aac1711fe'/>
<id>urn:sha1:acca89505be6ec062ba1acd9cc7df49aac1711fe</id>
<content type='text'>
* - Always display help under the targeted element.
- Use same help place for HTTP authentication in 'add' feed view than in 'update' feed view.
- Move help under input field in register view, as all other places (homogeneity).

* - Don't use "!important" as suggested by @Alkarex.</content>
</entry>
<entry>
<title>Enhance content path feature (#2778)</title>
<updated>2020-02-13T17:22:35+00:00</updated>
<author>
<name>Julien-Pierre Avérous</name>
<email>github@sourcemac.com</email>
</author>
<published>2020-02-13T17:22:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=d30ac40772ec1b4706922afd8acab8448af39a9e'/>
<id>urn:sha1:d30ac40772ec1b4706922afd8acab8448af39a9e</id>
<content type='text'>
- Add a maintenance section to be able to clear cache and force reload a feed.
- Add an icon next to path field to show a pop-up with the result of the content path.

Co-authored-by: Frans de Jonge &lt;fransdejonge@gmail.com&gt;
Co-authored-by: Alexandre Alapetite &lt;alexandre@alapetite.fr&gt;
Co-authored-by: Marien Fressinaud &lt;dev@marienfressinaud.fr&gt;
</content>
</entry>
<entry>
<title>Replace some http links with https links (#2662)</title>
<updated>2019-11-13T19:52:52+00:00</updated>
<author>
<name>rezad</name>
<email>rezad1393@users.noreply.github.com</email>
</author>
<published>2019-11-13T19:52:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=8bdf7b09f208346481cba5e08edc55dfab8c8d63'/>
<id>urn:sha1:8bdf7b09f208346481cba5e08edc55dfab8c8d63</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Take advantage of PHP 5.4+ short echo (#2585)</title>
<updated>2019-10-23T09:18:20+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2019-10-23T09:18:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=7a5236de3f13f08b8c51eb183c0dcf1c8c85beca'/>
<id>urn:sha1:7a5236de3f13f08b8c51eb183c0dcf1c8c85beca</id>
<content type='text'>
* Take advantage of PHP 5.4+ short echo

https://php.net/migration54.new-features thanks to
https://github.com/FreshRSS/FreshRSS/pull/2495

Use `&lt;?=  ?&gt;` instead of `&lt;?php echo; ?&gt;`
10kB of code saved :-)

Done with regular expression:
```
&lt;\?php echo (.+?);? *\?&gt;
&lt;?= \1 ?&gt;
```

* Try Travis fix

https://github.com/squizlabs/PHP_CodeSniffer/issues/2045#issuecomment-395238272
</content>
</entry>
<entry>
<title>Change category configuration (#2410)</title>
<updated>2019-06-21T06:42:06+00:00</updated>
<author>
<name>Alexis Degrugillier</name>
<email>aledeg@users.noreply.github.com</email>
</author>
<published>2019-06-21T06:42:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=2decc82c3eaeaf205295667e836087f309156822'/>
<id>urn:sha1:2decc82c3eaeaf205295667e836087f309156822</id>
<content type='text'>
* Change category configuration

Before, we had a drop-down list to interract on categories. It was not
working the same way as feeds.
Now, categories and feeds behave in a similar manner. At the moment,
there is no change in features but it will allow to expand them.

See #2369

* Minor whitespace
</content>
</entry>
<entry>
<title>Use HTML autocomplete new-password (#1877)</title>
<updated>2018-05-01T19:50:45+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-05-01T19:50:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=0513ba8d9f431cac17152f9366f8433906a7846f'/>
<id>urn:sha1:0513ba8d9f431cac17152f9366f8433906a7846f</id>
<content type='text'>
* Use HTML autocomplete new-password

https://github.com/FreshRSS/FreshRSS/issues/1841#issuecomment-376551901
autocomplete="new-password" for user management pages

https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion

* autocomplete username

https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete-username
</content>
</entry>
<entry>
<title>Prevent a target _blank attacks with window.opener</title>
<updated>2016-09-07T12:35:51+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre.alapetite@alexandra.dk</email>
</author>
<published>2016-09-07T12:35:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=8a776f146182bc6870702cfeb87041e3af66b24b'/>
<id>urn:sha1:8a776f146182bc6870702cfeb87041e3af66b24b</id>
<content type='text'>
https://mathiasbynens.github.io/rel-noopener/
noopener is implied by noreferrer
https://html.spec.whatwg.org/multipage/semantics.html#link-type-noreferrer
The API for window.open() does not seem stable yet
https://bugzilla.mozilla.org/show_bug.cgi?id=1267339
</content>
</entry>
<entry>
<title>CSRF token, update HTTP Referrer policy to same-origin</title>
<updated>2016-08-13T15:49:31+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2016-08-13T15:49:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=e6fd34bdda5d067a9e74714aaae10c89ed998a46'/>
<id>urn:sha1:e6fd34bdda5d067a9e74714aaae10c89ed998a46</id>
<content type='text'>
https://www.w3.org/TR/referrer-policy/#referrer-policy-no-referrer
https://github.com/FreshRSS/FreshRSS/issues/570
https://github.com/FreshRSS/FreshRSS/issues/955
https://github.com/FreshRSS/FreshRSS/issues/1198
https://github.com/FreshRSS/FreshRSS/issues/565
https://github.com/FreshRSS/FreshRSS/issues/554
</content>
</entry>
<entry>
<title>CSP for statistics and forms</title>
<updated>2016-02-21T18:15:23+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2016-02-21T18:15:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=cb913a3a76daf357ad36ca39c26b4aaf800211d2'/>
<id>urn:sha1:cb913a3a76daf357ad36ca39c26b4aaf800211d2</id>
<content type='text'>
https://github.com/FreshRSS/FreshRSS/issues/1075
</content>
</entry>
<entry>
<title>Force autocomplete off</title>
<updated>2015-06-14T14:22:33+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2015-06-14T14:22:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=8a131b056ee3566c2b54466f650c26c143b7c369'/>
<id>urn:sha1:8a131b056ee3566c2b54466f650c26c143b7c369</id>
<content type='text'>
https://github.com/FreshRSS/FreshRSS/issues/880
Put a space in the user field instead of empty to avoid autocomplete.
Use feed ID in the username/password field name.
</content>
</entry>
</feed>
