Fossil SCM
removed the 'w', 't', and 'ci' aliases from /json/timeline/ALIAS. They provide no real benefit (except arguably 'ci') and may hinder future expansion.
Commit
48255fa981084845c7be0322ec1dd5f97bc0bc7b
Parent
78a48858ef690c0…
1 file changed
-3
-3
| --- src/json_timeline.c | ||
| +++ src/json_timeline.c | ||
| @@ -35,14 +35,11 @@ | ||
| 35 | 35 | that we end up with HTTP clients using 3 different names |
| 36 | 36 | for the same requests. |
| 37 | 37 | */ |
| 38 | 38 | {"branch", json_timeline_branch, 0}, |
| 39 | 39 | {"checkin", json_timeline_ci, 0}, |
| 40 | -{"ci", json_timeline_ci, -1}, | |
| 41 | -{"t", json_timeline_ticket, -1}, | |
| 42 | 40 | {"ticket", json_timeline_ticket, 0}, |
| 43 | -{"w", json_timeline_wiki, -1}, | |
| 44 | 41 | {"wiki", json_timeline_wiki, 0}, |
| 45 | 42 | /* Last entry MUST have a NULL name. */ |
| 46 | 43 | {NULL,NULL,0} |
| 47 | 44 | }; |
| 48 | 45 | |
| 49 | 46 |
| --- src/json_timeline.c | |
| +++ src/json_timeline.c | |
| @@ -35,14 +35,11 @@ | |
| 35 | that we end up with HTTP clients using 3 different names |
| 36 | for the same requests. |
| 37 | */ |
| 38 | {"branch", json_timeline_branch, 0}, |
| 39 | {"checkin", json_timeline_ci, 0}, |
| 40 | {"ci", json_timeline_ci, -1}, |
| 41 | {"t", json_timeline_ticket, -1}, |
| 42 | {"ticket", json_timeline_ticket, 0}, |
| 43 | {"w", json_timeline_wiki, -1}, |
| 44 | {"wiki", json_timeline_wiki, 0}, |
| 45 | /* Last entry MUST have a NULL name. */ |
| 46 | {NULL,NULL,0} |
| 47 | }; |
| 48 | |
| 49 |
| --- src/json_timeline.c | |
| +++ src/json_timeline.c | |
| @@ -35,14 +35,11 @@ | |
| 35 | that we end up with HTTP clients using 3 different names |
| 36 | for the same requests. |
| 37 | */ |
| 38 | {"branch", json_timeline_branch, 0}, |
| 39 | {"checkin", json_timeline_ci, 0}, |
| 40 | {"ticket", json_timeline_ticket, 0}, |
| 41 | {"wiki", json_timeline_wiki, 0}, |
| 42 | /* Last entry MUST have a NULL name. */ |
| 43 | {NULL,NULL,0} |
| 44 | }; |
| 45 | |
| 46 |