forked from souzaonofre/ovirt-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
218 changed files
with
6,738 additions
and
2,312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,5 @@ missing | |
stamp-h1 | ||
ovirt-server*.gz | ||
ovirt-server.spec | ||
schema.rb | ||
log/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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....] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ EXTRA_DIST = \ | |
ovirt-server.spec.in \ | ||
scripts \ | ||
conf \ | ||
anyterm \ | ||
src \ | ||
installer | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.