Opera Mini as open source software

I am looking for any (related?) Open source project that displays web pages on the server side and delivers images to the client (mobile?). Also like Opera Mini and SkyFire. So far, google is not giving me any clues as I cannot figure out which term to use. Could you guys give me the key?

thanks

+8
html browser opera
source share
3 answers

CutyCapt seems to be what you are looking for. It uses WebKit and saves the displayed pages in different formats. For example: ./CutyCapt --url=http://www.example.org --out=example.png

+2
source share

Opera Mini servers do not process websites for images before sending them to phones, but in OBML .

+1
source share

Well, this question still remains unanswered, and I am also interested in such a solution. Since there is nothing useful on the Internet, I will try to try it. Please understand this answer as a concept rather than a ready-to-use solution.

Imagine a simple workflow without user interaction. A user opens a website, your server loads the website, displays the image and uploads the image to your mobile phone.

In order for your image to increase by 2 days, you will need to update your image during any manipulations with the kernel with javascript. This is complicated because there is no javascript event like "domChanged". So what can you do?

I tried to create a very small javascript and use it with phantomjs

 var page = require('webpage').create(); var i = 0; page.onResourceReceived = function(response) { page.render('stocktwits.' + (i++) + '.png'); }; page.open("http://stocktwits.com/home#people-and-stocks"); 

I assume that the requested resources potentially conflict with dom. But this does not cover any pure javascript setInterval or setTimout function.

Once you get all the “passive” things, you can try to retrieve any hyperlink, form elements, and all elements created with "cursor: pointer;". This is the moment I’m stuck right now ... and since it’s more of a “hobby project”, I’m going to give it up here :-) But let me know if anyone else is further than this.

0
source share

All Articles