Compare commits

..

13 Commits

Author SHA1 Message Date
Tim Schaub
1d025c74c9 removing NaturalDoc built docs from revision control
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3440 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-22 23:28:38 +00:00
Tim Schaub
0494b1fc18 adding back the stuff I so cavalierly discarded
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3439 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-22 23:27:28 +00:00
Tim Schaub
20feef1ae6 commit dev doc example
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3432 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-22 22:50:49 +00:00
crschmidt
09ea4c15ea Updated generated docs
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3401 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-21 01:44:59 +00:00
crschmidt
7275761460 Regenerate docs again. looking almost real now.
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3399 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-21 01:36:46 +00:00
crschmidt
14530c2621 Generate More docs, new docs.
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3392 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-21 00:29:02 +00:00
Tim Schaub
ed1044e352 doc updates - with / style path separator in Menu.txt
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3386 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-20 23:33:59 +00:00
Tim Schaub
30d7044a6a update with docs from crschmidt's recent changes
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3385 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-20 23:25:56 +00:00
Tim Schaub
33a49eb220 actually adding the new docs now - I'm also using "NaturalDocs -i lib -o HTML doc -p doc_config -s Small OL" to build docs now
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3382 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-20 22:46:26 +00:00
Tim Schaub
a92d0ef692 configured Menu.txt to group Tile subclasses - added useless documentation for OpenLayers.Format
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3381 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-20 22:20:46 +00:00
Tim Schaub
a1a16b6877 doc update with changes in BaseTypes.js
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3377 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-20 21:20:18 +00:00
Tim Schaub
de8e596024 natural documentation for a handful of classes
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3373 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-20 20:33:15 +00:00
Tim Schaub
15297db88e making a case
git-svn-id: http://svn.openlayers.org/sandbox/tschaub/naturaldocs/doc@3371 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2007-06-20 17:51:54 +00:00
3 changed files with 77 additions and 77 deletions

View File

@@ -1,25 +1,25 @@
OpenLayers contributors:
Howard Butler
Bertil Chaupis
John Cole
Jeff Dege
Schuyler Erle
Christian López Espínola
John Frank
Sean Gilles
Pierre Giraud
Andreas Hocevar
Philip Lindsay
Corey Puffault
Tim Schaub
Christopher Schmidt
Cameron Shorter
Paul Spencer
James Stembridge
Erik Uzureau
Bill Woodall
Steve Woodbridge
OpenLayers is graciously supported by MetaCarta, Inc.
<http://www.metacarta.com>.
OpenLayers contributors:
Howard Butler
Bertil Chaupis
John Cole
Jeff Dege
Schuyler Erle
Christian López Espínola
John Frank
Sean Gilles
Pierre Giraud
Andreas Hocevar
Philip Lindsay
Corey Puffault
Tim Schaub
Christopher Schmidt
Cameron Shorter
Paul Spencer
James Stembridge
Erik Uzureau
Bill Woodall
Steve Woodbridge
OpenLayers is graciously supported by MetaCarta, Inc.
<http://www.metacarta.com>.

View File

@@ -1,49 +1,49 @@
Customizing OpenLayers
======================
OpenLayers is designed to fit many needs -- fitting in alongside all kinds of
various applications which are currently in use.
Currently, OpenLayers supports a 'theme' option when creating a map. This
theme option allows you to specify the location of a CSS theme which should
be included.
A default theme is available as an example in the theme/ directory: the setup
is:
* theme/
* theme/default/
* theme/default/style.css
* theme/default/img/
Currently, the OpenLayers code does not support class names, and therefore,
it is not possible to control many aspects of OpenLayers code with CSS
classes. However, with this framework in place, we expect to invest time
to make existing features and new features use the CSS theming framework
where apropriate.
Class Naming
============
Elements should have class names which are descriptive of the Javascript
class from which they come. For example, the main layer switcher element
in the OpenLayers.Control.LayerSwitcher would be classed:
olControlLayerSwitcher
This would allow users to add to their style.css class in their theme,
changing, for example:
::
.olControlLayerSwitcher input {
width:10px;
}
Sub elements of a particular control can add to the class name:
::
.olControlLayerSwitcherBaseLabel {
color: red;
}
Customizing OpenLayers
======================
OpenLayers is designed to fit many needs -- fitting in alongside all kinds of
various applications which are currently in use.
Currently, OpenLayers supports a 'theme' option when creating a map. This
theme option allows you to specify the location of a CSS theme which should
be included.
A default theme is available as an example in the theme/ directory: the setup
is:
* theme/
* theme/default/
* theme/default/style.css
* theme/default/img/
Currently, the OpenLayers code does not support class names, and therefore,
it is not possible to control many aspects of OpenLayers code with CSS
classes. However, with this framework in place, we expect to invest time
to make existing features and new features use the CSS theming framework
where apropriate.
Class Naming
============
Elements should have class names which are descriptive of the Javascript
class from which they come. For example, the main layer switcher element
in the OpenLayers.Control.LayerSwitcher would be classed:
olControlLayerSwitcher
This would allow users to add to their style.css class in their theme,
changing, for example:
::
.olControlLayerSwitcher input {
width:10px;
}
Sub elements of a particular control can add to the class name:
::
.olControlLayerSwitcherBaseLabel {
color: red;
}

View File

@@ -1,3 +1,3 @@
Automatically generated OpenLayers API documentation is online:
http://dev.openlayers.org/docs/overview-tree.html
Automatically generated OpenLayers API documentation is online:
http://dev.openlayers.org/docs/overview-tree.html