Actually, there are perhaps some corners to consider knocking off related to:
* I verified that the syntax numbers with fractional parts is the same in both iCal in jCal. Specifically "4." is not valid in either grammar, so there is no need to discuss something like adding a 0 or remove the decimal point during conversion.
looking again, iCal says:

float      = (["+"] / "-") 1*DIGIT ["." 1*DIGIT]


but json says:

number = [ minus ] int [ frac ] [ exp ]
int = zero / ( digit1-9 *DIGIT )

So, in iCal, you could have '+4' . json doesn't allow the plus sign.

iCal appears to allow leading 0s. json does not.



_______________________________________________
Gen-art mailing list
[email protected]
https://www.ietf.org/mailman/listinfo/gen-art

Reply via email to