Le 15/08/2013 23:32, Maxim Ignatenko a écrit :
On 15 August 2013 18:47, Peter Saint-Andre <[email protected]> wrote:
On 8/15/13 2:26 AM, Jaussoin Timothée wrote:
I have implemented the Bookmarks XEP
(http://xmpp.org/extensions/xep-0048.html) in Movim (http://movim.eu/)
to store the conferences, URL and subscribed Pubsub feeds of the user.
Maybe it can be a great idea to add a "category" tag with some "default"
categories like news, blog, nsfw... With this kind of feature I'll be
able to tag more precisely the Pubsub items and maybe add special
behaviours one some of them (like hide by default the content of the
nsfw items or display in priority the news items).
In general, tagging is a good thing. :-)
Do you propose that we add a 'tag' attribute to both the <url/> element
and the <conference/> element? Would it contain a space-separated list
of tags?
Adding repeatable '<tag/>' subelement looks like much better idea to
me and will avoid limitations of having a separator.
So, anything new on this feature ? I really need something like this in
my project to manage easily the differents contents bookmarked.
I'm also using the Bookmark XEP to store the user subcribed Pubsub feeds
this way :
<storage xmlns="storage:bookmarks">
<url url="http://movim.eu/" name="Movim"/>
<subscription xmlns="urn:xmpp:pubsub:subscription:0" subid=""
node="JournalDuGeek" server="pubsub.movim.eu">
<title/>
</subscription>
<subscription xmlns="urn:xmpp:pubsub:subscription:0" subid=""
node="Reddit_RageComics" server="pubsub.movim.eu">
<title/>
</subscription>
<subscription xmlns="urn:xmpp:pubsub:subscription:0" subid=""
node="YIFY_Torrents" server="pubsub.movim.eu">
<title/>
</subscription>
</storage>
Any comments ? :)