I do not have that in line 232 in my base.css. That has been already
remove from trunk some time ago but the change has not yet propagated
in stable. Thanks for confirming that was a problem. It will soon be
in stable.
Massimo
On Dec 9, 4:00 pm, John-Kim Murphy <
left...@gmail.com> wrote:
> *You can see the four buttons by creating any action that doesn't have a
> view explicitly defined for it. So you could add an action to the welcome
> app default.py controller:*
>
> def action_without_a_view():
> return dict(message='Buttons are below...')
>
> Then browse to localhost:8000/welcome/default/action_without_a_view/
>
> *The relevant HTML is in generic.html:*
> <button
> onclick="document.location='{{=URL("admin","default","design",args=request.application)}}'">admin</button>
> <button onclick="jQuery('#request').slideToggle()">request</button>
> <div class="hidden"
> id="request"><h2>request</h2>{{=BEAUTIFY(request)}}</div>
> <button onclick="jQuery('#session').slideToggle()">session</button>
> <div class="hidden"
> id="session"><h2>session</h2>{{=BEAUTIFY(session)}}</div>
> <button onclick="jQuery('#response').slideToggle()">response</button>
> <div class="hidden"
> id="response"><h2>response</h2>{{=BEAUTIFY(response)}}</div>
> <script>jQuery('.hidden').hide();</script>
>
> *I removed the "visibility: hidden;" attribute from line 232 of base.css and
> it fixes the problem. This change does not seem to break anything else...*
>
> John