bookieio / Bookie

Python based delicious.com replacement
GNU Affero General Public License v3.0
633 stars 138 forks source link

how to hide pyramid debugtoolbar #499

Closed xavierle closed 10 years ago

xavierle commented 10 years ago

if i have a small experience in python i am definitively new to pyramid framework

actually in all the bookie pages there is a button that to opens the pyramid debug toolbar

this seems to be a very useful tool for debugging but i would like to hide it to normal users because it really gives too much information to the public

how shall i do that ?

is this related to the pramid debugtoolbar ?

or to the bookie application ?

mitechie commented 10 years ago

To disable it remove the debug toolbar middleware in the bookie.ini file. You can see it in the sample.ini here

https://github.com/bookieio/Bookie/blob/develop/sample.ini#L9

xavierle commented 10 years ago

ok thank you for the tip

maybe to be included in the readthedocs page