needed a quick solution to target tag issues

This commit is contained in:
Eric J. Bowersox
2002-01-07 07:30:26 +00:00
parent ab048bf7ae
commit 6baf87cee5
3 changed files with 71 additions and 36 deletions

View File

@@ -272,43 +272,26 @@ conf/posts.js.vs?<%= topic_locator %>&p1=<%= my_last + 1 %>&p2=<%= Math.min(my_l
</util:xlink>,
<%= view.formatDate(msg.getPostDate()) %>
</EM>)
<% if (msg.hasAttachment()) { %>
<util:xlink target="_blank">
<% if (view.displayAttachmentInNewWindow(msg)) { %>
<util:target>_blank</util:target>
<% } // end if %>
<util:href type="servlet">
conf/view_attachment.js.vs?<%= base_locator %>&msg=<%= msg.getPostID() %>
</util:href>
<util:text>
<util:image src="attachment.gif" fixup="true" width="16" height="16">
<util:alt>
(Attachment <%= msg.getAttachmentFilename() %> - <%= msg.getAttachmentLength() %> bytes)
</util:alt>
</util:image>
</util:text>
<util:linktitle>
(Attachment <%= msg.getAttachmentFilename() %> - <%= msg.getAttachmentLength() %> bytes)
</util:linktitle>
</util:xlink>
<%
if (msg.hasAttachment()) {
if (view.displayAttachmentInNewWindow(msg)) {
%>
<util:xlink target="_blank">
<util:href type="servlet">
conf/view_attachment.js.vs?<%= base_locator %>&msg=<%= msg.getPostID() %>
</util:href>
<util:text>
<util:image src="attachment.gif" fixup="true" width="16" height="16">
<util:alt>
(Attachment <%= msg.getAttachmentFilename() %> - <%= msg.getAttachmentLength() %> bytes)
</util:alt>
</util:image>
</util:text>
<util:linktitle>
(Attachment <%= msg.getAttachmentFilename() %> - <%= msg.getAttachmentLength() %> bytes)
</util:linktitle>
</util:xlink>
<% } else { %>
<util:xlink>
<util:href type="servlet">
conf/view_attachment.js.vs?<%= base_locator %>&msg=<%= msg.getPostID() %>
</util:href>
<util:text>
<util:image src="attachment.gif" fixup="true" width="16" height="16">
<util:alt>
(Attachment <%= msg.getAttachmentFilename() %> - <%= msg.getAttachmentLength() %> bytes)
</util:alt>
</util:image>
</util:text>
<util:linktitle>
(Attachment <%= msg.getAttachmentFilename() %> - <%= msg.getAttachmentLength() %> bytes)
</util:linktitle>
</util:xlink>
<%
} // end if
} // end if
} // end if
%>