Skip to content

Commit f914d46

Browse files
committed
Remove copyrighted blacklist case for the time being
1 parent 3adafd8 commit f914d46

File tree

5 files changed

+1
-46
lines changed

5 files changed

+1
-46
lines changed

api/src/zimitfrontend/res/blacklist.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
"reason": "already_zimed",
4646
"libraryUrl": "https://library.kiwix.org/#tag=ted"
4747
},
48-
{ "host": "wikihow.com", "reason": "forbid_or_copyrighted_by_website_owner" },
4948
{
5049
"host": "youtube.com",
5150
"reason": "too_big_partially_already_zimed",
@@ -131,7 +130,7 @@
131130
"reason": "scraper_needed",
132131
"githubIssue": "https://github.com/openzim/zim-requests/issues/360"
133132
},
134-
{ "host": "quora.com", "reason": "forbid_or_copyrighted_by_website_owner" },
133+
{ "host": "quora.com", "reason": "not_possible_with_zimit" },
135134
{ "host": "download.kiwix.org", "reason": "not_possible_with_zimit" },
136135
{ "host": "google.com", "reason": "not_possible_with_zimit" },
137136
{ "host": "library.kiwix.org", "reason": "not_possible_with_zimit" },

locales/en.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@
136136
"useScraper": "Should you be a bit tech-savvy, you can also use {scraperRepoLink} on your own.",
137137
"scraperRepoLinkContent": "our dedicated scraper"
138138
},
139-
"copyrighted": "This website is protected by copyrights and/or Kiwix has been explicitely requested not to ZIM this website.",
140139
"notPossible": "It is unfortunately not possible to ZIM this website with zimit.",
141140
"scraperNeeded": "It seems possible to develop a custom scraper for this website, but we need your support on {githubIssueLink}.",
142141
"scraperNeededLinkContent": "this Github issue"

locales/qqq.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@
141141
"useScraper": "This is the message inviting user to use our scraper",
142142
"scraperRepoLinkContent": "This is the textual content of the link to the scraper"
143143
},
144-
"copyrighted": "This is the message indicating that there is a copyright issue",
145144
"notPossible": "This is the message indicating that it is not possible to ZIM this website",
146145
"scraperNeeded": "This is the message indicating that we intend to build a dedicated scraper",
147146
"scraperNeededLinkContent": "This is the textual content of the link to the dedicated Github issue"

ui/src/components/BlacklistCopyright.vue

Lines changed: 0 additions & 38 deletions
This file was deleted.

ui/src/views/NewRequest.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import FaqList from '../components/FaqList.vue'
33
import NewRequestForm from '../components/NewRequestForm.vue'
44
import BlacklistAlreadyZimed from '../components/BlacklistAlreadyZimed.vue'
5-
import BlacklistCopyright from '../components/BlacklistCopyright.vue'
65
import BlacklistNotPossible from '../components/BlacklistNotPossible.vue'
76
import BlacklistScraperNeeded from '../components/BlacklistScraperNeeded.vue'
87
import BlacklistTooBig from '../components/BlacklistTooBig.vue'
@@ -43,9 +42,6 @@ onMounted(() => {
4342
{{ $t('newRequest.stopNewRequestsMessage') }}
4443
</div>
4544
<BlacklistAlreadyZimed v-else-if="mainStore.blacklistReason?.reason == 'already_zimed'" />
46-
<BlacklistCopyright
47-
v-else-if="mainStore.blacklistReason?.reason == 'forbid_or_copyrighted_by_website_owner'"
48-
/>
4945
<BlacklistNotPossible
5046
v-else-if="mainStore.blacklistReason?.reason == 'not_possible_with_zimit'"
5147
/>

0 commit comments

Comments
 (0)