Minor Proposed Change to File History

So, I've been a bit displeased with how the system I set up for editor history has aged. It's not very robust, though it's certainly simple. I was considering what issues it has and how they might be addressed. The main two issues are:
1: When there are a lot of editors/edits, it becomes difficult to match edits to dates.
2: When there's a comment, the current method of including those comments isn't very well incorporated.
I whipped up this from a card with those issues (Raging Ravine).
1: When there are a lot of editors/edits, it becomes difficult to match edits to dates.
2: When there's a comment, the current method of including those comments isn't very well incorporated.
I whipped up this from a card with those issues (Raging Ravine).
- Code: Select all
<AUTHOR><![CDATA[sumomole]]></AUTHOR>
<EDITORS><![CDATA[sumomole, Borborigmos, Splinterverse, Splinterverse, Splinterverse, Splinterverse]]></EDITORS>
<DATE><![CDATA[25-09-14, 23-10-15, 16-01-17, 22-01-17, 29-01-17, 03-02-01]]></DATE>
--22-01-17: Added availability block to creature ability.
Becomes
<HISTORY>
<CREATION Author="sumomole" Date="25-09-14" />
<EDITS>
<EDIT Author="Borborigmos" Date="23-10-15" />
<EDIT Author="Splinterverse" Date="16-01-17" />
<EDIT Author="Splinterverse" Date="22-01-17"><![CDATA[Added availability block to creature ability.]]></EDIT>
<EDIT Author="Splinterverse" Date="29-01-17" />
<EDIT Author="Splinterverse" Date="03-02-01" />
</EDITS>
</HISTORY>
- Code: Select all
<AUTHOR><![CDATA[sumomole, Borborigmos]]></AUTHOR>
<EDITORS><![CDATA[sumomole, Borborigmos]]></EDITORS>
<DATE><![CDATA[25-09-14, 23-09-14]]></DATE>
Becomes
<HISTORY>
<CREATION Author="sumomole" Author2="Borborigmos" Date="25-09-14" />
</HISTORY>