Difference between revisions of "LLQtWebKit"

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
== Introduction ==
== Introduction ==
LLQtWebKit is a static library that renders Web content into a memory buffer using code from a patched version of the Qt/WebKit project. It is currently used by the most recent version of the [https://wiki.secondlife.com/wiki/Media_Rendering_Plugin_Framework Media Plugin API] to render Web content in Second Life.
LLQtWebKit is a static library that renders Web content into a memory buffer using code from a modified version of the [http://qt.nokia.com/ Qt application and UI framework]. It is currently used by the most recent version of the [https://wiki.secondlife.com/wiki/Media_Rendering_Plugin_Framework Media Plugin API] to render Web content in the Second Life viewer.
 
== License ==
LLQtWebKit is released under the [http://www.gnu.org/licenses/gpl-2.0.html GPL V2] license.  


== Browse the code ==
== Browse the code ==
Line 16: Line 19:


== Test applications ==
== Test applications ==
As well as the source code and patch files required to build the library there are a number of test applications included in the package that are useful for testing. You can browse the code [http://hg.secondlife.com/llqtwebkit/src/tip/tests/ here]. Details of how to build them are included in the build instructions above.
As well as the source code and other files required to build LLQtWebKit, there are a number of applications included in the package that are useful for testing. You can browse the code [http://hg.secondlife.com/llqtwebkit/src/tip/tests/ here]. Details of how to build them are included in the platform specific build instructions above.


* '''qttestapp''' - A simple Qt based application that implements a simple Web browser using LLQtWebKit
* '''qttestapp''' - A simple Qt based, cross platform application that implements a simple Web browser
* '''testgl''' - A simple GLUT based application that renders a single Web page using OpenGL
* '''win32gl''' - A simple Win32 specific application that implements a simple Web browser
* '''ubrowser''' - A more complex application GLUT/GLUI based application that renders multiple Web pages on the surface of 3D geometry
* '''testgl''' - A simple GLUT based, cross platform application that implements a simple Web browser
* '''ubrowser''' - A more complex application GLUT/GLUI based, cross platform application that renders multiple Web pages on the surface of 3D geometry


== Version numbers ==
== Version numbers ==
* The version of Qt/WebKit used is: 4.5.2
* The version of Qt/WebKit used is: <code>4.6.0</code>
* The version of LLQtWebKit is 2.1
* The version of LLQtWebKit is <code>2.2</code>
* The user agent string reported by LLQtWebKit is "<code>Mozilla/5.0 (Windows;U; Windows NT 5.1; en-US) AppleWebKit/527+ (KHTML, like Gecko, Safari/419.3)</code>"
* The user agent string reported by LLQtWebKit can be modified using the API but is of the form: "<code>Mozilla/5.0 (Windows;U; Windows NT 5.1; en-US) AppleWebKit/532.4+ (KHTML, like Gecko, Safari/532.4)</code>"


== Previous Incarnations ==
== Previous Incarnations ==

Revision as of 15:44, 12 March 2010

Introduction

LLQtWebKit is a static library that renders Web content into a memory buffer using code from a modified version of the Qt application and UI framework. It is currently used by the most recent version of the Media Plugin API to render Web content in the Second Life viewer.

License

LLQtWebKit is released under the GPL V2 license.

Browse the code

The code for LLQtWebKit is stored in a Mercurial code repository. You can browse the code here using a Web browser.

Build instructions

Windows

The Windows version of the build instructions can be found here.

Mac OSX

The Mac OSX version of the build instructions can be found here.

Linux

The Linux version of the build instructions (in the form of a README file) can be found here.

Test applications

As well as the source code and other files required to build LLQtWebKit, there are a number of applications included in the package that are useful for testing. You can browse the code here. Details of how to build them are included in the platform specific build instructions above.

  • qttestapp - A simple Qt based, cross platform application that implements a simple Web browser
  • win32gl - A simple Win32 specific application that implements a simple Web browser
  • testgl - A simple GLUT based, cross platform application that implements a simple Web browser
  • ubrowser - A more complex application GLUT/GLUI based, cross platform application that renders multiple Web pages on the surface of 3D geometry

Version numbers

  • The version of Qt/WebKit used is: 4.6.0
  • The version of LLQtWebKit is 2.2
  • The user agent string reported by LLQtWebKit can be modified using the API but is of the form: "Mozilla/5.0 (Windows;U; Windows NT 5.1; en-US) AppleWebKit/532.4+ (KHTML, like Gecko, Safari/532.4)"

Previous Incarnations

  • LLMozLib2 - the initial version of a Web content rendering library for Second Life that used the Mozilla/Gecko rendering engine. This is now deprecated.
  • Qt WebKit - a poorly named version of the Web content rendering engine for Second Life that uses Qt/WebKit to render but retained the same method/class names from LLMozLib2. This is now deprecated.