Develop and Download Open Source Software

Browse CVS Repository

Diff of /malonnote/mnFrame.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.21 by maloninc, Sat Oct 1 05:43:58 2005 UTC revision 1.22 by maloninc, Sun Oct 2 00:13:47 2005 UTC
# Line 159  void mnFrame::makeHtml(WikiData* wikiDat Line 159  void mnFrame::makeHtml(WikiData* wikiDat
159          exp11.Replace(&htmlText, wxT("<tr><td>"));          exp11.Replace(&htmlText, wxT("<tr><td>"));
160          wxRegEx exp12(wxT("</td>$"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp12(wxT("</td>$"), wxRE_NEWLINE|wxRE_DEFAULT);
161          exp12.Replace(&htmlText, wxT("</td></tr>"));          exp12.Replace(&htmlText, wxT("</td></tr>"));
         wxRegEx exp13(wxT("\n\n<tr>"));  
         exp13.Replace(&htmlText, wxT("\n<table border>\n<tr>"));  
         wxRegEx exp14(wxT("</tr>\n\n"));  
         exp14.Replace(&htmlText, wxT("</tr>\n</table>\n"));  
162          wxRegEx exp15(wxT("</tr>\n"));          wxRegEx exp15(wxT("</tr>\n"));
163          exp15.Replace(&htmlText, wxT("</tr>"));          exp15.Replace(&htmlText, wxT("</tr>"));
164    
165            wxRegEx exp13(wxT("^<tr>"), wxRE_NEWLINE|wxRE_DEFAULT);
166            exp13.Replace(&htmlText, wxT("<table border><tr>"));
167            wxRegEx exp14(wxT("</tr>$"), wxRE_NEWLINE|wxRE_DEFAULT);
168            exp14.Replace(&htmlText, wxT("</tr></table>"));
169    
170                    
171          /* Highlight search text */          /* Highlight search text */
172          highlight = isHighlight;          highlight = isHighlight;

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26