<feed xmlns='http://www.w3.org/2005/Atom'>
<title>FreshRSS (Customized)/lib/Minz/View.php, branch 1.3.0-beta</title>
<subtitle>Customized version of FreshRSS, a self-hosted RSS feed aggregator</subtitle>
<id>https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.3.0-beta</id>
<link rel='self' href='https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.3.0-beta'/>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/'/>
<updated>2015-06-06T13:10:37+00:00</updated>
<entry>
<title>Force HTML content-type with charset</title>
<updated>2015-06-06T13:10:37+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2015-06-06T13:10:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=da5033859ba990ef1f5f3dfbc1f5d7a2f4d4d6f8'/>
<id>urn:sha1:da5033859ba990ef1f5f3dfbc1f5d7a2f4d4d6f8</id>
<content type='text'>
Force UTF-8 https://github.com/FreshRSS/FreshRSS/issues/870
</content>
</entry>
<entry>
<title>Merge branch 'dev' into 252-extensions</title>
<updated>2015-01-08T13:18:32+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2015-01-08T13:18:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=73023bc12b81a27045703e1f733faeb2b4e02cec'/>
<id>urn:sha1:73023bc12b81a27045703e1f733faeb2b4e02cec</id>
<content type='text'>
Conflicts:
	app/FreshRSS.php
	app/Models/Configuration.php
	app/views/index/index.phtml
	app/views/index/normal.phtml
	lib/Minz/Configuration.php
	lib/Minz/Translate.php
	lib/lib_rss.php
</content>
</entry>
<entry>
<title>BREAKING FEATURE: Remove general in config</title>
<updated>2015-01-06T17:53:36+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2015-01-06T17:53:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=d3a93ea2905ae50a2365d293f9f3ef3e51bf5f30'/>
<id>urn:sha1:d3a93ea2905ae50a2365d293f9f3ef3e51bf5f30</id>
<content type='text'>
General attribute has been removed from system config.
Now subattributes (e.g. environment, salt, title, etc.) are directly accessible.

YOU HAVE TO FIX YOUR ./data/config.php file!

- Remove the general array
- Values inside this array must be kept
- To see what it must look like, please have a look to ./data/config.default.php
  (but keep your values!!).

See https://github.com/FreshRSS/FreshRSS/issues/730
</content>
</entry>
<entry>
<title>New configuration system (not working yet)</title>
<updated>2015-01-05T15:54:16+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2015-01-05T15:54:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=51a71ec4b9d62528054be8faee1576a8fd6d37f6'/>
<id>urn:sha1:51a71ec4b9d62528054be8faee1576a8fd6d37f6</id>
<content type='text'>
- Use only Minz_Configuration
- register() method to load a new configuration file
- get() to get a configuration
- new exceptions related to configuration
- fix a list configuration calls to have FRSS working

Current problems to resolve:

- How to handle configuration param verifications (i.e. check auth_type
  is a value from none, http_auth, persona or form)
- We must use $conf = Minz_Configuration::get('system'); $general_conf = $conf-&gt;general;
  to access global system configuration which is quite annoying. How to change that?

See https://github.com/FreshRSS/FreshRSS/issues/730
</content>
</entry>
<entry>
<title>Fix View files inclusion.</title>
<updated>2014-12-07T14:30:24+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2014-12-07T14:30:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=198b154064a12cfbeefd494afaa69378e77ffce9'/>
<id>urn:sha1:198b154064a12cfbeefd494afaa69378e77ffce9</id>
<content type='text'>
Now, each part of the view (layout, partials, helpers, views) is included based
on the $base_pathnames attribute.
Extensions can now override all of these files.

See https://github.com/FreshRSS/FreshRSS/issues/252
</content>
</entry>
<entry>
<title>Separate views registration from controllers one.</title>
<updated>2014-12-06T14:20:20+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2014-12-06T14:20:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=a08c382e0651f22a7db06feba225f3d49289763d'/>
<id>urn:sha1:a08c382e0651f22a7db06feba225f3d49289763d</id>
<content type='text'>
- Add an Extension-&gt;registerViews() method.
- Views are first searched in extension paths, then in APP_PATH.
- It gives a way to override easily existing controllers / views.
- Change include into an include_once in Dispatcher for new controllers.

See https://github.com/FreshRSS/FreshRSS/issues/252
</content>
</entry>
<entry>
<title>Extensions can define new views</title>
<updated>2014-12-05T14:27:56+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2014-12-05T14:27:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=c6a682deb94111c1e14cf10e565da3f4214f02dc'/>
<id>urn:sha1:c6a682deb94111c1e14cf10e565da3f4214f02dc</id>
<content type='text'>
- View base pathname is set to the extension directory
- An extension can now override an existing controller / view

See https://github.com/FreshRSS/FreshRSS/issues/252
</content>
</entry>
<entry>
<title>Replace Minz_Log::record by corresponding methods</title>
<updated>2014-10-05T17:35:29+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2014-10-05T17:35:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=d8f4681382986524b91acb0500847e9f24badf20'/>
<id>urn:sha1:d8f4681382986524b91acb0500847e9f24badf20</id>
<content type='text'>
Please not use Minz_Log::record anymore!

See https://github.com/marienfressinaud/FreshRSS/issues/655
</content>
</entry>
<entry>
<title>Add basic system of update</title>
<updated>2014-08-09T21:29:13+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2014-08-09T21:29:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=e7dba0ce7cfaf5e84687593a8b0d58d89fbff302'/>
<id>urn:sha1:e7dba0ce7cfaf5e84687593a8b0d58d89fbff302</id>
<content type='text'>
- Check on update.freshrss.org for new updates
- Download script
- Apply script
- Need translations and verifications

NOTE: current script on server indicates version 0.7.3 is an update
of 0.8-dev ==&gt; IT'S ONLY FOR MY TESTS!

Script just does a backup of ./data actually...

See https://github.com/marienfressinaud/FreshRSS/issues/411
</content>
</entry>
<entry>
<title>Export is fully implemented</title>
<updated>2014-03-27T19:36:51+00:00</updated>
<author>
<name>Marien Fressinaud</name>
<email>dev@marienfressinaud.fr</email>
</author>
<published>2014-03-27T19:36:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=9d87f2f0aa8306c3e07a79d1a100b4d41ea8bc72'/>
<id>urn:sha1:9d87f2f0aa8306c3e07a79d1a100b4d41ea8bc72</id>
<content type='text'>
- Export list of feeds (OPML)
- Export list of favourites (JSON)
- Export list of articles per feed (JSON)
</content>
</entry>
</feed>
