diff options
Diffstat (limited to 'app')
14 files changed, 55 insertions, 15 deletions
diff --git a/app/DoctrineMigrations/Version20170606155640.php b/app/DoctrineMigrations/Version20170606155640.php new file mode 100644 index 00000000..e9b50428 --- /dev/null +++ b/app/DoctrineMigrations/Version20170606155640.php | |||
@@ -0,0 +1,53 @@ | |||
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 | * Remove wallabag_url from craue_config_setting. | ||
12 | * It has been moved into the parameters.yml | ||
13 | */ | ||
14 | class Version20170606155640 extends AbstractMigration implements ContainerAwareInterface | ||
15 | { | ||
16 | /** | ||
17 | * @var ContainerInterface | ||
18 | */ | ||
19 | private $container; | ||
20 | |||
21 | public function setContainer(ContainerInterface $container = null) | ||
22 | { | ||
23 | $this->container = $container; | ||
24 | } | ||
25 | |||
26 | private function getTable($tableName) | ||
27 | { | ||
28 | return $this->container->getParameter('database_table_prefix').$tableName; | ||
29 | } | ||
30 | |||
31 | /** | ||
32 | * @param Schema $schema | ||
33 | */ | ||
34 | public function up(Schema $schema) | ||
35 | { | ||
36 | $apiUserRegistration = $this->container | ||
37 | ->get('doctrine.orm.default_entity_manager') | ||
38 | ->getConnection() | ||
39 | ->fetchArray('SELECT * FROM '.$this->getTable('craue_config_setting')." WHERE name = 'wallabag_url'"); | ||
40 | |||
41 | $this->skipIf(false === $apiUserRegistration, 'It seems that you already played this migration.'); | ||
42 | |||
43 | $this->addSql('DELETE FROM '.$this->getTable('craue_config_setting')." WHERE name = 'wallabag_url'"); | ||
44 | } | ||
45 | |||
46 | /** | ||
47 | * @param Schema $schema | ||
48 | */ | ||
49 | public function down(Schema $schema) | ||
50 | { | ||
51 | $this->addSql('INSERT INTO '.$this->getTable('craue_config_setting')." (name, value, section) VALUES ('wallabag_url', 'wallabag.me', 'misc')"); | ||
52 | } | ||
53 | } | ||
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml index 20e938f5..5475e571 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.da.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Aktiver deling gennem Twitter | |||
20 | share_unmark: Aktiver deling gennem Unmark.it | 20 | share_unmark: Aktiver deling gennem Unmark.it |
21 | show_printlink: Vis et link til print-indhold | 21 | show_printlink: Vis et link til print-indhold |
22 | wallabag_support_url: Support-URL for wallabag | 22 | wallabag_support_url: Support-URL for wallabag |
23 | wallabag_url: URL for *sin* wallabag-installation | ||
24 | entry: "artikel" | 23 | entry: "artikel" |
25 | export: "eksport" | 24 | export: "eksport" |
26 | import: "import" | 25 | import: "import" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml index 526d41bc..f57db303 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.de.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Teilen zu Twitter aktiveren | |||
20 | share_unmark: Teilen zu Unmark.it aktiveren | 20 | share_unmark: Teilen zu Unmark.it aktiveren |
21 | show_printlink: Link anzeigen, um den Inhalt auszudrucken | 21 | show_printlink: Link anzeigen, um den Inhalt auszudrucken |
22 | wallabag_support_url: Support-URL für wallabag | 22 | wallabag_support_url: Support-URL für wallabag |
23 | wallabag_url: URL von *deiner* wallabag-Instanz | ||
24 | entry: "Artikel" | 23 | entry: "Artikel" |
25 | export: "Export" | 24 | export: "Export" |
26 | import: "Import" | 25 | import: "Import" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml index 3c0037f3..1e4f4668 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.en.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Enable share to Twitter | |||
20 | share_unmark: Enable share to Unmark.it | 20 | share_unmark: Enable share to Unmark.it |
21 | show_printlink: Display a link to print content | 21 | show_printlink: Display a link to print content |
22 | wallabag_support_url: Support URL for wallabag | 22 | wallabag_support_url: Support URL for wallabag |
23 | wallabag_url: URL of *your* wallabag instance | ||
24 | entry: "article" | 23 | entry: "article" |
25 | export: "export" | 24 | export: "export" |
26 | import: "import" | 25 | import: "import" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml index 99869669..46ed4040 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.es.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Activar compartir con Twitter | |||
20 | share_unmark: Activar compartir con Unmark.it | 20 | share_unmark: Activar compartir con Unmark.it |
21 | show_printlink: Mostrar un enlace para imprimir contenido | 21 | show_printlink: Mostrar un enlace para imprimir contenido |
22 | wallabag_support_url: URL de soporte de wallabag | 22 | wallabag_support_url: URL de soporte de wallabag |
23 | wallabag_url: URL de *tu* instancia de wallabag | ||
24 | entry: "artículo" | 23 | entry: "artículo" |
25 | export: "exportar" | 24 | export: "exportar" |
26 | import: "importar" | 25 | import: "importar" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml index 2e1307e5..f8da4acf 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fa.yml | |||
@@ -20,7 +20,6 @@ share_twitter: فعالسازی همرسانی به Twitter | |||
20 | share_unmark: فعالسازی همرسانی به Unmark.it | 20 | share_unmark: فعالسازی همرسانی به Unmark.it |
21 | show_printlink: نمایش پیوندی برای چاپ مطلب | 21 | show_printlink: نمایش پیوندی برای چاپ مطلب |
22 | wallabag_support_url: نشانی صفحهٔ پشتیبانی wallabag | 22 | wallabag_support_url: نشانی صفحهٔ پشتیبانی wallabag |
23 | wallabag_url: نشانی صفحهٔ wallabag *شما* | ||
24 | entry: "مقاله" | 23 | entry: "مقاله" |
25 | export: "برونسپاری" | 24 | export: "برونسپاری" |
26 | import: "درونریزی" | 25 | import: "درونریزی" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml index 454053ad..a79409b4 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.fr.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Activer le partage vers Twitter | |||
20 | share_unmark: Activer le partage vers Unmark.it | 20 | share_unmark: Activer le partage vers Unmark.it |
21 | show_printlink: Afficher un lien pour imprimer | 21 | show_printlink: Afficher un lien pour imprimer |
22 | wallabag_support_url: URL de support de wallabag | 22 | wallabag_support_url: URL de support de wallabag |
23 | wallabag_url: URL de *votre* instance de wallabag | ||
24 | entry: "article" | 23 | entry: "article" |
25 | export: "export" | 24 | export: "export" |
26 | import: "import" | 25 | import: "import" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml index 4dbd2ff8..dd4def4b 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.it.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Abilita la condivisione con Twitter | |||
20 | share_unmark: Abilita la condivisione con Unmark.it | 20 | share_unmark: Abilita la condivisione con Unmark.it |
21 | show_printlink: Mostra un collegamento per stampare il contenuto | 21 | show_printlink: Mostra un collegamento per stampare il contenuto |
22 | wallabag_support_url: URL di supporto per wallabag | 22 | wallabag_support_url: URL di supporto per wallabag |
23 | wallabag_url: URL della *tua* installazione di wallabag | ||
24 | entry: "contenuto" | 23 | entry: "contenuto" |
25 | export: "esporta" | 24 | export: "esporta" |
26 | import: "importa" | 25 | import: "importa" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml index 00c06638..66d9ae26 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.oc.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Activar lo partatge cap a Twitter | |||
20 | share_unmark: Activar lo partatge cap a Unmark.it | 20 | share_unmark: Activar lo partatge cap a Unmark.it |
21 | show_printlink: Afichar un ligam per imprimir | 21 | show_printlink: Afichar un ligam per imprimir |
22 | wallabag_support_url: URL d'assisténcia de wallabag | 22 | wallabag_support_url: URL d'assisténcia de wallabag |
23 | wallabag_url: URL de *vòstra* instància de wallabag | ||
24 | entry: "article" | 23 | entry: "article" |
25 | export: "expòrt" | 24 | export: "expòrt" |
26 | import: "impòrt" | 25 | import: "impòrt" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml index ada11b3a..04ad4fd3 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pl.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Włącz udostępnianie dla Twitter | |||
20 | share_unmark: Włącz udostępnianie dla Unmark.it | 20 | share_unmark: Włącz udostępnianie dla Unmark.it |
21 | show_printlink: Pokaż link do wydrukowania zawartości | 21 | show_printlink: Pokaż link do wydrukowania zawartości |
22 | wallabag_support_url: Adres URL wsparcia dla wallabag | 22 | wallabag_support_url: Adres URL wsparcia dla wallabag |
23 | wallabag_url: Adres *twojej* instacji wallabag | ||
24 | entry: "artykuł" | 23 | entry: "artykuł" |
25 | export: "eksport" | 24 | export: "eksport" |
26 | import: "import" | 25 | import: "import" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml index 59af9610..77e22b37 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.pt.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Habilitar compartilhamento para o Twitter | |||
20 | share_unmark: Habilitar compartilhamento para o Unmark.it | 20 | share_unmark: Habilitar compartilhamento para o Unmark.it |
21 | show_printlink: Mostrar um link para imprimir o conteúdo | 21 | show_printlink: Mostrar um link para imprimir o conteúdo |
22 | wallabag_support_url: URL de Suporte do wallabag | 22 | wallabag_support_url: URL de Suporte do wallabag |
23 | wallabag_url: URL de *sua* instância do wallabag | ||
24 | entry: "artigo" | 23 | entry: "artigo" |
25 | export: "exportar" | 24 | export: "exportar" |
26 | import: "importar" | 25 | import: "importar" |
diff --git a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml index 104e37c6..1b4bfb5b 100644 --- a/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml +++ b/app/Resources/CraueConfigBundle/translations/CraueConfigBundle.ro.yml | |||
@@ -20,7 +20,6 @@ share_twitter: Permite share către Twitter | |||
20 | share_unmark: Permite share către Unmark.it | 20 | share_unmark: Permite share către Unmark.it |
21 | show_printlink: Afișează un link pentru a printa content-ul | 21 | show_printlink: Afișează un link pentru a printa content-ul |
22 | wallabag_support_url: URL-ul de suport pentru wallabag | 22 | wallabag_support_url: URL-ul de suport pentru wallabag |
23 | wallabag_url: URL-ul instanței tale wallabag | ||
24 | entry: "alticol" | 23 | entry: "alticol" |
25 | export: "exportă" | 24 | export: "exportă" |
26 | import: "importă" | 25 | import: "importă" |
diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index afcee039..914fb1ef 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist | |||
@@ -23,6 +23,8 @@ parameters: | |||
23 | # with PostgreSQL and SQLite, you must set "utf8" | 23 | # with PostgreSQL and SQLite, you must set "utf8" |
24 | database_charset: utf8mb4 | 24 | database_charset: utf8mb4 |
25 | 25 | ||
26 | domain_name: https://your-wallabag-url-instance.com | ||
27 | |||
26 | mailer_transport: smtp | 28 | mailer_transport: smtp |
27 | mailer_host: 127.0.0.1 | 29 | mailer_host: 127.0.0.1 |
28 | mailer_user: ~ | 30 | mailer_user: ~ |
diff --git a/app/config/wallabag.yml b/app/config/wallabag.yml index d8c593c6..51b7e4e3 100644 --- a/app/config/wallabag.yml +++ b/app/config/wallabag.yml | |||
@@ -148,10 +148,6 @@ wallabag_core: | |||
148 | value: https://www.wallabag.org/pages/support.html | 148 | value: https://www.wallabag.org/pages/support.html |
149 | section: misc | 149 | section: misc |
150 | - | 150 | - |
151 | name: wallabag_url | ||
152 | value: http://v2.wallabag.org | ||
153 | section: misc | ||
154 | - | ||
155 | name: api_user_registration | 151 | name: api_user_registration |
156 | value: 0 | 152 | value: 0 |
157 | section: api | 153 | section: api |