Skip to content

Commit

Permalink
Merge pull request #90 from ascmitc/dev/add-hashdate
Browse files Browse the repository at this point in the history
Adding the hashdate attribute to file hash entries (in XML)
  • Loading branch information
jwaggs authored Jul 7, 2021
2 parents 87d4c19 + 3b7f12f commit c7c2d09
Show file tree
Hide file tree
Showing 31 changed files with 114 additions and 107 deletions.
7 changes: 6 additions & 1 deletion ascmhl/hashlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,14 +213,19 @@ class to store one hash value
hash_string: str
structure_hash_string: str
hash_format: str
hash_date: datetime
action: Optional[str]

def __init__(self, hash_format: str, hash_string: str, action: str = None):
def __init__(self, hash_format: str, hash_string: str, action: str = None, hash_date: datetime = None):
self.hash_format = hash_format
self.hash_string = hash_string
self.structure_hash_string = None

self.action = action
if hash_date != None:
self.hash_date = hash_date
else:
self.hash_date = datetime.now()


class MHLHashListReference:
Expand Down
2 changes: 2 additions & 0 deletions ascmhl/hashlist_xml_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ def _media_hash_xml_element(media_hash: MHLMediaHash):
entry_element.text = hash_entry.hash_string
if hash_entry.action:
entry_element.attrib["action"] = hash_entry.action
if hash_entry.hash_date:
entry_element.attrib["hashdate"] = datetime_isostring(hash_entry.hash_date, True)
hash_element.append(entry_element)

