[Fat-develop] FAT/src/FAT.Web/HtmlDetails HtmlDetailsEnhancer.cs,1.3,1.4
Brought to you by:
exortech
|
From: <dmc...@us...> - 2004-02-20 23:12:27
|
Update of /cvsroot/fat/FAT/src/FAT.Web/HtmlDetails In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3930/src/FAT.Web/HtmlDetails Modified Files: HtmlDetailsEnhancer.cs Log Message: Can now click on question mark gif next to selected fixture name to get a pop-up window giving help on available methods. Index: HtmlDetailsEnhancer.cs =================================================================== RCS file: /cvsroot/fat/FAT/src/FAT.Web/HtmlDetails/HtmlDetailsEnhancer.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** HtmlDetailsEnhancer.cs 3 Feb 2004 22:08:07 -0000 1.3 --- HtmlDetailsEnhancer.cs 20 Feb 2004 17:56:50 -0000 1.4 *************** *** 40,44 **** // absolute for all <img src="">, <form action="">, <a href=""> etc. // it's not perfect - just good enough - urls embedded in javascript etc. are not caught, ! // RegExes works only where attribute values is enclosed in "". get { --- 40,44 ---- // absolute for all <img src="">, <form action="">, <a href=""> etc. // it's not perfect - just good enough - urls embedded in javascript etc. are not caught, ! // TODO: Improve RegExes - they only work where attribute values is enclosed in "". get { *************** *** 47,50 **** --- 47,51 ---- expandingHtml = ExpandRelativeUrls(expandingHtml, "img", "src"); expandingHtml = ExpandRelativeUrls(expandingHtml, "a", "img"); + expandingHtml = ExpandRelativeUrls(expandingHtml, "link", "href"); return expandingHtml; } |