From c37a7a9cfdfb6590382ac9ad839977d246e63c59 Mon Sep 17 00:00:00 2001 From: Stig Brautaset Date: Mon, 2 May 2011 11:30:43 +0800 Subject: [PATCH] Fix links to issues after the change to the structure @ github. Update Readme. Also a somewhat gratuitous rename of files from .markdown to .md. --- Changes.markdown => Changes.md | 22 +++++++-------- Credits.markdown => Credits.md | 0 Installation.markdown => Installation.md | 4 +-- Readme.markdown | 28 ------------------- Readme.md | 27 ++++++++++++++++++ ...eChecklist.markdown => ReleaseChecklist.md | 2 +- 6 files changed, 41 insertions(+), 42 deletions(-) rename Changes.markdown => Changes.md (93%) rename Credits.markdown => Credits.md (100%) rename Installation.markdown => Installation.md (85%) delete mode 100644 Readme.markdown create mode 100644 Readme.md rename ReleaseChecklist.markdown => ReleaseChecklist.md (82%) diff --git a/Changes.markdown b/Changes.md similarity index 93% rename from Changes.markdown rename to Changes.md index 3a973827..52a458c3 100644 --- a/Changes.markdown +++ b/Changes.md @@ -6,16 +6,16 @@ * [Issue 42][#42]: Fix bug in handling of Unicode Surrogate Pairs. * [Issue 48][#48]: Increase precision when writing floating-point numbers so NSTimeInterval instances since epoch can be represented fully. -[#42]: http://github.com/stig/json-framework/issues/#issue/42 -[#46]: http://github.com/stig/json-framework/issues/#issue/46 -[#48]: http://github.com/stig/json-framework/issues/#issue/48 +[#42]: http://github.com/stig/json-framework/issues/42 +[#46]: http://github.com/stig/json-framework/issues/46 +[#48]: http://github.com/stig/json-framework/issues/48 ## Version 3.0beta1 (January 30th, 2011) ### Bug Fixes * [Issue 36][#36]: Fix bug in build script that caused it to break if $SRCROOT has spaces. -[#36]: http://github.com/stig/json-framework/issues/#issue/36 +[#36]: http://github.com/stig/json-framework/issues/36 ### Changes @@ -46,13 +46,13 @@ * [Issue 30][#30]: Added *TwitterStream* example project showing how to interact with Twitter's multi-document stream. (See `Examples/TwitterStream` in the distribution.) [bench]: http://github.com/samsoffes/json-benchmarks -[#9]: http://github.com/stig/json-framework/issues/#issue/9 -[#12]: http://github.com/stig/json-framework/issues/#issue/12 -[#16]: http://github.com/stig/json-framework/issues/#issue/16 -[#18]: http://github.com/stig/json-framework/issues/#issue/18 -[#27]: http://github.com/stig/json-framework/issues/#issue/27 -[#30]: http://github.com/stig/json-framework/issues/#issue/30 -[#25]: http://github.com/stig/json-framework/issues/#issue/25 +[#9]: http://github.com/stig/json-framework/issues/9 +[#12]: http://github.com/stig/json-framework/issues/12 +[#16]: http://github.com/stig/json-framework/issues/16 +[#18]: http://github.com/stig/json-framework/issues/18 +[#27]: http://github.com/stig/json-framework/issues/27 +[#30]: http://github.com/stig/json-framework/issues/30 +[#25]: http://github.com/stig/json-framework/issues/25 ## Version 2.3.1 (September 25th, 2010) diff --git a/Credits.markdown b/Credits.md similarity index 100% rename from Credits.markdown rename to Credits.md diff --git a/Installation.markdown b/Installation.md similarity index 85% rename from Installation.markdown rename to Installation.md index dec9d4bd..cc9aabe4 100644 --- a/Installation.markdown +++ b/Installation.md @@ -4,7 +4,7 @@ Super-simple installation By *far* the simplest way to start using JSON in your iPhone, iPad, or Mac application is to simply copy all the source files (the contents of the `Classes` folder) into your own Xcode project. 1. In the Finder, open the `json-framework/Classes` folder and select all the files. -1. Drop-and-drop them on the **Classes** group in the **Groups & Files** menu of your Xcode project. +1. Drop-and-drop them into your Xcode project. 1. Tick the **Copy items into destination group's folder** option. 1. Use `#import "JSON.h"` in your source files. @@ -26,6 +26,6 @@ Alternative installation instructions Copying the JSON Classes into your project isn't the *only* way to use this framework. I've created a couple of examples that link to this framework rather than copy the sources. Check them out at github: -* [Linking to JSON Framework on the iPhone, iPad & iPod Touch](http://github.com/stig/JsonSampleIPhone) +* [Linking to JSON Framework on iOS](http://github.com/stig/JsonSampleIPhone) * [Linking to JSON Framework on the Mac](http://github.com/stig/JsonSampleMac) diff --git a/Readme.markdown b/Readme.markdown deleted file mode 100644 index a37e3844..00000000 --- a/Readme.markdown +++ /dev/null @@ -1,28 +0,0 @@ -JSON Framework -============== - -JSON is a light-weight data interchange format that's easy to read and -write for humans and computers alike. This framework implements a strict -JSON parser and generator in Objective-C. - -Features --------- - -* BSD license. -* Easy-to-use API. -* Strict parsing & generation. -* Stack of error available in case of failure so you can easily figure out what is wrong. -* Optional pretty-printing of JSON output. -* Optionally sorted dictionary keys in JSON output. -* Configurable recursion depth for parsing, for added security. - -Links ------ - -* The GitHub [project page][src]. -* The online [API documentation][api]. -* The new [website][web]. - -[api]: http://stig.github.com/json-framework/api -[web]: http://stig.github.com/json-framework -[src]: http://github.com/stig/json-framework diff --git a/Readme.md b/Readme.md new file mode 100644 index 00000000..78ed698d --- /dev/null +++ b/Readme.md @@ -0,0 +1,27 @@ +JSON Framework +============== + +JSON is a light-weight data interchange format that's easy to read and +write for humans and computers alike. This framework aims to implement a +strict JSON parser and generator in Objective-C. + +Features +-------- + +Core features: +* BSD license. +* Easy-to-use API. +* Strict parsing & generation. + +Optional features include (but not limited to): +* Pretty-printing of JSON output. +* Sorted dictionary keys in JSON output. +* Configurable recursion depth limit for added security. + +Links +----- + +* The GitHub [project page](http://github.com/stig/json-framework). +* Online [API documentation](http://stig.github.com/json-framework/api). +* The new [website](http://stig.github.com/json-framework). + diff --git a/ReleaseChecklist.markdown b/ReleaseChecklist.md similarity index 82% rename from ReleaseChecklist.markdown rename to ReleaseChecklist.md index 52707f26..0bab0ec0 100644 --- a/ReleaseChecklist.markdown +++ b/ReleaseChecklist.md @@ -1,4 +1,4 @@ -* Update Changes.markdown +* Update Changes.md * % agvtool new-marketing-version XXX * % agvtool bump * Update website