return hash_element
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/travel_01/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-16T09:15:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="original">0ea03b369a463d9d</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="original">7680e5f98f4a80fd</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-16T09:15:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="original">3ab5a4166b9bde44</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c42gmwsBnLPw9TBxSS2j2KYVKPsPbmWDoZt5kyhxdkPheqbRWvMyKrYHnJapmmnZJGpvkqjQ3iiwkoTGKc69cAbr9d
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c45udP9mcGwRfjWayH1cjiiPB2MPSWnR1Ztvbx1GAsBBh2kpj3bps4pTtmYo9yTCz1FN4anFRSMt1Ar3VrF6SmDU3i
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/travel_01/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-16T09:15:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="original">0ea03b369a463d9d</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="original">7680e5f98f4a80fd</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-16T09:15:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="original">3ab5a4166b9bde44</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/file_server/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-17T14:30:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="verified">0ea03b369a463d9d</xxh64>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="verified">7680e5f98f4a80fd</xxh64>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-17T14:30:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="verified">3ab5a4166b9bde44</xxh64>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c42gmwsBnLPw9TBxSS2j2KYVKPsPbmWDoZt5kyhxdkPheqbRWvMyKrYHnJapmmnZJGpvkqjQ3iiwkoTGKc69cAbr9d
0002 0002_A002R2EC_2020-01-17_143000.mhl c4: c43jd5aV3dCwJg7C821d4uoKayfeACFxJRvkpzxeaAhsxNvwuMPqHm2imv28j8YvusW7sHfxKpxudo2qLAFNUKikvd
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c45udP9mcGwRfjWayH1cjiiPB2MPSWnR1Ztvbx1GAsBBh2kpj3bps4pTtmYo9yTCz1FN4anFRSMt1Ar3VrF6SmDU3i
0002 0002_A002R2EC_2020-01-17_143000.mhl c4: c42vWAdQS4UZNkx4eAgX7bvA92BxTcNCp9tgu8dL7KAMiKvV5DUxFwUjeqnFhutLrAmWWhD8DXJzrcvQz514n9VExj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/travel_01/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-16T09:15:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="original">0ea03b369a463d9d</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="original">7680e5f98f4a80fd</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-16T09:15:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="original">3ab5a4166b9bde44</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c42gmwsBnLPw9TBxSS2j2KYVKPsPbmWDoZt5kyhxdkPheqbRWvMyKrYHnJapmmnZJGpvkqjQ3iiwkoTGKc69cAbr9d
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c45udP9mcGwRfjWayH1cjiiPB2MPSWnR1Ztvbx1GAsBBh2kpj3bps4pTtmYo9yTCz1FN4anFRSMt1Ar3VrF6SmDU3i
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/travel_01/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-16T09:15:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="original">0ea03b369a463d9d</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="original">7680e5f98f4a80fd</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-16T09:15:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="original">3ab5a4166b9bde44</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/file_server/A002R2EC</path>
<md5 structure="b2ae676728fea69eb9f826defee34d07">ef2c1c34ebac7d493ffb0e79efaa0a1d</md5>
<md5 structure="b2ae676728fea69eb9f826defee34d07" hashdate="2020-01-17T14:30:00+00:00">ef2c1c34ebac7d493ffb0e79efaa0a1d</md5>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,22 +20,22 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="verified">0ea03b369a463d9d</xxh64>
<md5 action="verified">f5ac8127b3b6b85cdc13f237c6005d80</md5>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">0ea03b369a463d9d</xxh64>
<md5 action="verified" hashdate="2020-01-17T14:30:00+00:00">f5ac8127b3b6b85cdc13f237c6005d80</md5>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="verified">7680e5f98f4a80fd</xxh64>
<md5 action="verified">614dd0e977becb4c6f7fa99e64549b12</md5>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">7680e5f98f4a80fd</xxh64>
<md5 action="verified" hashdate="2020-01-17T14:30:00+00:00">614dd0e977becb4c6f7fa99e64549b12</md5>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<md5 structure="a36f6434c9cb1f5fc44a7dc80aa6400a">5bfa20fc4fb2c4a8e6fafcd07b85061b</md5>
<md5 structure="a36f6434c9cb1f5fc44a7dc80aa6400a" hashdate="2020-01-17T14:30:00+00:00">5bfa20fc4fb2c4a8e6fafcd07b85061b</md5>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="verified">3ab5a4166b9bde44</xxh64>
<md5 action="verified">6425c5a180ca0f420dd2b25be4536a91</md5>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">3ab5a4166b9bde44</xxh64>
<md5 action="verified" hashdate="2020-01-17T14:30:00+00:00">6425c5a180ca0f420dd2b25be4536a91</md5>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c42gmwsBnLPw9TBxSS2j2KYVKPsPbmWDoZt5kyhxdkPheqbRWvMyKrYHnJapmmnZJGpvkqjQ3iiwkoTGKc69cAbr9d
0002 0002_A002R2EC_2020-01-17_143000.mhl c4: c43VLPGPmyi2QXDRPw5yetAMacaTZvDuxEQY1BfX8etRt5hsvh1nAKFSAFUJA4fFWVNagsbAntPgP1KzDFsSRwcQRs
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c45udP9mcGwRfjWayH1cjiiPB2MPSWnR1Ztvbx1GAsBBh2kpj3bps4pTtmYo9yTCz1FN4anFRSMt1Ar3VrF6SmDU3i
0002 0002_A002R2EC_2020-01-17_143000.mhl c4: c43cXaU4XZk6wgb8zhGxFq5x8MgaogzaRf6rCTAje184MEvTYKhQuawRyBeg56RJLNaWjqGxew1Kb6HLpsRp8ZytLK
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/travel_01/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-16T09:15:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="original">0ea03b369a463d9d</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="original">7680e5f98f4a80fd</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-16T09:15:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="original">3ab5a4166b9bde44</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c42gmwsBnLPw9TBxSS2j2KYVKPsPbmWDoZt5kyhxdkPheqbRWvMyKrYHnJapmmnZJGpvkqjQ3iiwkoTGKc69cAbr9d
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c45udP9mcGwRfjWayH1cjiiPB2MPSWnR1Ztvbx1GAsBBh2kpj3bps4pTtmYo9yTCz1FN4anFRSMt1Ar3VrF6SmDU3i
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/travel_01/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-16T09:15:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="original">0ea03b369a463d9d</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="original">7680e5f98f4a80fd</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-16T09:15:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="original">3ab5a4166b9bde44</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/file_server/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">2ca8e358d014d65e</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-17T14:30:00+00:00">2ca8e358d014d65e</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="verified">0ea03b369a463d9d</xxh64>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="verified">7680e5f98f4a80fd</xxh64>
<xxh64 action="verified" hashdate="2020-01-17T14:30:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-17T14:30:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="60" lastmodificationdate="2020-01-17T14:30:00+00:00">Sidecar.txt</path>
<xxh64 action="failed">70d2cf31aaa3eac4</xxh64>
<xxh64 action="failed" hashdate="2020-01-17T14:30:00+00:00">70d2cf31aaa3eac4</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c42gmwsBnLPw9TBxSS2j2KYVKPsPbmWDoZt5kyhxdkPheqbRWvMyKrYHnJapmmnZJGpvkqjQ3iiwkoTGKc69cAbr9d
0002 0002_A002R2EC_2020-01-17_143000.mhl c4: c42AWHUiVtBYSBzegBrbbsp2iiV7fgbmKyZT6CBHEyYqbAdfAfi3ke9U7CRiz6kyBc576GQkzDDCoghN2LiyE2xf9E
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c45udP9mcGwRfjWayH1cjiiPB2MPSWnR1Ztvbx1GAsBBh2kpj3bps4pTtmYo9yTCz1FN4anFRSMt1Ar3VrF6SmDU3i
0002 0002_A002R2EC_2020-01-17_143000.mhl c4: c41juawrqatjCyfHbGKxyeq4Ph17c7KxunBHoaqAPc21mA7451Vr6LAqJQXWvXDzna88DsQpDNpg6LnSXY9SDMFhNQ
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<processinfo>
<roothash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">/travel_01/A002R2EC</path>
<xxh64 structure="574ab2d2afc981cd">7e423206834bf81a</xxh64>
<xxh64 structure="574ab2d2afc981cd" hashdate="2020-01-16T09:15:00+00:00">7e423206834bf81a</xxh64>
</roothash>
<process>in-place</process>
<ignore>
Expand All @@ -20,19 +20,19 @@
<hashes>
<hash>
<path size="5" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C006_141024_R2EC.mov</path>
<xxh64 action="original">0ea03b369a463d9d</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">0ea03b369a463d9d</xxh64>
</hash>
<hash>
<path size="4" lastmodificationdate="2020-01-15T13:00:00+00:00">Clips/A002C007_141024_R2EC.mov</path>
<xxh64 action="original">7680e5f98f4a80fd</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">7680e5f98f4a80fd</xxh64>
</hash>
<hash directory="true">
<path lastmodificationdate="2020-01-15T13:00:00+00:00">Clips</path>
<xxh64 structure="a27e08b77ae22c78">6d43a82e7a5d40f6</xxh64>
<xxh64 structure="a27e08b77ae22c78" hashdate="2020-01-16T09:15:00+00:00">6d43a82e7a5d40f6</xxh64>
</hash>
<hash>
<path size="58" lastmodificationdate="2020-01-15T13:00:00+00:00">Sidecar.txt</path>
<xxh64 action="original">3ab5a4166b9bde44</xxh64>
<xxh64 action="original" hashdate="2020-01-16T09:15:00+00:00">3ab5a4166b9bde44</xxh64>
</hash>
</hashes>
</hashlist>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c42gmwsBnLPw9TBxSS2j2KYVKPsPbmWDoZt5kyhxdkPheqbRWvMyKrYHnJapmmnZJGpvkqjQ3iiwkoTGKc69cAbr9d
0001 0001_A002R2EC_2020-01-16_091500.mhl c4: c45udP9mcGwRfjWayH1cjiiPB2MPSWnR1Ztvbx1GAsBBh2kpj3bps4pTtmYo9yTCz1FN4anFRSMt1Ar3VrF6SmDU3i
Loading

0 comments on commit c7c2d09

Please sign in to comment.