| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
A "Only variables should be passed by reference" error was raised in the
extension->getFileUrl() method.
|
|
- To the hook is associated a method signature (OneToOne or NoneToNone for now) so
it is easier to call hooks correctly
- post_update hook is called during the post update moment.
|
|
|
|
|
|
Yep, same as 8968288...
|
|
- Seperate user and system extensions on extension/index
- extension/configure shows index page with the slider opened
if request is done with ajax
- Reorganize some extension view files
|
|
is_enabled() becomes isEnabled(). Sorry for this coding style mistake :s
|
|
Add possibility to use underscores (_) in entrypoints.
|
|
Test if the install or uninstall has been successfully performed.
If these methods return true, all is ok but if a string is returned,
the string must explain the problem. This problem is stored in log file.
A feedback is given to explain to check log file.
This commit fix a problem in the english translation of
feedback.sub.feed.internal_problem.
|
|
Replace Minz_Session::_param() by Minz_Session::param() in token()
and checkToken() functions.
Fix https://github.com/FreshRSS/FreshRSS/issues/747
|
|
authorizationToUser() returns now an empty string by default
If it returns an empty string, conf is set to null and api don't die
anymore.
Fix https://github.com/FreshRSS/FreshRSS/issues/747
|
|
$conf->user didn't exist anymore since #730. User name had to be retrieved
by another way. It uses sessions now.
Fix https://github.com/FreshRSS/FreshRSS/issues/747
|
|
See https://github.com/FreshRSS/FreshRSS/issues/747
|
|
See https://github.com/FreshRSS/FreshRSS/issues/747
|
|
See https://github.com/FreshRSS/FreshRSS/issues/697
|
|
Number is stored inside the data/last_update.txt file and shown if there
is an update script.
See https://github.com/FreshRSS/FreshRSS/issues/699
|
|
See https://github.com/FreshRSS/FreshRSS/issues/699
|
|
Before, the password was hidden again after 2 seconds. Now, the password
is hidden when the mouse is released
Fix https://github.com/FreshRSS/FreshRSS/issues/734
|
|
Add the log_api.txt in the ignore file.
|
|
Add a lot of comments to explain how work the FRSS front controller and
the order of initializations.
Fix https://github.com/FreshRSS/FreshRSS/issues/745
|
|
|
|
$item and $feed were not existing, replaced by other names.
Introduce by the merging of dev in extension branch.
|
|
|
|
|
|
A path registered after initialization must be loaded.
|
|
When a path was registered before initialization, it was not considered unless
by calling reset() method.
This is fixed now.
|
|
Fix a bug in Minz_Translate too
|
|
- Don't reset the path list (use init() instead)
- init() accept a null lang_name. To use i18n, you'll have to use reset() later.
It is helpful to load the list of available language before choosing one of them.
|
|
|
|
See https://github.com/FreshRSS/FreshRSS/issues/252
|
|
|
|
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
|
|
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
Init i18n must be done before check steps
|
|
|
|
BREAKING FEATURE: please follow instructions from
https://github.com/FreshRSS/FreshRSS/issues/730 to
update your configuration file.
Fix https://github.com/FreshRSS/FreshRSS/issues/730
|
|
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
- Add a support($key) method which return if the given key is supported by
the setter.
- Change handle signature by adding a $data param which must be passed by
reference.
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
We are blocked if a setter has to update several values.
ConfigurationSetter will be updated.
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
A configuration setter must implement only one method: `handle($key, $value)`.
Before setting a value in configuration, the setter will be called with this
method to check its validity.
If a setter has been assigned to a configuration object, it will be called for
each of its data so be careful to always return a value (or null if you want
to delete the key).
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
|
|
The function has been moved into lib_rss.php
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
- FreshRSS_Share is the only object we manipulate
- Add a way to register new share options easily
- Move some i18n keys from index.php to gen.php
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
See https://github.com/FreshRSS/FreshRSS/issues/730
|