aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-23 14:58:17 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-23 14:58:17 +0100
commitb84a80559a1167b5500fbc5eb4965d3b08b371ef (patch)
treef7d0e9917f650b6317b986c9e8baf38880a4fb2e /app/config
parent163eae0bb15d0daa5390f434a42a8176eca186e7 (diff)
downloadwallabag-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.yml3
-rw-r--r--app/config/parameters.yml.dist22
-rw-r--r--app/config/routing.yml4
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
49assetic: 52assetic:
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 @@
1app: 1app:
2 resource: @WallabagBundle/Controller/ 2 resource: @WallabagBundle/Controller/
3 type: annotation 3 type: annotation
4
5homepage:
6 pattern: /
7 defaults: { _controller: WallabagBundle:Entry:showUnread } \ No newline at end of file