You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@roller.apache.org by Henri Yandell <fl...@gmail.com> on 2007/03/09 05:40:33 UTC

Tag questions Was: Couple of proposals for 4.0

On 3/8/07, Elias Torres <el...@torrez.us> wrote:
>
>
> Henri Yandell wrote:
> > On 3/8/07, Elias Torres <el...@torrez.us> wrote:
> >>
> >>
> >> Henri Yandell wrote:
> >> >
> >> > So maybe this is "we should allow multiple categories for a blog
> >> entry"?
> >>
> >> You can use tags. We have feeds based on tags and we support multiple of
> >>  those. I'm also working on search feeds.
> >
> > I've been meaning to ask - are categories automatically tags in your setup?
>
> We disabled categories altogether. Redundant.
>
> >
> > How do people share their tag dictionaries with each other?
>
> We have a tagcloud. But no "tag dictionary" per se.

Apologies for asking this when the latest trunk does have tags - I can
only see my 4.0-dev box at home (and I've not figured out how to make
the frontpage work on trunk there yet).

When I enter tags, I see that it offers me tag-completion. Is that
shared between blogs?

Is there a theme that supports tags yet?

Hen

Re: Another tag question -- site-wide

Posted by Dave <sn...@gmail.com>.
On 6/7/07, George Frink <so...@southernconnections.com> wrote:
> Site-wide tag aggregation was easy to implement, applying existing
> Velocity as documented in the template use guid.
> I may be overlooking the obvious, but making URLs work for the
> resulting tag list has me buffaloed.

I'm not sure what you mean by "making URLs work for the resulting tag list".

If you explain further maybe I could offer a suggestion.

- Dave



> Judging from Dave's ApacheCon presentation, I'm not going to be able
> to cobble it together from Roller 3.1 Velocity and if I want it best
> pen some Java etc ... for that purpose.
> Glad to do what I need to. Just double checking.
> Thanks.
>
> George Frink
> Southern Connections Inc.
> 919 341 2999
> southern@southernconnections.com
>
>
>
> On Mar 12, 2007, at 8:43 AM, Dave wrote:
>
> > On 3/9/07, Henri Yandell <fl...@gmail.com> wrote:
> >> On 3/8/07, Elias Torres <el...@torrez.us> wrote:
> >> Apologies for asking this when the latest trunk does have tags - I
> >> can
> >> only see my 4.0-dev box at home (and I've not figured out how to make
> >> the frontpage work on trunk there yet).
> >
> > BTW, Roller 3.1 will be the first release to support tags.
> >
> >
> >> When I enter tags, I see that it offers me tag-completion. Is that
> >> shared between blogs?
> >
> > I just did a little test and determined that no, tag-completion only
> > considers the tags in your blog.
> >
> >
> >> Is there a theme that supports tags yet?
> >
> > No and we decided to leave out a tags macro too. Here's what I use to
> > display the tags cloud on my blog:
> >
> >          #set($mytags = $model.weblog.getPopularTags(-1, 100))
> >          #foreach ($tag in $mytags)
> >              #if ($tag.count > 4)
> >              <a class="tag s${tag.intensity}" href="$url.tag
> > ($tag.name)"
> >                  title="$tag.count">$tag.name</a>
> >              #end
> >          #end
> >
> > - Dave
> >
>
>

Another tag question -- site-wide

Posted by George Frink <so...@southernconnections.com>.
Site-wide tag aggregation was easy to implement, applying existing  
Velocity as documented in the template use guid.
I may be overlooking the obvious, but making URLs work for the  
resulting tag list has me buffaloed.
Judging from Dave's ApacheCon presentation, I'm not going to be able  
to cobble it together from Roller 3.1 Velocity and if I want it best  
pen some Java etc ... for that purpose.
Glad to do what I need to. Just double checking.
Thanks.

George Frink
Southern Connections Inc.
919 341 2999
southern@southernconnections.com



On Mar 12, 2007, at 8:43 AM, Dave wrote:

> On 3/9/07, Henri Yandell <fl...@gmail.com> wrote:
>> On 3/8/07, Elias Torres <el...@torrez.us> wrote:
>> Apologies for asking this when the latest trunk does have tags - I  
>> can
>> only see my 4.0-dev box at home (and I've not figured out how to make
>> the frontpage work on trunk there yet).
>
> BTW, Roller 3.1 will be the first release to support tags.
>
>
>> When I enter tags, I see that it offers me tag-completion. Is that
>> shared between blogs?
>
> I just did a little test and determined that no, tag-completion only
> considers the tags in your blog.
>
>
>> Is there a theme that supports tags yet?
>
> No and we decided to leave out a tags macro too. Here's what I use to
> display the tags cloud on my blog:
>
>          #set($mytags = $model.weblog.getPopularTags(-1, 100))
>          #foreach ($tag in $mytags)
>              #if ($tag.count > 4)
>              <a class="tag s${tag.intensity}" href="$url.tag 
> ($tag.name)"
>                  title="$tag.count">$tag.name</a>
>              #end
>          #end
>
> - Dave
>


Re: Tag questions Was: Couple of proposals for 4.0

Posted by Dave <sn...@gmail.com>.
On 3/9/07, Henri Yandell <fl...@gmail.com> wrote:
> On 3/8/07, Elias Torres <el...@torrez.us> wrote:
> Apologies for asking this when the latest trunk does have tags - I can
> only see my 4.0-dev box at home (and I've not figured out how to make
> the frontpage work on trunk there yet).

BTW, Roller 3.1 will be the first release to support tags.


> When I enter tags, I see that it offers me tag-completion. Is that
> shared between blogs?

I just did a little test and determined that no, tag-completion only
considers the tags in your blog.


> Is there a theme that supports tags yet?

No and we decided to leave out a tags macro too. Here's what I use to
display the tags cloud on my blog:

          #set($mytags = $model.weblog.getPopularTags(-1, 100))
          #foreach ($tag in $mytags)
              #if ($tag.count > 4)
              <a class="tag s${tag.intensity}" href="$url.tag($tag.name)"
                  title="$tag.count">$tag.name</a>
              #end
          #end

- Dave