Plugin Information
iPhoneView PluginThis plugin allows you to view the status of your jobs via iPhone or iPod touch. How to use
History0.2 (2010/3/27)
0.1 (2010/03/21)
|
Plugin Information
iPhoneView PluginThis plugin allows you to view the status of your jobs via iPhone or iPod touch. How to use
History0.2 (2010/3/27)
0.1 (2010/03/21)
|
Comments (5)
Apr 08, 2010
Noah Sussman says:
Tip: use Safari's Open In Dashboard feature, to turn this view into a Mac OSX da...Tip: use Safari's Open In Dashboard feature, to turn this view into a Mac OSX dashboard widget. It works surprisingly well!
Apr 13, 2010
Luca Milanesio says:
Nice ! I like it very much I think I will try it out and I will install on my ...Nice ! I like it very much
I think I will try it out and I will install on my Hudson CI instances.
If you want to have a look on a native iPhone/iPad integration, look at http://wiki.hudson-ci.org/display/HUDSON/HudsonMobi%252C+the+iPhone+client+for+Hudson+CI+monitoring
Do you mind if I will add the ability to automatically download your plug-in and "jump" to the iPhone view from Hudson-Mobi ?
I think a seamless integration between the two can be a very good and nice user experience
With Hudson-Mobi you can manage the first part of the security and Hudson-CI registry and credential management: once you have connected to the instance you want, if you need to directly JUMP to the Hudson instance but still with an iPhone experience, they can go to the iPhone view.
What do you think ?
Luca.
Jun 15, 2010
Jonathan Campos says:
How do you delete a view?How do you delete a view?
Jun 15, 2010
Noah Sussman says:
Add delete to the end of the view's URL. Same thing if you want to reconfigure ...Add delete to the end of the view's URL.
Same thing if you want to reconfigure an existing view, just add configure to the end of the view's URL.
Jul 24, 2010
Nicholas J Humfrey says:
I reverse proxy Hudson behind an nginx server. I use the following snippet of co...I reverse proxy Hudson behind an nginx server. I use the following snippet of code to redirect iPhone users directly to the iphone view:
location / { proxy_pass http://127.0.0.1:8080/; proxy_redirect off; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; if ($http_user_agent ~* '(iPhone|iPod)') { rewrite ^/$ /view/iphone/ redirect; } }