Skip to content

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
  • Loading branch information
sseago committed Aug 11, 2009
2 parents 9bb13f8 + 0502946 commit 640ce19
Show file tree
Hide file tree
Showing 218 changed files with 6,738 additions and 2,312 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ missing
stamp-h1
ovirt-server*.gz
ovirt-server.spec
schema.rb
log/
17 changes: 17 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
ovirt-server Authors
====================

The primary maintainers and people with commit access rights:

Scott Seago <[email protected]>
Hugh Brock <[email protected]>
Steve Linabery <[email protected]>
Jay Guiditta <[email protected]>
Mohammed Morsi <[email protected]>
Ian Main <[email protected]>
Chris Lalancette <[email protected]>
Darryl Pierce <[email protected]>
Arjun Roy <[email protected]>
David Lutterkort <[email protected]>

[....send patches to get your name here....]
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ EXTRA_DIST = \
ovirt-server.spec.in \
scripts \
conf \
anyterm \
src \
installer

Expand Down
10 changes: 10 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
The oVirt Server is an open cross-platform virtualization management
system. It provides a web-based management interface that enables
users to manage hosts and storage, install and remove virtual machines
and level resources across a large group of machines. The oVirt Server
manages hosts running the oVirt Node Image. oVirt Server Suite scales
from a small group of users with little need for access control and
quota management, all the way up to hundreds of hosts with robust
control over grouping, permissions, and quotas.

For further docs see: http://ovirt.org
131 changes: 131 additions & 0 deletions anyterm/anyterm.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
/* browser/anyterm.css
This file is part of Anyterm; see http://anyterm.org/
(C) 2005-2008 Philip Endecott
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* These are the background colours: */
.a { background-color: #000000; } /* black */
.b { background-color: #cd0000; } /* red */
.c { background-color: #00cd00; } /* green */
.d { background-color: #cdcd00; } /* yellow */
.e { background-color: #0000cd; } /* blue */
.f { background-color: #cd00cd; } /* magenta */
.g { background-color: #00cdcd; } /* cyan */
.h { background-color: #e5e5e5; } /* white */

/* These are the foreground colours used when bold mode is NOT enabled.
They're the same as the background colours. */
.i { color: #000000; } /* black */
.j { color: #cd0000; } /* red */
.k { color: #00cd00; } /* green */
.l { color: #cdcd00; } /* yellow */
.m { color: #0000cd; } /* blue */
.n { color: #cd00cd; } /* magenta */
.o { color: #00cdcd; } /* cyan */
.p { color: #e5e5e5; } /* white */

/* These are the brighter foreground colours used when bold mode IS enabled.
The business with !important and .p .z is because the .p default is set
on the enclosing term element; I can't see a better way to get the desired
behaviour. */
.z.i { color: #4d4d4d !important; } /* black */
.z.j { color: #ff0000 !important; } /* red */
.z.k { color: #00ff00 !important; } /* green */
.z.l { color: #ffff00 !important; } /* yellow */
.z.m { color: #0000ff !important; } /* blue */
.z.n { color: #ff00ff !important; } /* magenta */
.z.o { color: #00ffff !important; } /* cyan */
.z.p, .p .z { color: #ffffff; } /* white */

/* If you want a black-on-white colour scheme like xterm, rather than the
default white-on-black, you need to change the lines for black and white
above to something like the following:
.a { background-color: #ffffff; }
.h { background-color: #000000; }
.i { color: #e5e5e5; }
.p { color: #000000; }
.z.i { color: #ffffff !important; }
.z.p, .p .z { color: #000000; }
*/

/* If the following rule is enabled, bold mode will actually use a bold font.
This is not a good idea in general as the bold font will probably be wider
than the normal font, messing up the layout, at least for some subset of
the character set. So it's commented out; bold characters will be
distinguished only by their brighter colours (above) */
/* .z { font-weight: bold; } */

/* The cursor. You can make it blink if you really want to (on some browsers). */
.cursor {
border: 1px solid red;
margin: -1px;
/*text-decoration: blink;*/
}


/* Properties for the page outside the terminal: */

body {
background-color: white;
/* Don't like the white background? How about this:
background-color: #222222;
*/
}

noscript {
/* This is for the message that users see if they don't have Javascript
enabled. We want it to be visible whatever the page background colour
(above) is set to, so we give it its own background colour. */
color: black;
background-color: white;
}


/* The remaining definitions determine the appearance of the frame around the
terminal, its title bar, and buttons: */

.termframe {
float: left;
background-color: rgb(63,63,161);
padding: 0.4ex;
}

.termframe p {
margin: 0;
color: white;
font-weight: bold;
font-family: sans-serif;
}

.termframe a {
cursor: pointer;
}

img.button {
margin: 0 3px;
cursor: pointer;
vertical-align: top;
}

.term {
margin: 0.4ex 0 0 0;
padding: 1px;

overflow: auto;
overflow-x: visible;
}
72 changes: 72 additions & 0 deletions anyterm/anyterm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<!--
browser/anyterm.html
This file is part of Anyterm; see http://anyterm.org/
(C) 2005-2007 Philip Endecott
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-->

<html>
<head>
<title>Anyterm</title>

<script type="text/javascript" src="anyterm.js">
</script>

<script type="text/javascript">
var rows = get_url_param("rows");
var columns = get_url_param("columns");
var general_param = get_url_param("param");

if(rows == ""){
rows = 25;
}

if(columns == ""){
columns = 80;
}

// To create the terminal, just call create_term. The paramters are:
// - The id of a <div> element that will become the terminal.
// - The title. %h and %v expand to the hostname and Anyterm version.
// - The number of rows and columns.
// - An optional parameter which is substituted for %p in the command string.
// - An optional character set.
// - An option number of lines of scrollback (default 0).
window.onload=function() {create_term("term","%h (Anyterm%v)",rows,columns,general_param,"",50);};

// When the user closes the terminal, by default they'll see a blank page.
// Generally you'll want to be more friendly than that. If you set the
// variable on_close_goto_url to a URL, they'll be sent to that page after
// closing. You could send them back to your home page, or something.
var on_close_goto_url = "";

</script>

<link rel="stylesheet" type="text/css" href="anyterm.css">

</head>

<body>

<noscript>Javascript is essential for this page. Please use a browser
that supports Javascript.</noscript>

<div id="term"></div>

</body>
</html>
Loading

0 comments on commit 640ce19

Please sign in to comment.