summaryrefslogtreecommitdiff
path: root/installer/pages/notes.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'installer/pages/notes.tmpl')
-rw-r--r--installer/pages/notes.tmpl113
1 files changed, 0 insertions, 113 deletions
diff --git a/installer/pages/notes.tmpl b/installer/pages/notes.tmpl
deleted file mode 100644
index 4b86828e3..000000000
--- a/installer/pages/notes.tmpl
+++ /dev/null
@@ -1,113 +0,0 @@
-<!--
-/*
- (c) Copyright 2001-2007 Hewlett-Packard Development Company, L.P.
-
- 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
- (at your option) 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
-
- Author: Pete Parks
-*/
--->
-<html>
-<HEAD>
- <META http-equiv="content-type" content="text/html; charset=utf-8">
- <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE" />
-
- <link rel="stylesheet" type="text/css" href="styles/hplip.css" />
- <script type="text/javascript" src="scripts/hplip.js"></script>
- <script type="text/javascript" src="scripts/misc_code.js"></script>
- <script type="text/javascript">
- <!--
- var divText = '$notes';
- var divID = 'notes_field';
-
- function todoOnLoad() {
- getContentText(divText, divID);
- };
-
- if(document.addEventListener){
- document.addEventListener("keyup", captureKey,false);
- }else{
- document.attachEvent("onkeyup", captureKey);
- }
-
- function captureKey(events){
- if("undefined" != (typeof window.event)){
- events = window.event;
- }
- if("keyup" == events.type){
- checkKey(events.keyCode);
- }
- }
-
- function checkKey(keyID)
- {
- switch(keyID)
- {
- case 13:
- indexClickActions( "next_button", "notes_controller");
- break;
- }
- }
- -->
- </script>
-<TITLE>$installer_title</TITLE>
-</HEAD>
-<BODY onload="todoOnLoad();">
- <!-- Header Div -->
-<div id="header_box" class="background_box">
- <div class='header_title_class'>
- <div id='hp_blue_logo'><img src='images/hplogo.png' alt=''/></div>
- <div id='header_title'>$header_string</div>
- <div id='header_title2'>$header_string</div>
- <div id='header_subtitle'>$sub_header_string</div>
- <div id='header_subtitle2'>$sub_header_string</div>
- <div id='tux_logo'><img src='images/tux.png' alt=''/></div>
- </div>
-</div>
-
-<!-- Body Div -->
-<div class="body_content">
- <div id="message_title">$notes_message_title</div>
- <div id="message_body">
- <div id="notes_field"></div>
- </div>
- <div id="message_footer">
- </div>
-</div>
-
-<!-- Buttons Div -->
-<div class="button_options">
-
- <div id="quit_button" OnSelectStart='return false;' onClick='todoOnQuit("quit");' >
- <img src="../images/button1.png" width="100" height="35">
- <div id="quitHiliteText">$quit_button</div>
- <div id="quitText">$quit_button</div>
- </div>
-
- <div id="previous_button" OnSelectStart='return false;' onClick='indexClickActions( "previous_button", "previous");' >
- <img src="../images/button1.png" width="100" height="35">
- <div id="previousHiliteText">$previous_button</div>
- <div id="previousText">$previous_button</div>
- </div>
-
- <div id="next_button" OnSelectStart='return false;' onClick='indexClickActions( "next_button", "notes_controller");' >
- <img src="../images/button1.png" width="100" height="35">
- <div id="nextHiliteText">$next_button</div>
- <div id="nextText">$next_button</div>
- </div>
-</div>
-
-</BODY>
-</HTML> \ No newline at end of file