Update of /cvsroot/webmacro/wiki/builds/www.webmacro.org/htdocs
In directory sc8-pr-cvs1:/tmp/cvs-serv5523/builds/www.webmacro.org/htdocs
Modified Files:
site-style.css
Log Message:
- adding a "Diff to previous" feature that uses a java version of GNU 'diff' from http://www.bmsi.com/java/#diff
I need to contact this person to ensure it's actually okay to use here. It think it will be b/c Wiki is GPL'd too
Index: site-style.css
===================================================================
RCS file: /cvsroot/webmacro/wiki/builds/www.webmacro.org/htdocs/site-style.css,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** site-style.css 2 Jul 2003 03:01:51 -0000 1.3
--- site-style.css 2 Jul 2003 06:55:13 -0000 1.4
***************
*** 108,109 ****
--- 108,124 ----
BACKGROUND-COLOR: #e5d5e5
}
+
+ .deleted_line {
+ color: red;
+ background-color: #ffdede;
+ }
+
+ .inserted_line {
+ color: green;
+ background-color: #deffde;
+ }
+
+ .modified_line {
+ color: blue;
+ background-color: #dedeff;
+ }
\ No newline at end of file
|