diff options
Diffstat (limited to 'docs/en')
-rw-r--r-- | docs/en/index.rst | 1 | ||||
-rw-r--r-- | docs/en/user/filters.rst | 49 | ||||
-rw-r--r-- | docs/en/user/installation.rst | 4 |
3 files changed, 51 insertions, 3 deletions
diff --git a/docs/en/index.rst b/docs/en/index.rst index 54d79e0c..3367c8a9 100644 --- a/docs/en/index.rst +++ b/docs/en/index.rst | |||
@@ -44,3 +44,4 @@ The main documentation for this application is organized into a couple sections: | |||
44 | developer/docker | 44 | developer/docker |
45 | developer/translate | 45 | developer/translate |
46 | developer/maintenance | 46 | developer/maintenance |
47 | developer/releasing | ||
diff --git a/docs/en/user/filters.rst b/docs/en/user/filters.rst index 65fdedcb..ad06819b 100644 --- a/docs/en/user/filters.rst +++ b/docs/en/user/filters.rst | |||
@@ -1,2 +1,49 @@ | |||
1 | Filters | 1 | Filters |
2 | ======= \ No newline at end of file | 2 | ======= |
3 | |||
4 | To retrieve articles easier, you can use filters. | ||
5 | Click on the third icon in the top bar. | ||
6 | |||
7 | .. image:: ../../img/user/topbar.png | ||
8 | :alt: Top bar | ||
9 | :align: center | ||
10 | |||
11 | All these filters can be combined. | ||
12 | |||
13 | .. image:: ../../img/user/filters.png | ||
14 | :alt: Combine all filters | ||
15 | :align: center | ||
16 | |||
17 | Status | ||
18 | ------ | ||
19 | |||
20 | Use these checkboxes to find archived or starred articles. | ||
21 | |||
22 | Preview picture | ||
23 | --------------- | ||
24 | |||
25 | Check this filter if you want to retrieve articles with a preview picture. | ||
26 | |||
27 | Language | ||
28 | -------- | ||
29 | |||
30 | wallabag (via graby) can detect article language. It's easy to you to retrieve articles | ||
31 | written in a specific language. | ||
32 | |||
33 | Reading time | ||
34 | ------------ | ||
35 | |||
36 | wallabag estimates how many time you need to read an article. With this filter, | ||
37 | you can for example find the articles with a reading time between 2 and 5 minutes. | ||
38 | |||
39 | Domain name | ||
40 | ----------- | ||
41 | |||
42 | Thanks to this filter, you can retrieve the articles from the same domain name. | ||
43 | For example, in this field, type ``bbc.co.uk`` to retrieve the articles of this website. | ||
44 | |||
45 | Creation date | ||
46 | ------------- | ||
47 | |||
48 | When you save an article, wallabag stored the current date. So handful to retrieve articles written | ||
49 | between 1st and 31th January for example. | ||
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst index 760fd4d2..385d6595 100644 --- a/docs/en/user/installation.rst +++ b/docs/en/user/installation.rst | |||
@@ -11,7 +11,7 @@ You'll need the following extensions for wallabag to work. Some of these may alr | |||
11 | - php-session | 11 | - php-session |
12 | - php-ctype | 12 | - php-ctype |
13 | - php-dom | 13 | - php-dom |
14 | - pĥp-hash | 14 | - php-hash |
15 | - php-simplexml | 15 | - php-simplexml |
16 | - php-json | 16 | - php-json |
17 | - php-gd | 17 | - php-gd |
@@ -48,7 +48,7 @@ To install wallabag itself, you must run these two commands: | |||
48 | 48 | ||
49 | :: | 49 | :: |
50 | 50 | ||
51 | SYMFONY_ENV=prod composer create-project wallabag/wallabag wallabag "2.0.*@alpha" --no-dev | 51 | SYMFONY_ENV=prod composer create-project wallabag/wallabag wallabag "2.0.0-beta.1" --no-dev |
52 | php bin/console wallabag:install --env=prod | 52 | php bin/console wallabag:install --env=prod |
53 | 53 | ||
54 | To start php's build-in server and test if everything did install correctly, you can do: | 54 | To start php's build-in server and test if everything did install correctly, you can do: |