[sword-cvs] sword/src/modules/filters osisrtf.cpp,1.22,1.23
sword@www.crosswire.org
sword@www.crosswire.org
Thu, 7 Aug 2003 23:58:24 -0700
- Previous message: [sword-cvs] sword/src/modules/filters gbfhtml.cpp,1.27,1.28 gbfhtmlhref.cpp,1.18,1.19 gbfwebif.cpp,1.4,1.5 osishtmlhref.cpp,1.12,1.13 osisplain.cpp,1.11,1.12 osisrtf.cpp,1.21,1.22 swbasicfilter.cpp,1.30,1.31 thmlhtml.cpp,1.28,1.29 thmlhtmlhref.cpp,1.35,1.36 thmlrtf.cpp,1.35,1.36 thmlwebif.cpp,1.6,1.7
- Next message: [sword-cvs] sword/apps/windoze/CBuilder5/BibleCS paraldisp.cpp,1.6,1.7 paraldisp.h,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/local/cvsroot/sword/src/modules/filters
In directory www:/tmp/cvs-serv28499
Modified Files:
osisrtf.cpp
Log Message:
enclosed various \\par's
Index: osisrtf.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/modules/filters/osisrtf.cpp,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- osisrtf.cpp 7 Aug 2003 23:23:32 -0000 1.22
+++ osisrtf.cpp 8 Aug 2003 06:58:22 -0000 1.23
@@ -42,8 +42,8 @@
addEscapeStringSubstitute("lt", "<");
addEscapeStringSubstitute("gt", ">");
addEscapeStringSubstitute("quot", "\"");
- addTokenSubstitute("lg", "\\par ");
- addTokenSubstitute("/lg", "\\par ");
+ addTokenSubstitute("lg", "{\\par}");
+ addTokenSubstitute("/lg", "{\\par}");
setTokenCaseSensitive(true);
}
@@ -191,13 +191,13 @@
buf += "\\par}";
}
else if (tag.getAttribute("sID")) { // empty line marker
- buf += "\\par ";
+ buf += "{\\par}";
}
}
// <milestone type="line"/>
else if ((!strcmp(tag.getName(), "milestone")) && (tag.getAttribute("type")) && (!strcmp(tag.getAttribute("type"), "line"))) {
- buf += "\\par ";
+ buf += "{\\par}";
userData->supressAdjacentWhitespace = true;
}
- Previous message: [sword-cvs] sword/src/modules/filters gbfhtml.cpp,1.27,1.28 gbfhtmlhref.cpp,1.18,1.19 gbfwebif.cpp,1.4,1.5 osishtmlhref.cpp,1.12,1.13 osisplain.cpp,1.11,1.12 osisrtf.cpp,1.21,1.22 swbasicfilter.cpp,1.30,1.31 thmlhtml.cpp,1.28,1.29 thmlhtmlhref.cpp,1.35,1.36 thmlrtf.cpp,1.35,1.36 thmlwebif.cpp,1.6,1.7
- Next message: [sword-cvs] sword/apps/windoze/CBuilder5/BibleCS paraldisp.cpp,1.6,1.7 paraldisp.h,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]