Skip to content

Commit

Permalink
Minor setup page tweaks/examples.
Browse files Browse the repository at this point in the history
Put a warning at the top of the setup page to make sure that
users and devs realize this is a work in progress and may be
non-functional in some areas.

Add some working example links showing how we can jump out of
the wizard into an advanced setup page if the wizard page does
not provide all the settings the user needs access to.
  • Loading branch information
cpinkham committed Mar 26, 2011
1 parent 473a4e9 commit d5321ac
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 0 deletions.
15 changes: 15 additions & 0 deletions mythtv/html/css/site.css
Expand Up @@ -59,6 +59,21 @@
height: 36px;
}

#header_warning {
font-size: 24px;
font-family: sans-serif;
font-weight: bold;
color: red;
position: fixed;
top: 0px;
left: 0px;
right: 0px;
height: 38px;
z-index: 98;
text-align: center;
padding: 6px 200px 0 200px;
}

#header_title {
font-size: 24px;
font-family: sans-serif;
Expand Down
5 changes: 5 additions & 0 deletions mythtv/html/setup/index.html
Expand Up @@ -30,8 +30,13 @@
<div id="header_logo">
<a href="/"><img src="/images/mythtv.png" class="png" width="180" height="64" border="0" alt="MythTV"></a>
</div>

<div id='header_warning'>
The Setup screens are a work in progress.
</div>
</div>


<div id="menu-bg">
</div>
<div id="hostname">
Expand Down
3 changes: 3 additions & 0 deletions mythtv/html/setup/wizard-database.html
Expand Up @@ -9,4 +9,7 @@ <h2>Database Setup</h2>
<tr><th align=right>Database Password:</th>
<td><input id='dbPassword' size=20></td></tr>
</table>
<hr>
If the setting you are looking for is not available here, you can go to
the <a href="javascript:loadScreen('/setup/menus/advanced.html', '/Config/Database', '/setup/js/Config.js')">Advanced Database Setup Screen</a>
</div>
3 changes: 3 additions & 0 deletions mythtv/html/setup/wizard-network.qsp
Expand Up @@ -15,4 +15,7 @@
<tr><th align=right>Security PIN:</th>
<td><input id='SecurityPin' type='password' size=10></td></tr>
</table>
<hr>
If the setting you are looking for is not available here, you can go to
the <a href="javascript:loadScreen('/setup/menus/advanced.html', '/Config/General', '/setup/js/Config.js')">Advanced General Setup Screen</a>
</div>

0 comments on commit d5321ac

Please sign in to comment.