[GRASS-dev] rough draft of release announcement and blurb

Hi,

please review:

https://trac.osgeo.org/grass/browser/grass-web/trunk/announces/abstract_grass640.txt

https://trac.osgeo.org/grass/browser/grass-web/trunk/announces/announce_grass640.html

I put a frame background on the main announcement but the main CSS's <h3>
forces a background color. I'm not a CSS expert so not sure how to fix
that.

since the new feature list goes back to new things since GRASS 6.2.3
(circa 9000 edits along this branch) it is likely that some quite major
things have been forgotten, although IMO the list should not resemble a
10 page changelog with every new feature. Request for many eyeballs.

thanks to Markus & Markus for their contributions already.

Hamish

On Tue, Jul 20, 2010 at 12:31 PM, Hamish <hamish_b@yahoo.com> wrote:

Hi,

please review:

https://trac.osgeo.org/grass/browser/grass-web/trunk/announces/abstract_grass640.txt

https://trac.osgeo.org/grass/browser/grass-web/trunk/announces/announce_grass640.html

Here you can see the same in real HTML rendering:
http://svn.osgeo.org/grass/grass-web/trunk/announces/announce_grass640.html

Markus

I put a frame background on the main announcement but the main CSS's <h3>
forces a background color. I'm not a CSS expert so not sure how to fix
that.

since the new feature list goes back to new things since GRASS 6.2.3
(circa 9000 edits along this branch) it is likely that some quite major
things have been forgotten, although IMO the list should not resemble a
10 page changelog with every new feature. Request for many eyeballs.

thanks to Markus & Markus for their contributions already.

Hamish
_______________________________________________
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev

In CSS C stands for Cascading. Just add Your CSS rules after default
ones as later defined rules override previous rules.
Like this (after line 7 before </head>):
<style type="text/css"> h3 { background-color: transparent; }</style>

Maris.

2010/7/20, Hamish <hamish_b@yahoo.com>:

Hi,

please review:

https://trac.osgeo.org/grass/browser/grass-web/trunk/announces/abstract_grass640.txt

https://trac.osgeo.org/grass/browser/grass-web/trunk/announces/announce_grass640.html

I put a frame background on the main announcement but the main CSS's <h3>
forces a background color. I'm not a CSS expert so not sure how to fix
that.

since the new feature list goes back to new things since GRASS 6.2.3
(circa 9000 edits along this branch) it is likely that some quite major
things have been forgotten, although IMO the list should not resemble a
10 page changelog with every new feature. Request for many eyeballs.

thanks to Markus & Markus for their contributions already.

Hamish
_______________________________________________
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev

Maris wrote:

In CSS C stands for Cascading. Just add Your CSS rules after
default ones as later defined rules override previous rules.
Like this (after line 7 before </head>):
<style type="text/css"> h3 { background-color: transparent; }</style>

thanks for the tip! fix applied in svn.

Hamish