MDL-20785 removing all old themes from CVS because the current mix of new and old themes is extremely confusing for theme developers, sorry - if somebody needs the original code please use CVS attick or git; please note themes like customcorners (yes withouth the underscore!) and chameleon might make it back later before the beta phase
@ -1,44 +0,0 @@
|
||||
<h3>
|
||||
Chameleon, the flexible Moodle theme.
|
||||
</h3>
|
||||
<p>
|
||||
Chameleon is a Moodle theme with an option to interactively change your theme within your browser page.
|
||||
You click on an element to change it's style. Please read the
|
||||
<a href="http://docs.moodle.org/en/Chameleon" alt="Chameleon Moodle Docs">Chameleon Moodle Docs explanation</a>
|
||||
for more information about Chameleon's interactive theme work.
|
||||
</p>
|
||||
<p>
|
||||
To enable editing you change "$THEME->chameleonenabled = false;" in the config.php file
|
||||
in your Chameleon theme folder to true. It is recommended to change "$THEME->chameleonenabled = true;"
|
||||
back to false again once you're satisfied with your theme because the editing engine loads several
|
||||
extra files into the browser. Therefore the page loading speed is reduced.
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
Some basic information:
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
If you want to hand code styles you must not write hooks as comma separated lists of elements like
|
||||
<pre>
|
||||
td#middle-column div.bt,
|
||||
div#middle-column div.bt {
|
||||
...
|
||||
}
|
||||
</pre>
|
||||
in Chameleon themes because the Chameleon engine can't handle these comma lists.
|
||||
Please write two separate statements instead.
|
||||
<pre>
|
||||
td#middle-column div.bt {
|
||||
...
|
||||
}
|
||||
div#middle-column div.bt {
|
||||
...
|
||||
}
|
||||
</pre>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
A Moodle Theme from <strong>Urs Hunkler, <a href="http://www.unodo.de">unodo</a>
|
||||
and Andrew Walker, <a href="http://www.altoncollege.ac.uk/">Alton College</a></strong>.
|
||||
</p>
|
@ -1,139 +0,0 @@
|
||||
<?php
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// This file contains a few configuration variables that control
|
||||
/// how Moodle uses this theme.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->sheets = array('user_styles');
|
||||
|
||||
/// This variable is an array containing the names of all the
|
||||
/// stylesheet files you want included in this theme, and in what order
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->standardsheets = array('styles_layout', 'styles_color');
|
||||
|
||||
/// This variable can be set to an array containing
|
||||
/// filenames from the *STANDARD* theme. If the
|
||||
/// array exists, it will be used to choose the
|
||||
/// files to include in the standard style sheet.
|
||||
/// When false, then no files are used.
|
||||
/// When true or NON-EXISTENT, then ALL standard files are used.
|
||||
/// This parameter can be used, for example, to prevent
|
||||
/// having to override too many classes.
|
||||
/// Note that the trailing .css should not be included
|
||||
/// eg $THEME->standardsheets = array('styles_layout','styles_fonts','styles_color');
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->parent = '';
|
||||
|
||||
/// This variable can be set to the name of a parent theme
|
||||
/// which you want to have included before the current theme.
|
||||
/// This can make it easy to make modifications to another
|
||||
/// theme without having to actually change the files
|
||||
/// If this variable is empty or false then a parent theme
|
||||
/// is not used.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->parentsheets = false;
|
||||
|
||||
/// This variable can be set to an array containing
|
||||
/// filenames from a chosen *PARENT* theme. If the
|
||||
/// array exists, it will be used to choose the
|
||||
/// files to include in the standard style sheet.
|
||||
/// When false, then no files are used.
|
||||
/// When true or NON-EXISTENT, then ALL standard files are used.
|
||||
/// This parameter can be used, for example, to prevent
|
||||
/// having to override too many classes.
|
||||
/// Note that the trailing .css should not be included
|
||||
/// eg $THEME->parentsheets = array('styles_layout','styles_fonts','styles_color');
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->pluginsheets = array('mod', 'block', 'format', 'gradereport');
|
||||
|
||||
/// Which types of plugins should be searched for a styles.php file. This
|
||||
/// Allows plugins to include enough styling information to work out of the box.
|
||||
|
||||
|
||||
$THEME->metainclude = true;
|
||||
|
||||
/// When this is enabled (or not set!) then Moodle will try
|
||||
/// to include a file meta.php from this theme into the
|
||||
/// <head></head> part of the page.
|
||||
|
||||
|
||||
$THEME->standardmetainclude = true;
|
||||
|
||||
/// When this is enabled (or not set!) then Moodle will try
|
||||
/// to include a file meta.php from the standard theme into the
|
||||
/// <head></head> part of the page.
|
||||
|
||||
|
||||
$THEME->parentmetainclude = false;
|
||||
|
||||
/// When this is enabled (or not set!) then Moodle will try
|
||||
/// to include a file meta.php from the parent theme into the
|
||||
/// <head></head> part of the page.
|
||||
|
||||
|
||||
$THEME->navmenuwidth = 50;
|
||||
|
||||
/// You can use this to control the cutoff point for strings
|
||||
/// in the navmenus (list of activities in popup menu etc)
|
||||
/// Default is 50 characters wide.
|
||||
|
||||
|
||||
$THEME->makenavmenulist = false;
|
||||
|
||||
/// By setting this to true, then you will have access to a
|
||||
/// new variable in your header.html and footer.html called
|
||||
/// $navmenulist ... this contains a simple XHTML menu of
|
||||
/// all activities in the current course, mostly useful for
|
||||
/// creating popup navigation menus and so on.
|
||||
|
||||
|
||||
$THEME->chameleonenabled = false;
|
||||
|
||||
/// By setting this to true it enables editing of the stylsheets.
|
||||
/// It is recommended to set this to false again once you're
|
||||
/// satisfied with your theme.
|
||||
|
||||
|
||||
$THEME->chameleonteachereditenabled = false;
|
||||
|
||||
/// If you use chameleon as a course theme setting this to true
|
||||
/// will allow teachers on that course to edit the theme.
|
||||
|
||||
|
||||
$THEME->resource_mp3player_colors =
|
||||
'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
|
||||
'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
|
||||
'font=Arial&fontColour=3333FF&buffer=10&waitForPlay=no&autoPlay=yes';
|
||||
|
||||
/// With this you can control the colours of the "big" MP3 player
|
||||
/// that is used for MP3 resources.
|
||||
|
||||
|
||||
$THEME->filter_mediaplugin_colors =
|
||||
'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
|
||||
'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
|
||||
'waitForPlay=yes';
|
||||
|
||||
/// ...And this controls the small embedded player
|
||||
|
||||
|
||||
$THEME->custompix = true;
|
||||
|
||||
/// If true, then this theme must have a "pix"
|
||||
/// subdirectory that contains copies of all
|
||||
/// files from the moodle/pix directory, plus a
|
||||
/// "pix/mod" directory containing all the icons
|
||||
/// for all the activity modules.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
Before Width: | Height: | Size: 894 B |
@ -1,25 +0,0 @@
|
||||
|
||||
</div> <!-- end div containerContent -->
|
||||
<!-- START OF FOOTER -->
|
||||
<?php global $CFG, $COURSE; ?>
|
||||
<div id="footer">
|
||||
<?php
|
||||
if (function_exists('page_doc_link')) {
|
||||
echo '<p class="helplink">';
|
||||
echo page_doc_link(get_string('moodledocslink'));
|
||||
echo '</p>';
|
||||
}
|
||||
?>
|
||||
<?php echo $loggedinas ?>
|
||||
<?php echo $homelink;
|
||||
?>
|
||||
<!-- <p><div class="homelink"><a <?php echo $CFG->frametarget ?> href="<?php $CFG->wwwroot ?>/course/view.php?id=<?php $COURSE->id ?>"> <?php $COURSE->shortname ?> </a></div></p> -->
|
||||
<p>
|
||||
<!-- <<a href="http://validator.w3.org/check?verbose=1&ss=1&uri=<?php echo urlencode(qualified_me()) ?>"><img src="<?php echo "$CFG->themewww/$CFG->theme" ?>/xhtml_1_0.gif" alt="XHTML Validator" /></a>
|
||||
<a href="http://jigsaw.w3.org/css-validator/validator?uri=<?php echo urlencode(qualified_me()) ?>&warning=1&profile=css2&usermedium=all"><img src="<?php echo "$CFG->themewww/$CFG->theme" ?>/css.gif" alt="CSS Validator" /></a>
|
||||
<a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&url1=<?php echo urlencode(qualified_me()) ?>"><img src="<?php echo "$CFG->themewww/$CFG->theme" ?>/section_508.gif" alt="Section 508 Validator" /></a> -->
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,45 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html<?php echo $direction ?>>
|
||||
<head>
|
||||
<?php echo $meta ?>
|
||||
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
||||
<title><?php echo $title ?></title>
|
||||
<link rel="shortcut icon" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/favicon.ico" />
|
||||
|
||||
<?php include('ui/chameleon.php'); ?>
|
||||
</head>
|
||||
|
||||
<body<?php
|
||||
echo " $bodytags";
|
||||
if ($focus) {
|
||||
echo " onload=\"setfocus()\"";
|
||||
};
|
||||
?>>
|
||||
|
||||
<div id="page">
|
||||
|
||||
<?php if ($home) { // This is what gets printed on the home page only
|
||||
?>
|
||||
<div id="header-home" class="clearfix">
|
||||
<h1 class="headermain"><?php echo $heading ?></h1>
|
||||
<div class="headermenu"><?php echo $menu ?></div>
|
||||
</div>
|
||||
<div class="navbar clearfix">
|
||||
|
||||
</div>
|
||||
<?php } else if ($heading) { // This is what gets printed on any other page with a heading
|
||||
?>
|
||||
<div id="header" class="clearfix">
|
||||
<h1 class="headermain"><?php echo $heading ?></h1>
|
||||
<div class="headermenu"><?php echo $menu ?></div>
|
||||
</div>
|
||||
<div class="navbar clearfix">
|
||||
<?php if ($navigation) { // This is the navigation table with breadcrumbs
|
||||
?>
|
||||
<div class="breadcrumb"><?php print_navigation($navigation); ?></div>
|
||||
<div class="navbutton"><?php echo $button; ?></div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<!-- END OF HEADER -->
|
||||
<div id="content">
|
@ -1,6 +0,0 @@
|
||||
<!--[if IE 7]>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $CFG->httpsthemewww ?>/chameleon/styles_ie7.css" />
|
||||
<![endif]-->
|
||||
<!--[if IE 6]>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $CFG->httpsthemewww ?>/chameleon/styles_ie6.css" />
|
||||
<![endif]-->
|
Before Width: | Height: | Size: 90 B |
Before Width: | Height: | Size: 88 B |
Before Width: | Height: | Size: 116 B |
Before Width: | Height: | Size: 87 B |
Before Width: | Height: | Size: 71 B |
Before Width: | Height: | Size: 992 B |
Before Width: | Height: | Size: 82 B |
Before Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 88 B |
Before Width: | Height: | Size: 116 B |
Before Width: | Height: | Size: 1012 B |
Before Width: | Height: | Size: 522 B |
Before Width: | Height: | Size: 416 B |
Before Width: | Height: | Size: 118 B |
Before Width: | Height: | Size: 75 B |
Before Width: | Height: | Size: 378 B |
Before Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 399 B |
Before Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 386 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 742 B |
Before Width: | Height: | Size: 176 B |
Before Width: | Height: | Size: 420 B |
Before Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 222 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 417 B |
Before Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 425 B |
Before Width: | Height: | Size: 404 B |
Before Width: | Height: | Size: 426 B |
Before Width: | Height: | Size: 394 B |
Before Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 270 B |
Before Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 598 B |
Before Width: | Height: | Size: 251 B |
Before Width: | Height: | Size: 405 B |
Before Width: | Height: | Size: 405 B |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 405 B |
Before Width: | Height: | Size: 393 B |
Before Width: | Height: | Size: 303 B |
Before Width: | Height: | Size: 830 B |
Before Width: | Height: | Size: 830 B |
Before Width: | Height: | Size: 826 B |
Before Width: | Height: | Size: 826 B |
Before Width: | Height: | Size: 821 B |
Before Width: | Height: | Size: 831 B |
Before Width: | Height: | Size: 814 B |
Before Width: | Height: | Size: 811 B |
Before Width: | Height: | Size: 268 B |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 418 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 624 B |
Before Width: | Height: | Size: 635 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 268 B |
Before Width: | Height: | Size: 286 B |
Before Width: | Height: | Size: 274 B |
Before Width: | Height: | Size: 420 B |
Before Width: | Height: | Size: 419 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 626 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 286 B |
Before Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 441 B |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 72 B |
Before Width: | Height: | Size: 70 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 468 B |
Before Width: | Height: | Size: 760 B |
Before Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 70 B |
Before Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 317 B |
Before Width: | Height: | Size: 58 B |