Sphene Community Tools

Community

Copyright © 2007-2008 by Herbert Poul
You are not logged in.
Login
Register

Change Language:



AddThis Social Bookmark Button

A Django site.
Profile for roderikk

Name roderikk
Email Address Reveal this emailaddress
Posts5
  • Image in wiki with thumbnail
    Board >> General >> Feature Discussions
    Hi,

    I am currently implementing the wiki functionality and was wondering whether there is an option to upload an image and display it as a thumbnail which is automatically generated if it doesn't exist yet. It would be nice as well as it shows this thumbnail in a small div/table with the description underneath. Clicking on the image will then show the original.

    I'll add the site to the list when it is working completely.

    BTW, is it also a feature that it doesn't show the attachment list when editing a snip? I think it would be useful to see the attachment list underneath to have easy inserting of tags.
    Another thing that would be nice is that many sites have a block called "sidebar" (next to the "content" block). Maybe in this region when editing we could show a short reminder/tutorial on how to edit the wiki, in this could also be included the attachment list for reference. Then you don't have to flick back and forth between the documentation website. People who don't have a sidebar block in their template don't see it.

    Roderik
  • Re: Hiding email address for non-logged in users
    Board >> General
    SPH_SETTING 'show_only_publicemailaddress'
    Hi, wow, that is exactly what I need. Where is it documented?
  • Re: Hiding email address for non-logged in users
    Board >> General
    Wow, that is great. This is what I love about open source.

    However, and I don't want to sound to be nitpicking, spam-sensitive information such as your ICQ and Jabber address are still visible. Beside that there might be the case that users don't want to show their email address to anybody at all. Maybe it would be an option to say for users whether they want their address to be kept private, and if so, to contact individual users, we would need some sort of Personal Message system. Or at least some sort of 'contact' form where somebody who wants to contact that person can type a message that is then sent to the 'anonymous' person. That person can then choose whether they want to reveal themselves to the sender of the address or not.
  • Re: Hiding email address for non-logged in users
    Board >> General
    Hi,

    Well, I have at the moment just changed the code in templates/community/sphene/profile.html like this:

    Index: sphene/community/templates/sphene/community/profile.html
    ===================================================================
    --- sphene/community/templates/sphene/community/profile.html    (revision 510)
    +++ sphene/community/templates/sphene/community/profile.html    (working copy)
    @@ -9,11 +9,14 @@
           <th>{% trans "Name" %}</th>
           <td>{{ profile_user|sph_fullusername }}</td>
         </tr>
    +{% if user.is_authenticated %}
         <tr>
           <th>{% trans "Email Address" %}</th>
           <td>{{ profile_user|sph_publicemailaddress }}</td>
         </tr>
         {{ additionalprofile }}
    +{% else %}
    +{% endif %}
       </table>
     
       {% for block in profile_blocks %}
    


    Where the else is not really necessary, but I was thinking of putting a message there... like that the user has to login to see more details.
  • Hiding email address for non-logged in users
    Board >> General
    Hello,

    First of all, thanks for this great piece of software.

    I am not sure whether people consider this a bug, but wouldn't it be better if contact details are hidden for non-logged in users in the forum? As they appear when you click on the user name I mean.

    Greetings.


Powered by Sphene Community Tools