Commit Graph

718 Commits

Author SHA1 Message Date
Mathias Kresin 30a2852bad remove unused namespace imports and functions 2015-04-23 23:37:33 +02:00
Mathias Kresin 7ea37a1790 remove unnecessary javascript actions
They do exactly the same as the non javascript version.
2015-04-23 23:37:33 +02:00
Mathias Kresin 9f21a2fe91 rename functions to match their purpose
Item\get_all() -> Item\get_all_by_status()
Item\get_everything() -> Item\get_all()
Item\get_everything_since() -> Item\get_all_since()
2015-04-23 23:37:33 +02:00
Mathias Kresin f002723654 move write_debug to the right position
write_debug isn't executed if an exception is catched.
2015-04-23 23:37:33 +02:00
Mathias Kresin 67d97bb096 wrap a span around the checkbox label and remove bogus nbsp 2015-04-23 23:37:33 +02:00
Frederic Guillot ca8061a415 Add contributor 2015-04-21 18:22:47 -04:00
Frederic Guillot a39f18f477 Merge pull-request #361 2015-04-21 18:20:51 -04:00
Frederic Guillot f7680efa18 Add software version to the api 2015-04-18 11:42:10 -04:00
小秦 91cad0f435 fix Helper\summary bug
修正当 `$value` 中没有空格时(中文订阅的内容), 在进行截取时会出现返回 ` [...]` 的情况.
2015-04-14 21:31:43 +08:00
Mathias Kresin 46d69b15f6 minor feed edit dialog improvments
- redirect to feed edit dialog if the changed feed settings couldn't be saved
- add default values and drop isset (similar to the feed add dialog)
2015-04-11 23:26:28 +02:00
Frederic Guillot 07a930cac3 Update French translation 2015-04-11 10:42:23 -04:00
Mathias Kresin 1afb73b82d Expose all picoFeed errors to the Frontend when adding a subscription 2015-04-11 16:01:15 +02:00
Frederic Guillot 84ac8fc316 Forget to rename a function 2015-04-11 09:52:28 -04:00
Frederic Guillot b1ded7ff7c Update PicoFeed 2015-04-11 09:40:09 -04:00
Frederic Guillot dd47b7ae48 Improve doc and remove useless config parameters 2015-04-11 09:39:22 -04:00
Frederic Guillot fb800d739d Rename helper function 2015-04-10 20:58:59 -04:00
Frederic Guillot fa1ddb486a Normalize helper functions 2015-04-10 20:57:44 -04:00
Frederic Guillot 892fb517ae Display an error message if the feed already exists + sync locales 2015-04-10 20:48:09 -04:00
Frederic Guillot 578f9cbf14 Add custom rules directory support 2015-04-10 20:34:48 -04:00
Mathias Kresin f346af2f38 keep selected options on feed adding error 2015-04-10 23:09:19 +02:00
Mathias Kresin ee98a62519 mark items on page 2+ read as well, update tests
Update integration tests, to ensure that all articles are marked read,
instead of only visible.
2015-04-07 22:46:50 +02:00
Frederic Guillot 13aaf5fbed Remove useless scripts 2015-04-06 15:14:44 -04:00
Frederic Guillot 8f67480dc9 Update README 2015-04-06 13:51:02 -04:00
Frederic Guillot 8c47ae3750 Fix bug remember me with multiple dbs disabled 2015-03-30 20:29:48 -04:00
Frederic Guillot 401a60c7a7 Improve remember me + update vendor 2015-03-30 20:13:07 -04:00
Frederic Guillot c795d46669 Update picofeed 2015-03-25 19:59:41 -04:00
Frederic Guillot c73e3ff9ba Merge pull-request #351 2015-03-25 19:41:23 -04:00
Bruce Doan cc859bab2d Implement Favicons request 2015-03-23 23:44:52 +07:00
Bruce Doan 5edb1bd64a Do not send removed/pruned item(s) to client 2015-03-23 23:42:31 +07:00
Frederic Guillot 60aa689e84 Merge pull-request #347 2015-03-22 14:18:51 -04:00
Frederic Guillot c81b728d69 Merge Arabic translation #348 and improve user interface for RTL languages 2015-03-20 18:53:15 -04:00
juanjobe a276bf9ec2 Actualizar la traducción al español 2015-03-20 16:17:17 +01:00
juanjobe 135808ecc0 Actualizar la traducción al español 2015-03-20 16:08:52 +01:00
juanjobe 2ec90f3db9 Actualizar la traducción al español 2015-03-20 15:59:57 +01:00
Frederic Guillot 1c59f939de Update picofeed 2015-03-19 18:26:02 -04:00
Frederic Guillot 7ec0c11190 Update french translation 2015-03-19 18:23:31 -04:00
Frederic Guillot dd82d6134e Add contributor 2015-03-09 18:46:43 -04:00
Frederic Guillot fba6995e81 Merge pull-request #344 2015-03-09 18:30:20 -04:00
Frederic Guillot 70796330bb Merge pull-request #340 2015-03-09 18:26:37 -04:00
Mathias Kresin 3a65e5ee64 do mark-feed-as-read in javascript without reload
follow-up to 4809f736dc. Update
integration tests, to ensure that all articles are marked read, instead
of only visible.
2015-03-08 13:19:29 +01:00
Mathias Kresin 065805e485 disable shortcut tests for firefox
The key property isn't properly set with selenium.
2015-03-08 13:19:29 +01:00
Mathias Kresin 0c3d8c787f use keyboardevent.key if implemented
Beside other stuff the main reason for this change is the circumstance
that Firefox triggers the "Toggle RTL mode" shortcut if the user press
F11 to switch Firefox into the fullscreen mode.

