mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
fix the add links form
This commit is contained in:
parent
215d5eae32
commit
ae208435c9
6 changed files with 10 additions and 8 deletions
|
@ -191,7 +191,7 @@ def log_deduping_finished(num_new_links: int):
|
|||
|
||||
|
||||
def log_crawl_started(new_links):
|
||||
print('{lightblue}[*] Starting crawl of {} sites 1 hop out from starting point{reset}'.format(len(new_links), **ANSI))
|
||||
print('{lightred}[*] Starting crawl of {} sites 1 hop out from starting point{reset}'.format(len(new_links), **ANSI))
|
||||
|
||||
### Indexing Stage
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ class SnapshotAdmin(admin.ModelAdmin):
|
|||
'<a href="/{}/{}">📼 </a> '
|
||||
'<a href="/{}/{}">📦 </a> '
|
||||
'<a href="/{}/{}">🏛 </a> '
|
||||
'</span>'
|
||||
'</span><br/>'
|
||||
'<a href="/{}">{}</a>',
|
||||
obj.archive_path, canon['wget_path'] or '',
|
||||
obj.archive_path, canon['pdf_path'],
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
from django import forms
|
||||
|
||||
CHOICES = (('url', 'URL'), ('feed', 'Feed'))
|
||||
CHOICES = (
|
||||
('0', 'depth=0 (archive just this url)'),
|
||||
('1', 'depth=1 (archive this url and all sites one link away)'),
|
||||
)
|
||||
|
||||
class AddLinkForm(forms.Form):
|
||||
url = forms.URLField()
|
||||
source = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect, initial='url')
|
||||
depth = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect, initial='0')
|
||||
|
|
|
@ -66,9 +66,9 @@ class AddLinks(View):
|
|||
if form.is_valid():
|
||||
url = form.cleaned_data["url"]
|
||||
print(f'[+] Adding URL: {url}')
|
||||
depth = 0 if form.cleaned_data["source"] == "url" else 1
|
||||
depth = 0 if form.cleaned_data["depth"] == "0" else 0
|
||||
input_kwargs = {
|
||||
"url": url,
|
||||
"urls": url,
|
||||
"depth": depth,
|
||||
"update_all": False,
|
||||
"out_dir": OUTPUT_DIR,
|
||||
|
|
|
@ -56,7 +56,6 @@ def save_git(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> A
|
|||
cmd = [
|
||||
GIT_BINARY,
|
||||
'clone',
|
||||
# '--mirror',
|
||||
'--recursive',
|
||||
*([] if CHECK_SSL_VALIDITY else ['-c', 'http.sslVerify=false']),
|
||||
without_query(without_fragment(link.url)),
|
||||
|
|
|
@ -212,7 +212,7 @@
|
|||
</form>
|
||||
</center>
|
||||
|
||||
<a href="{% url 'admin:core_snapshot_changelist' %}">Go back to Snapshot list</a>
|
||||
<a href="{% url 'admin:core_snapshot_changelist' %}">Go back to Main Index</a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue