# HG changeset patch # User Paul Boddie # Date 1266971695 -3600 # Node ID 9e6aa2bd3b7a99f867c1bcfa4323cbb3c5a7b944 # Parent 092b470780a19c561b428a4c3190fe9833788c09 Added print stylesheet rules. diff -r 092b470780a1 -r 9e6aa2bd3b7a README.txt --- a/README.txt Wed Feb 17 00:28:05 2010 +0100 +++ b/README.txt Wed Feb 24 01:34:55 2010 +0100 @@ -68,7 +68,14 @@ @import "event-aggregator.css"; -This ensures that the styles are made available to the browser. +This ensures that the styles are made available to the browser. Additionally, +to make sure that printed pages are correctly styled, the following also needs +to be added to the print.css file in each affected theme's css directory: + + /* Event aggregation... */ + + @import "event-aggregator-print.css"; + @import "event-aggregator.css"; To install the actions in a Wiki, consider using the instactions script provided: @@ -162,6 +169,12 @@ Copyright and licence information can be found in the docs directory - see docs/COPYING.txt and docs/LICENCE.txt for more information. +New in EventAggregator 0.6 (Changes since EventAggregator 0.5) +-------------------------------------------------------------- + + * Added print stylesheet rules in order to improve the printed versions of + calendars. + New in EventAggregator 0.5 (Changes since EventAggregator 0.4) -------------------------------------------------------------- diff -r 092b470780a1 -r 9e6aa2bd3b7a css/event-aggregator-print.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/css/event-aggregator-print.css Wed Feb 24 01:34:55 2010 +0100 @@ -0,0 +1,23 @@ +/* event-aggregator-print.css - some additional styles for the EventAggregator macro + which can be included in print.css after... + + @import "event-aggregator.css"; + + ...but before any rules... + + @import "event-aggregator-print.css"; + +Copyright (c) 2009, 2010 by Paul Boddie +Licensed under the GNU GPL (v2 or later), see COPYING.txt for details. +*/ + +/* Controls. */ + +.previous-month, +.next-month, +.event-controls { + display: none; +} + +/* vim: tabstop=4 expandtab shiftwidth=4 + */ diff -r 092b470780a1 -r 9e6aa2bd3b7a css/event-aggregator.css --- a/css/event-aggregator.css Wed Feb 17 00:28:05 2010 +0100 +++ b/css/event-aggregator.css Wed Feb 24 01:34:55 2010 +0100 @@ -1,11 +1,12 @@ /* event-aggregator.css - some additional styles for the EventAggregator macro - which can be included in screen.css using... + which can be included in screen.css and print.css + using... @import "event-aggregator.css"; ...before any rules. -Copyright (c) 2009 by Paul Boddie +Copyright (c) 2009, 2010 by Paul Boddie Licensed under the GNU GPL (v2 or later), see COPYING.txt for details. */ diff -r 092b470780a1 -r 9e6aa2bd3b7a insttheme --- a/insttheme Wed Feb 17 00:28:05 2010 +0100 +++ b/insttheme Wed Feb 24 01:34:55 2010 +0100 @@ -23,7 +23,8 @@ cp -i css/*.css $1/$2/css/ #chown www-data: $1/$2/css/ -echo "Don't forget to update the screen.css file:" +echo "Don't forget to update the CSS files:" echo $1/$2/css/screen.css +echo $1/$2/css/print.css echo echo "See the README.txt file for details."