Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of the Movino web frontend. This set of modules is a part of Movino (http://www.movino.org), an open source project focused on streaming of live video from mobile devices.
| 1 | <html> |
| 2 | <head> |
| 3 | <title>Movino Standalone Example</title> |
| 4 | <style type="text/css" media="all">@import "standalone.css";</style> |
| 5 | </head> |
| 6 | <body> |
| 7 | <?php |
| 8 | |
| 9 | /** |
| 10 | * Use this example when you want to run the Movino web interface without setting up a Drupal site. |
| 11 | */ |
| 12 | |
| 13 | include_once('standalone.inc'); |
| 14 | |
| 15 | $movino = new movinoController(); |
| 16 | |
| 17 | echo '<h1>Movino content</h1>'; |
| 18 | echo $movino->page(); |
| 19 | |
| 20 | |
| 21 | ?> |
| 22 | </body> |
| 23 | </html> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |