mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-12 00:44:03 +02:00
Fix konradokonski.com/wiory ripper
This commit is contained in:
@@ -27,8 +27,8 @@ public class WordpressComicRipper extends AbstractHTMLRipper {
|
|||||||
// http://buttsmithy.com/archives/comic/p1
|
// http://buttsmithy.com/archives/comic/p1
|
||||||
// http://themonsterunderthebed.net/?comic=test-post
|
// http://themonsterunderthebed.net/?comic=test-post
|
||||||
// http://prismblush.com/comic/hella-trap-pg-01/
|
// http://prismblush.com/comic/hella-trap-pg-01/
|
||||||
// http://www.konradokonski.com/sawdust/
|
// http://www.konradokonski.com/sawdust/comic/get-up/
|
||||||
// http://www.konradokonski.com/wiory/
|
// http://www.konradokonski.com/wiory/comic/08182008/
|
||||||
// http://freeadultcomix.com/finders-feepaid-in-full-sparrow/
|
// http://freeadultcomix.com/finders-feepaid-in-full-sparrow/
|
||||||
// http://thisis.delvecomic.com/NewWP/comic/in-too-deep/
|
// http://thisis.delvecomic.com/NewWP/comic/in-too-deep/
|
||||||
// http://tnbtu.com/comic/01-00/
|
// http://tnbtu.com/comic/01-00/
|
||||||
@@ -67,9 +67,15 @@ public class WordpressComicRipper extends AbstractHTMLRipper {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Pattern konradokonskiPat = Pattern.compile("https?://www.konradokonski.com/sawdust/comic/([a-zA-Z0-9_-]*)/?$");
|
Pattern konradokonskiSawdustPat = Pattern.compile("http://www.konradokonski.com/sawdust/comic/([a-zA-Z0-9_-]*)/?$");
|
||||||
Matcher konradokonskiMat = konradokonskiPat.matcher(url.toExternalForm());
|
Matcher konradokonskiSawdustMat = konradokonskiSawdustPat.matcher(url.toExternalForm());
|
||||||
if (konradokonskiMat.matches()) {
|
if (konradokonskiSawdustMat.matches()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
Pattern konradokonskiWioryPat = Pattern.compile("http://www.konradokonski.com/wiory/comic/([a-zA-Z0-9_-]*)/?$");
|
||||||
|
Matcher konradokonskiWioryMat = konradokonskiWioryPat.matcher(url.toExternalForm());
|
||||||
|
if (konradokonskiWioryMat.matches()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user