-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Close #1060
- Loading branch information
Showing
26 changed files
with
129 additions
and
61 deletions.
There are no files selected for viewing
12 changes: 0 additions & 12 deletions
12
src/main/kotlin/org/koitharu/kotatsu/parsers/site/foolslide/en/ReaderEvilflowers.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/org/koitharu/kotatsu/parsers/site/iken/en/PhiliaScans.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.koitharu.kotatsu.parsers.site.iken.en | ||
|
||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.iken.IkenParser | ||
|
||
@MangaSourceParser("PHILIASCANS", "PhiliaScans", "en") | ||
internal class PhiliaScans(context: MangaLoaderContext) : | ||
IkenParser(context, MangaParserSource.PHILIASCANS, "vortextoon.com") { | ||
override val selectPages = "main section img" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/org/koitharu/kotatsu/parsers/site/keyoapp/en/LuaScans.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.koitharu.kotatsu.parsers.site.keyoapp.en | ||
|
||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.keyoapp.KeyoappParser | ||
|
||
@MangaSourceParser("LUASCANS", "luaComic.net", "en") | ||
internal class LuaScans(context: MangaLoaderContext) : | ||
KeyoappParser(context, MangaParserSource.LUASCANS, "luacomic.net") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/en/AnisaScans.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.koitharu.kotatsu.parsers.site.madara.en | ||
|
||
import org.koitharu.kotatsu.parsers.Broken | ||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser | ||
|
||
@Broken | ||
@MangaSourceParser("ANISASCANS", "AnisaScans", "en") | ||
internal class AnisaScans(context: MangaLoaderContext) : | ||
MadaraParser(context, MangaParserSource.ANISASCANS, "anisascans.in", 36) { | ||
override val datePattern = "dd MMM, yyyy" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/en/ReaderEvilflowers.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.koitharu.kotatsu.parsers.site.madara.en | ||
|
||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser | ||
|
||
@MangaSourceParser("READER_EVILFLOWERS", "EvilFlowers", "en") | ||
internal class ReaderEvilflowers(context: MangaLoaderContext) : | ||
MadaraParser(context, MangaParserSource.READER_EVILFLOWERS, "evilflowers.com", pageSize = 10) { | ||
override val listUrl = "project/" | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/es/BegaTranslation.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.koitharu.kotatsu.parsers.site.madara.es | ||
|
||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser | ||
|
||
@MangaSourceParser("BEGATRANSLATION", "BegaTranslation", "es") | ||
internal class BegaTranslation(context: MangaLoaderContext) : | ||
MadaraParser(context, MangaParserSource.BEGATRANSLATION, "begatranslation.com") { | ||
override val datePattern = "dd/MM/yyyy" | ||
override val listUrl = "series/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/tr/AlliedFansub.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/en/VoidScansCo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
package org.koitharu.kotatsu.parsers.site.mangareader.en | ||
|
||
import org.koitharu.kotatsu.parsers.Broken | ||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser | ||
|
||
@Broken | ||
@MangaSourceParser("VOIDSCANS_CO", "VoidScans", "en") | ||
internal class VoidScansCo(context: MangaLoaderContext) : | ||
MangaReaderParser(context, MangaParserSource.VOIDSCANS_CO, "voidscans.co", pageSize = 30, searchPageSize = 42) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/org/koitharu/kotatsu/parsers/site/zeistmanga/ar/XsanoManga.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.koitharu.kotatsu.parsers.site.zeistmanga.ar | ||
|
||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.zeistmanga.ZeistMangaParser | ||
|
||
@MangaSourceParser("XSANOMANGA", "XsanoManga", "ar") | ||
internal class XsanoManga(context: MangaLoaderContext) : | ||
ZeistMangaParser(context, MangaParserSource.XSANOMANGA, "www.xsano-manga.com") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/main/kotlin/org/koitharu/kotatsu/parsers/site/zeistmanga/id/UlasComic.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.koitharu.kotatsu.parsers.site.zeistmanga.id | ||
|
||
import org.koitharu.kotatsu.parsers.MangaLoaderContext | ||
import org.koitharu.kotatsu.parsers.MangaSourceParser | ||
import org.koitharu.kotatsu.parsers.model.MangaParserSource | ||
import org.koitharu.kotatsu.parsers.site.zeistmanga.ZeistMangaParser | ||
|
||
@MangaSourceParser("ULASCOMIC", "UlasComic", "id") | ||
internal class UlasComic(context: MangaLoaderContext) : | ||
ZeistMangaParser(context, MangaParserSource.ULASCOMIC, "www.ulascomic.xyz") |