Skip to content

library to make headless server side website rendering and filtering using webkit and jquery and getting the results back with persistent links for the "mashups"

Notifications You must be signed in to change notification settings

sbruno/webless

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webless needs tubes to work ( http://github.com/marianoguerra/tubes )
it is included as a git submodule in /tubes

a simple example:

* get webless from github
* cd webless
* in the webless directory, get the tubes submodule:
   (git submodule init; git submodule update)
* you will need the bindings for webkit in gtk to make this work
   (aptitude install python-webkit on ubuntu)
* python server.py
* firefox http://0.0.0.0:8000
* put www.google.com/search?q=sublime on the url field
* put the following on the code field:

var page = $("html");
page.html($(".l"));
$('.l').wrap('<li></li>');
page.wrapInner('<ul></ul>');

* click on Test (you should get a list of links below)
* click on Send (you should get a link to the script that is stored on the server)


TODO:

* add persistent link storage
* find a real usage for this :P

About

library to make headless server side website rendering and filtering using webkit and jquery and getting the results back with persistent links for the "mashups"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 79.0%
  • Python 21.0%