diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 14:58:17 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 14:58:17 +0100 |
commit | b84a80559a1167b5500fbc5eb4965d3b08b371ef (patch) | |
tree | f7d0e9917f650b6317b986c9e8baf38880a4fb2e /app/config | |
parent | 163eae0bb15d0daa5390f434a42a8176eca186e7 (diff) | |
download | wallabag-b84a80559a1167b5500fbc5eb4965d3b08b371ef.tar.gz wallabag-b84a80559a1167b5500fbc5eb4965d3b08b371ef.tar.zst wallabag-b84a80559a1167b5500fbc5eb4965d3b08b371ef.zip |
some parameters, new entry form, etc.
Diffstat (limited to 'app/config')
-rw-r--r-- | app/config/config.yml | 3 | ||||
-rw-r--r-- | app/config/parameters.yml.dist | 22 | ||||
-rw-r--r-- | app/config/routing.yml | 4 |
3 files changed, 28 insertions, 1 deletions
diff --git a/app/config/config.yml b/app/config/config.yml index c6bed797..455345f4 100644 --- a/app/config/config.yml +++ b/app/config/config.yml | |||
@@ -44,6 +44,9 @@ twig: | |||
44 | export_epub: %export_epub% | 44 | export_epub: %export_epub% |
45 | export_mobi: %export_mobi% | 45 | export_mobi: %export_mobi% |
46 | export_pdf: %export_pdf% | 46 | export_pdf: %export_pdf% |
47 | version: %app.version% | ||
48 | paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" | ||
49 | flattr_url: "https://flattr.com/thing/1265480" | ||
47 | 50 | ||
48 | # Assetic Configuration | 51 | # Assetic Configuration |
49 | assetic: | 52 | assetic: |
diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index 5ccac492..36e3fe7f 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist | |||
@@ -19,4 +19,24 @@ parameters: | |||
19 | # A secret key that's used to generate certain security-related tokens | 19 | # A secret key that's used to generate certain security-related tokens |
20 | secret: ThisTokenIsNotSoSecretChangeIt | 20 | secret: ThisTokenIsNotSoSecretChangeIt |
21 | 21 | ||
22 | download_pictures: false # if true, pictures will be stored into data/assets for each article \ No newline at end of file | 22 | # wallabag misc |
23 | app.version: 2.0.0-alpha | ||
24 | |||
25 | download_pictures: false # if true, pictures will be stored into data/assets for each article | ||
26 | |||
27 | # Entry view | ||
28 | share_twitter: true | ||
29 | share_mail: true | ||
30 | share_shaarli: true | ||
31 | shaarli_url: http://myshaarli.com | ||
32 | share_diaspora: true | ||
33 | diaspora_url: http://diasporapod.com | ||
34 | flattr: true | ||
35 | carrot: true | ||
36 | show_printlink: true | ||
37 | export_epub: true | ||
38 | export_mobi: true | ||
39 | export_pdf: true | ||
40 | |||
41 | # List view | ||
42 | items_on_page: 12 \ No newline at end of file | ||
diff --git a/app/config/routing.yml b/app/config/routing.yml index a748d532..d0ece8e3 100644 --- a/app/config/routing.yml +++ b/app/config/routing.yml | |||
@@ -1,3 +1,7 @@ | |||
1 | app: | 1 | app: |
2 | resource: @WallabagBundle/Controller/ | 2 | resource: @WallabagBundle/Controller/ |
3 | type: annotation | 3 | type: annotation |
4 | |||
5 | homepage: | ||
6 | pattern: / | ||
7 | defaults: { _controller: WallabagBundle:Entry:showUnread } \ No newline at end of file | ||