The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
5answers
2k views

How do I develop an Ubuntu application in HTML and JS?

I am developing an app and I think HTML and JavaScript are better for the future, but I cannot find any tutorials (I need the app to use the system theme). Are there bindings for Unity, message menu ...
0
votes
0answers
88 views

Unity webapp working on Firefox, but not on Chromium

I just created an webapp integration for Feedly (https://github.com/eudennis/unity-webapps-feedly), but I can't figure why it work in FIrefox, but won't work at Chromium. Any idea?
1
vote
1answer
45 views

Is it possible to store configuration values in a webapp?

I'm currently playing around with the Ubuntu webapps preview. For some cases it may be useful to store some configuration settings. Does anyone know if this is possible?
1
vote
2answers
1k views

Why does my Perl CGI script raise an internal server error on Apache?

I've installed apache2 on Ubuntu 11.04, and localhost is working. I created a simple printenv.pl script and put it in the following directory $ mv printenv.pl /usr/lib/cgi-bin/ $ chmod +rx ...
2
votes
1answer
582 views

What steps do I follow to run a stock Hello World CGI script?

Assume I have finished installing a modern release of stock Ubuntu, and have the following script. #!/bin/sh echo "Content-type: text/html\n" echo "<html><body>Hello ...