22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#
from channels import *
from config import conf
from action import action
from mygtk import mygtk
import ahttp as http
import re
import json
from compat2and3 import StringIO
import copy
|
|
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#
from channels import *
from config import conf
from action import action
from uikit import uikit
import ahttp as http
import re
import json
from compat2and3 import StringIO
import copy
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# prepare GUI
def __init__(self, parent):
ChannelPlugin.__init__(self, parent)
if parent:
mygtk.add_menu(parent.extensions, "Share in MyOggRadio", self.share)
# this is simple, there are no categories
def update_categories(self):
pass
|
|
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# prepare GUI
def __init__(self, parent):
ChannelPlugin.__init__(self, parent)
if parent:
uikit.add_menu(parent.extensions, "Share in MyOggRadio", self.share)
# this is simple, there are no categories
def update_categories(self):
pass
|