Skip to content
This repository was archived by the owner on Jul 29, 2022. It is now read-only.

Commit 1ab88a5

Browse files
Merge pull request #25 from readium/cleanup
Fixed copyright headers and some minor cleanup
2 parents e277249 + 5fee2cd commit 1ab88a5

33 files changed

+157
-28
lines changed

r2-streamer/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
6+
* Use of this source code is governed by a BSD-style license which is detailed in the
7+
* LICENSE file present in the project repository where this source code is maintained.
8+
*/
9+
110
apply plugin: 'com.android.library'
211
apply plugin: 'kotlin-android'
312
apply plugin: 'kotlin-android-extensions'

r2-streamer/src/androidTest/AndroidManifest.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ Module: r2-streamer-kotlin
4+
~ Developers: Aferdita Muriqi, Clément Baumann
5+
~
6+
~ Copyright (c) 2018. Readium Foundation. All rights reserved.
7+
~ Use of this source code is governed by a BSD-style license which is detailed in the
8+
~ LICENSE file present in the project repository where this source code is maintained.
9+
-->
10+
211
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
312
package="org.readium.r2.streamer">
413

r2-streamer/src/main/AndroidManifest.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
<!--
2+
~ Module: r2-streamer-kotlin
3+
~ Developers: Aferdita Muriqi, Clément Baumann
4+
~
5+
~ Copyright (c) 2018. Readium Foundation. All rights reserved.
6+
~ Use of this source code is governed by a BSD-style license which is detailed in the
7+
~ LICENSE file present in the project repository where this source code is maintained.
8+
-->
9+
110
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
211
package="org.readium.r2.streamer"
312
xmlns:tools="http://schemas.android.com/tools">

r2-streamer/src/main/java/org/readium/r2/streamer/container/Container.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
2-
* Copyright 2018 Readium Foundation. All rights reserved.
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
36
* Use of this source code is governed by a BSD-style license which is detailed in the
47
* LICENSE file present in the project repository where this source code is maintained.
58
*/

r2-streamer/src/main/java/org/readium/r2/streamer/container/ContainerCbz.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
6+
* Use of this source code is governed by a BSD-style license which is detailed in the
7+
* LICENSE file present in the project repository where this source code is maintained.
8+
*/
9+
110
package org.readium.r2.streamer.container
211

312
import org.readium.r2.shared.RootFile

r2-streamer/src/main/java/org/readium/r2/streamer/container/ContainerEpub.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
2-
* Copyright 2018 Readium Foundation. All rights reserved.
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
36
* Use of this source code is governed by a BSD-style license which is detailed in the
47
* LICENSE file present in the project repository where this source code is maintained.
58
*/

r2-streamer/src/main/java/org/readium/r2/streamer/container/ContainerEpubDirectory.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
2-
* Copyright 2018 Readium Foundation. All rights reserved.
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
36
* Use of this source code is governed by a BSD-style license which is detailed in the
47
* LICENSE file present in the project repository where this source code is maintained.
58
*/

r2-streamer/src/main/java/org/readium/r2/streamer/container/DirectoryContainer.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
2-
* Copyright 2018 Readium Foundation. All rights reserved.
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
36
* Use of this source code is governed by a BSD-style license which is detailed in the
47
* LICENSE file present in the project repository where this source code is maintained.
58
*/

r2-streamer/src/main/java/org/readium/r2/streamer/container/ZipArchiveContainer.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
2-
* Copyright 2018 Readium Foundation. All rights reserved.
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
36
* Use of this source code is governed by a BSD-style license which is detailed in the
47
* LICENSE file present in the project repository where this source code is maintained.
58
*/

r2-streamer/src/main/java/org/readium/r2/streamer/fetcher/ContentFilter.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
2-
* Copyright 2018 Readium Foundation. All rights reserved.
2+
* Module: r2-streamer-kotlin
3+
* Developers: Aferdita Muriqi, Clément Baumann
4+
*
5+
* Copyright (c) 2018. Readium Foundation. All rights reserved.
36
* Use of this source code is governed by a BSD-style license which is detailed in the
47
* LICENSE file present in the project repository where this source code is maintained.
58
*/

0 commit comments

Comments
 (0)