Commit f2be76e1465dc53e124a06fa89b275b90c28be60

Authored by Gust
1 parent 3a874b69

Remove dpaste dependencies and update docs

Signed-off-by: Gustavo Jaruga <darksshades@gmail.com>
Signed-off-by: Alexandre Barbosa <alexandreab@live.com>
colab/management/initconfig.py
... ... @@ -93,6 +93,8 @@ COLAB_STATICS:
93 93 # Issues: 'gitlab/dashboard/issues'
94 94 # Merge Requests: 'gitlab/merge_requests'
95 95 # dpaste:
  96 +# dependencies:
  97 +# - 'mptt'
96 98 # urls:
97 99 # include: 'dpaste.urls.dpaste'
98 100 # prefix: '^paste/'
... ...
colab/settings.py
... ... @@ -49,7 +49,6 @@ INSTALLED_APPS = (
49 49 'haystack',
50 50 'hitcounter',
51 51 'i18n_model',
52   - 'mptt',
53 52 'taggit',
54 53  
55 54 # Own apps
... ...
docs/source/user.rst
... ... @@ -27,8 +27,15 @@ Plugins
27 27  
28 28 Declares the upstream server url of the proxy. Only declare if the plugin is a proxy.
29 29  
  30 +dependecies
  31 ++++++++++++
  32 +
  33 + A list of the plugin dependecies that will be added to INSTALLED_APPS.
  34 + This doesn't automatically install the python dependecies, only add to django apps.
  35 +
  36 +
30 37 menu
31   -++++++++++++
  38 +++++
32 39  
33 40 .. attribute:: title
34 41  
... ... @@ -44,7 +51,7 @@ menu
44 51 Declares a list of the plugin dependecies.
45 52  
46 53 urls
47   -++++++++++++
  54 +++++
48 55  
49 56 .. attribute:: include
50 57  
... ... @@ -57,18 +64,18 @@ urls
57 64 Declares the namespace for the url.
58 65  
59 66 context_processors
60   -++++++++++++
  67 +++++++++++++++++++
61 68  
62 69 Declares the plugin context processors.
63 70  
64 71 middlewares
65   -++++++++++++
  72 ++++++++++++
66 73  
67 74 Declares the plugin middlewares.
68 75  
69 76  
70 77 Extra Template Folders
71   -++++++++++++
  78 +++++++++++++++++++++++
72 79  
73 80 .. attribute:: COLAB_TEMPLATES
74 81  
... ... @@ -78,7 +85,7 @@ Extra Template Folders
78 85  
79 86  
80 87 Extra Static Folders
81   -++++++++++++
  88 +++++++++++++++++++++
82 89  
83 90 .. attribute:: COLAB_STATIC
84 91  
... ...