This PR contains all the work related to setting up this project as required to implement the [Assignment](https://repo.rock-n-code.com/rock-n-code/deep-linking-assignment/wiki/Assignment) on top, as intended. To summarise this work: - [x] created a new **Xcode** project; - [x] cloned the `Wikipedia` app and inserted it into the **Xcode** project; - [x] created the `Locations` app and also, its `Libraries` package; - [x] created the `Shared` package to share dependencies between the apps; - [x] added a `Makefile` file and implemented some **environment** and **help** commands. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: rock-n-code/deep-linking-assignment#1
15 lines
918 B
Swift
15 lines
918 B
Swift
import Foundation
|
|
|
|
@objc(WMFLicenses)
|
|
@objcMembers public class Licenses: NSObject {
|
|
public static let localizedCCZEROTitle = WMFLocalizedString("cc-zero", value: "Creative Commons CC0", comment: "Name of the CC Zero license - https://creativecommons.org/publicdomain/zero/1.0/")
|
|
public static let localizedSaveTermsTitle = WMFLocalizedString("wikitext-upload-save-terms-name", value: "Terms of Use", comment: "This message is used in the message [[Wikimedia:Wikipedia-ios-wikitext-upload-save-terms-and-license]].")
|
|
|
|
|
|
public static let CCBYSA3URL = URL(string: "https://creativecommons.org/licenses/by-sa/3.0/")
|
|
public static let CCZEROURL = URL(string: "https://creativecommons.org/publicdomain/zero/1.0/")
|
|
public static let GFDLURL = URL(string: "https://www.gnu.org/licenses/fdl.html")
|
|
public static let saveTermsURL = URL(string:"https://foundation.wikimedia.org/wiki/Terms_of_Use")
|
|
}
|
|
|