Each browser sends keycodes that are used by different other keys on
the keyboard for the function keys. Firefox is the only browser which
sends the onkeypress event for the function keys.

The used keyboard event properties event.keyCode and event.which are
already marked as deprecated and has been removed from the Web standards.

The "DOM Level 3 Events" standard specifies event.key as their successor.

Right now event.key is only available for Firefox 29+ and Internet
Explorer 9+. Webkit based browser have support for the former specified
event.keyIdentifier.

The implementation of event.keyIdentifier isn't the same across
different webkit based browsers and buggy:

- the value for the z key is F11 (Chrome - Windows, Linux)
- the value for the F11 key is F11 as well on (Chrome - Windows, Linux)
- the value for latin keys is always the value of the capital letter (Chrome)
- the value for cyrillic keys depends on the shift modifier (Chrome)
- the value for the keypress event is always an empty string (Safari - Mac OS)
- the value for the keydown event matches the keyboard layout dependent character (Safari - Mac OS)
- the value for the keydown event does NOT matches the keyboard layout dependent character (Chrome - Windows, Linux)

Instead of workaround the problems, the event.which is used for every
browser that doesn't support event.key.
2015-03-07 18:23:36 +01:00
Miloš Jovanović 05d2ae316d fixed typo with two question marks 2015-03-03 14:12:46 -06:00
Miloš Jovanović c5109aea17 fixed typo with two question marks 2015-03-03 14:12:04 -06:00
Miloš Jovanović ac11981d7f branding looks strange in Latin using Serbian ortographical rules, switched it to original 2015-03-03 13:56:52 -06:00
Miloš Jovanović e55492c265 Merge branch 'SerbianTranslation' of https://github.com/mrjovanovic/miniflux into SerbianTranslation 2015-03-03 01:30:09 -06:00
Miloš Jovanović dc7a42aa23 Updated translations.php and added latin script version 2015-03-03 01:29:17 -06:00
Ing. Jan Kaláb 1e7201add4 new file: locales/sr_RS/translations.php
new file:   locales/sr_RS@latin/translations.php
	modified:   models/config.php

Updated Serbian translation in cyrillic and latin script
2015-03-03 01:28:05 -06:00
Miloš Jovanović 42d0d9376d Updated translations.php and added latin script version 2015-03-03 01:25:48 -06:00
Miloš Jovanović 20165fc7e3 Updated translations.php 2015-03-03 01:17:40 -06:00