Divide ?
========

Divide is a special browser that can display many pages at the same 
time, splitting screen horizontally or vertically. It was created for 
needs of Smartjog's IT NOC.

Features:
=========

 - Use webkit to display pages
 - Can split horizontally or vertically
 - Automatic reload of pages (delay settable by page)
 - Horizontal or vertical auto-scrolling (with time and move 
   configuration)
 - Height and width of each screen-part can be configured
 - Fullscreen mode
 - Can display a title on screen
 - JSON configuration
 - Released in WTFGL license

How to use:
===========

Install it with easy_install or uncompress and execute 
``python2.6 setup.py install``. You need python2.6, pygtk, and
python-webkit.

Create a configuration file in json format, you can inspire of this 
example:

::

	{
		"title": "Title",
		"view": {
			"split": "horizontally",
			"sub": [
					{
						"type": "page", 
						"url": "http://google.fr", 
						"auto_refresh": 5, 
						"auto_scroll": {
							"y": {
								"increment": 10,
								"milli": 250
							}
						}
					},
					{
						"type": "view", 
						"heigh": 200,
						"sub": {
							{
								"type": "page", 
								"url": "http://google.fr", 
							},
							{
								"type": "page", 
								"url": "http://google.fr", 
							}
						}
					},
			]
		}
	}

Run it with command ``divide config.json``!
