Update of /cvsroot/hibernate/Hibernate2/doc/api
In directory sc8-pr-cvs1:/tmp/cvs-serv23158/doc/api
Modified Files:
jdstyle.css
Log Message:
added Session.refresh()
revised some javadoc
new javadoc style consistent with website colors
Index: jdstyle.css
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/doc/api/jdstyle.css,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** jdstyle.css 1 Jan 2003 13:42:58 -0000 1.1.1.1
--- jdstyle.css 5 Jan 2003 02:11:19 -0000 1.2
***************
*** 5,20 ****
/* Page background color */
body { font-family: Arial;
! background-color: silver;
font-size: 10pt;
- color: navy;
}
td { font-family: Arial;
font-size: 10pt;
- color: navy;
}
/* Table colors */
! .TableHeadingColor { background: #CCCCFF } /* Dark mauve */
! .TableSubHeadingColor { background: #EEEEFF } /* Light mauve */
! .TableRowColor { background: #FFFFFF } /* White */
/* Font used in left-hand frame lists */
--- 5,18 ----
/* Page background color */
body { font-family: Arial;
! background-color: white;
font-size: 10pt;
}
td { font-family: Arial;
font-size: 10pt;
}
/* Table colors */
! .TableHeadingColor { background: #F4F4F4 }
! .TableSubHeadingColor { background: #F4F4F4 }
! .TableRowColor { background: #FFFFFF }
/* Font used in left-hand frame lists */
***************
*** 27,32 ****
/* Navigation bar fonts and colors */
! .NavBarCell1 { background-color:#EEEEFF;}/* Light mauve */
! .NavBarCell1Rev { background-color:#00008B;}/* Dark Blue */
.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;}
.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;}
--- 25,31 ----
/* Navigation bar fonts and colors */
! .NavBarCell1 { background-color:#F4F4F4;}
! .NavBarCell1Rev { background-color:silver;}
!
.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;}
.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;}
***************
*** 35,36 ****
--- 34,117 ----
.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF;}
+ A {
+ color: #003399;
+ }
+
+ A:active {
+ color: #003399;
+ }
+
+ A:visited {
+ color: #888888;
+ }
+
+ P, OL, UL, LI, DL, DT, DD, BLOCKQUOTE {
+ color: #000000;
+ }
+
+ TD, TH, SPAN {
+ color: #000000;
+ }
+
+ BLOCKQUOTE {
+ margin-right: 0px;
+ }
+
+
+ /*H1, H2, H3, H4, H5, H6 {
+ color: #000000;
+ font-weight:500;
+ margin-top:10px;
+ padding-top:15px;
+ }
+
+ H1 { font-size: 150%; }
+ H2 { font-size: 140%; }
+ H3 { font-size: 110%; font-weight: bold; }
+ H4 { font-size: 110%; font-weight: bold;}
+ H5 { font-size: 100%; font-style: italic; }
+ H6 { font-size: 100%; font-style: italic; }*/
+
+ TT {
+ font-size: 90%;
+ font-family: "Courier New", Courier, monospace;
+ color: #000000;
+ }
+
+ PRE {
+ font-size: 90%;
+ padding: 5px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #CCCCCC;
+ background-color: #F4F4F4;
+ }
+
+ UL, OL, LI {
+ list-style: disc;
+ }
+
+ HR {
+ width: 100%;
+ height: 1px;
+ background-color: #CCCCCC;
+ border-width: 0px;
+ padding: 0px;
+ color: #CCCCCC;
+ }
+
+ .variablelist {
+ padding-top: 10;
+ padding-bottom:10;
+ margin:0;
+ }
+
+ .itemizedlist, UL {
+ padding-top: 0;
+ padding-bottom:0;
+ margin:0;
+ }
+
+ .term {
+ font-weight:bold;
+ }
|