Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC (/showthread.php?tid=113136) Pages:
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
- N3MIS15 - 2011-12-30 no dice, seems some code from Mar2zz commits is missing from maraschino.py Code: import sys should go before anything in maraschino.py Also after i added that code i am getting: You need to specify a database in settings.py. I have a settings.pyc so the file is being used. EDIT: Should note that i am using an unraid build that requires all dependencies within maraschino to run, they are not installed on the machine. EDIT2: "sys.path.insert(0, os.path.join(path_base, 'plugins'))" should be changed to "sys.path.insert(0, os.path.join(path_base, 'modules'))" if im not mistaken (im using a build a few days old from mar2zz as my 'stable' - gugahoi - 2011-12-30 N3MIS15 Wrote:no dice, seems some code from Mar2zz commits is missing from maraschino.py I've made these changes. It seems to work when running from my repo's directory. Will try a fresh download. - N3MIS15 - 2011-12-30 got it. line 114 maraschino.py from database import * should be from lib.database import * - gugahoi - 2011-12-30 N3MIS15 Wrote:got it. Nice! Pushed now. Will try a fresh install again. - N3MIS15 - 2011-12-30 cant seem to get anything from newznab module using https://nzb.su/ and my api key (copy paste from sickbeard) - gugahoi - 2011-12-30 N3MIS15 Wrote:cant seem to get anything from newznab module use Code: nzb.su - N3MIS15 - 2011-12-30 did the trick, now i cant seem to get the transmission module running url= 192.168.1.66 port= 8085 i have transmissionrpc installed is there anything else config-wise needed? i had mar2zz's transmission module giving me torrent names so i am assuming this should work with the settings ive put in.. - gugahoi - 2011-12-30 N3MIS15 Wrote:did the trick, now i cant seem to get the transmission module running Pull again and give it a try. @Mar2zz: would you be able to give it a look and see why it won't import the transmissionrpc library in the external folder? - N3MIS15 - 2011-12-30 mar2zz's changes in maraschino.py were missing again. after adding them in i got transmission runng, thanks gugahoi just noticed error message from transmissionrpc Code: /mnt/cache/.custom/maraschinotest/external/transmissionrpc/client.py:34: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 - gugahoi - 2011-12-30 N3MIS15 Wrote:mar2zz's changes in maraschino.py were missing again. after adding them in i got transmission runng, thanks gugahoi I keep overlooking them because they aren't in the lastest pull request, sorry. Should now be able to use the internal transmissionrpc library. I don't get that error btw. What were you doing when you got it? - N3MIS15 - 2011-12-30 seems to happen when it looses connection to transmission server. not a maraschino problem i guess Another 1 Code: /mnt/cache/.custom/maraschinotest/modules/sickbeard.py:240: - N3MIS15 - 2011-12-30 Suggestion for newznab module, in settings have options for both tv and movies with variable of sd and hd. It was just fetching alot of german stuff i wasnt interested in. I edited newznab.py to fetch the catagories i wanted, but it would be nice to have settings for them. - gugahoi - 2011-12-30 N3MIS15 Wrote:Suggestion for newznab module, in settings have options for both tv and movies with variable of sd and hd. It was just fetching alot of german stuff i wasnt interested in. I edited newznab.py to fetch the catagories i wanted, but it would be nice to have settings for them. I suggest you make these here: http://maraschino.lighthouseapp.com/projects/85614-maraschino/overview otherwise we might not find them in the thread anymore. - Mar2zz - 2011-12-30 N3MIS15 Wrote:Maybe default path should be app root and only require settings.py to overwrite? Thats an easy one. In commandline branch I also added the option to create/use a database with the command: python maraschino.py --database=/path/to/database This overwrites settings.py's database setting. Also ports can be forced with python maraschino.py --port=5500 for example. This is great for running multiple maraschino instances from 1 sourcefolder. Also working on daemonize mode and creating pidfile, but the wsgi-cherrypy is giving me a headache in that (gives error 500 @ http). Why is wsgi used by the way? the flask server can be run independent from apache too. Disable debugging and it's silent. Can mr Kipling elaborate on that? Remove the cherrypy server is my idea. - gugahoi - 2011-12-30 Mar2zz Wrote:Thats an easy one. I'll have a look at that pull request later on and try to make it install db to root dir if no settings.py is found. If you guys have time to do this before and make a pull request (it would actually be a good addition to Pull Request #23. I have also added the ability to add a new show to sb from maraschino! You can now use sb's thetvdb search function and select which show you'd like to add, all from the sb module. At the moments it uses sb's default settings but I may add options to customise further. Please test and give me feedback! Will go to bed now. |