public
Description: Unofficial Google Wave Notifier for mac
Homepage: http://blog.yakitara.com/2009/10/unofficial-google-wave-notifier-for-mac.html
Clone URL: git://github.com/hiroshi/Unofficial-Google-Wave-Notifier.git
name age message
file .gitignore Sat Dec 05 06:08:25 -0800 2009 Added experiments/Makefile [hiroshi]
file CHANGELOG Sat Dec 12 23:52:21 -0800 2009 Bumped up to 0.5 [hiroshi]
file Defaults.plist Sun Dec 06 07:49:59 -0800 2009 preferences: use web proxy settings on System P... [hiroshi]
directory English.lproj/ Sat Dec 12 19:48:50 -0800 2009 Automatically uses system web proxy settings in... [hiroshi]
file Growl Registration Ticket.growlRegDict Fri Nov 27 12:30:55 -0800 2009 Add VERY basic Growl support to Unofficial-Wave... [msroest]
directory Growl.framework/ Sat Dec 05 07:37:57 -0800 2009 Replaced the binary of Growl.framework to avoid... [hiroshi]
file Info.plist Sat Dec 12 23:52:21 -0800 2009 Bumped up to 0.5 [hiroshi]
file Makefile Sat Dec 12 23:52:21 -0800 2009 Bumped up to 0.5 [hiroshi]
file README Sat Dec 12 20:43:38 -0800 2009 Merge branch 'growl' Conflicts: README googl... [hiroshi]
directory Sparkle/ Sat Dec 12 23:52:21 -0800 2009 Bumped up to 0.5 [hiroshi]
file TODO Wed Dec 16 23:58:49 -0800 2009 Update release instruction [hiroshi]
file color.png Thu Nov 26 07:32:14 -0800 2009 color and gray icons [hiroshi]
directory experiments/ Sun Dec 06 07:49:59 -0800 2009 preferences: use web proxy settings on System P... [hiroshi]
file google-wave-notifier.rb Sun Dec 06 07:49:59 -0800 2009 preferences: use web proxy settings on System P... [hiroshi]
directory google-wave-notifier.xcodeproj/ Sat Dec 12 20:43:38 -0800 2009 Merge branch 'growl' Conflicts: README googl... [hiroshi]
file google-wave-notifier_Prefix.pch Sun Oct 18 01:05:14 -0700 2009 Initial commit [hiroshi]
file gray.png Thu Nov 26 07:32:14 -0800 2009 color and gray icons [hiroshi]
file main.m Sat Dec 12 20:43:38 -0800 2009 Merge branch 'growl' Conflicts: README googl... [hiroshi]
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.


Notable Contributors
---------------
* Eugene Gordin - suggested use of Sparkle, an app auto update framework
https://wave.google.com/wave/#restored:wave:googlewave.com!w%252BZQ-P_AMqB

* Jeff Leung - sent met pair of wave icons, blue and dark gray

* w31rd0 - encourage me to implement web proxy support and test it
http://github.com/hiroshi/Unofficial-Google-Wave-Notifier/issues/#issue/10
https://wave.google.com/wave/#restored:wave:googlewave.com!w%252BbedDPRsTA

* Mike Roest - implemented Growl support
http://github.com/hiroshi/Unofficial-Google-Wave-Notifier/issues#issue/6
https://wave.google.com/wave/#restored:wave:googlewave.com!w%252BJZsdijXOA


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).


Note for you, a developer
-------------------------
* To debug proxy settings, you may use http://drikin.com/dolipo/


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.