Showing personal tools?

4 messages Options
Embed this post
Permalink
sensei_sen () Showing personal tools?
Reply Threaded More More options
Print post
Permalink
Excuse me if this is the wrong place, I am dubious between this  
mailing list and the UI one. Sorry!

I am modifying a product, the heddex.tranquillity theme, trying to  
make the personal tool appear. I am a complete newbie, but I succeeded  
in modifying footers and other parts using TAL via the ZMI, but this  
is really beyond my (little!) knowledge. I have read how to hide  
personal tools, but I didn't find how to show it, if hidden somehow...  
I am surely missing something, I know!

This is the personaltool.pt file in /Plone/portal_view_customizations/
zope.interface.interface-personaltools.pt, but I don't know how to  
really read it. (it is unmodified, I didn't touch it, as you can see)

Can anyone point me in the right direction? Any help is greatly  
appreciated!

Cheers!


<dl class="portlet" id="portlet-personaltools" i18n:domain="plone">

     <dt class="portletHeader">
         <span class="portletTopLeft"><!-- --></span>
         <span class="tile"
               i18n:translate="heading_personal_tools">Personal tools</
span>
         <span class="portletTopRight"><!-- --></span>
     </dt>

     <dd class="portletItem even">
        <a id="user-name"
           tal:attributes="href view/homelink_url"
           ><span class="visualCaseSensitive"
                  tal:content="view/user_name">
                 John
            </span
        ></a>
     </dd>

     <tal:actions tal:repeat="action view/user_actions">
     <dd class="portletItem"
         tal:define="oddrow repeat/action/odd"
         tal:attributes="class python:oddrow and 'portletItem even' or  
'portletItem odd'">
         <div tal:define="icon python:view.getIconFor(action
['category'], action['id'], None);
                          class_name string:visualIcon actionicon-$
{action/category}-${action/id};
                          class_name python:icon is not None and  
class_name or nothing;"
             tal:attributes="class class_name">
             <a href=""
                tal:attributes="href action/url;
                                class python:icon is not None and  
'visualIconPadding' or nothing;"
             ><tal:actionname i18n:translate=""
                              tal:content="action/title">dummy</
tal:actionname
             ></a>
         </div>
     </dd>
     </tal:actions>

     <dt class="portletFooter">
         <span class="portletBottomLeft"><!-- --></span>
         <span class="portletBottomRight"><!-- --></span>
     </dt>
</dl>




_______________________________________________
Product-Developers mailing list
[hidden email]
http://lists.plone.org/mailman/listinfo/product-developers
David Bain-5 () Re: Showing personal tools?
Reply Threaded More More options
Print post
Permalink
It may be that the theme "hides" the personal tool bar.
Try going to {yoursite}/manage-viewlets

See if personal tools is hidden. If this is the case, just click "show".

On Wed, Sep 16, 2009 at 11:46 AM, Sensei <[hidden email]> wrote:

> Excuse me if this is the wrong place, I am dubious between this mailing list
> and the UI one. Sorry!
>
> I am modifying a product, the heddex.tranquillity theme, trying to make the
> personal tool appear. I am a complete newbie, but I succeeded in modifying
> footers and other parts using TAL via the ZMI, but this is really beyond my
> (little!) knowledge. I have read how to hide personal tools, but I didn't
> find how to show it, if hidden somehow... I am surely missing something, I
> know!
>
> This is the personaltool.pt file in
> /Plone/portal_view_customizations/zope.interface.interface-personaltools.pt,
> but I don't know how to really read it. (it is unmodified, I didn't touch
> it, as you can see)
>
> Can anyone point me in the right direction? Any help is greatly appreciated!
>
> Cheers!
>
>
> <dl class="portlet" id="portlet-personaltools" i18n:domain="plone">
>
>    <dt class="portletHeader">
>        <span class="portletTopLeft"><!-- --></span>
>        <span class="tile"
>              i18n:translate="heading_personal_tools">Personal tools</span>
>        <span class="portletTopRight"><!-- --></span>
>    </dt>
>
>    <dd class="portletItem even">
>       <a id="user-name"
>          tal:attributes="href view/homelink_url"
>          ><span class="visualCaseSensitive"
>                 tal:content="view/user_name">
>                John
>           </span
>       ></a>
>    </dd>
>
>    <tal:actions tal:repeat="action view/user_actions">
>    <dd class="portletItem"
>        tal:define="oddrow repeat/action/odd"
>        tal:attributes="class python:oddrow and 'portletItem even' or
> 'portletItem odd'">
>        <div tal:define="icon python:view.getIconFor(action['category'],
> action['id'], None);
>                         class_name string:visualIcon
> actionicon-${action/category}-${action/id};
>                         class_name python:icon is not None and class_name or
> nothing;"
>            tal:attributes="class class_name">
>            <a href=""
>               tal:attributes="href action/url;
>                               class python:icon is not None and
> 'visualIconPadding' or nothing;"
>            ><tal:actionname i18n:translate=""
>                             tal:content="action/title">dummy</tal:actionname
>            ></a>
>        </div>
>    </dd>
>    </tal:actions>
>
>    <dt class="portletFooter">
>        <span class="portletBottomLeft"><!-- --></span>
>        <span class="portletBottomRight"><!-- --></span>
>    </dt>
> </dl>
>
>
>
>
> _______________________________________________
> Product-Developers mailing list
> [hidden email]
> http://lists.plone.org/mailman/listinfo/product-developers
>



--
SplashStart - Professional Websites. Starting Now.
http://www.splashstart.com

_______________________________________________
Product-Developers mailing list
[hidden email]
http://lists.plone.org/mailman/listinfo/product-developers
sensei_sen () Re: Showing personal tools?
Reply Threaded More More options
Print post
Permalink

On Sep 16, 2009, at 6:49 PM, David Bain wrote:

> It may be that the theme "hides" the personal tool bar.
> Try going to {yoursite}/manage-viewlets
>
> See if personal tools is hidden. If this is the case, just click  
> "show".

Thanks David! That did the trick!

Thank you!

_______________________________________________
Product-Developers mailing list
[hidden email]
http://lists.plone.org/mailman/listinfo/product-developers
David Bain-5 () Re: Showing personal tools?
Reply Threaded More More options
Print post
Permalink
Great!

On Wed, Sep 16, 2009 at 12:04 PM, Sensei <[hidden email]> wrote:

>
> On Sep 16, 2009, at 6:49 PM, David Bain wrote:
>
>> It may be that the theme "hides" the personal tool bar.
>> Try going to {yoursite}/manage-viewlets
>>
>> See if personal tools is hidden. If this is the case, just click "show".
>
> Thanks David! That did the trick!
>
> Thank you!
>



--
SplashStart - Professional Websites. Starting Now.
http://www.splashstart.com

_______________________________________________
Product-Developers mailing list
[hidden email]
http://lists.plone.org/mailman/listinfo/product-developers