Page MenuHomePhabricator

Properly version Legalpad documents
ClosedPublic

Authored by chad on Jul 26 2017, 2:55 AM.
Tags
None
Referenced Files
F18823614: D18280.diff
Thu, Oct 23, 12:41 PM
F18823058: D18280.diff
Thu, Oct 23, 10:02 AM
F18776909: D18280.id43965.diff
Oct 11 2025, 12:06 AM
F18756524: D18280.id.diff
Oct 5 2025, 11:51 AM
F18733691: D18280.id.diff
Sep 30 2025, 10:40 PM
F18711565: D18280.id43963.diff
Sep 29 2025, 4:35 AM
F18679745: D18280.id43964.diff
Sep 26 2025, 1:30 AM
F18674076: D18280.id43964.diff
Sep 25 2025, 1:12 PM
Subscribers

Details

Summary

Fixes T12933. This now creates a new DocumentBody when creating or editing a legalpad document.

Test Plan

Create a new document, edit document. Check database that version is saved as new row, and timestamps are correct.

mysql> select * from legalpad_documentbody;
+----+--------------------------------+--------------------------------+--------------------------------+---------+---------------+--------+-------------+--------------+
| id | phid                           | creatorPHID                    | documentPHID                   | version | title         | text   | dateCreated | dateModified |
+----+--------------------------------+--------------------------------+--------------------------------+---------+---------------+--------+-------------+--------------+
|  1 | PHID-LEGB-nsgzqklzfmjahlcgobm7 | PHID-USER-72xwu7eurrpsu2kxgrvw | PHID-LEGD-v7mc3xyithjvbiqeksbj |       2 | Legal Title 1 | Body 2 |  1501037011 |   1501037081 |
|  2 | PHID-LEGB-2kaytwmjusljib6pjycc | PHID-USER-72xwu7eurrpsu2kxgrvw | PHID-LEGD-v7mc3xyithjvbiqeksbj |       3 | Legal Title 1 | Body 3 |  1501037521 |   1501037521 |
|  3 | PHID-LEGB-h6q6bi42w4rgxrhk3qdb | PHID-USER-72xwu7eurrpsu2kxgrvw | PHID-LEGD-7gxuhafvkoy2izkv4gdd |       1 | New 2         | asdf   |  1501037553 |   1501037553 |
+----+--------------------------------+--------------------------------+--------------------------------+---------+---------------+--------+-------------+--------------+
3 rows in set (0.00 sec)

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

  • add a migration script
epriestley added inline comments.
src/applications/legalpad/editor/LegalpadDocumentEditor.php
53

Slightly more correct as $this->getActingAsPHID(), so we get a better PHID if an omnipotent user is acting for an application or a real user. This probably never happens on this codepath today.

This revision is now accepted and ready to land.Jul 26 2017, 2:52 PM
This revision was automatically updated to reflect the committed changes.