To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

root/sandboxes/asandbox/trunk/apps/frontend/config/app.yml @ 1715

Revision 1715, 5.6 KB (checked in by johnnyoffline, 3 years ago)

added use_bundled_stylesheet: true to app.yml to be explicit and make it easier to turn it off it desired

Line 
1# default values
2all:
3  a:
4    # includes a.css into the project
5    use_bundled_stylesheet: true
6   
7    # default button order for P'unk Projects
8    global_button_order:
9      - blog
10      - events
11      - media
12      - users
13      - reorganize
14    # If true, there will be a language switcher next to the login/logout button
15    i18n_switch: true
16    i18n_languages: [en, fr, de, es, ru]
17    # By default new slots in an area go to the top, you can change that here
18    # new_slots_top: false
19    routes_register: false
20    default_on: true
21    pretty_english_dates: true
22
23    # Make sure you specify the candidate and sufficient groups for both managing
24    # (that is, deleting and creating) and editing pages. It's typical to use the same
25    # group of candidates for editors and managers, because you can still assign actual
26    # managing and editing privileges for any individual page and its descendants via the
27    # page settings dialog even if the pool of candidates is all one group
28    manage_candidate_group: editor
29    manage_sufficient_group: admin
30    edit_candidate_group: editor
31    edit_sufficient_group: admin
32    # Permission to view locked pages. In our recommended fixtures,
33    # the guest, editor and admin groups have this. Users that have no
34    # group membership do not. If you want to give people "off the street" accounts,
35    # this is a useful way to avoid giving them access to locked pages until they
36    # are deemed worthy of membership in the guest group. If you comment out
37    # this line, any authenticated user will be able to view locked pages
38    view_locked_sufficient_credentials: view_locked
39   
40    # Sets the level of CMS Pages allowed to be created by the client
41    # (e.g. page_level: 1 means the site can only have pages that are
42    # peers to the homepage peers A.K.A. top navigation pages)
43    # max_page_levels: 3 
44
45    # Maximum number of child pages allowed to be created at any given level
46    # max_children_per_page: 8
47   
48    # Message displayed next to button if client tries to click
49    # max_page_limit_message: Cannot create a child page here.
50   
51    addslot_button_style: big
52    history_button_style: no-label big
53    delete_button_style: no-label
54   
55    slot_types:
56      aBlog: Blog Posts
57      aBlogSingle: Blog Post
58      aEvent: Events
59      aEventSingle: Event
60
61      # The following slot types are always enabled (meaning only that you can include them in
62      # individual templates if you wish, so you still have control over what your end users do):
63      #
64      # aRichText
65      # aText
66      # aImage
67      # aSlideshow
68      # aButton
69      # aVideo
70      # aPDF
71      # aRawHTML
72      #
73      # You can enable additional slot types implemented at the application level or via
74      # plugins by adding their type names here along with a short descriptive label.
75      #
76      # Example:
77      #
78      # baseball: "Baseball Box Score"
79      #
80      # (This assumes you have implemented such a slot type of course.)
81     
82    slot_variants:
83      # This works, but it's confusing if you don't have a clear need for it, so let's not force a demo of it on folks
84      # aBlog:
85      #   normal:
86      #     label: Normal
87      #   imageOnly:
88      #     label: Image Preview
89      #     options:
90      #       force_template: imagePreviewTemplate
91      #       full: true
92      aButton:
93        normal:
94          label: Normal
95        useTitleAsButtonText:
96          label: Text Over
97      aSlideshow:
98        normal:
99          label: Normal
100          options:
101            interval: 0
102            title: false
103            arrows: true
104        compact:
105          label: Compact
106          options:
107            interval: 0
108            title: true
109            arrows: true
110            itemTemplate: slideshowItemCompact
111        autoplay:
112          label: Auto Play
113          options:
114            interval: 4
115            title: true
116            arrows: false         
117            itemTemplate: slideshowItemCompact           
118           
119    home_as_tab: false
120
121    templates:
122      home: Home Page
123      default: Default Page
124    # We're using it as the sitewide layout instead (see view.yml)
125    use_bundled_layout: false   
126    engines:
127      '': 'Template-Based'
128      aBlog: Blog
129      aEvent: Events
130      aMedia: Media
131
132  aAdmin:
133    web_dir: /apostrophePlugin
134
135  aMedia:
136    # If not set, the same site is assumed
137    # client_site: "http://www.mymediasite.com/"
138    # You should change this both here and below
139    client_apikey: 'dummy'
140    apikeys:
141      - 'dummy'
142    apipublic: false
143    admin_credential: media_admin
144    upload_credential: media_upload
145    use_bundled_layout: false
146    embed_codes: true       
147   
148  aToolkit:
149    indexes:
150      - 'aPage'
151      - 'aMediaItem'
152       
153  # options for sfSyncContentPlugin, used to sync the database and also
154  # data files such as the media plugin's images and the search indexes.
155  # You can extend this if you have more data file folders
156 
157  sfSyncContent:
158    # The database is content, of course, but what else?
159    content:
160      # Almost always
161      - "web/uploads"
162      # If you use P'unk Avenue stuff
163      - "data/a_writable"
164       
165  # For us this is the right place to find the netpbm utilities and ghostscript
166  # (pnmtopng, gs, etc). Change it if your environment differs. Note that the
167  # default PATH is still searched too, so on most production servers you can
168  # leave this setting alone and not break it out separately for prod
169     
170  aimageconverter:
171    path: /opt/local/bin
172    # To force use of gd shut off netpbm
173    # netpbm: false
174   
175  # You need to set this to your site's hostname to use a:refresh to update
176  # URLs in media slots etc
177 
178#  cli:
179#    host: cmstest14
180   
Note: See TracBrowser for help on using the browser.