From Fedora Project Wiki

(Added the Early versions section)
Line 17: Line 17:
You can check it through gitweb, using this link: <code>http://fedorapeople.org/gitweb?p=megenius/public_git/fns.git;a=summary</code>
You can check it through gitweb, using this link: <code>http://fedorapeople.org/gitweb?p=megenius/public_git/fns.git;a=summary</code>
Or, you can clone it from: <code>git://fedorapeople.org/megenius/fns.git</code>
Or, you can clone it from: <code>git://fedorapeople.org/megenius/fns.git</code>
Please change the <code>last_check</code> file value to an earlier date, so you can get some notifications.
Please change the <code>last_check</code> file value to an earlier date, so you can get some notifications. & don't forget to make it writeable by the world.


==== Todo ====
==== Todo ====

Revision as of 20:46, 20 August 2010

Idea.png
Project Name
Till now there's no official name. However, a redirect page called hermes has been created to preserve a name for the project.

Prologue/Introduction

Given the circunstances of the Update Bug in Fedora 13 (Please refer to: http://lists.fedoraproject.org/pipermail/announce/2010-July/002843.html) A new idea was born: HERMES. This project aims to build a "Notifier App" for Fedora News wich helps the final user to be awared of important announcements about the Fedora World like the Update Bug One, this because we know that active Fedora Members often visit the Fedora Project site and well, they can read about this kind of news, but let's think about the "Normal Users" Those who asked a friend to install Fedora in their computers, those who only use Fedora as a normal software, those who are not involved in the Fedora Proyect Community and because of that never visit the Project's Webpage because they actually don't really care about what's happening there.

This concern gave us the idea to build Hermes, a Fedora News Notification System. If we include this kind of attention/service into our Distribution we're in the way of becoming Fedora something more that a simple group of software created with one propouse, we're becoming fedora an intelligent enviroment powered by it's users and community. Hermes is looking into becoming a Next Generation Feature for Fedora.

The Reason

A large number of Fedora users don't read the Fedora wiki & websites, thus, they miss important news, tips & notifications.

The Concept

A simple application that reads a multilanguage web feed & post a new notification to the system using a D-Bus notifications system.

Prototypes

Early Versions

A git repository have been made to implement all the ideas we gathered in the last days. You can check it through gitweb, using this link: http://fedorapeople.org/gitweb?p=megenius/public_git/fns.git;a=summary Or, you can clone it from: git://fedorapeople.org/megenius/fns.git Please change the last_check file value to an earlier date, so you can get some notifications. & don't forget to make it writeable by the world.

Todo

  • Find a sufficing way to keep the user in touch with those notifications.
  • Add more interaction to the notifications.
  • Deciding when & how the application should start checking for notifications.

Python D-Bus Notifications Example

This is a simple Python application to post a notification to the system D-Bus notifications system:

import dbus
bus = dbus.SessionBus()
notifications = bus.get_object('org.freedesktop.Notifications', '/org/freedesktop/Notifications')
interface = dbus.Interface(notifications, 'org.freedesktop.Notifications')
id = 4856
timeout = 2500
interface.Notify('name',id,'','summary','body','','',timeout)

RSS Feed Python Reader Example

A cool tutorial from http://www.learningpython.com/2006/01/14/rss-reader-part-one/ teach how to create a simple Python application to read any RSS feed (I tweaked the script a bit little).

import urllib2
from xml.dom import minidom, Node
xmldoc = minidom.parse(urllib2.urlopen('https://fedoraproject.org/w/index.php?title=Special:RecentChanges&feed=rss'))
if (xmldoc):
	rootNode = xmldoc.documentElement
	for node in rootNode.childNodes:
		if node.nodeName == "channel":
			rootNode = node
			break
	for node in rootNode.childNodes:
		if (node.nodeName == "item"):
			for item_node in node.childNodes:
				if (item_node.nodeName == "title"):
					title = ""
					for text_node in item_node.childNodes:
						if (text_node.nodeType == node.TEXT_NODE):
							title += text_node.nodeValue
					if (len(title)>0):
						print title
					if (item_node.nodeName == "description"):
					description = ""
					for text_node in item_node.childNodes:
						if (text_node.nodeType == node.TEXT_NODE):
							description += text_node.nodeValue
					if (len(description)>0):
						print description + "\n"
else:
	print "Error getting XML document!"

Benefit to Fedora

More interaction from the users and the community, with this, they keep in touch with Fedora.

How can I Help?

In order to Help the Hermes Project, please Join us in the Conversation at Google Wave:

http://links-box.appspot.com/fedorahermes/wave

Or in case you don't have a Google Wave account, please talk to one of the project team using IRC, on freenode channel #fedora-ambassadors

Who's Helping?

Manuel Escudero

Mahmoud Abdul Jawad