Aquesta pàgina forma part de la documentació de Moodle en català, tot i que no ha estat traduïda encara. Podeu contribuir obertament a les tasques de traducció. Podeu consultar la Guia d'edició de la documentació i també participar ens els debats del fòrum de traductors de la documentació a moodle.org

Chameleon theme: diferència entre les revisions

De MoodleDocs
Salta a:navegació, cerca
(Replaced content with "{{Moved_to_dev_docs}}")
 
(18 revisions intermèdies per 6 usuaris que no es mostren)
Línia 1: Línia 1:
{{Moodle 1.6}}
{{Moved_to_dev_docs}}
'''Chameleon''' is an interactive Moodle theme. You are welcome to try it at the [http://chameleon-theme.unodo.de/ Chameleon theme test site] - please login with username and password "chameleon".
 
==How does Chameleon change its colours?==
 
* Shift-click anywhere on the page to open a floating window showing all elements under the mouse
* Click on elements in the list to create a CSS selector - one or as many as you need
* Click on the "Set Styles" button and set the styles of your choice
* View the changes immediately
 
Chameleon allows almost complete control over styling elements in Moodle. It makes working with themes easier for theme designers and opens up a wide range of experimental uses for interface designers. Just change and work with the changed page and go on optimizing your theme whilst you work with Moodle.
 
Chameleon makes use of [[Ajax]] technologies.
 
==Which tags to change==
 
The easy way to find this out is to use [[Firefox]] with the [[Web developer extension]] installed. You can then press Ctrl-Shift-Y to change your mouse cursor to crosshairs so that whatever you hover over, it displays the CSS information (e.g. div#content) in the status bar at the bottom of the browser page.
 
When changing tags, be aware that chameleon sometimes doesn't see things if you initially add them via free-edit. Use the built-in editor in the 'set styles' or 'overview' section first, then use free-edit to alter them.
 
==Saving your changes==
 
As you work, you have the option to save changes in a temporary file, or save them to the theme CSS file on the server. All temporarily saved changes may be reverted.
 
==Once your theme is completed==
 
Chameleon does a lot of work behind the scenes as the page loads. This extra work can slow down the display of the page, particularly as your theme files grow bigger. Once your theme is completed and there is no need to be running the Chameleon interface, you may disable the interactive theme by editing the line in ''config.php'':
 
$THEME->chameleonenabled = true;
 
and changing <code>true</code> to <code>false</code>.
 
Now, no extra code will be run on page load and your customised theme will behave exactly like any other Moodle theme. (Please note that this only applies to editing users - a non-editing user will never have any of the extra code running when they view a page.)
 
==Alternative uses==
 
In addition to creating a complete theme, Chameleon may also be used to help make changes to your existing theme. Simply experiment with Chameleon until you have achieved the change you desire, then copy the css in the "Free Edit" tab to a style sheet in your theme folder.
 
== Adding the Chameleon "engine" to your theme ==
 
You may add the Chameleon engine to any existing theme as follows:
 
* Copy the "ui" folder from the Chameleon theme folder to your theme folder.
 
* Copy the two files ''temp_user_styles.css'' and ''user_styles.css'' from your Chameleon folder to your theme folder. Set write permissions for these two files that PHP can write the changed CSS properties to the files. You may choose to delete all CSS properties in these files if you want to start from scratch.
 
* Add the include line in ''header.html'' (line 9):
 
<pre>
      7    <link rel="shortcut icon" href="<?php echo
$CFG->wwwroot.'/theme/'.current_theme() ?>/favicon.ico" />
      8
      9    <?php include('ui/chameleon.php'); ?>
    10    <?php include("$CFG->javascript"); ?>
    11 </head>
    12
</pre>
 
* Add the Chameleon vars in ''config.php'' and set them (line 99 to 109):
 
<pre>
    89
    90 $THEME->makenavmenulist = false;
    91
    92 /// By setting this to true, then you will have access to a
    93 /// new variable in your header.html and footer.html called
    94 /// $navmenulist ... this contains a simple XHTML menu of
    95 /// all activities in the current course, mostly useful for
    96 /// creating popup navigation menus and so on.
    97
    98
    99 $THEME->chameleonenabled = true;
    100
    101 /// By setting this to false it disables editing of the stylesheets
    102 /// this saves the overhead of loading chameleon on each page
    103 /// viewed by a user who can edit pages. it is recommended to
    104 /// set this to false once you're satisfied with your theme.
    105
    106 $THEME->chameleonteachereditenabled = false;
    107
    108 /// If you use chameleon as a course theme setting this to true
    109 /// will allow teachers on that course to edit the theme.
    110
</pre>
 
Then you can start working on your CSS for any Moodle page from your browser.
 
You can see and add CSS properties of the two files ''temp_user_styles.css'' and ''user_styles.css''. You can't see or change the CSS properties in your other CSS files in your theme folder.
 
==Troubleshooting==
 
=== Your changes are lost on page reload ===
 
The user settings or write permissions of the two CSS files "user_styles.css" and "temp_user_styles.css" must be set in a way that Moodle can write the changed CSS to these files.
 
# When you are able to change the owner of these files please do that. Your web server will run under a specific user like "nobody" or "www-data". Please change the owner of these CSS files to the owner your web server runs with.
# When you can't change the file owner please change the write permissions of these files. The easy way is to give write permissions to "group" and "others".
 
If you can please change the owner because it is more secure than giving write permission to anybody.
 
=== How can I change background of the "messages" with Chameleon? ===
 
Not in the way you are used with a click on the page area you want to change. Some areas of Moodle are not accessible with Chameleon. You may add the message CSS selectors and their properties below in Chameleon with copy and paste. The CSS below mainly disables background images. You may change the properties to get different colours or whatever you want.
 
* You may click anywhere on the page to open the Chameleon dialogue
* Click on the "Free Edit" button to open the edit field of your CSS code
* Scroll to the end of your code or to a place you consider best for the message CSS
* Copy the selectors/properties below and paste them into the edit field
* Save as usual with "Save Temp" if you want to check the changes first or with "Save Server"
 
 
<pre>
body#message-user {
  background-image: none;
}
body#message-messages {
  background-image: none;
}
body#message-send {
  background-image: none;
}
body#message-user div#content {
  margin-top: 0;
  padding-top: 0;
}
body#message-user div#header {
  display: none;
}
</pre>
 
==See also==
 
*[http://moodle.org/mod/forum/discuss.php?d=37674 Chameleon - an interactive Moodle theme] forum discussion
*[http://moodle.org/mod/forum/discuss.php?d=37680 Link font size bigger] forum discussion illustrating an alternative use
 
[[Category:Administrator]]
[[Category:Developer]]
[[Category:Themes]]

Revisió de 09:06, 22 juny 2011

This development related page is now located in the Dev docs.

See the Chameleon theme page in the Dev docs.