diff options
Diffstat (limited to 'app')
15 files changed, 95 insertions, 0 deletions
diff --git a/app/DoctrineMigrations/Version20171120163128.php b/app/DoctrineMigrations/Version20171120163128.php new file mode 100644 index 00000000..fc3d4c37 --- /dev/null +++ b/app/DoctrineMigrations/Version20171120163128.php | |||
@@ -0,0 +1,52 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Application\Migrations; | ||
4 | |||
5 | use Doctrine\DBAL\Migrations\AbstractMigration; | ||
6 | use Doctrine\DBAL\Schema\Schema; | ||
7 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; | ||
8 | use Symfony\Component\DependencyInjection\ContainerInterface; | ||
9 | |||
10 | /** | ||
11 | * Add store_article_headers in craue_config_setting. | ||
12 | */ | ||
13 | class Version20171120163128 extends AbstractMigration implements ContainerAwareInterface | ||
14 | { | ||
15 | /** | ||
16 | * @var ContainerInterface | ||
17 | */ | ||
18 | private $container; | ||
19 | |||
20 | public function setContainer(ContainerInterface $container = null) | ||
21 | { | ||
22 | $this->container = $container; | ||
23 | } | ||
24 | |||
25 | /** | ||
26 | * @param Schema $schema | ||
27 | */ | ||
28 | public function up(Schema $schema) | ||
29 | { | ||
30 | $storeArticleHeaders = $this->container | ||
31 | ->get('doctrine.orm.default_entity_manager') | ||
32 | ->getConnection() | ||
33 | ->fetchArray('SELECT * FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'store_article_headers'"); | ||
34 | |||
35 | $this->skipIf(false !== $storeArticleHeaders, 'It seems that you already played this migration.'); | ||
36 | |||
37 | $this->addSql('INSERT INTO ' . $this->getTable('craue_config_setting') . " (name, value, section) VALUES ('store_article_headers', '0', 'entry')"); | ||
38 | } | ||
39 | |||
40 | /** | ||
41 | * @param Schema $schema | ||
42 | */ | ||
43 | public function down(Schema $schema) | ||
44 | { | ||
45 | $this->addSql('DELETE FROM ' . $this->getTable('craue_config_setting') . " WHERE name = 'store_article_headers';"); | ||
46 | } | ||
47 | |||
48 | private function getTable($tableName) | ||
49 | { | ||
50 | return $this->container->getParameter('database_table_prefix') . $tableName; | ||
51 | } | ||
52 | } | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml index 5475e571..c3fd843f 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml | |||
@@ -12,6 +12,8 @@ export_xml: Aktiver eksport til XML | |||
12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously | 12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously |
13 | # import_with_redis: Enable Redis to import data asynchronously | 13 | # import_with_redis: Enable Redis to import data asynchronously |
14 | shaarli_url: Shaarli-URL, hvis tjenesten er aktiv | 14 | shaarli_url: Shaarli-URL, hvis tjenesten er aktiv |
15 | scuttle_url: Scuttle-URL, hvis tjenesten er aktiv | ||
16 | unmark_url: Unmark-URL, hvis tjenesten er aktiv | ||
15 | share_diaspora: Aktiver deling til Diaspora | 17 | share_diaspora: Aktiver deling til Diaspora |
16 | share_mail: Aktiver deling med email | 18 | share_mail: Aktiver deling med email |
17 | share_shaarli: Aktiver deling gennem Shaarli | 19 | share_shaarli: Aktiver deling gennem Shaarli |
@@ -34,3 +36,4 @@ demo_mode_username: "Demobruger" | |||
34 | # download_images_enabled: Download images locally | 36 | # download_images_enabled: Download images locally |
35 | # restricted_access: Enable authentication for websites with paywall | 37 | # restricted_access: Enable authentication for websites with paywall |
36 | # api_user_registration: Enable user to be registered using the API | 38 | # api_user_registration: Enable user to be registered using the API |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml index a066c8e3..37da383e 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml | |||
@@ -12,6 +12,8 @@ export_xml: 'XML-Export aktivieren' | |||
12 | import_with_rabbitmq: 'Aktiviere RabbitMQ, um Artikel asynchron zu importieren' | 12 | import_with_rabbitmq: 'Aktiviere RabbitMQ, um Artikel asynchron zu importieren' |
13 | import_with_redis: 'Aktiviere Redis, um Artikel asynchron zu importieren' | 13 | import_with_redis: 'Aktiviere Redis, um Artikel asynchron zu importieren' |
14 | shaarli_url: 'Shaarli-URL, sofern der Service aktiviert ist' | 14 | shaarli_url: 'Shaarli-URL, sofern der Service aktiviert ist' |
15 | scuttle_url: 'Scuttle-URL, sofern der Service aktiviert ist' | ||
16 | unmark_url: 'Unmark-URL, sofern der Service aktiviert ist' | ||
15 | share_diaspora: 'Teilen zu Diaspora aktiveren' | 17 | share_diaspora: 'Teilen zu Diaspora aktiveren' |
16 | share_mail: 'Teilen via E-Mail aktiveren' | 18 | share_mail: 'Teilen via E-Mail aktiveren' |
17 | share_shaarli: 'Teilen zu Shaarli aktiveren' | 19 | share_shaarli: 'Teilen zu Shaarli aktiveren' |
@@ -34,3 +36,4 @@ share_public: 'Erlaube eine öffentliche URL für Einträge' | |||
34 | download_images_enabled: 'Bilder lokal herunterladen' | 36 | download_images_enabled: 'Bilder lokal herunterladen' |
35 | restricted_access: 'Authentifizierung für Webseiten mit Paywall aktivieren' | 37 | restricted_access: 'Authentifizierung für Webseiten mit Paywall aktivieren' |
36 | api_user_registration: 'Registrierung eines Benutzers über die API ermöglichen' | 38 | api_user_registration: 'Registrierung eines Benutzers über die API ermöglichen' |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml index b53066b1..0a89ce2c 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml | |||
@@ -12,6 +12,8 @@ export_xml: Enable XML export | |||
12 | import_with_rabbitmq: Enable RabbitMQ to import data asynchronously | 12 | import_with_rabbitmq: Enable RabbitMQ to import data asynchronously |
13 | import_with_redis: Enable Redis to import data asynchronously | 13 | import_with_redis: Enable Redis to import data asynchronously |
14 | shaarli_url: Shaarli URL, if the service is enabled | 14 | shaarli_url: Shaarli URL, if the service is enabled |
15 | scuttle_url: Scuttle URL, if the service is enabled | ||
16 | unmark_url: Unmark URL, if the service is enabled | ||
15 | share_diaspora: Enable share to diaspora* | 17 | share_diaspora: Enable share to diaspora* |
16 | share_mail: Enable share by e-mail | 18 | share_mail: Enable share by e-mail |
17 | share_shaarli: Enable sharing to Shaarli | 19 | share_shaarli: Enable sharing to Shaarli |
@@ -34,3 +36,4 @@ share_public: Allow public URL for entries | |||
34 | download_images_enabled: Download images locally | 36 | download_images_enabled: Download images locally |
35 | restricted_access: Enable authentication for paywalled websites | 37 | restricted_access: Enable authentication for paywalled websites |
36 | api_user_registration: Enable user to be registered using the API | 38 | api_user_registration: Enable user to be registered using the API |
39 | store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml index 46ed4040..db5858d6 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml | |||
@@ -12,6 +12,8 @@ export_xml: Activar exportación a XML | |||
12 | import_with_rabbitmq: Activar RabbitMQ para importar datos de forma asíncrona | 12 | import_with_rabbitmq: Activar RabbitMQ para importar datos de forma asíncrona |
13 | import_with_redis: Activar Redis para importar datos de forma asíncrona | 13 | import_with_redis: Activar Redis para importar datos de forma asíncrona |
14 | shaarli_url: URL de Shaarli, si el servicio está activado | 14 | shaarli_url: URL de Shaarli, si el servicio está activado |
15 | scuttle_url: URL de Scuttle, si el servicio está activado | ||
16 | unmark_url: URL de Unmark, si el servicio está activado | ||
15 | share_diaspora: Activar compartir con Diaspora | 17 | share_diaspora: Activar compartir con Diaspora |
16 | share_mail: Activar compartir con Email | 18 | share_mail: Activar compartir con Email |
17 | share_shaarli: Activar compartir con Shaarli | 19 | share_shaarli: Activar compartir con Shaarli |
@@ -34,3 +36,4 @@ share_public: Permitir URL pública para los artículos | |||
34 | download_images_enabled: Descargar imágenes localmente | 36 | download_images_enabled: Descargar imágenes localmente |
35 | restricted_access: Activar autenticación para websites con paywall | 37 | restricted_access: Activar autenticación para websites con paywall |
36 | # api_user_registration: Enable user to be registered using the API | 38 | # api_user_registration: Enable user to be registered using the API |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml index f8da4acf..11cc601b 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml | |||
@@ -12,6 +12,8 @@ export_xml: فعالسازی برونسپاری به XML | |||
12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously | 12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously |
13 | # import_with_redis: Enable Redis to import data asynchronously | 13 | # import_with_redis: Enable Redis to import data asynchronously |
14 | shaarli_url: نشانی Shaarli، اگر فعال بود | 14 | shaarli_url: نشانی Shaarli، اگر فعال بود |
15 | scuttle_url: نشانی Scuttle، اگر فعال بود | ||
16 | unmark_url: نشانی Unmark، اگر فعال بود | ||
15 | share_diaspora: فعالسازی همرسانی به Diaspora | 17 | share_diaspora: فعالسازی همرسانی به Diaspora |
16 | share_mail: فعالسازی همرسانی با ایمیل | 18 | share_mail: فعالسازی همرسانی با ایمیل |
17 | share_shaarli: فعالسازی همرسانی به Shaarli | 19 | share_shaarli: فعالسازی همرسانی به Shaarli |
@@ -34,3 +36,4 @@ modify_settings: "اعمال" | |||
34 | # download_images_enabled: Download images locally | 36 | # download_images_enabled: Download images locally |
35 | # restricted_access: Enable authentication for websites with paywall | 37 | # restricted_access: Enable authentication for websites with paywall |
36 | # api_user_registration: Enable user to be registered using the API | 38 | # api_user_registration: Enable user to be registered using the API |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml index a79409b4..f23b5bf9 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml | |||
@@ -12,6 +12,8 @@ export_xml: Activer l'export XML | |||
12 | import_with_rabbitmq: Activer RabbitMQ pour gérer les imports de façon asynchrone | 12 | import_with_rabbitmq: Activer RabbitMQ pour gérer les imports de façon asynchrone |
13 | import_with_redis: Activer Redis pour gérer les imports de façon asynchrone | 13 | import_with_redis: Activer Redis pour gérer les imports de façon asynchrone |
14 | shaarli_url: URL de Shaarli, si le service Shaarli est activé | 14 | shaarli_url: URL de Shaarli, si le service Shaarli est activé |
15 | scuttle_url: URL de Scuttle, si le service Scuttle est activé | ||
16 | unmark_url: URL de Unmark, si le service Unmark est activé | ||
15 | share_diaspora: Activer le partage vers Diaspora | 17 | share_diaspora: Activer le partage vers Diaspora |
16 | share_mail: Activer le partage par email | 18 | share_mail: Activer le partage par email |
17 | share_shaarli: Activer le partage vers Shaarli | 19 | share_shaarli: Activer le partage vers Shaarli |
@@ -34,3 +36,4 @@ share_public: Autoriser une URL publique pour les articles | |||
34 | download_images_enabled: Télécharger les images en local | 36 | download_images_enabled: Télécharger les images en local |
35 | restricted_access: Activer l'authentification pour les articles derrière un paywall | 37 | restricted_access: Activer l'authentification pour les articles derrière un paywall |
36 | api_user_registration: Activer la création de compte depuis l'API | 38 | api_user_registration: Activer la création de compte depuis l'API |
39 | store_article_headers: Activer le stockage des en-têtes HTTP de chaque article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml index dd4def4b..ade6f7da 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml | |||
@@ -12,6 +12,8 @@ export_xml: Abilita esportazione XML | |||
12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously | 12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously |
13 | # import_with_redis: Enable Redis to import data asynchronously | 13 | # import_with_redis: Enable Redis to import data asynchronously |
14 | shaarli_url: Shaarli URL, se il servizio è abilitato | 14 | shaarli_url: Shaarli URL, se il servizio è abilitato |
15 | scuttle_url: Scuttle URL, se il servizio è abilitato | ||
16 | unmark_url: Unmark URL, se il servizio è abilitato | ||
15 | share_diaspora: Abilita la condivisione con Diaspora | 17 | share_diaspora: Abilita la condivisione con Diaspora |
16 | share_mail: Abilita la condivisione per email | 18 | share_mail: Abilita la condivisione per email |
17 | share_shaarli: Abilita la condivisione con Shaarli | 19 | share_shaarli: Abilita la condivisione con Shaarli |
@@ -34,3 +36,4 @@ demo_mode_username: "Utente Demo" | |||
34 | # download_images_enabled: Download images locally | 36 | # download_images_enabled: Download images locally |
35 | # restricted_access: Enable authentication for websites with paywall | 37 | # restricted_access: Enable authentication for websites with paywall |
36 | api_user_registration: Abilita la registrazione dell'utente attraverso l'API | 38 | api_user_registration: Abilita la registrazione dell'utente attraverso l'API |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml index fb163ce7..99986642 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml | |||
@@ -12,6 +12,8 @@ export_xml: Activar l'expòrt XML | |||
12 | import_with_rabbitmq: Activar RabbitMQ per importar de donadas de manièra asincròna | 12 | import_with_rabbitmq: Activar RabbitMQ per importar de donadas de manièra asincròna |
13 | import_with_redis: Activar Redis per importar de donadas de manièra asincròna | 13 | import_with_redis: Activar Redis per importar de donadas de manièra asincròna |
14 | shaarli_url: URL de Shaarli, se lo servici Shaarli es activat | 14 | shaarli_url: URL de Shaarli, se lo servici Shaarli es activat |
15 | scuttle_url: URL de Scuttle, se lo servici Scuttle es activat | ||
16 | unmark_url: URL de Unmark, se lo servici Scuttle es activat | ||
15 | share_diaspora: Activar lo partatge cap a Diaspora* | 17 | share_diaspora: Activar lo partatge cap a Diaspora* |
16 | share_mail: Activar lo partatge per corrièl | 18 | share_mail: Activar lo partatge per corrièl |
17 | share_shaarli: Activar lo partatge cap a Shaarli | 19 | share_shaarli: Activar lo partatge cap a Shaarli |
@@ -34,3 +36,4 @@ share_public: Autorizar una URL publica pels articles | |||
34 | download_images_enabled: Telecargar los imatges en local | 36 | download_images_enabled: Telecargar los imatges en local |
35 | restricted_access: Activar l'autenticacion pels sites amb peatge | 37 | restricted_access: Activar l'autenticacion pels sites amb peatge |
36 | api_user_registration: Autorizar los utilizaires a se marcar amb l'API | 38 | api_user_registration: Autorizar los utilizaires a se marcar amb l'API |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml index 04ad4fd3..8b8f2ebd 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml | |||
@@ -12,6 +12,7 @@ export_xml: Włącz eksport do XML | |||
12 | import_with_rabbitmq: Włącz RabbitMQ dla asynchronicznego importu danych | 12 | import_with_rabbitmq: Włącz RabbitMQ dla asynchronicznego importu danych |
13 | import_with_redis: Włącz Redis dla asynchronicznego importu danych | 13 | import_with_redis: Włącz Redis dla asynchronicznego importu danych |
14 | shaarli_url: Adress URL Shaarli, jeżeli usługa jest włączona | 14 | shaarli_url: Adress URL Shaarli, jeżeli usługa jest włączona |
15 | scuttle_url: Adress URL Scuttle, jeżeli usługa jest włączona | ||
15 | share_diaspora: Włącz udostępnianie dla Diaspora | 16 | share_diaspora: Włącz udostępnianie dla Diaspora |
16 | share_mail: Włącz udostępnianie przez email | 17 | share_mail: Włącz udostępnianie przez email |
17 | share_shaarli: Włącz udostępnianie dla Shaarli | 18 | share_shaarli: Włącz udostępnianie dla Shaarli |
@@ -34,3 +35,4 @@ share_public: Zezwalaj na publiczny adres url dla wpisow | |||
34 | download_images_enabled: Pobierz obrazy lokalnie | 35 | download_images_enabled: Pobierz obrazy lokalnie |
35 | restricted_access: Włącz autoryzację dla stron z paywallem | 36 | restricted_access: Włącz autoryzację dla stron z paywallem |
36 | api_user_registration: Włącz rejestrację użytkownika przy użyciu API | 37 | api_user_registration: Włącz rejestrację użytkownika przy użyciu API |
38 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml index 77e22b37..76cb0174 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml | |||
@@ -12,6 +12,8 @@ export_xml: Habilita exportação para XML | |||
12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously | 12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously |
13 | # import_with_redis: Enable Redis to import data asynchronously | 13 | # import_with_redis: Enable Redis to import data asynchronously |
14 | shaarli_url: URL Shaarli, se o serviço está habilitado | 14 | shaarli_url: URL Shaarli, se o serviço está habilitado |
15 | scuttle_url: URL Scuttle, se o serviço está habilitado | ||
16 | unmark_url: URL Unmark, se o serviço está habilitado | ||
15 | share_diaspora: Habilitar compartilhamento para o Diaspora | 17 | share_diaspora: Habilitar compartilhamento para o Diaspora |
16 | share_mail: Habilitar compartilhamento por e-mail | 18 | share_mail: Habilitar compartilhamento por e-mail |
17 | share_shaarli: Habilitar compartilhamento para o Shaarli | 19 | share_shaarli: Habilitar compartilhamento para o Shaarli |
@@ -34,3 +36,4 @@ demo_mode_username: "Usuário demo" | |||
34 | # download_images_enabled: Download images locally | 36 | # download_images_enabled: Download images locally |
35 | # restricted_access: Enable authentication for websites with paywall | 37 | # restricted_access: Enable authentication for websites with paywall |
36 | # api_user_registration: Enable user to be registered using the API | 38 | # api_user_registration: Enable user to be registered using the API |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml index 1b4bfb5b..8300cec8 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml | |||
@@ -12,6 +12,8 @@ export_xml: Permite exportare XML | |||
12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously | 12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously |
13 | # import_with_redis: Enable Redis to import data asynchronously | 13 | # import_with_redis: Enable Redis to import data asynchronously |
14 | shaarli_url: Shaarli URL, dacă serviciul este permis | 14 | shaarli_url: Shaarli URL, dacă serviciul este permis |
15 | scuttle_url: Scuttle URL, dacă serviciul este permis | ||
16 | unmark_url: Unmark URL, dacă serviciul este permis | ||
15 | share_diaspora: Permite share către Diaspora | 17 | share_diaspora: Permite share către Diaspora |
16 | share_mail: Permite share prin email | 18 | share_mail: Permite share prin email |
17 | share_shaarli: Permite share către Shaarli | 19 | share_shaarli: Permite share către Shaarli |
@@ -34,3 +36,4 @@ modify_settings: "aplică" | |||
34 | # download_images_enabled: Download images locally | 36 | # download_images_enabled: Download images locally |
35 | # restricted_access: Enable authentication for websites with paywall | 37 | # restricted_access: Enable authentication for websites with paywall |
36 | # api_user_registration: Enable user to be registered using the API | 38 | # api_user_registration: Enable user to be registered using the API |
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ru.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ru.yml index 37b4bbfd..8fed84ae 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ru.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ru.yml | |||
@@ -12,6 +12,8 @@ export_xml: "Включить XML экспорт" | |||
12 | import_with_rabbitmq: "Включить RabbitMQ для импорта данных(асинхронно)" | 12 | import_with_rabbitmq: "Включить RabbitMQ для импорта данных(асинхронно)" |
13 | import_with_redis: "Включить Redis для импорта данных(асинхронно)" | 13 | import_with_redis: "Включить Redis для импорта данных(асинхронно)" |
14 | shaarli_url: "Shaarli URL, если сервис включен" | 14 | shaarli_url: "Shaarli URL, если сервис включен" |
15 | scuttle_url: "Scuttle URL, если сервис включен" | ||
16 | unmark_url: "Unmark URL, если сервис включен" | ||
15 | share_diaspora: "Включить возможность поделиться в соц.сети Diaspora" | 17 | share_diaspora: "Включить возможность поделиться в соц.сети Diaspora" |
16 | share_mail: "Включить возможность поделиться по email" | 18 | share_mail: "Включить возможность поделиться по email" |
17 | share_shaarli: "Включить возможность поделиться в Shaarli" | 19 | share_shaarli: "Включить возможность поделиться в Shaarli" |
@@ -33,3 +35,5 @@ demo_mode_username: "Демо пользователь" | |||
33 | share_public: "Разрешить публичные ссылки на записи" | 35 | share_public: "Разрешить публичные ссылки на записи" |
34 | download_images_enabled: "Скачивать изображения локально" | 36 | download_images_enabled: "Скачивать изображения локально" |
35 | restricted_access: "Включить авторизацию на сайте с помощью paywall" | 37 | restricted_access: "Включить авторизацию на сайте с помощью paywall" |
38 | # api_user_registration: Enable user to be registered using the API | ||
39 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.tr.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.tr.yml index 1579366d..b992ccc2 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.tr.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.tr.yml | |||
@@ -12,6 +12,8 @@ | |||
12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously | 12 | # import_with_rabbitmq: Enable RabbitMQ to import data asynchronously |
13 | # import_with_redis: Enable Redis to import data asynchronously | 13 | # import_with_redis: Enable Redis to import data asynchronously |
14 | # shaarli_url: Shaarli URL, if the service is enabled | 14 | # shaarli_url: Shaarli URL, if the service is enabled |
15 | # scuttle_url: Scuttle URL, if the service is enabled | ||
16 | # unmark_url: Unmark URL, if the service is enabled | ||
15 | # share_diaspora: Enable share to Diaspora | 17 | # share_diaspora: Enable share to Diaspora |
16 | # share_mail: Enable share by email | 18 | # share_mail: Enable share by email |
17 | # share_shaarli: Enable share to Shaarli | 19 | # share_shaarli: Enable share to Shaarli |
@@ -35,3 +37,4 @@ | |||
35 | # download_images_enabled: Download images locally | 37 | # download_images_enabled: Download images locally |
36 | # restricted_access: Enable authentication for websites with paywall | 38 | # restricted_access: Enable authentication for websites with paywall |
37 | # api_user_registration: Enable user to be registered using the API | 39 | # api_user_registration: Enable user to be registered using the API |
40 | # store_article_headers: Enable if wallabag stores HTTP headers for each article | ||
diff --git a/app/config/wallabag.yml b/app/config/wallabag.yml index bbc587b0..7795bae6 100644 --- a/app/config/wallabag.yml +++ b/app/config/wallabag.yml | |||
@@ -153,6 +153,10 @@ wallabag_core: | |||
153 | name: api_user_registration | 153 | name: api_user_registration |
154 | value: 0 | 154 | value: 0 |
155 | section: api | 155 | section: api |
156 | - | ||
157 | name: store_article_headers | ||
158 | value: 0 | ||
159 | section: entry | ||
156 | 160 | ||
157 | wallabag_user: | 161 | wallabag_user: |
158 | registration_enabled: "%fosuser_registration%" | 162 | registration_enabled: "%fosuser_registration%" |