[sword-svn] r3203 - trunk/src/modules/filters
charcoal at crosswire.org
charcoal at crosswire.org
Tue Apr 29 07:30:27 MST 2014
Author: charcoal
Date: 2014-04-29 07:30:26 -0700 (Tue, 29 Apr 2014)
New Revision: 3203
Modified:
trunk/src/modules/filters/osisxhtml.cpp
trunk/src/modules/filters/thmlxhtml.cpp
Log:
removed URL::encode in renderNoteNumbers cases.
Modified: trunk/src/modules/filters/osisxhtml.cpp
===================================================================
--- trunk/src/modules/filters/osisxhtml.cpp 2014-04-29 07:30:26 UTC (rev 3202)
+++ trunk/src/modules/filters/osisxhtml.cpp 2014-04-29 14:30:26 UTC (rev 3203)
@@ -289,7 +289,7 @@
URL::encode(vkey->getText()).c_str(),
ch,
ch,
- (renderNoteNumbers ? URL::encode(noteName.c_str()).c_str() : ""));
+ (renderNoteNumbers ? noteName.c_str() : ""));
}
else {
buf.appendFormatted("<a href=\"passagestudy.jsp?action=showNote&type=%c&value=%s&module=%s&passage=%s\"><small><sup class=\"%c\">*%c%s</sup></small></a>",
@@ -299,7 +299,7 @@
URL::encode(u->key->getText()).c_str(),
ch,
ch,
- (renderNoteNumbers ? URL::encode(noteName.c_str()).c_str() : ""));
+ (renderNoteNumbers ? noteName.c_str() : ""));
}
}
}
Modified: trunk/src/modules/filters/thmlxhtml.cpp
===================================================================
--- trunk/src/modules/filters/thmlxhtml.cpp 2014-04-29 07:30:26 UTC (rev 3202)
+++ trunk/src/modules/filters/thmlxhtml.cpp 2014-04-29 14:30:26 UTC (rev 3203)
@@ -230,7 +230,7 @@
URL::encode(vkey->getText()).c_str(),
ch,
ch,
- (renderNoteNumbers ? URL::encode(noteName.c_str()).c_str() : ""));
+ (renderNoteNumbers ? noteName.c_str() : ""));
}
else {
char ch = ((tag.getAttribute("type") && ((!strcmp(tag.getAttribute("type"), "crossReference")) || (!strcmp(tag.getAttribute("type"), "x-cross-ref")))) ? 'x':'n');
@@ -241,7 +241,7 @@
URL::encode(u->key->getText()).c_str(),
ch,
ch,
- (renderNoteNumbers ? URL::encode(noteName.c_str()).c_str() : ""));
+ (renderNoteNumbers ? noteName.c_str() : ""));
}
u->suspendTextPassThru = true;
}
@@ -289,7 +289,7 @@
URL::encode(footnoteNumber.c_str()).c_str(),
URL::encode(u->version.c_str()).c_str(),
URL::encode(vkey->getText()).c_str(),
- (renderNoteNumbers ? URL::encode(noteName.c_str()).c_str() : ""));
+ (renderNoteNumbers ? noteName.c_str() : ""));
}
}
More information about the sword-cvs
mailing list