@@ -185,66 +185,66 @@ def write_page_config(page_config, level='all'):
185
185
class LabConfig (HasTraits ):
186
186
"""The lab application configuration object.
187
187
"""
188
- app_name = Unicode ('' , help = 'The name of the application.' )
188
+ app_name = Unicode ('' , help = 'The name of the application.' ). tag ( config = True )
189
189
190
- app_version = Unicode ('' , help = 'The version of the application.' )
190
+ app_version = Unicode ('' , help = 'The version of the application.' ). tag ( config = True )
191
191
192
- app_namespace = Unicode ('' , help = 'The namespace of the application.' )
192
+ app_namespace = Unicode ('' , help = 'The namespace of the application.' ). tag ( config = True )
193
193
194
- app_url = Unicode ('/lab' , help = 'The url path for the application.' )
194
+ app_url = Unicode ('/lab' , help = 'The url path for the application.' ). tag ( config = True )
195
195
196
- app_settings_dir = Unicode ('' , help = 'The application settings directory.' )
196
+ app_settings_dir = Unicode ('' , help = 'The application settings directory.' ). tag ( config = True )
197
197
198
198
extra_labextensions_path = List (Unicode (),
199
199
help = """Extra paths to look for federated JupyterLab extensions"""
200
- )
200
+ ). tag ( config = True )
201
201
202
- labextensions_path = List (Unicode (), help = 'The standard paths to look in for federated JupyterLab extensions' )
202
+ labextensions_path = List (Unicode (), help = 'The standard paths to look in for federated JupyterLab extensions' ). tag ( config = True )
203
203
204
- templates_dir = Unicode ('' , help = 'The application templates directory.' )
204
+ templates_dir = Unicode ('' , help = 'The application templates directory.' ). tag ( config = True )
205
205
206
206
static_dir = Unicode ('' ,
207
207
help = ('The optional location of local static files. '
208
208
'If given, a static file handler will be '
209
- 'added.' ))
209
+ 'added.' )). tag ( config = True )
210
210
211
211
212
- labextensions_url = Unicode ('' , help = 'The url for federated JupyterLab extensions' )
212
+ labextensions_url = Unicode ('' , help = 'The url for federated JupyterLab extensions' ). tag ( config = True )
213
213
214
- settings_url = Unicode (help = 'The url path of the settings handler.' )
214
+ settings_url = Unicode (help = 'The url path of the settings handler.' ). tag ( config = True )
215
215
216
216
user_settings_dir = Unicode ('' ,
217
217
help = ('The optional location of the user '
218
- 'settings directory.' ))
218
+ 'settings directory.' )). tag ( config = True )
219
219
220
220
schemas_dir = Unicode ('' ,
221
221
help = ('The optional location of the settings '
222
222
'schemas directory. If given, a handler will '
223
- 'be added for settings.' ))
223
+ 'be added for settings.' )). tag ( config = True )
224
224
225
- workspaces_api_url = Unicode (help = 'The url path of the workspaces API.' )
225
+ workspaces_api_url = Unicode (help = 'The url path of the workspaces API.' ). tag ( config = True )
226
226
227
227
workspaces_dir = Unicode ('' ,
228
228
help = ('The optional location of the saved '
229
229
'workspaces directory. If given, a handler '
230
- 'will be added for workspaces.' ))
230
+ 'will be added for workspaces.' )). tag ( config = True )
231
231
232
- listings_url = Unicode (help = 'The listings url.' )
232
+ listings_url = Unicode (help = 'The listings url.' ). tag ( config = True )
233
233
234
- themes_url = Unicode (help = 'The theme url.' )
234
+ themes_url = Unicode (help = 'The theme url.' ). tag ( config = True )
235
235
236
236
themes_dir = Unicode ('' ,
237
237
help = ('The optional location of the themes '
238
238
'directory. If given, a handler will be added '
239
- 'for themes.' ))
239
+ 'for themes.' )). tag ( config = True )
240
240
241
- translations_api_url = Unicode (help = 'The url path of the translations handler.' )
241
+ translations_api_url = Unicode (help = 'The url path of the translations handler.' ). tag ( config = True )
242
242
243
- tree_url = Unicode (help = 'The url path of the tree handler.' )
243
+ tree_url = Unicode (help = 'The url path of the tree handler.' ). tag ( config = True )
244
244
245
245
cache_files = Bool (True ,
246
246
help = ('Whether to cache files on the server. '
247
- 'This should be `True` except in dev mode.' ))
247
+ 'This should be `True` except in dev mode.' )). tag ( config = True )
248
248
249
249
@default ('template_dir' )
250
250
def _default_template_dir (self ):
0 commit comments