Sam Hemelryk
6117bd9780
theme-formal_white MDL-25090 Further tweaking of region-pre-layout
2010-11-19 07:16:41 +00:00
Sam Hemelryk
dbfcdb80c5
theme-formal_white MDL-25090 Fixed up positioning on side-pre-only layouts in formal white.
2010-11-19 05:53:14 +00:00
Patrick Malley
662078965d
MDL-25210 - Creating consistency in README files.
2010-11-14 21:33:37 +00:00
Sam Hemelryk
5fd9e28505
theme-formal_white MDL-25090 Removed setting that was no longer used.
2010-11-09 06:58:12 +00:00
Sam Hemelryk
69c7385657
theme-formal_white MDL-25090 Fixed region width problem. Thanks Daniele for the solution.
2010-11-08 01:27:02 +00:00
Sam Hemelryk
367a75fae4
themes lib MDL-24895 Multiple fixes to better handle overflow.
...
Major tasks undertaken in this patch:
* New format_text argument, overflowdiv.
* New page layout Report.
* Review of all format_text calls.
* Added support for the report layout to all themes.
* Changed forum post display from tables to divs.
2010-11-05 02:53:47 +00:00
Sam Hemelryk
96321cf4d8
themes MDL-24493 Added redirect page layout and styles for all themes
2010-10-25 08:52:37 +00:00
Andrea Bicciolo
8a8490b7b5
- added language page setting
...
- fixed a code error
- updated screenshot.gif
2010-10-19 17:04:48 +00:00
Andrea Bicciolo
67bd584ee0
Fixed uneven column color below header
2010-10-09 17:15:30 +00:00
Sam Hemelryk
6c0fb99b79
editor-css MDL-16319 Set default font for the core moodle themes
2010-10-07 04:17:15 +00:00
Sam Hemelryk
71be124d02
themes MDL-22247 Fixed up broken editor_sheets for themes
2010-10-01 01:43:06 +00:00
Petr Skoda
ca3b1fd973
fixed unterminated JS statements
2010-09-17 19:59:16 +00:00
Andrea Bicciolo
d5b5da84bf
CSS refinements
2010-09-13 15:29:53 +00:00
Andrea Bicciolo
9c3ad72f6d
Theme polishing
2010-09-09 19:02:17 +00:00
Petr Skoda
ed5d13c074
MDL-23795 basic support for print page layout + tons of trailing whitespace fixed
2010-08-16 19:34:23 +00:00
john St
24c6f8d052
Fix for Formal White theme, MDL-23785
2010-08-13 16:42:34 +00:00
Andrea Bicciolo
9deebbdade
Fix for MDL-23342
2010-08-03 16:31:02 +00:00
Andrea Bicciolo
1c065e3041
Fix for 23228
2010-07-15 19:00:57 +00:00
Petr Skoda
dbf9e4bae3
MDL-23234 finally standardised use of settings.php across all plugins - the only partial exceptions now are report and local plugins
2010-07-13 13:56:55 +00:00
Andrea Bicciolo
42aeb70926
Fix for MDL-23208
2010-07-12 08:40:34 +00:00
Andrea Bicciolo
3d667a48c0
removed unneeded it lang strings
2010-07-08 17:51:42 +00:00
Martin Dougiamas
3a76bcdf31
MDL-22917 Removing commercial links from readme
2010-07-07 05:13:25 +00:00
Andrea Bicciolo
f1c3030b8e
update
2010-07-06 18:35:09 +00:00
Andrea Bicciolo
46985d6ed8
corrected language string name
2010-07-06 18:34:06 +00:00
Andrea Bicciolo
434befb2a7
corrected language strings
2010-07-06 18:33:26 +00:00
Andrea Bicciolo
936bf0cce5
Formal_white for 2.0
2010-07-06 14:23:15 +00:00
Andrea Bicciolo
57bfc29ac9
Formal_white for 2.0
2010-07-06 11:59:31 +00:00
Moodle HQ git importer
07e1428995
Fixing drift between CVS and git - removing legacy themes
2010-01-13 11:25:15 +00:00
Petr Skoda
b1f8c27b60
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
2010-01-12 17:10:42 +00:00
Petr Skoda
4454447d56
MDL-20700 whitespace terror returns
2009-12-16 22:14:17 +00:00
Petr Skoda
78946b9bdb
MDL-20204 first batch of major theme changes, some regressions are still there, expect more changes and improvements soon; see tracker for details and list of subtasks
2009-12-16 18:00:58 +00:00
Petr Skoda
aa6c1ced0a
MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup
2009-11-04 08:11:02 +00:00
nicolasconnault
fd09397ee1
MDL-19824 upgraded calls to print_container*
2009-08-20 08:50:03 +00:00
tjhunt
793a204e7b
themes MDL-19077: Update deprecated stuff in all theme config.php files.
2009-07-09 02:06:22 +00:00
tjhunt
b70094743a
themes: MDL-19077 change how the theme is initialised and CSS is served.
...
This is part of http://docs.moodle.org/en/Development:Theme_engines_for_Moodle%3F
$THEME is now initialised at the same time as $OUTPUT. Old functions like
theme_setup are deprecated in favour of methods on $PAGE. There is a new
theme_config class in outputlib.php that deals with loading the theme config.php file.
CSS used to be served by themes styles.php files calling a function in weblib.php.
Now it works by each theme's styles.php file doing
$themename = basename(dirname(__FILE__));
require_once(dirname(__FILE__) . '/../../theme/styles.php');
which is less code to be copied into each theme. (Old-style styles.php files still
work thanks to some code in deprecatedlib.php.)
Admin UI for choosing a theme cleaned up.
A couple of theme-specific hard-coded hacks like $THEME->cssconstants and
$THEME->CSSEdit have been replaced by a more generic $THEME->customcssoutputfunction
hook. See examples at the end of outputlib.php
Also:
* Fix setting the theme in the URL, which seems to have been broken since 1.9.
* Fix up errors on a few pages caused by the new initialisation order.
* MDL-19097 moodle_page::set_course should not set $COURSE unless it is $PAGE.
* httpsrequired() from moodlelib.php moved to $PAGE->https_required().
* Move has_started() method to the renderer base class.
* Further fixes to display of early errors.
* Remove print_header/footer_old from weblib. I did not mean to commit them before.
2009-07-01 05:54:26 +00:00
tjhunt
5af6ec1b2e
MDL-19600 remove remaining traces of docstyles.php.
...
(Not used since Moodle 1.6.)
Also remove the remaining bits of lang/en_utf8/docs.
2009-06-23 04:39:11 +00:00
dongsheng
994d4a3be1
"MDL-18971, fix forum unread post highlighting issue, thanks Eric straw's patch, merged from 1.9"
2009-05-25 09:19:27 +00:00
fmarier
316914bf6e
MDL-17037 ran all GIF images through gifsicle and PNG through optipng
2009-04-05 23:33:00 +00:00
fmarier
6a77823cb6
MDL-17037 Lossless optimization of all PNG and JPEG images
2008-10-28 01:50:10 +00:00
andreabix
f06287ad2f
Fixed non compliant HTMl in README
2008-10-06 08:19:04 +00:00
andreabix
e9c1829aaa
Fixed duplicated style in fw_fonts.css
2008-09-15 08:02:25 +00:00
skodak
a78bee285d
MDL-16433 themes and javascript files are not blocked by running upgrade anymore
2008-09-14 08:40:23 +00:00
andreabix
98b9add6a1
Fixed MDL-13832
2008-07-03 22:07:22 +00:00
Francois Marier
6800d78e06
Drift between CVS and git
...
- large deletions
- lucene updates
- error() => print_error()
- NO_MOODLE_COOKIES define
- various other things
2008-06-25 17:31:23 +00:00
sam_marshall
a41b301703
MDL-14260: Changed print_heading_with_help so that the help button is outside the heading (for accessibility reasons) and changed themes so that this makes no visual difference.
2008-04-08 16:10:49 +00:00
andreabix
7d47ca30d0
fixed [MDL-13181]
2008-03-10 16:27:37 +00:00
andreabix
0d75d2bfc7
Fixed [MDL-12830]
2008-03-10 16:03:09 +00:00
andreabix
48fd6b71cc
Added grade pass/fail colours. Fixed label line height in course page
2008-03-10 15:14:42 +00:00
andreabix
7929ba8693
Added grade pass/fail colours. Fixed label line height in course page
2008-03-10 15:14:42 +00:00
andreabix
ea61750908
Fixed MDL-12564
2008-02-27 17:40:50 +00:00