-
-
Save totten/3d03927cb490a4faaf97 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Currently going to latest.civicrm.org/stable.php outputs: | |
4.5.2 | |
// Proposed new output (B) | |
[ | |
{version: "4.4.0"}, | |
{version: "4.4.1"}, | |
{version: "4.4.2", security: true} | |
{version: "4.5.0"}, | |
{version: "4.5.1"}, | |
{version: "4.5.2", security: true} | |
... | |
] | |
// Proposed new layout (C) | |
[ | |
"4.4": [ | |
{version: "4.4.0"}, | |
{version: "4.4.1"}, | |
{version: "4.4.2", security: true} | |
}, | |
"4.5": | |
{version: "4.5.0"}, | |
{version: "4.5.1"}, | |
{version: "4.5.2", security: true} | |
] | |
... | |
] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Let's move further discussion to https://issues.civicrm.org/jira/browse/CRM-13672 since gist doesn't support email notifications.