-
Notifications
You must be signed in to change notification settings - Fork 146
Description
I'd like to get a sound check before making a PR, and this generally applies to any entry where its href
and status
may change.
Example:
I'd like to add entries, e.g., SOLID-PROTOCOL
( https://solidproject.org/TR/protocol ) and WAC
( https://solidproject.org/TR/wac ). Those reports currently have status "Draft Community Group Report" at W3C. Work on those reports may continue under a W3C WG, and if published, the URLs for "published" versions will be under w3.org.
What may be a good practice here as far as using the same or different keys for reports with different statuses? If the same key is used while the status
and href
changes, would that considered be a bad practice considering, e.g., references made while at status A may not be accurate or meaningful when the status changes to B?
I suspect that using the same key but changing status
and href
values in the future may not be a major problem because the biblio information in the generated HTML will just use the latest values from status
and href
every time.
For example, would the following (entry snippet) be considered okay:
Today:
"SOLID-PROTOCOL": {
"href": "https://solidproject.org/TR/protocol",
"status": "Draft Community Group Report"
}
In the future:
"SOLID-PROTOCOL": {
"href": "https://www.w3.org/TR/solid-protocol",
"status": "REC"
}
Thoughts?