Changes for page ERDivaLook

Last modified by Ravi Mendis on 2010/09/10 01:14

From version 139.1
edited by Ravi Mendis
on 2009/04/23 09:43
Change comment: There is no comment for this version
To version 132.1
edited by Ravi Mendis
on 2009/04/23 03:58
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -6,9 +6,7 @@
6 6  * Semantically-rich or **tables-less**
7 7  * XHTML 1.0 strict compliant
8 8  * Sans images, inline styles or presentation attributes
9 -* Use a CSS **theme**
10 -* Scriptaculous **effects**
11 -* Use of **Ajax widgets**
9 +* Require a CSS **theme**
12 12  
13 13  = Why Table-less Markup? =
14 14  
... ... @@ -24,7 +24,7 @@
24 24  
25 25  === What is a Diva Theme? ===
26 26  
27 -In ERDivaLook, or Diva for short, your application is not complete without a CSS theme.
25 +In ERDivaLook, or Diva look for short, your application is not complete without a CSS theme.
28 28  All images, layout, colors and font information are maintained in the CSS.
29 29  
30 30  All your customizations to the look and layout of your application is also done in the CSS (and via D2W rules).
... ... @@ -34,7 +34,7 @@
34 34  The following are a sample of themes for Diva look. The first two are included in the Wonder/Examples/Ajax/ERDivaLookExample app.
35 35  
36 36  |= Neutral |= WebObjects |= Simple |= Organica
37 -| [[image:Picture 1.jpg||]] | [[image:Picture 2.jpg||]] | [[image:Picture 3.jpg||]] | [[image:slides_directtoweb_04.jpg.jpeg||]]
35 +| [[image:Picture 1.jpg||]] | [[image:Picture 2.jpg||]] | [[image:Picture 3.jpg||]] | [[image:slides_directtoweb_04.jpg.jpeg||]]
38 38  | D2W Neutral look reverse engineered
39 39  as a Diva Theme | D2W WebObjects look reverse engineered
40 40  as a Diva Theme | [[//Simple//>>http://www.csszengarden.com/?cssfile=/174/174.css&page=2]] theme from css Zen Garden | [[//Organica//>>http://www.csszengarden.com/?cssfile=/188/188.css&page=0]] theme from css Zen Garden
... ... @@ -41,34 +41,3 @@
41 41  | //Included in ERDivaLookExample// | //Included in ERDivaLookExample// | Shawn Chin [[mailto:schin@shawnchin.net]] | Eduardo Cesario [[mailto:design@criaturacreativa.com.ar]]
42 42  
43 43  The graphics designer Eduardo Cesario wrote up his experience of developing his //Organica// design for an early prototype of ERDivaLook on his [[blog>>http://www.organicacreativa.com/organica-creativa.php?area=directtoweb&lang=en]].
44 -
45 -= Using ERDivaLook =
46 -
47 -=== Setting the D2W Page CSS ===
48 -
49 -Diva look introduces a new D2W key: **stylesheet**.
50 -The CSS file computed by this key will be set as the stylesheet for the page.
51 -
52 -e.g:
53 -
54 -|= LHS |= key |= RHS
55 -| task = 'edit' |**stylesheet**| //NeutralEditPage.css//
56 -| task = 'inspect' and session.theme = 'Simple' |**stylesheet**| //SimpleInspectPage.css// |
57 -
58 -==== A closer look at the CSS file... ====
59 -
60 -1. h5.CSS Imports
61 -
62 -{{code}}
63 -
64 -@import url("Neutral.css");
65 -@import url("ERDIVEditPage.css");
66 -@import url("NeutralEditToManyFault.css");
67 -@import url("NeutralEditToOneFault.css");
68 -@import url("NeutralCalendarDateSelect.css");
69 -@import url("NeutralAjaxAccordion.css");
70 -@import url("NeutralEditToOneRelationship2.css");
71 -
72 -{{/code}}
73 -
74 -The CSS imports a global CSS for the theme, //Neutral.css//, a generic one for the edit page //ERDIVEditPage.css// and CSS files for D2W components used on an edit page.