ginger 0.3.7.1 → 0.3.7.2
raw patch · 2 files changed
+93/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ginger.cabal +3/−1
- test/fixtures/silly-locale.json +90/−0
ginger.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: ginger-version: 0.3.7.1+version: 0.3.7.2 synopsis: An implementation of the Jinja2 template language in Haskell description: Ginger is Jinja, minus the most blatant pythonisms. Wants to be feature complete, but isn't quite there yet.@@ -15,7 +15,9 @@ category: Text build-type: Simple -- extra-source-files:+data-files: test/fixtures/*.json cabal-version: >=1.10+bug-reports: https://github.com/tdammers/ginger/issues library exposed-modules: Text.Ginger
+ test/fixtures/silly-locale.json view
@@ -0,0 +1,90 @@+{+ "dateTimeFmt" : "It be %A, in the year %y, the clock striketh %H",+ "wDays" : [+ [+ "The Day Of Sunshine",+ "Sun"+ ],+ [+ "The Day Of Monning",+ "Mon"+ ],+ [+ "The Day Of Two",+ "Tue"+ ],+ [+ "The Midst Of The Week",+ "Wed"+ ],+ [+ "The Day Of Thor",+ "Thu"+ ],+ [+ "The Day Of Freya",+ "Fri"+ ],+ [+ "The Day Of Saturn",+ "Sat"+ ]+ ],+ "amPm" : [+ "Morning",+ "Evening"+ ],+ "timeFmt" : "%H o'clock",+ "months" : [+ [+ "January",+ "Jan"+ ],+ [+ "February",+ "Feb"+ ],+ [+ "March",+ "Mar"+ ],+ [+ "April",+ "Apr"+ ],+ [+ "May",+ "May"+ ],+ [+ "June",+ "Jun"+ ],+ [+ "July",+ "Jul"+ ],+ [+ "August",+ "Aug"+ ],+ [+ "September",+ "Sep"+ ],+ [+ "October",+ "Oct"+ ],+ [+ "November",+ "Nov"+ ],+ [+ "December",+ "Dec"+ ]+ ],+ "time12Fmt" : "%I:%M:%S %p",+ "dateFmt" : "%d-%m, %y"+}