-
Notifications
You must be signed in to change notification settings - Fork 56
Ordering bug with deleted text in a list #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
314a6ba
refs #25: added a test showing the ordering bug
3e7b18e
refs #25: fixed the ordering bug.
8331e4b
Merge branch 'master' into issue_25
03c91d0
Merge branch 'master' into issue_25
df6f18e
Merge branch 'master' into issue_25
a82dd25
Merge branch 'master' into issue_25
0e96655
refs #25: added a test showing that inserted text in lists is still b…
2f0ed87
refs #25: refactor and fixed inserted text in lists
bc4196b
refs #25: added a test showing that smart tags in a list work fine.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<w:del w:id="12" w:author="mfiem" w:date="2008-02-27T06:48:00Z"> | ||
{% for deleted_text in deleted_texts %} | ||
<w:r w:rsidDel="005D3333"> | ||
<w:rPr> | ||
<w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman"/> | ||
</w:rPr> | ||
<w:delText>{{ deleted_text }}</w:delText> | ||
</w:r> | ||
{% endfor %} | ||
</w:del> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is the
author
anddate
stuff coming from? Those aren't valid HTML attributesThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, I'm surprised by the
<br />
here. If I had change tracking on and typedBBB
after the AAA, I would actually be trying to typeAAABBB
on one line. If I typedBBB
I would be trying to typeAAA BBB
on the same line. Is there something I'm not understanding about the way Word records the track changes?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is existing behaviour and has nothing to do with this ticket. #30 will deal with that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yuck. "Existing behavior" is not a great justification for adding another bug, but I understand wanting to break it up. Seems odd to do for such a small ticket, though. Your call, so this would be done if you're cool with it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not certain how complicated it will be, and it would be much simpler to handle it as a separate issue.