summarylogtreecommitdiffstats
path: root/smuglo.li.patch
blob: b9e39d4bb801d6d9ccb9e3b7f694d72cac7dba18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
--- /dev/null
+++ b/onionlolictl
@@ -0,0 +1,23 @@
+#!/usr/bin/env python3
+# Copyright 2016 ring <ring@8chan.co>
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved.  This file is offered as-is,
+# without any warranty.
+
+"""infinityctl variant for smuglo.li (onion)"""
+
+import os
+
+import infinitychan
+import infinityctl
+
+infinitychan.dom = "http://bhm5koavobq353j54qichcvzr6uhtri6x4bjjy4xkybgvxkzuslzcqid.onion"
+infinitychan.mod = infinitychan.dom + "/mod.php?"
+infinitychan.sys = infinitychan.dom
+infinitychan.media_base = infinitychan.dom
+infinitychan.media = infinitychan.dom + "/{board}/src/{tim}{ext}"
+infinitychan.media_dedup = infinitychan.media
+infinitychan.config = os.path.join(os.path.expanduser("~"), ".onionlolictl")
+
+infinityctl.main()
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
         'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
         'Intended Audience :: End Users/Desktop'],
     py_modules=['infinitychan', 'infinityctl', 'botmod', 'threadviewer', 'urls'],
-    scripts=['infinityctl', 'onionctl'],
+    scripts=['infinityctl', 'onionctl', 'smuglolictl', 'onionlolictl'],
     install_requires=['urllib3'],
     python_requires='>=3.0'
 )
--- /dev/null
+++ b/smuglolictl
@@ -0,0 +1,23 @@
+#!/usr/bin/env python3
+# Copyright 2016 ring <ring@8chan.co>
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved.  This file is offered as-is,
+# without any warranty.
+
+"""infinityctl variant for smuglo.li"""
+
+import os
+
+import infinitychan
+import infinityctl
+
+infinitychan.dom = "https://smuglo.li"
+infinitychan.mod = infinitychan.dom + "/mod.php?"
+infinitychan.sys = infinitychan.dom
+infinitychan.media_base = infinitychan.dom
+infinitychan.media = infinitychan.dom + "/{board}/src/{tim}{ext}"
+infinitychan.media_dedup = infinitychan.media
+infinitychan.config = os.path.join(os.path.expanduser("~"), ".smuglolictl")
+
+infinityctl.main()