diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-26 07:52:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-26 07:52:05 +0000 |
commit | cff8e731529103c63da1c2ef8e3dd0b91686b1c2 (patch) | |
tree | 3574642cbed6bdec1ca93f77d309cf941a6fa909 /templates | |
parent | 3ccf8570aa6c2070e15bcd03fa0fa0351a80fba5 (diff) | |
download | ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.gz ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.bz2 ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.zip |
fixed acls and improved the classic theme a little more
Diffstat (limited to 'templates')
-rw-r--r-- | templates/default.css | 8 | ||||
-rw-r--r-- | templates/show_album_art.inc.php | 5 | ||||
-rw-r--r-- | templates/show_genre.inc.php | 15 | ||||
-rw-r--r-- | templates/show_get_albumart.inc.php | 20 | ||||
-rw-r--r-- | templates/show_rename_artist.inc.php | 36 | ||||
-rw-r--r-- | templates/show_similar_artists.inc | 12 | ||||
-rw-r--r-- | templates/sidebar.inc.php | 15 |
7 files changed, 42 insertions, 69 deletions
diff --git a/templates/default.css b/templates/default.css index 1da59b93..656a3cbf 100644 --- a/templates/default.css +++ b/templates/default.css @@ -250,7 +250,7 @@ div#Header{ * TO DO: Fill in 1px border around menus & submenu items * Make padding apply to the li, not just an a. Moving padding: to li throws off the dropdown menu alignment. */ - + div#sidebar{ clear:both; position:absolute; @@ -287,7 +287,7 @@ div#sidebar{ display: block; border-bottom: 1px solid #8B8B8B; border-left: 1px solid #8B8B8B; - border-right: 1px solid #8B8B8B; + border-right: 4px solid #B4B4B4; border-top: 1px solid #8B8B8B; /* float: left; /* use for horizontal menu; comment out otherwise */ padding: 5px 0px 5px 10px; @@ -295,6 +295,10 @@ div#sidebar{ background-color:#FFFFFF; } +#sidebar ul.subnavside li { + border-right: 1px solid #B4B4B4; +} + #sidebar a, .navbutton { display: block; /*Not sure why this is neccesary, but it is for IE*/ text-decoration: none; diff --git a/templates/show_album_art.inc.php b/templates/show_album_art.inc.php index c950ebdc..a386b353 100644 --- a/templates/show_album_art.inc.php +++ b/templates/show_album_art.inc.php @@ -25,8 +25,8 @@ $total_images = count($images); $rows = floor($total_images/3); $i = 0; ?> - -<table class="text-box"> +<?php show_box_top(); ?> +<table> <tr> <?php while ($i <= $rows) { @@ -53,3 +53,4 @@ while ($i <= $rows) { } // end while ?> </table> +<?php show_box_bottom(); ?> diff --git a/templates/show_genre.inc.php b/templates/show_genre.inc.php index 6f9db26f..5e9466d9 100644 --- a/templates/show_genre.inc.php +++ b/templates/show_genre.inc.php @@ -26,19 +26,14 @@ */ $web_path = conf('web_path'); ?> -<table class="text-box"> -<tr> - <td> - <span class="header1"><?php echo _("Viewing") . " " . $genre->name . " " . _("Genre"); ?></span><br /> +<?php show_box_top(_('Viewing') . " " . $genre->name . " " . _('Genre')); ?> [<?php echo $genre->get_album_count(); ?>] <a href="<?php echo $web_path; ?>/genre.php?action=show_albums&genre_id=<?php echo $genre->id; ?>"> - <?php echo _("Albums"); ?></a><br /> + <?php echo _('Albums'); ?></a><br /> [<?php echo $genre->get_artist_count(); ?>] <a href="<?php echo $web_path; ?>/genre.php?action=show_artists&genre_id=<?php echo $genre->id; ?>"> - <?php echo _("Artists"); ?></a><br /> + <?php echo _('Artists'); ?></a><br /> [<?php echo $genre->get_song_count(); ?>] <a href="<?php echo $web_path; ?>/genre.php?action=show_songs&genre_id=<?php echo $genre->id; ?>"> - <?php echo _("Songs"); ?></a><br /> - </td> -</tr> -</table> + <?php echo _('Songs'); ?></a><br /> +<?php show_box_bottom(); ?> diff --git a/templates/show_get_albumart.inc.php b/templates/show_get_albumart.inc.php index 2de886b3..b847a980 100644 --- a/templates/show_get_albumart.inc.php +++ b/templates/show_get_albumart.inc.php @@ -20,33 +20,30 @@ */ ?> - +<?php show_box_top(_('Customize Search')); ?> <form name="coverart" method="get" action="<?php echo conf('web_path'); ?>/albums.php" style="Displain:inline;"> -<table class="text-box"> +<table> <tr> - <td> - <span class="header1"><?php echo _("Customize Search"); ?></span> - </td> </tr> <tr> <td> - <?php echo _("Artist"); ?> + <?php echo _('Artist'); ?> </td> <td> - <input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo $artistname; ?>" /> + <input type="text" size="20" id="artist_name" name="artist_name" value="<?php echo scrub_out($artistname); ?>" /> </td> </tr> <tr> <td> - <?php echo _("Album"); ?> + <?php echo _('Album'); ?> </td> <td> - <input type="text" size="20" id="album_name" name="album_name" value="<?php echo $albumname; ?>" /> + <input type="text" size="20" id="album_name" name="album_name" value="<?php echo scrub_out($albumname); ?>" /> </td> </tr> <tr> <td> - <?php echo _("Direct URL to Image"); ?> + <?php echo _('Direct URL to Image'); ?> </td> <td> <input type="text" size="40" id="cover" name="cover" value="" /> @@ -56,8 +53,9 @@ <td> <input type="hidden" name="action" value="find_art" /> <input type="hidden" name="album_id" value="<?php echo $album->id; ?>" /> - <input type="submit" value="<?php echo _("Get Art"); ?>" /> + <input type="submit" value="<?php echo _('Get Art'); ?>" /> </td> </tr> </table> </form> +<?php show_box_bottom(); ?> diff --git a/templates/show_rename_artist.inc.php b/templates/show_rename_artist.inc.php index 72f707ff..1d9c1130 100644 --- a/templates/show_rename_artist.inc.php +++ b/templates/show_rename_artist.inc.php @@ -26,31 +26,15 @@ function insert() document.getElementById('artist_name').value = '<?php echo $artist->name; ?>'; } </script> - +<?php show_box_top(_('Rename') . " " . $artist->name); ?> <form name="rename_artist" method="post" action="<?php echo conf('web_path'); ?>/artists.php?action=rename&artist=<?php echo $artist->id; ?>" style="Display:inline;"> -<table class="text-box" cellspacing="0"> -<tr> - <th align="left"> - <span class="header2"><?php echo _("Rename") . " " . $artist->name . " " . _("to"); ?></span> - </th> -</tr> -<tr> - <td> - <?php show_artist_pulldown($artist->id, "artist_id", 4); ?> - <br /> - <?php echo _("OR"); ?><br /> - <input type="text" name="artist_name" size="30" value="<?php echo scrub_out($_REQUEST['artist_name']); ?>" id="artist_name" /> - <a href="javascript:insert()">[<?php echo _("Insert current"); ?>]</a> - <?php $GLOBALS['error']->print_error('artist_name'); ?> - </td> -</tr> -<tr> - <td><input type="checkbox" name="update_id3" value="yes" /> <?php echo _("Update id3 tags"); ?></td> -</tr> -<tr> - <td> - <input type="submit" value="<?php echo _("Rename"); ?>" /> - </td> -</tr> -</table> + <?php show_artist_pulldown($artist->id, "artist_id", 4); ?> + <br /> + <?php echo _('OR'); ?><br /> + <input type="text" name="artist_name" size="30" value="<?php echo scrub_out($_REQUEST['artist_name']); ?>" id="artist_name" /> + <a href="javascript:insert()">[<?php echo _('Insert current'); ?>]</a><br /> + <?php $GLOBALS['error']->print_error('artist_name'); ?> + <input type="checkbox" name="update_id3" value="yes" /> <?php echo _('Update id3 tags') ?><br /> + <input type="submit" value="<?php echo _('Rename'); ?>" /><br /> </form> +<?php show_box_bottom(); ?> diff --git a/templates/show_similar_artists.inc b/templates/show_similar_artists.inc index 25a9f6d2..edc5c0e2 100644 --- a/templates/show_similar_artists.inc +++ b/templates/show_similar_artists.inc @@ -21,9 +21,9 @@ */ $web_path = conf('web_path'); ?> +<?php show_box_top(_('Similar Artists')); ?> <form name="artists" method="post" enctype="multipart/form-data" action="<?php echo $web_path; ?>/artists.php?action=rename_similar&artist=<?php echo $artist_id;?>" style="Display:inline;"> - <h1>Similar Artists</h1> - <h3>Please check the artists you want to merge with the current one (<span style='text-decoration: underline;'><?php echo $artist_name;?></span>)</h3> + <h3><?php _('Please check the artists you want to merge with the current one'); ?> (<span style='text-decoration: underline;'><?php echo $artist_name;?></span>)</h3> <table class="border" cellspacing="0" cellpadding="0" border="0"> <tr class="table-header"> <th> Select</th> @@ -80,12 +80,11 @@ if ($show) { ?> </table> </form> +<?php show_box_bottom(); ?> +<?php show_box_top(_('Advanced Options')); ?> <form name='advanced' action='<?php echo $web_path; ?>/artists.php?action=show_similar&artist=<?php echo $artist_id; ?>' method='POST'> <table class="border" cellspacing="0" cellpadding="0" border="0" style='margin-left: 10px; margin-top: 20px;'> <!--Advanced--> - <tr class="table-header"> - <th colspan='2'>Advanced options</th> - </tr> <tr class="<?php echo flip_class(); ?>"> <th colspan='2' style='text-align: left;'>Normalize options</th> </tr> @@ -149,6 +148,7 @@ if ($show) { </table> </form> +<?php show_box_bottom(); ?> <script language='javascript'> function default_filter() { document.getElementById('n_filter').value = "/[^a-z ]/"; @@ -156,4 +156,4 @@ if ($show) { function default_ignore() { document.getElementById('n_ignore').value = "/\s(the|an?)\s/"; } -</script>
\ No newline at end of file +</script> diff --git a/templates/sidebar.inc.php b/templates/sidebar.inc.php index e11e1b63..d47e2711 100644 --- a/templates/sidebar.inc.php +++ b/templates/sidebar.inc.php @@ -42,23 +42,14 @@ $browse_items[] = array('title'=>_("Lists"),'url'=>'browse.php','active'=>$locat $web_path = conf('web_path'); -/* Setup the Location page mojo for setting - * the active LI here - */ -switch ($location['page']) { - - - - -} // end switch on location page thingy - ?> <ul id="navlist"> + <h3></h3> <li<?php if ($location['page'] == "index.php"){ echo " id=\"activetopmenu\" "; }?>> - <a href="<?php echo $web_path; ?>/index.php"><?php echo _("Home"); ?></a> + <a href="<?php echo $web_path; ?>/index.php"><?php echo _('Home'); ?></a> </li> <?php if ($GLOBALS['user']->has_access(100)) { ?> <li<?php @@ -71,7 +62,7 @@ switch ($location['page']) { $location['page'] == 'admin/access.php' ){ echo " id=\"activetopmenu\" "; }?>> - <a href="<?php echo $web_path; ?>/admin/index.php"><?php echo _("Admin"); ?></a> + <a href="<?php echo $web_path; ?>/admin/index.php"><?php echo _('Admin'); ?></a> <?php if ($GLOBALS['theme']['submenu'] != 'simple') { show_submenu($admin_items); |