Commit 11421f15ede56c32488110d1eb23aaf3815bba4b
1 parent
f50baa5b
Exists in
master
and in
34 other branches
Change init config
Signed-off-by: Gustavo Jaruga <darksshades@gmail.com> Signed-off-by: Carolina Ramalho <carol15022@hotmail.com> Signed-off-by: Alexandre Barbosa <alexandreab@live.com>
Showing
1 changed file
with
48 additions
and
6 deletions
Show diff stats
colab/management/initconfig.py
@@ -70,12 +70,54 @@ ROBOTS_NOINDEX: false | @@ -70,12 +70,54 @@ ROBOTS_NOINDEX: false | ||
70 | # RAVEN_DSN: 'http://public:secret@example.com/1' | 70 | # RAVEN_DSN: 'http://public:secret@example.com/1' |
71 | 71 | ||
72 | ### Colab proxied apps | 72 | ### Colab proxied apps |
73 | -# PROXIED_APPS: | ||
74 | -# gitlab: | ||
75 | -# upstream: 'http://localhost:8090/gitlab/' | ||
76 | -# private_token: '' | ||
77 | -# trac: | ||
78 | -# upstream: 'http://localhost:5000/trac/' | 73 | +# COLAB_APPS: |
74 | +# colab.proxy.gitlab: | ||
75 | +# upstream: 'http://www.fga.unb.br/' | ||
76 | +# menu: | ||
77 | +# title: 'Code' | ||
78 | +# links: | ||
79 | +# { 'Public Projects' : '/gitlab/public/projects' } | ||
80 | +# auth_links: | ||
81 | +# { 'Profile' : 'gitlab/profile', | ||
82 | +# 'New Project' : 'gitlab/projects/new', | ||
83 | +# 'Projects' : 'gitlab/dashboard/projects', | ||
84 | +# 'Groups' : 'gitlab/pprofile/groups', | ||
85 | +# 'Issues' : 'gitlab/dashboard/issues', | ||
86 | +# 'Merge Requests' : 'gitlab/merge_requests' } | ||
87 | +# dpaste: | ||
88 | +# urls: | ||
89 | +# include: 'dpaste.urls.dpaste' | ||
90 | +# prefix: '^paste/' | ||
91 | +# namespace: 'dpaste' | ||
92 | +# templates: | ||
93 | +# templatesdir: '/vagrant/pluginfiles/dpaste/templates' | ||
94 | +# staticdir: '/vagrant/pluginfiles/dpaste/static' | ||
95 | +# menu: | ||
96 | +# title: 'Dpaste' | ||
97 | +# links: | ||
98 | +# { 'Public Projects': '/paste' } | ||
99 | +# auth_links: | ||
100 | +# { 'Profile': '/projects', | ||
101 | +# 'New Project': '/projects/new' } | ||
102 | +# feedzilla: | ||
103 | +# dependencies: ['common'] | ||
104 | +# urls: | ||
105 | +# include: 'feedzilla.urls' | ||
106 | +# prefix: '^planet/' | ||
107 | +# namespace: 'planet' | ||
108 | +# templates: | ||
109 | +# context_processors: ['colab.planet.context_processors.feedzilla'] | ||
110 | +# templatesdir: '/vagrant/pluginfiles/feedzilla/templates' | ||
111 | +# staticdir: '/vagrant/pluginfiles/feedzilla/static' | ||
112 | +# localesdir: '/vagrant/pluginfiles/feedzilla/locales' | ||
113 | +# menu: | ||
114 | +# title: 'Planet' | ||
115 | +# links: | ||
116 | +# { 'Index' : '/planet' } | ||
117 | +# auth_links: | ||
118 | +# {} | ||
119 | + | ||
120 | + | ||
79 | 121 | ||
80 | """ | 122 | """ |
81 | 123 |