Changeset 2313
- Timestamp:
- 05/13/08 01:00:53 (21 months ago)
- Location:
- branches/release-38/default_templates
- Files:
-
- 3 modified
-
comment_preview.mtml (modified) (3 diffs)
-
comments.mtml (modified) (1 diff)
-
javascript.mtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-38/default_templates/comment_preview.mtml
r2310 r2313 37 37 <span class="byline"> 38 38 <mt:IfCommentParent> 39 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<$MTCommentAuthorIdentity$> <span class="vcard author"><$MTCommentAuthorLink$></span>%%<mt:CommentParent>< mt:CommentEntry><mt:entrypermalink></mt:CommentEntry>#comment-<$MTCommentID$></mt:CommentParent>%%<mt:CommentParent><$MTCommentAuthor$></mt:CommentParent>">39 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<$MTCommentAuthorIdentity$> <span class="vcard author"><$MTCommentAuthorLink$></span>%%<mt:CommentParent><$mt:CommentLink$></mt:CommentParent>%%<mt:CommentParent><$MTCommentAuthor$></mt:CommentParent>"> 40 40 <mt:else> 41 41 <$MTCommentAuthorIdentity$> 42 42 <span class="vcard author"><$MTCommentAuthorLink$></span> 43 43 </mt:IfCommentParent> 44 | <a href=" #comment-<$MTCommentID$>"><abbr class="published" title="<$MTCommentDate format_name="iso8601"$>"><$MTCommentDate$></abbr></a>44 | <a href="<$mt:CommentLink$>"><abbr class="published" title="<$MTCommentDate format_name="iso8601"$>"><$MTCommentDate$></abbr></a> 45 45 </span> 46 46 </div> … … 64 64 <input type="hidden" name="entry_id" value="<$MTEntryID$>" /> 65 65 <input type="hidden" name="__lang" value="<$MTBlogLanguage$>" /> 66 <mt:IfCommentParent>67 <input type="hidden" name="parent_id" value="< mt:CommentParent><$MTCommentID$></mt:CommentParent>">68 </mt:IfCommentParent>66 <mt:IfCommentParent> 67 <input type="hidden" name="parent_id" value="<$mt:CommentParentId$>" id="comment-parent-id"> 68 </mt:IfCommentParent> 69 69 <div id="comments-open-data"> 70 70 <div id="comment-form-name"> … … 81 81 </div> 82 82 </div> 83 <mt:IfCommentParent> 84 <div id="comment-form-reply"> 85 <input type="checkbox" id="comment-reply" name="comment_reply" value="<$mt:CommentParentId$>" checked="checked" onclick="mtSetCommentParentID()" /> 86 <label for="comment-reply" id="comment-reply-label"><__trans phrase="Replying to comment from [_1]" params="<mt:CommentParent><$MTCommentAuthor$></mt:CommentParent>"></label> 87 </div> 88 </mt:IfCommentParent> 83 89 <div id="comments-open-text"> 84 90 <label for="comment-text"><__trans phrase="Comments"> <MTIfAllowCommentHTML><__trans phrase="(You may use HTML tags for style)"></MTIfAllowCommentHTML></label> -
branches/release-38/default_templates/comments.mtml
r2239 r2313 20 20 <span class="byline"> 21 21 <mt:IfCommentParent> 22 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<$MTCommentAuthorIdentity$> <span class="vcard author"><$MTCommentAuthorLink$></span>%%<mt:CommentParent> #comment-<$MTCommentID$></mt:CommentParent>%%<mt:CommentParent><$MTCommentAuthor$></mt:CommentParent>">22 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<$MTCommentAuthorIdentity$> <span class="vcard author"><$MTCommentAuthorLink$></span>%%<mt:CommentParent><$mt:CommentLink$></mt:CommentParent>%%<mt:CommentParent><$MTCommentAuthor$></mt:CommentParent>"> 23 23 <mt:else> 24 24 <$MTCommentAuthorIdentity$> 25 25 <span class="vcard author"><$MTCommentAuthorLink$></span> 26 26 </mt:IfCommentParent> 27 | <a href=" #comment-<$MTCommentID$>"><abbr class="published" title="<$MTCommentDate format_name="iso8601"$>"><$MTCommentDate relative="js"$></abbr></a>27 | <a href="<$mt:CommentLink$>"><abbr class="published" title="<$MTCommentDate format_name="iso8601"$>"><$MTCommentDate relative="js"$></abbr></a> 28 28 <MTIfCommentsAccepted> | <$MTCommentReplyLink$></MTIfCommentsAccepted> 29 29 </span> -
branches/release-38/default_templates/javascript.mtml
r2280 r2313 501 501 502 502 // Populate label with new values 503 var reply_text = '<__trans phrase="Replying to <a href=" #comment-[_1]">comment from [_2]</a>" params="'+ parent_id +'%%'+ author +'">';503 var reply_text = '<__trans phrase="Replying to <a href="[_1]" onclick="[_2]">comment from [_3]</a>" params="#comment-'+ parent_id +'%%location.href=this.href; return false%%'+ author +'">'; 504 504 label.innerHTML = reply_text; 505 505
