Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module: CouchDB
author: IBM
author: IBM & Kitura project authors
github_url: https://github.com/Kitura/Kitura-CouchDB/

theme: fullwidth
Expand All @@ -10,5 +10,3 @@ readme: README.md

skip_undocumented: false
hide_documentation_coverage: false

xcodebuild_arguments: [-project, Kitura-CouchDB.xcodeproj, -target, CouchDB, LIBRARY_SEARCH_PATHS=.build/debug]
53 changes: 11 additions & 42 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,65 +15,34 @@ matrix:
dist: xenial
sudo: required
services: docker
env: DOCKER_IMAGE=swift:4.0.3 SWIFT_SNAPSHOT=4.0.3 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1604_1
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu16.04:5.1.5 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1604_515
- os: linux
dist: xenial
sudo: required
services: docker
env: DOCKER_IMAGE=swift:4.1.3 SWIFT_SNAPSHOT=4.1.3 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1604_2
- os: linux
dist: xenial
sudo: required
services: docker
env: DOCKER_IMAGE=swift:4.2.4 SWIFT_SNAPSHOT=4.2.4 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1604_3
- os: linux
dist: xenial
sudo: required
services: docker
env: DOCKER_IMAGE=swift:5.0.3-xenial DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1604_4
- os: linux
dist: xenial
dist: bionic
sudo: required
services: docker
env: DOCKER_IMAGE=swift:5.1 KITURA_NIO=1 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1804_1
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu18.04:5.4 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1804_54
- os: linux
dist: xenial
dist: bionic
sudo: required
services: docker
env: DOCKER_IMAGE=swift:5.1 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1804_2
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu18.04:5.4 KITURA_NIO=1 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1804_54_nio
- os: linux
dist: xenial
sudo: required
services: docker
env: DOCKER_IMAGE=swift:5.1 SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1804_3
- os: osx
osx_image: xcode9.2
sudo: required
env: SWIFT_SNAPSHOT=4.0.3 TESTDB_NAME=testdb_xcode92_1
- os: osx
osx_image: xcode9.4
sudo: required
env: SWIFT_SNAPSHOT=4.1.2 TESTDB_NAME=testdb_xcode94_1
- os: osx
osx_image: xcode10.1
sudo: required
env: SWIFT_SNAPSHOT=4.2.1 TESTDB_NAME=testdb_xcode10_1
- os: osx
osx_image: xcode10.2
sudo: required
env: SWIFT_SNAPSHOT=5.0.1 JAZZY_ELIGIBLE=true TESTDB_NAME=testdb_xcode10_2
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu18.04:latest USE_SWIFT_DEVELOPMENT_SNAPSHOT=1 DOCKER_ENVIRONMENT="TESTDB_NAME" TESTDB_NAME=testdb_1804_latest
- os: osx
osx_image: xcode11
sudo: required
env: TESTDB_NAME=testdb_xcode11_1
env: SWIFT_SNAPSHOT=5.1.5 JAZZY_ELIGIBLE=true TESTDB_NAME=testdb_xcode11_1
- os: osx
osx_image: xcode11
osx_image: xcode12.2
sudo: required
env: KITURA_NIO=1 TESTDB_NAME=testdb_xcode11_2
env: TESTDB_NAME=testdb_xcode122
- os: osx
osx_image: xcode11
osx_image: xcode12.5
sudo: required
env: SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT TESTDB_NAME=testdb_xcode11_3
env: USE_SWIFT_DEVELOPMENT_SNAPSHOT=1 TESTDB_NAME=testdb_xcode122

before_install:
- git clone https://github.com/Kitura/Package-Builder.git
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


<p align="center">
<a href="https://ibm-swift.github.io/Kitura-CouchDB/index.html">
<a href="https://kitura.github.io/Kitura-CouchDB/index.html">
<img src="https://img.shields.io/badge/apidoc-KituraCouchDB-1FBCE4.svg?style=flat" alt="APIDoc">
</a>
<a href="https://travis-ci.org/Kitura/Kitura-CouchDB">
Expand Down Expand Up @@ -201,7 +201,7 @@ database.delete("Kitura", rev: "<latest_rev>") { (error) in
}
```

For more information visit our [API reference](https://ibm-swift.github.io/Kitura-CouchDB/index.html).
For more information visit our [API reference](https://kitura.github.io/Kitura-CouchDB/index.html).

## Community
We love to talk server-side Swift, and Kitura. Join our [Slack](http://swift-at-ibm-slack.mybluemix.net/) to meet the team!
Expand Down
2 changes: 1 addition & 1 deletion Sources/CouchDB/CouchDBUtils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class CouchDBUtils {
}

// A set of characters that are valid in requests.
// Fix to Kitura-CouchDB issue #104(https://github.com/IBM-Swift/Kitura-CouchDB/issues/104).
// Fix to Kitura-CouchDB issue #104(https://github.com/Kitura/Kitura-CouchDB/issues/104).
// CouchDB Agent creates the documents with unescaped `id` or `attachmentname` etc with `+` but expects
// the the character to be escaped while retrieving as documented in CouchDB issues:
// https://github.com/apache/couchdb/issues/2144 and https://github.com/apache/couchdb/issues/1830
Expand Down
25 changes: 15 additions & 10 deletions docs/Classes.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
</head>
<body>

<a name="//apple_ref/swift/Section/Classes" class="dashAnchor"></a>

<a title="Classes Reference"></a>

Expand All @@ -32,7 +33,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="https://github.com/IBM-Swift/Kitura-CouchDB/">
<a class="header-link" href="https://github.com/Kitura/Kitura-CouchDB/">
<img class="header-icon" src="img/gh.png"/>
View on GitHub
</a>
Expand Down Expand Up @@ -105,7 +106,7 @@
<article class="main-content">

<section class="section">
<div class="section-content">
<div class="section-content top-matter">
<h1>Classes</h1>
<p>The following classes are available globally.</p>

Expand All @@ -118,9 +119,11 @@ <h1>Classes</h1>
<div class="task-name-container">
<a name="/CouchDBClient"></a>
<a name="//apple_ref/swift/Section/CouchDBClient" class="dashAnchor"></a>
<a href="#/CouchDBClient">
<h3 class="section-name">CouchDBClient</h3>
</a>
<div class="section-name-container">
<a class="section-name-link" href="#/CouchDBClient"></a>
<h3 class="section-name"><p>CouchDBClient</p>
</h3>
</div>
</div>
<ul class="item-container">
<li class="item">
Expand Down Expand Up @@ -167,9 +170,11 @@ <h4>Declaration</h4>
<div class="task-name-container">
<a name="/Database"></a>
<a name="//apple_ref/swift/Section/Database" class="dashAnchor"></a>
<a href="#/Database">
<h3 class="section-name">Database</h3>
</a>
<div class="section-name-container">
<a class="section-name-link" href="#/Database"></a>
<h3 class="section-name"><p>Database</p>
</h3>
</div>
</div>
<ul class="item-container">
<li class="item">
Expand Down Expand Up @@ -215,8 +220,8 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2019 <a class="link" href="" target="_blank" rel="external">IBM</a>. All rights reserved. (Last updated: 2019-03-18)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.1</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2021 <a class="link" href="" target="_blank" rel="external">IBM &amp; Kitura project authors</a>. All rights reserved. (Last updated: 2021-08-19)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.7</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
</div>
Expand Down
Loading