hiroshi / Unofficial-Google-Wave-Notifier

Unofficial Google Wave Notifier for mac

This URL has Read+Write access

hiroshi (author)
Mon Nov 09 06:04:55 -0800 2009
commit  d5ddc7e4d25b9117ab1e8ab8ff2c0dc4ff89b534
tree    8b1ad82139b3a9143ca0afe6723accf5fbaf3ff4
parent  fec89be0ee6d41cf301e23588bd26daab6e1a18b
name age message
file .gitignore Sun Oct 18 01:05:14 -0700 2009 Initial commit [hiroshi]
file CHANGELOG Loading commit data...
file Defaults.plist Tue Oct 20 00:37:16 -0700 2009 advanced preferences: path to ruby [hiroshi]
directory English.lproj/
file Info.plist
file Makefile
file README
file TODO
file google-wave-notifier.rb Sat Nov 07 06:52:53 -0800 2009 Better error messages when login failed (in Col... [hiroshi]
directory google-wave-notifier.xcodeproj/
file google-wave-notifier_Prefix.pch Sun Oct 18 01:05:14 -0700 2009 Initial commit [hiroshi]
file main.m
file version.plist Sun Oct 18 01:05:14 -0700 2009 Initial commit [hiroshi]
file wave.png Tue Oct 20 07:04:44 -0700 2009 refine image [hiroshi]
README
Unofficial Google Wave Notifier for mac
=======================================

This is a Mac OS X menubar notification application. 
It notifies unread blips (messages) at your account of Google Wave,
like (official) Google Notifier does for GMail and Calender.


Supported environments
----------------------
* Mac OS X Leopard (intel and ppc) # my own platforms, so I test on them.
* Mac OS X Snow Leopard (32bit and 64bit) # I have a report from my friend.


Acknowledgement
---------------
I learned how to get inbox information at wave.google.com from
"Google Wave Add-on for Firefox" by Chad Smith
http://thatsmith.com/2009/10/google-wave-add-on-for-firefox
I thank him.


Notes for feature compatibility against Google Wave
---------------------------------------------------
If they change the interface I use to access Google Wave, this app will fail.


Anatomy (for Developer)
-----------------------
The outer part of the application is written in Objective-C using Cocoa Framework as usual.
However, the inner part which accessing to the Google Wave is written in Ruby.
I call the former "the app" and the later "the script".

The app periodically executes the script as a subprocess, like a following diagram.

1. app --(execute subprocess)--> script --(https request)--> Google Wave
2. app <--(plist via pipe)-- script <--(html including json via https response)-- Google Wave
That' it.

I mean that the core part is written in ruby, so you can use it for windows or other (if ruby itself is not a problem).


License (MIT License)
---------------------
Copyright (c) 2009 Hiroshi Saito

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.