-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support PubSub (XMPP) #48
Comments
@sjehuda may i ask - are you running any planets with pluto? |
No. Not yet, but I might. I program in Python, and so I intend to run a "planet" with a Python software and I also intend add this feature to it. |
fyi: the planet pluto machinery is in ruby (NOT python). note - the (pluto planet) sqlite db model is "generic", thus, in practice or in theory you can use python to access it (the sqlite db). |
I am aware of it. This is why I have linked to an XMPP Ruby Library . I ask for this feature to be added to Pluto because it is vital. ATOM/XMPP is definitely better than HTML/HTTP. On another note, I intend to add this feature to:
|
thanks for the update. if i find time i try to learn more about pubsub / xmpp (subscribe). ps: for static site generatation - a basic static site generator with ready-to-use templates is built-in. as alternative you can use any static site generator. many use jekyll - see planet opensuse and others for how to setup with pluto. |
This feature is not directly related to "subscribe"; it is only related to uploading XML data (Atom Syndication Format) to PubSub nodes. The publishing is done by server (e.g. eJabberd, Openfire, Prosody etc.) and subscription is done by client (e.g. Dergchat, Gajim, Kaidan, Psi, Movim etc.) Software which upload data to PubSub nodes:
Results can be tested with Movim: Note: news.movim.eu and blabla.movim.eu function as PubSub services which enclose nodes within them. Each node represents an Atom Syndication Feed. I have updated the scheme in the initial post which shows plant feed as node and the rest of the feeds as nodes too. |
i see. thanks for the update & comments. if i understand this works like publishing with a new template / setup. if yes, have a look at the open suse and friends setup that use their own site generator (jekyll) that formula might work for you too. |
I am not sure what you mean by template. All I send to XMPP PubSub node is Atom Syndication Format compliant XML elements, including HTML enclosed inside XML (this is part of the RFC 4287 standard). Concerning to Jekyll, I have posted a similar ticket at jekyll/jekyll#9583 |
you can generate (export) your feed items (with or without templates) as you like. for an example again see planet open suse (in action) here -> https://github.com/opensuse/planet-o-o |
yes please, write a plugin. nothing here (planned). it's all up-to-you. all the best. |
Alright. I might want to use these projects to accomplish this task: |
Greetings!
In XMPP, using PubSub(1) (XEP-0060), it is possible to store posts as Atom Syndication(2) entries into XMPP(3).
There are several XMPP extensions that apply it, namely XEP-0227 (4) and XEP-0472 (5) which make node
urn:xmpp:microblog:0
as a common choice to manage news for client accounts (e.g.blog@planetplanet.org
), yet a component account (e.g.pubsub.planetplanet.org
) may use all of its nodes for this purpose.A Ruby library that might be utilized would be XMPP4R.
I have made a script that realizes viewing PubSub node items as Atom XML feeds over HTTP.
XEP-0060: Publish-Subscribe
RFC 4287: The Atom Syndication Format
Atom Over XMPP
XEP-0277: Microblogging over XMPP
XEP-0472: Pubsub Social Feed
XMPP4R
PubSub Over HTTP
The text was updated successfully, but these errors were encountered: