Changeset 3087
- Timestamp:
- 2002-04-22T15:26:19+12:00 (21 years ago)
- Location:
- trunk/gsdl/src/recpt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gsdl/src/recpt/documentaction.cpp
r2805 r3087 767 767 768 768 // output the document text 769 textout << "<p>\n"; 770 output_document (OID, args, collectproto, disp, outconvert, textout, logout); 769 if (!args["d"].empty()) { 770 textout << "<p>\n"; 771 output_document (OID, args, collectproto, disp, outconvert, textout, logout); 772 } 771 773 772 774 textout << outconvert << disp << "_document:footer_\n"; … … 928 930 int count = 0; 929 931 while (sechere != secend) { 930 textout << outconvert << disp << "\n<p><a name=" << count<< "></a>\n";932 textout << outconvert << disp << "\n<p><a name=" << (*sechere).OID << "></a>\n"; 931 933 932 934 int shastxt = (*sechere).metadata["hastxt"].values[0].getint(); -
trunk/gsdl/src/recpt/vlistbrowserclass.cpp
r3065 r3087 213 213 link += "&cl=" + arg_cl + "&d=" + section.OID + "\">"; 214 214 } 215 } else link += "&cl=" + arg_cl + "&d=" + section.OID + "\">"; 215 } else { 216 if (args["gt"] == "0") { 217 link += "&cl=" + arg_cl + "&d=" + section.OID + "\">"; 218 } else { 219 link += "&cl=" + arg_cl + "&d=" + section.OID + "#" + section.OID + "\">"; 220 } 221 } 216 222 217 223 } else {
Note:
See TracChangeset
for help on using the changeset viewer.