Skip to content
This repository has been archived by the owner on Jul 9, 2018. It is now read-only.

Commit

Permalink
Various legal bits and bobs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mysteriouspants committed Sep 27, 2011
1 parent 3572e23 commit c7ad18a
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 98 deletions.
26 changes: 26 additions & 0 deletions COPYING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Firestorm Development Open-Source License
_Version 0.1_

This software is licensed under the Firestorm Development Open-Source License, which is a dual-licensing under the BSD and MIT license. Pursuant to these terms, you may use this software under the terms of either the BSD or MIT licenses - not both. One or the other, no mix-and-match. The license text of both licenses follows for clarity:

## 2-clause BSD license:
> Copyright 2011 Chris Miller. All rights reserved.
>
> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
>
> 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
>
> 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
>
> THIS SOFTWARE IS PROVIDED BY Chris Miller "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Chris Miller OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
>
> The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Chris Miller.
## MIT license:
> Copyright (c) 2011 Chris Miller
>
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 changes: 0 additions & 20 deletions NewDotDebugging/LoginTests.h

This file was deleted.

78 changes: 0 additions & 78 deletions NewDotDebugging/LoginTests.m

This file was deleted.

22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# NewDot

The official API for interfacing with FamilySearch using Apple technologies.

## Installation

Clone NewDot into your project as a Git submodule, then clone the other sub-submodules that NewDot depends on:

git submodule add git@github.com:NSError/NewDot.git vendor/NewDot
cd vendor/NewDot
git submodule init
git submodule update

Add the NewDot project to your Xcode project workspace; under your application's Build Phases tab, add "NewDot" as a Target Dependency. To your project add the linker flags `-all_load -ObjC` to ensure that categories are loaded correctly. Finally, ensure that you add `$(BUILT_PRODUCTS_DIR)` (non-recursive) to your User Header Search Paths.

You should now be linking against the NewDot library. The headers are accessed using a prefix. For example, if I wanted to import `NDService.h`, I would import `NewDot/NDService.h`.

## Licensing

NewDot is licensed under the [Firestorm Development Open-Source License][fsdev-fdosl]. More information can be found in the file `COPYING.md`.

[fsdev-fdosl]: http://fsdev.net/fdosl/ Firestorm Development Open-Source License

0 comments on commit c7ad18a

Please sign in to comment.