*addon - script.web.viewer
*version - 0.7.3
*url - https://webviewer-xbmc.googlecode.com/svn/trunk/script.web.viewer/
*revision - r23
*branch - master
*xbmc version - dharma


This is a basically a simple text web browser. It also provides module 
access because one of the main reasons I wrote this was to provide 
application authorization (ie facebook, etc) within XBMC without 
violating any 'Terms of Use' and also provide the ability to show web 
pages directly from an addon.

Assuming this gets added to the repo as is :) the basic usage is:

from webviewer import webviewer

url, html = webviewer.getWebResult(url,autoForms=[],dialog=False)

This returns the url and html of the page when the browser was closed.

The autoforms parameter is for auto selecting forms and is a list of 
dicts as follows:

{ 'name': 'exact name of form',
   'action': 'a substring of the form action',
   'index': 'index of the form in the html' }

A match will occur if any of the items in the dict matches.

Setting the dialog parameter to true will cause the browser to open as a 
dialog instead as a normal window.

------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to