X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=src%2FWallabag%2FCoreBundle%2FResources%2Fviews%2Fthemes%2Fmaterial%2FConfig%2Findex.html.twig;h=8743dc1dd0b207f15508376b0a734f60e0afb8d9;hb=790573d45899504bdecd2573c8f64018e23b139e;hp=1457fe51eb486eaca51c2c7192a66880e0b45e7d;hpb=52e423f30761561fa2ad82c708d9fa9186562b1f;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig index 1457fe51..8743dc1d 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig @@ -131,6 +131,12 @@ {% if twofactor_auth %} +
+
+ {% trans %}Enabling two factor authentication means you'll receive an email with a code on every new untrusted connexion{% endtrans %} +
+
+
{{ form_widget(form.user.twoFactorAuthentication) }} @@ -200,8 +206,8 @@
-
- {{ form_errors(form.pwd) }} + {{ form_start(form.new_tagging_rule) }} + {{ form_errors(form.new_tagging_rule) }}
@@ -227,14 +233,40 @@
+

{% trans %}FAQ{% endtrans %}

+ +
{% trans %}What does « tagging rules » mean?{% endtrans %}

- {% trans %}The following variables can be used to create tagging rules:{% endtrans %} + {% trans %} + They are rules used by Wallabag to automatically tag new entries.
+ Each time a new entry is added, all the tagging rules will be used to add + the tags you configured, thus saving you the trouble to manually classify + your entries. + {% endtrans %} +

+ +
{% trans %}How do I use them?{% endtrans %}
+

+ {% trans %} + Let assume you want to tag new entries as « short reading » when the reading time is inferior to 3 minutes.
+ In that case, you should put « readingTime <= 3 » in the Rule field and « short reading » in the Tags + field.
+ Several tags can added simultaneously by separating them by a comma: « short reading, must read »
+ Complex rules can be written by using predefined operators: if « readingTime >= 5 AND domainName = "github.com" » then tag as « long reading, github » + {% endtrans %} +

+ +
{% trans %}Which variables and operators can I use to write rules?{% endtrans %}
+

+ {% trans %}The following variables and operators can be used to create tagging rules:{% endtrans %} - - + + + + @@ -242,38 +274,61 @@ + + + + + + + + + + + + + + + + + +
VariableMeaning{% trans %}Variable{% endtrans %}{% trans %}Meaning{% endtrans %}{% trans %}Operator{% endtrans %}{% trans %}Meaning{% endtrans %}
title {% trans %}Title of the entry{% endtrans %}<={% trans %}Less than…{% endtrans %}
url {% trans %}URL of the entry{% endtrans %}<{% trans %}Strictly less than…{% endtrans %}
isArchived {% trans %}Whether the entry is archived or not{% endtrans %}=>{% trans %}Greater than…{% endtrans %}
isStared {% trans %}Whether the entry is starred or not{% endtrans %}>{% trans %}Strictly greater than…{% endtrans %}
content {% trans %}The entry's content{% endtrans %}={% trans %}Equal to…{% endtrans %}
language {% trans %}The entry's language{% endtrans %}!={% trans %}Not equal to…{% endtrans %}
mimetype {% trans %}The entry's mime-type{% endtrans %}OR{% trans %}One rule or another{% endtrans %}
readingTime {% trans %}The estimated entry's reading time, in minutes{% endtrans %}AND{% trans %}One rule and another{% endtrans %}
domainName {% trans %}The domain name of the entry{% endtrans %}matches + {% trans %} + Tests that a subject is matches a search (case-insensitive).
+ Example: title matches "football" + {% endtrans %} +
@@ -283,7 +338,7 @@

{% if is_granted('ROLE_SUPER_ADMIN') %} -
+
{{ form_start(form.new_user) }} {{ form_errors(form.new_user) }}