Kodi plugin to to play various online streams (mostly Latvian)

project.wpr 114KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802
  1. #!wing
  2. #!version=6.0
  3. ##################################################################
  4. # Wing IDE project file #
  5. ##################################################################
  6. [project attributes]
  7. console.toolbox = [{'autosave': True,
  8. 'cmd': 'kmake.bat a',
  9. 'env': ('project',
  10. [u'']),
  11. 'hostname': ('project',
  12. None),
  13. 'id': 'cmd-UgtR6eOnyv9qI7yC',
  14. 'io_encoding': 'utf_8',
  15. 'key_binding': '',
  16. 'line_mode': True,
  17. 'pseudo_tty': False,
  18. 'pypath': ('project',
  19. []),
  20. 'raise_panel': True,
  21. 'rundir': ('project',
  22. u''),
  23. 'title': 'kmake'}]
  24. debug.named-entry-points = (1,
  25. {'run interactive': ({},
  26. {'auto-show': False,
  27. 'launch-id': ('project',
  28. (u'run interactive',
  29. '')),
  30. 'loc': loc('run.py')})})
  31. proj.directory-list = [{'dirloc': loc('.'),
  32. 'excludes': [u'release',
  33. u'ptvsd'],
  34. 'filter': '*',
  35. 'include_hidden': False,
  36. 'recursive': True,
  37. 'watch_for_changes': True}]
  38. proj.file-type = 'normal'
  39. proj.launch-config = {loc('addon.py'): ('project',
  40. (u'run interactive plugin://plugin.video.playstream/downloads::list',
  41. '')),
  42. loc('context_download.py'): ('project',
  43. (u'download ddd filmix::play/126055 downloads',
  44. '')),
  45. loc('context_menu.py'): ('project',
  46. (u'add title url img desc',
  47. '')),
  48. loc('iub_db.py'): ('project',
  49. (u'-d 90 -s -o',
  50. '')),
  51. loc('iub_db2.py'): ('project',
  52. (u'-p 1 2 --debug ',
  53. '')),
  54. loc('iub_email.py'): ('project',
  55. (u'-i --debug',
  56. '')),
  57. loc('iubx.py'): ('project',
  58. (u'-s -d30',
  59. '')),
  60. loc('iubx2.py'): ('project',
  61. (u'-sgr -d 10',
  62. '')),
  63. loc('playstreamproxy.py'): ('project',
  64. (u'manualstart',
  65. '')),
  66. loc('resources/lib/ContentSources.py'): ('project',
  67. (u'ustvnow::live/view?scode=whtm&token=o7p29h4iq2xznc8j7ek3hdrjxxyz',
  68. '')),
  69. loc('run.py'): ('project',
  70. (u'run interactive',
  71. '')),
  72. loc('transcode_video.py'): ('project',
  73. (u'm:\\Movies\\TV',
  74. '')),
  75. loc('../../../../Python27/Lib/site-packages/xbmcswift2/plugin.py'): ('p'\
  76. 'roject',
  77. (u'interactive',
  78. '')),
  79. loc('../../../../Python27/Scripts/xbmcswift2-script.py'): ('p'\
  80. 'roject',
  81. (u'run interactive',
  82. ''))}
  83. proj.main-file = loc('addon.py')
  84. [user attributes]
  85. debug.breakpoints = {loc('addon.py'): {225L: (0,
  86. None,
  87. 1,
  88. 0)},
  89. loc('context_download.py'): {125L: (0,
  90. None,
  91. 1,
  92. 0),
  93. 261L: (0,
  94. None,
  95. 1,
  96. 0)},
  97. loc('unknown:<untitled> #2'): {10: (0,
  98. None,
  99. 1,
  100. 0)},
  101. loc('unknown:<untitled> #1'): {2: (0,
  102. None,
  103. 1,
  104. 0)}}
  105. debug.err-values = {None: {},
  106. loc('addon.py'): {},
  107. loc('context_download.py'): {},
  108. loc('context_menu.py'): {},
  109. loc('iub_db.py'): {},
  110. loc('iub_email.py'): {},
  111. loc('iubx.py'): {},
  112. loc('resources/lib/content/sources/replay.py'): {},
  113. loc('run.py'): {}}
  114. debug.recent-run-args = {loc('addon.py'): [u'run interactive plugin://plugin.video.playstream/downloads::list',
  115. u'run interactive plugin://plugin.video.playstream/@downloads',
  116. u'run interactive plugin://plugin.video.playstream/downloads',
  117. u'run interactive ',
  118. u'run interactive special://tmp',
  119. u'run interactive aaa',
  120. u'run interactive',
  121. u'interactive',
  122. u'0 plugin://plugin.video.aaa/',
  123. u'0 plugin://plugin.video.aaa/index/',
  124. u'0 plugin://plugin.video.aaa/index',
  125. u'0 ',
  126. u'plugin://plugin.video.aaa/',
  127. u'plugin:// '],
  128. loc('context_download.py'): [u'download ddd filmix::play/126055 downloads',
  129. u'download ddd play24::video/12733/rajevskis-latvija-balsis-tiek-pirktas-un-pardotas-par-musu-nodoklu-naudu downloads',
  130. u'download ddd ltc::videonoma/animation/hd_frozen downloads',
  131. u'download ddd ltc::videonoma/short/burviga_diena downloads',
  132. u'download aaa replay::ieraksts/ltv/112931/rail-baltica-projekta-ievieseja-linuza-firma-krapsanas-/?lang=lv downloads',
  133. u'download aaa play24::video/10838/zatlers-apkaunot-savu-godu-un-vardu-nelausu downloads',
  134. u'download a\u0113e\u0113 play24::video/10838/zatlers-apkaunot-savu-godu-un-vardu-nelausu downloads',
  135. u'download test play24::video/10838/zatlers-apkaunot-savu-godu-un-vardu-nelausu downloads',
  136. u'download test ltc::videonoma/biography/hd_big_miracle downloads'],
  137. loc('context_menu.py'): [u'add title url img desc'],
  138. loc('iub_db.py'): [u'-d 90 -s -o',
  139. u'-d 40 -rg -o',
  140. u'-d 40 -s -o',
  141. u'-d 40 -r -o',
  142. u'-d 40 -g -o',
  143. u'-d 60 -s -o',
  144. u'-d 10 -r -o',
  145. u'-d 3 --slud -o',
  146. u'-d 10 --rez -o',
  147. u'-d 10 --rez',
  148. u'-d 10 --groz',
  149. u'-d 20 --groz',
  150. u'-d 20 --slud',
  151. u'-d 10 --slud',
  152. u'-d 3 --slud',
  153. u'-d 3'],
  154. loc('iub_db2.py'): [u'-p 1 2 --debug ',
  155. u'-d 1 --debug ',
  156. u'-p 51 53 --debug -o',
  157. u'-p 50 53 --debug -o',
  158. u'-d 3 --debug -o',
  159. u'-d 1 --debug -o',
  160. u'-d 1 --debug -o',
  161. u'-d 1 --debug',
  162. u'-d 1',
  163. u'-h'],
  164. loc('iub_email.py'): [u'-i --debug',
  165. u'-i ',
  166. u'-i',
  167. u'-p'],
  168. loc('iubx.py'): [u'-s -d30',
  169. u'-s -d10',
  170. u'-s -d3',
  171. u'-s -d40',
  172. '-s -d 10\n'],
  173. loc('iubx2.py'): [u'-sgr -d 10',
  174. u'-sgr',
  175. u'--sgr',
  176. u'--slud'],
  177. loc('playstreamproxy.py'): [u'manualstart'],
  178. loc('resources/lib/ContentSources.py'): [u'ustvnow::live/view?scode=whtm&token=o7p29h4iq2xznc8j7ek3hdrjxxyz',
  179. u'config::home',
  180. u'filmas::home'],
  181. loc('run.py'): [u'run interactive'],
  182. loc('transcode_video.py'): [u'm:\\Movies\\TV',
  183. u'm:/Movies/TV'],
  184. loc('../../../../Python27/Lib/site-packages/xbmcswift2/plugin.py'): [u'interactive'],
  185. loc('../../../../Python27/Scripts/xbmcswift2-script.py'): [u'run interactive']}
  186. debug.run-args = {}
  187. debug.var-col-widths = [0.41872791519434627,
  188. 0.5812720848056537]
  189. guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
  190. 'windows': [{'name': 'F8FpRDICw7YHXG3HV2rBc63asU'\
  191. 'LBT7JH',
  192. 'size-state': 'maximized',
  193. 'type': 'dock',
  194. 'view': {'area': 'tall',
  195. 'constraint': None,
  196. 'current_pages': [0,
  197. 0],
  198. 'full-screen': False,
  199. 'notebook_display': 'tabs only',
  200. 'notebook_percent': 0.2248545303408146,
  201. 'override_title': None,
  202. 'pagelist': [('project',
  203. 'tall',
  204. 0,
  205. {'tree-state': {'file-sort-method': 'by name',
  206. 'list-files-first': 0,
  207. 'tree-states': {'deep': {'expanded-nodes': [],
  208. 'selected-nodes': [(24,)],
  209. 'top-node': (0,)}},
  210. 'tree-style': 'deep'}}),
  211. ('browser',
  212. 'tall',
  213. 0,
  214. {'all_tree_states': {loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'): {'c'\
  215. 'olumn-widths': [1.0],
  216. 'expanded-nodes': [],
  217. 'selected-nodes': [],
  218. 'top-node': [('generic attribute',
  219. loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'),
  220. 'ft')]},
  221. loc('../../../Documents and Settings/User/Application Data/Wing IDE 3/x-wingide-zip:/C:/Python25/Lib/site-packages/simplejson-1.8.1-py2.5-win32.egg/simplejson/decoder.py'): {'c'\
  222. 'olumn-widths': [1.0],
  223. 'expanded-nodes': [],
  224. 'selected-nodes': [],
  225. 'top-node': [('generic attribute',
  226. loc('../../../Documents and Settings/User/Application Data/Wing IDE 3/x-wingide-zip:/C:/Python25/Lib/site-packages/simplejson-1.8.1-py2.5-win32.egg/simplejson/decoder.py'),
  227. 'ANYTHING')]},
  228. loc('../$test/test2.py'): {'column-widths': [1.0],
  229. 'expanded-nodes': [],
  230. 'selected-nodes': [],
  231. 'top-node': [('generic attribute',
  232. loc('../$test/test2.py'),
  233. 'con')]},
  234. loc('../$test/test3.py'): {'column-widths': [1.0],
  235. 'expanded-nodes': [],
  236. 'selected-nodes': [],
  237. 'top-node': [('generic attribute',
  238. loc('../$test/test3.py'),
  239. 'area')]},
  240. loc('../$test/test4.py'): {'column-widths': [1.0],
  241. 'expanded-nodes': [],
  242. 'selected-nodes': [],
  243. 'top-node': [('generic attribute',
  244. loc('../$test/test4.py'),
  245. 'con')]},
  246. loc('../5streets/5streets.py'): {'column-widths': [1.0],
  247. 'expanded-nodes': [],
  248. 'selected-nodes': [],
  249. 'top-node': [('generic attribute',
  250. loc('../5streets/5streets.py'),
  251. 'dlat')]},
  252. loc('../JS2/JSData.py'): {'column-widths': [1.0],
  253. 'expanded-nodes': [],
  254. 'selected-nodes': [],
  255. 'top-node': [('generic attribute',
  256. loc('../JS2/JSData.py'),
  257. 'db')]},
  258. loc('../JS2/const.py'): {'column-widths': [1.0],
  259. 'expanded-nodes': [],
  260. 'selected-nodes': [],
  261. 'top-node': [('generic attribute',
  262. loc('../JS2/const.py'),
  263. 'config')]},
  264. loc('../JS2/js2gif2.py'): {'column-widths': [1.0],
  265. 'expanded-nodes': [],
  266. 'selected-nodes': [],
  267. 'top-node': [('generic attribute',
  268. loc('../JS2/js2gif2.py'),
  269. 'argc')]},
  270. loc('../JS2/js3.py'): {'column-widths': [1.0],
  271. 'expanded-nodes': [],
  272. 'selected-nodes': [],
  273. 'top-node': [('function def',
  274. loc('../JS2/js3.py'),
  275. 'deg')]},
  276. loc('../JS2/js3s.py'): {'column-widths': [1.0],
  277. 'expanded-nodes': [],
  278. 'selected-nodes': [],
  279. 'top-node': [('function def',
  280. loc('../JS2/js3s.py'),
  281. 'deg')]},
  282. loc('../JS2/js_2gif.py'): {'column-widths': [1.0],
  283. 'expanded-nodes': [],
  284. 'selected-nodes': [],
  285. 'top-node': [('generic attribute',
  286. loc('../JS2/js_2gif.py'),
  287. 'argc')]},
  288. loc('../JS2/js_db.py'): {'column-widths': [1.0],
  289. 'expanded-nodes': [],
  290. 'selected-nodes': [],
  291. 'top-node': [('generic attribute',
  292. loc('../JS2/js_db.py'),
  293. 'bks93')]},
  294. loc('../JS2/js_map.py'): {'column-widths': [1.0],
  295. 'expanded-nodes': [],
  296. 'selected-nodes': [[('function def',
  297. loc('../JS2/js_map.py'),
  298. 'deg')]],
  299. 'top-node': [('function def',
  300. loc('../JS2/js_map.py'),
  301. 'deg')]},
  302. loc('../JS2/js_map2.py'): {'column-widths': [1.0],
  303. 'expanded-nodes': [],
  304. 'selected-nodes': [],
  305. 'top-node': [('function def',
  306. loc('../JS2/js_map2.py'),
  307. 'deg')]},
  308. loc('../JS2/js_map3.py'): {'column-widths': [1.0],
  309. 'expanded-nodes': [],
  310. 'selected-nodes': [],
  311. 'top-node': [('function def',
  312. loc('../JS2/js_map3.py'),
  313. 'deg')]},
  314. loc('../JS2/js_map4.py'): {'column-widths': [1.0],
  315. 'expanded-nodes': [],
  316. 'selected-nodes': [],
  317. 'top-node': [('function def',
  318. loc('../JS2/js_map4.py'),
  319. 'create_map')]},
  320. loc('../JS2/js_shp.py'): {'column-widths': [1.0],
  321. 'expanded-nodes': [],
  322. 'selected-nodes': [],
  323. 'top-node': [('generic attribute',
  324. loc('../JS2/js_shp.py'),
  325. 'cx')]},
  326. loc('../JS2/js_unpack.py'): {'column-widths': [1.0],
  327. 'expanded-nodes': [],
  328. 'selected-nodes': [],
  329. 'top-node': [('generic attribute',
  330. loc('../JS2/js_unpack.py'),
  331. 'argc')]},
  332. loc('../JS2/jsdb2.py'): {'column-widths': [1.0],
  333. 'expanded-nodes': [],
  334. 'selected-nodes': [],
  335. 'top-node': [('generic attribute',
  336. loc('../JS2/jsdb2.py'),
  337. 'bks93')]},
  338. loc('../JS2/jsunpack2.py'): {'column-widths': [1.0],
  339. 'expanded-nodes': [],
  340. 'selected-nodes': [],
  341. 'top-node': [('generic attribute',
  342. loc('../JS2/jsunpack2.py'),
  343. 'argc')]},
  344. loc('../JS2/ozimap.py'): {'column-widths': [1.0],
  345. 'expanded-nodes': [],
  346. 'selected-nodes': [],
  347. 'top-node': [('generic attribute',
  348. loc('../JS2/ozimap.py'),
  349. 'epilog')]},
  350. loc('../JS2/test PIL.py'): {'column-widths': [1.0],
  351. 'expanded-nodes': [],
  352. 'selected-nodes': [],
  353. 'top-node': [('function def',
  354. loc('../JS2/test PIL.py'),
  355. 'get_pp')]},
  356. loc('../fakemap/fakemap.py'): {'column-widths': [1.0],
  357. 'expanded-nodes': [],
  358. 'selected-nodes': [],
  359. 'top-node': [('generic attribute',
  360. loc('../fakemap/fakemap.py'),
  361. 'dir')]},
  362. loc('../getpics/ggg2.py'): {'column-widths': [1.0],
  363. 'expanded-nodes': [],
  364. 'selected-nodes': [],
  365. 'top-node': [('generic attribute',
  366. loc('../getpics/ggg2.py'),
  367. 'con')]},
  368. loc('../ozi/ozi.py'): {'column-widths': [1.0],
  369. 'expanded-nodes': [],
  370. 'selected-nodes': [],
  371. 'top-node': [('generic attribute',
  372. loc('../ozi/ozi.py'),
  373. 'epilog')]},
  374. loc('../ozi/ozimap.py'): {'column-widths': [1.0],
  375. 'expanded-nodes': [],
  376. 'selected-nodes': [],
  377. 'top-node': [('generic attribute',
  378. loc('../ozi/ozimap.py'),
  379. 'epilog')]},
  380. loc('BeautifulSoup.py'): {'expanded-nodes': [],
  381. 'selected-nodes': [],
  382. 'top-node': [('class def',
  383. loc('BeautifulSoup.py'),
  384. 'BeautifulSOAP')]},
  385. loc('addon.py'): {'expanded-nodes': [],
  386. 'selected-nodes': [],
  387. 'top-node': [('function def',
  388. loc('addon.py'),
  389. 'main')]},
  390. loc('addon.xml'): {'expanded-nodes': [],
  391. 'selected-nodes': [],
  392. 'top-node': None},
  393. loc('changelog.md'): {'expanded-nodes': [],
  394. 'selected-nodes': [],
  395. 'top-node': None},
  396. loc('config.py'): {'expanded-nodes': [],
  397. 'selected-nodes': [],
  398. 'top-node': [('generic attribute',
  399. loc('config.py'),
  400. 'config')]},
  401. loc('context_download.py'): {'expanded-nodes': [],
  402. 'selected-nodes': [],
  403. 'top-node': [('function def',
  404. loc('context_download.py'),
  405. 'main')]},
  406. loc('database.py'): {'expanded-nodes': [],
  407. 'selected-nodes': [],
  408. 'top-node': [('class def',
  409. loc('database.py'),
  410. 'Database')]},
  411. loc('debug.py'): {'expanded-nodes': [],
  412. 'selected-nodes': [],
  413. 'top-node': None},
  414. loc('excel3.py'): {'expanded-nodes': [],
  415. 'selected-nodes': [],
  416. 'top-node': [('class def',
  417. loc('excel3.py'),
  418. 'Excel')]},
  419. loc('iub_db.py'): {'expanded-nodes': [],
  420. 'selected-nodes': [],
  421. 'top-node': [('function def',
  422. loc('iub_db.py'),
  423. 'add_rec')]},
  424. loc('iub_db2.py'): {'expanded-nodes': [],
  425. 'selected-nodes': [[('generic attribute',
  426. loc('iub_db2.py'),
  427. 'version')]],
  428. 'top-node': [('generic attribute',
  429. loc('iub_db2.py'),
  430. 'config')]},
  431. loc('iubx.ini'): {'expanded-nodes': [],
  432. 'selected-nodes': [],
  433. 'top-node': None},
  434. loc('iubx.py'): {'column-widths': None,
  435. 'expanded-nodes': [],
  436. 'selected-nodes': [],
  437. 'top-node': [('function def',
  438. loc('iubx.py'),
  439. 'check_cpv')]},
  440. loc('iubx0.py'): {'column-widths': [1.0],
  441. 'expanded-nodes': [],
  442. 'selected-nodes': [[('generic attribute',
  443. loc('iubx0.py'),
  444. 'config')]],
  445. 'top-node': [('generic attribute',
  446. loc('iubx0.py'),
  447. 'config')]},
  448. loc('kmake.bat'): {'expanded-nodes': [],
  449. 'selected-nodes': [],
  450. 'top-node': None},
  451. loc('kodiswift/mockxbmc/xbmcgui.py'): {'expanded-nodes': [],
  452. 'selected-nodes': [],
  453. 'top-node': [('class def',
  454. loc('kodiswift/mockxbmc/xbmcgui.py'),
  455. 'ListItem')]},
  456. loc('latvian.xml'): {'expanded-nodes': [],
  457. 'selected-nodes': [],
  458. 'top-node': None},
  459. loc('pyaes/aes.py'): {'expanded-nodes': [],
  460. 'selected-nodes': [],
  461. 'top-node': [('class def',
  462. loc('pyaes/aes.py'),
  463. 'AES')]},
  464. loc('record.py'): {'expanded-nodes': [],
  465. 'selected-nodes': [],
  466. 'top-node': [('generic attribute',
  467. loc('record.py'),
  468. 'r1')]},
  469. loc('resources/lib/content/ContentSources.py'): {'expanded-nodes': [],
  470. 'selected-nodes': [[('class def',
  471. loc('resources/lib/content/ContentSources.py'),
  472. 'ContentSources')]],
  473. 'top-node': [('class def',
  474. loc('resources/lib/content/ContentSources.py'),
  475. 'ContentSources')]},
  476. loc('resources/lib/content/file.py'): {'expanded-nodes': [],
  477. 'selected-nodes': [],
  478. 'top-node': [('function def',
  479. loc('resources/lib/content/file.py'),
  480. 'parse_url')]},
  481. loc('resources/lib/content/run.py'): {'expanded-nodes': [],
  482. 'selected-nodes': [],
  483. 'top-node': [('class def',
  484. loc('resources/lib/content/run.py'),
  485. 'Main')]},
  486. loc('resources/lib/content/sources/filmas.py'): {'expanded-nodes': [],
  487. 'selected-nodes': [],
  488. 'top-node': [('class def',
  489. loc('resources/lib/content/sources/filmas.py'),
  490. 'Source')]},
  491. loc('resources/lib/content/sources/ltc.py'): {'expanded-nodes': [],
  492. 'selected-nodes': [],
  493. 'top-node': [('class def',
  494. loc('resources/lib/content/sources/ltc.py'),
  495. 'Source')]},
  496. loc('resources/lib/content/sources/replay.py'): {'expanded-nodes': [],
  497. 'selected-nodes': [],
  498. 'top-node': [('class def',
  499. loc('resources/lib/content/sources/replay.py'),
  500. 'Source')]},
  501. loc('resources/lib/content/util.py'): {'expanded-nodes': [],
  502. 'selected-nodes': [],
  503. 'top-node': [('function def',
  504. loc('resources/lib/content/util.py'),
  505. 'system')]},
  506. loc('resources/settings.xml'): {'expanded-nodes': [],
  507. 'selected-nodes': [],
  508. 'top-node': None},
  509. loc('service.py'): {'expanded-nodes': [],
  510. 'selected-nodes': [],
  511. 'top-node': None},
  512. loc('sources/iub.py'): {'expanded-nodes': [],
  513. 'selected-nodes': [[('class def',
  514. loc('sources/iub.py'),
  515. 'Source')]],
  516. 'top-node': [('generic attribute',
  517. loc('sources/iub.py'),
  518. 'h')]},
  519. loc('test1.py'): {'expanded-nodes': [],
  520. 'selected-nodes': [],
  521. 'top-node': None},
  522. loc('utils.py'): {'expanded-nodes': [],
  523. 'selected-nodes': [],
  524. 'top-node': [('function def',
  525. loc('utils.py'),
  526. 'check_cpv')]},
  527. loc('wingdbstub.py'): {'expanded-nodes': [],
  528. 'selected-nodes': [],
  529. 'top-node': [('function def',
  530. loc('wingdbstub.py'),
  531. 'has_key')]},
  532. loc('../theyr/ikite/ikite.py'): {'column-widths': [1.0],
  533. 'expanded-nodes': [],
  534. 'selected-nodes': [],
  535. 'top-node': [('generic attribute',
  536. loc('../theyr/ikite/ikite.py'),
  537. 'day')]},
  538. loc('../vietas/vietas.py'): {'column-widths': [1.0],
  539. 'expanded-nodes': [],
  540. 'selected-nodes': [],
  541. 'top-node': [('generic attribute',
  542. loc('../vietas/vietas.py'),
  543. 'count')]},
  544. loc('../vietas/vietas0.py'): {'column-widths': [1.0],
  545. 'expanded-nodes': [],
  546. 'selected-nodes': [],
  547. 'top-node': [('generic attribute',
  548. loc('../vietas/vietas0.py'),
  549. 'c')]},
  550. loc('../vietas/vietas2.py'): {'column-widths': [1.0],
  551. 'expanded-nodes': [],
  552. 'selected-nodes': [],
  553. 'top-node': [('generic attribute',
  554. loc('../vietas/vietas2.py'),
  555. 'd_lat')]},
  556. loc('../../SplashData/remdup.py'): {'column-widths': [1.0],
  557. 'expanded-nodes': [],
  558. 'selected-nodes': [],
  559. 'top-node': [('generic attribute',
  560. loc('../../SplashData/remdup.py'),
  561. 'f')]},
  562. loc('../../../Python25/Lib/BeautifulSoup.py'): {'column-widths': [1.0],
  563. 'expanded-nodes': [],
  564. 'selected-nodes': [],
  565. 'top-node': [('class def',
  566. loc('../../../Python25/Lib/BeautifulSoup.py'),
  567. 'BeautifulSOAP')]},
  568. loc('../../../Python25/Lib/ConfigParser.py'): {'column-widths': [1.0],
  569. 'expanded-nodes': [],
  570. 'selected-nodes': [],
  571. 'top-node': [('class def',
  572. loc('../../../Python25/Lib/ConfigParser.py'),
  573. 'ConfigParser')]},
  574. loc('../../../Python25/Lib/StringIO.py'): {'column-widths': [1.0],
  575. 'expanded-nodes': [],
  576. 'selected-nodes': [],
  577. 'top-node': [('class def',
  578. loc('../../../Python25/Lib/StringIO.py'),
  579. 'StringIO')]},
  580. loc('../../../Python25/Lib/dircache.py'): {'column-widths': [1.0],
  581. 'expanded-nodes': [],
  582. 'selected-nodes': [],
  583. 'top-node': [('function def',
  584. loc('../../../Python25/Lib/dircache.py'),
  585. 'annotate')]},
  586. loc('../../../Python25/Lib/encodings/cp1257.py'): {'column-widths': [1.0],
  587. 'expanded-nodes': [],
  588. 'selected-nodes': [],
  589. 'top-node': [('class def',
  590. loc('../../../Python25/Lib/encodings/cp1257.py'),
  591. 'Codec')]},
  592. loc('../../../Python25/Lib/encodings/utf_8.py'): {'column-widths': [1.0],
  593. 'expanded-nodes': [],
  594. 'selected-nodes': [],
  595. 'top-node': [('function def',
  596. loc('../../../Python25/Lib/encodings/utf_8.py'),
  597. 'decode')]},
  598. loc('../../../Python25/Lib/ntpath.py'): {'column-widths': [1.0],
  599. 'expanded-nodes': [],
  600. 'selected-nodes': [],
  601. 'top-node': [('function def',
  602. loc('../../../Python25/Lib/ntpath.py'),
  603. 'abspath')]},
  604. loc('../../../Python25/Lib/re.py'): {'column-widths': [1.0],
  605. 'expanded-nodes': [],
  606. 'selected-nodes': [],
  607. 'top-node': [('generic attribute',
  608. loc('../../../Python25/Lib/re.py'),
  609. 'c')]},
  610. loc('../../../Python25/Lib/sgmllib.py'): {'column-widths': [1.0],
  611. 'expanded-nodes': [],
  612. 'selected-nodes': [],
  613. 'top-node': [('generic attribute',
  614. loc('../../../Python25/Lib/sgmllib.py'),
  615. 'attrfind')]},
  616. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'): {'c'\
  617. 'olumn-widths': [1.0],
  618. 'expanded-nodes': [],
  619. 'selected-nodes': [],
  620. 'top-node': [('generic attribute',
  621. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'),
  622. 'BIT2MODE')]},
  623. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'): {'c'\
  624. 'olumn-widths': [1.0],
  625. 'expanded-nodes': [],
  626. 'selected-nodes': [],
  627. 'top-node': [('function def',
  628. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'),
  629. 'getdata')]},
  630. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'column-wi'\
  631. 'dths': [1.0],
  632. 'expanded-nodes': [],
  633. 'selected-nodes': [[('generic attribute',
  634. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  635. '_initialized')]],
  636. 'top-node': [('generic attribute',
  637. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  638. 'ADAPTIVE')]},
  639. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'): {'colum'\
  640. 'n-widths': [1.0],
  641. 'expanded-nodes': [],
  642. 'selected-nodes': [],
  643. 'top-node': [('generic attribute',
  644. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'),
  645. 'ERRORS')]},
  646. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'): {'co'\
  647. 'lumn-widths': [1.0],
  648. 'expanded-nodes': [],
  649. 'selected-nodes': [],
  650. 'top-node': [('class def',
  651. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'),
  652. 'ImagePalette')]},
  653. loc('../../../Python25/Lib/site-packages/argparse.py'): {'column-wid'\
  654. 'ths': [1.0],
  655. 'expanded-nodes': [],
  656. 'selected-nodes': [],
  657. 'top-node': [('class def',
  658. loc('../../../Python25/Lib/site-packages/argparse.py'),
  659. 'Action')]},
  660. loc('../../../Python25/Lib/site-packages/pdo.py'): {'column-widths': [1.0],
  661. 'expanded-nodes': [],
  662. 'selected-nodes': [],
  663. 'top-node': [('class def',
  664. loc('../../../Python25/Lib/site-packages/pdo.py'),
  665. 'connect')]},
  666. loc('../../../Python25/Lib/struct.py'): {'column-widths': [1.0],
  667. 'expanded-nodes': [],
  668. 'selected-nodes': [],
  669. 'top-node': [('function def',
  670. loc('../../../Python25/Lib/struct.py'),
  671. 'calcsize')]},
  672. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'): {'exp'\
  673. 'anded-nodes': [],
  674. 'selected-nodes': [],
  675. 'top-node': [('class def',
  676. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  677. 'CompositeCaster')]},
  678. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'): {'e'\
  679. 'xpanded-nodes': [],
  680. 'selected-nodes': [],
  681. 'top-node': [('generic attribute',
  682. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  683. 'ALL_INVOKE_TYPES')]},
  684. loc('../../../../Users/user/AppData/Roaming/Wing IDE 6/preferences'): {'e'\
  685. 'xpanded-nodes': [],
  686. 'selected-nodes': [],
  687. 'top-node': None},
  688. loc('../../../../Users/user/AppData/Roaming/Wing IDE 6/pylintpanel.cfg'): {'e'\
  689. 'xpanded-nodes': [],
  690. 'selected-nodes': [],
  691. 'top-node': None},
  692. loc('unknown:<untitled> #3'): {'expanded-nodes': [],
  693. 'selected-nodes': [],
  694. 'top-node': None},
  695. loc('unknown:<untitled> #6'): {'column-widths': [1.0],
  696. 'expanded-nodes': [],
  697. 'selected-nodes': [],
  698. 'top-node': None},
  699. loc('unknown:<untitled> #7'): {'expanded-nodes': [],
  700. 'selected-nodes': [],
  701. 'top-node': None},
  702. loc('unknown:<untitled> #4'): {'expanded-nodes': [],
  703. 'selected-nodes': [],
  704. 'top-node': None},
  705. loc('unknown:<untitled> #5'): {'column-widths': [1.0],
  706. 'expanded-nodes': [],
  707. 'selected-nodes': [],
  708. 'top-node': None},
  709. loc('unknown:<untitled> #8'): {'expanded-nodes': [],
  710. 'selected-nodes': [],
  711. 'top-node': None}},
  712. 'browse_mode': u'Current Module',
  713. 'follow-selection': True,
  714. 'sort_mode': 'File order',
  715. 'visibility_options': {u'Derived Classes': False,
  716. u'Imported': False,
  717. u'Inherited': False,
  718. u'Modules': True,
  719. u'Private': False,
  720. u'Public': True,
  721. u'Semi-Private': False,
  722. u'Variables': False}}),
  723. ('open-files',
  724. 'tall',
  725. 0,
  726. {'tree-state': []}),
  727. ('refactoring',
  728. 'tall',
  729. 0,
  730. {}),
  731. ('debug-stack',
  732. 'tall',
  733. 1,
  734. {'codeline-mode': 'below'}),
  735. ('source-assistant',
  736. 'tall',
  737. 1,
  738. {}),
  739. ('indent',
  740. 'tall',
  741. 2,
  742. {}),
  743. ('templating#02EFWRQK9X23',
  744. 'tall',
  745. 0,
  746. None)],
  747. 'primary_view_state': {'area': 'wide',
  748. 'constraint': None,
  749. 'current_pages': [3,
  750. 1],
  751. 'notebook_display': 'normal',
  752. 'notebook_percent': 0.4363490792634107,
  753. 'override_title': None,
  754. 'pagelist': [('debug-breakpoints',
  755. 'wide',
  756. 0,
  757. {'tree-state': []}),
  758. ('debug-io',
  759. 'wide',
  760. 0,
  761. {}),
  762. ('debug-exceptions',
  763. 'wide',
  764. 0,
  765. {}),
  766. ('interactive-search',
  767. 'wide',
  768. 0,
  769. {'fScope': {'fFileSetName': 'All Source Files',
  770. 'fLocation': None,
  771. 'fRecursive': True,
  772. 'fType': 'project-files'},
  773. 'fSearchSpec': {'fEndPos': None,
  774. 'fIncludeLinenos': True,
  775. 'fInterpretBackslashes': False,
  776. 'fMatchCase': False,
  777. 'fOmitBinary': True,
  778. 'fRegexFlags': 42,
  779. 'fReplaceText': u'item["posterUrl"]',
  780. 'fReverse': False,
  781. 'fSearchText': u'ftpli',
  782. 'fStartPos': 0,
  783. 'fStyle': 'text',
  784. 'fWholeWords': False,
  785. 'fWrap': True},
  786. 'fUIOptions': {'fAutoBackground': True,
  787. 'fFilePrefix': 'short-file',
  788. 'fFindAfterReplace': True,
  789. 'fInSelection': False,
  790. 'fIncremental': True,
  791. 'fReplaceOnDisk': False,
  792. 'fShowFirstMatch': False,
  793. 'fShowLineno': True,
  794. 'fShowReplaceWidgets': False}}),
  795. ('batch-search',
  796. 'wide',
  797. 0,
  798. {'fScope': {'fFileSetName': 'Python Files',
  799. 'fLocation': None,
  800. 'fRecursive': True,
  801. 'fType': 'project-files'},
  802. 'fSearchSpec': {'fEndPos': None,
  803. 'fIncludeLinenos': True,
  804. 'fInterpretBackslashes': False,
  805. 'fMatchCase': False,
  806. 'fOmitBinary': True,
  807. 'fRegexFlags': 42,
  808. 'fReplaceText': u'',
  809. 'fReverse': False,
  810. 'fSearchText': u'traceback',
  811. 'fStartPos': 0,
  812. 'fStyle': 'text',
  813. 'fWholeWords': False,
  814. 'fWrap': True},
  815. 'fUIOptions': {'fAutoBackground': True,
  816. 'fFilePrefix': 'short-file',
  817. 'fFindAfterReplace': True,
  818. 'fInSelection': False,
  819. 'fIncremental': True,
  820. 'fReplaceOnDisk': False,
  821. 'fShowFirstMatch': False,
  822. 'fShowLineno': True,
  823. 'fShowReplaceWidgets': False},
  824. 'replace-entry-expanded': False,
  825. 'search-entry-expanded': False}),
  826. ('debug-data',
  827. 'wide',
  828. 0,
  829. {}),
  830. ('versioncontrol.git',
  831. 'wide',
  832. 0,
  833. {}),
  834. ('bookmarks',
  835. 'wide',
  836. 1,
  837. {}),
  838. ('debug-probe',
  839. 'wide',
  840. 2,
  841. {'active-range': (None,
  842. -1,
  843. -1),
  844. 'attrib-starts': [],
  845. 'first-line': 0L,
  846. 'folded-linenos': [],
  847. 'history': {None: ['p\n']},
  848. 'launch-id': None,
  849. 'sel-line': 8L,
  850. 'sel-line-start': 183L,
  851. 'selection_end': 183L,
  852. 'selection_start': 183L,
  853. 'zoom': 0L}),
  854. ('debug-watch',
  855. 'wide',
  856. 1,
  857. {'node-states': [('eval',
  858. u'r'),
  859. ('eval',
  860. u'streams'),
  861. ('eval',
  862. u'js'),
  863. ('eval',
  864. '')],
  865. 'tree-state': {'expanded-nodes': [(0,),
  866. (1,)],
  867. 'selected-nodes': [],
  868. 'top-node': (0,)}}),
  869. ('messages',
  870. 'wide',
  871. 2,
  872. {'current-domain': 0}),
  873. ('os-command',
  874. 'wide',
  875. 1,
  876. {'last-percent': 0.8,
  877. 'toolbox-percent': 0.8,
  878. 'toolbox-tree-sel': 'cmd-UgtR6eOnyv9qI7yC'}),
  879. ('python-shell',
  880. 'wide',
  881. 2,
  882. {'active-range': (None,
  883. -1,
  884. -1),
  885. 'attrib-starts': [],
  886. 'first-line': 0L,
  887. 'folded-linenos': [],
  888. 'history': {},
  889. 'launch-id': None,
  890. 'sel-line': 2L,
  891. 'sel-line-start': 163L,
  892. 'selection_end': 163L,
  893. 'selection_start': 163L,
  894. 'zoom': 0L}),
  895. ('pylintpanel#02EFWRQK9X24',
  896. 'wide',
  897. 1,
  898. {})],
  899. 'primary_view_state': {'editor_states': ('horizontal',
  900. 1.0,
  901. ({'bookmarks': ([[loc('context_download.py'),
  902. {'attrib-starts': [('download_hls',
  903. 237)],
  904. 'first-line': 277L,
  905. 'folded-linenos': [],
  906. 'sel-line': 298L,
  907. 'sel-line-start': 11543L,
  908. 'selection_end': 11563L,
  909. 'selection_start': 11558L,
  910. 'zoom': 0L},
  911. 1548527119.987],
  912. [loc('context_download.py'),
  913. {'attrib-starts': [('download_hls',
  914. 237)],
  915. 'first-line': 287L,
  916. 'folded-linenos': [],
  917. 'sel-line': 300L,
  918. 'sel-line-start': 11584L,
  919. 'selection_end': 11629L,
  920. 'selection_start': 11619L,
  921. 'zoom': 0L},
  922. 1548527138.088],
  923. [loc('context_download.py'),
  924. {'attrib-starts': [('download_file',
  925. 371)],
  926. 'first-line': 378L,
  927. 'folded-linenos': [],
  928. 'sel-line': 396L,
  929. 'sel-line-start': 15075L,
  930. 'selection_end': 15094L,
  931. 'selection_start': 15089L,
  932. 'zoom': 0L},
  933. 1548527145.504],
  934. [loc('context_download.py'),
  935. {'attrib-starts': [('download_sub',
  936. 428)],
  937. 'first-line': 409L,
  938. 'folded-linenos': [],
  939. 'sel-line': 430L,
  940. 'sel-line-start': 16204L,
  941. 'selection_end': 16235L,
  942. 'selection_start': 16230L,
  943. 'zoom': 0L},
  944. 1548527153.692],
  945. [loc('addon.py'),
  946. {'attrib-starts': [('play_video',
  947. 223)],
  948. 'first-line': 219L,
  949. 'folded-linenos': [44L,
  950. 87L],
  951. 'sel-line': 234L,
  952. 'sel-line-start': 10475L,
  953. 'selection_end': 10475L,
  954. 'selection_start': 10475L,
  955. 'zoom': 0L},
  956. 1548527189.976],
  957. [loc('context_download.py'),
  958. {'attrib-starts': [('download_sub',
  959. 428)],
  960. 'first-line': 415L,
  961. 'folded-linenos': [],
  962. 'sel-line': 430L,
  963. 'sel-line-start': 16204L,
  964. 'selection_end': 16235L,
  965. 'selection_start': 16230L,
  966. 'zoom': 0L},
  967. 1548527207.874],
  968. [loc('context_download.py'),
  969. {'attrib-starts': [('download_sub',
  970. 428)],
  971. 'first-line': 425L,
  972. 'folded-linenos': [],
  973. 'sel-line': 446L,
  974. 'sel-line-start': 16685L,
  975. 'selection_end': 16705L,
  976. 'selection_start': 16701L,
  977. 'zoom': 0L},
  978. 1548527221.502],
  979. [loc('context_download.py'),
  980. {'attrib-starts': [('download_sub',
  981. 428)],
  982. 'first-line': 425L,
  983. 'folded-linenos': [],
  984. 'sel-line': 446L,
  985. 'sel-line-start': 16685L,
  986. 'selection_end': 16711L,
  987. 'selection_start': 16706L,
  988. 'zoom': 0L},
  989. 1548527222.414],
  990. [loc('context_download.py'),
  991. {'attrib-starts': [('download_image',
  992. 454)],
  993. 'first-line': 439L,
  994. 'folded-linenos': [],
  995. 'sel-line': 460L,
  996. 'sel-line-start': 17124L,
  997. 'selection_end': 17154L,
  998. 'selection_start': 17149L,
  999. 'zoom': 0L},
  1000. 1548527225.136],
  1001. [loc('context_download.py'),
  1002. {'attrib-starts': [('download_image',
  1003. 454)],
  1004. 'first-line': 451L,
  1005. 'folded-linenos': [],
  1006. 'sel-line': 464L,
  1007. 'sel-line-start': 17229L,
  1008. 'selection_end': 17251L,
  1009. 'selection_start': 17246L,
  1010. 'zoom': 0L},
  1011. 1548527226.448],
  1012. [loc('context_download.py'),
  1013. {'attrib-starts': [('Job',
  1014. 501),
  1015. ('Job.read',
  1016. 508)],
  1017. 'first-line': 489L,
  1018. 'folded-linenos': [],
  1019. 'sel-line': 510L,
  1020. 'sel-line-start': 18653L,
  1021. 'selection_end': 18675L,
  1022. 'selection_start': 18670L,
  1023. 'zoom': 0L},
  1024. 1548527228.555],
  1025. [loc('context_download.py'),
  1026. {'attrib-starts': [('Job',
  1027. 501),
  1028. ('Job.write',
  1029. 517)],
  1030. 'first-line': 498L,
  1031. 'folded-linenos': [],
  1032. 'sel-line': 519L,
  1033. 'sel-line-start': 18897L,
  1034. 'selection_end': 18915L,
  1035. 'selection_start': 18910L,
  1036. 'zoom': 0L},
  1037. 1548527235.792],
  1038. [loc('context_download.py'),
  1039. {'attrib-starts': [('download_video',
  1040. 104)],
  1041. 'first-line': 128L,
  1042. 'folded-linenos': [],
  1043. 'sel-line': 133L,
  1044. 'sel-line-start': 5005L,
  1045. 'selection_end': 5020L,
  1046. 'selection_start': 5015L,
  1047. 'zoom': 0L},
  1048. 1548527237.569],
  1049. [loc('context_download.py'),
  1050. {'attrib-starts': [('download_stream',
  1051. 149)],
  1052. 'first-line': 204L,
  1053. 'folded-linenos': [],
  1054. 'sel-line': 209L,
  1055. 'sel-line-start': 8350L,
  1056. 'selection_end': 8360L,
  1057. 'selection_start': 8358L,
  1058. 'zoom': 0L},
  1059. 1548527257.115],
  1060. [loc('context_download.py'),
  1061. {'attrib-starts': [('download_stream',
  1062. 149)],
  1063. 'first-line': 181L,
  1064. 'folded-linenos': [],
  1065. 'sel-line': 186L,
  1066. 'sel-line-start': 7336L,
  1067. 'selection_end': 7350L,
  1068. 'selection_start': 7349L,
  1069. 'zoom': 0L},
  1070. 1548527258.645],
  1071. [loc('context_download.py'),
  1072. {'attrib-starts': [('download_stream',
  1073. 149)],
  1074. 'first-line': 0L,
  1075. 'folded-linenos': [],
  1076. 'sel-line': 186L,
  1077. 'sel-line-start': 7336L,
  1078. 'selection_end': 7352L,
  1079. 'selection_start': 7348L,
  1080. 'zoom': 0L},
  1081. 1548527280.832],
  1082. [loc('resources/lib/content/file.py'),
  1083. {'attrib-starts': [('FileObject',
  1084. 20),
  1085. ('FileObject.__init__',
  1086. 22)],
  1087. 'first-line': 18L,
  1088. 'folded-linenos': [83L,
  1089. 86L,
  1090. 102L],
  1091. 'sel-line': 25L,
  1092. 'sel-line-start': 803L,
  1093. 'selection_end': 835L,
  1094. 'selection_start': 827L,
  1095. 'zoom': 0L},
  1096. 1548527622.598],
  1097. [loc('addon.py'),
  1098. {'attrib-starts': [('play_video',
  1099. 223)],
  1100. 'first-line': 219L,
  1101. 'folded-linenos': [44L,
  1102. 87L],
  1103. 'sel-line': 234L,
  1104. 'sel-line-start': 10475L,
  1105. 'selection_end': 10475L,
  1106. 'selection_start': 10475L,
  1107. 'zoom': 0L},
  1108. 1548527712.597],
  1109. [loc('resources/lib/content/file.py'),
  1110. {'attrib-starts': [('FileObject',
  1111. 20),
  1112. ('FileObject.__init__',
  1113. 22)],
  1114. 'first-line': 0L,
  1115. 'folded-linenos': [86L,
  1116. 102L],
  1117. 'sel-line': 34L,
  1118. 'sel-line-start': 1129L,
  1119. 'selection_end': 1154L,
  1120. 'selection_start': 1150L,
  1121. 'zoom': 0L},
  1122. 1548527998.133],
  1123. [loc('resources/lib/content/file.py'),
  1124. {'attrib-starts': [('FileObject',
  1125. 20),
  1126. ('FileObject.__init__',
  1127. 22)],
  1128. 'first-line': 26L,
  1129. 'folded-linenos': [86L,
  1130. 102L],
  1131. 'sel-line': 34L,
  1132. 'sel-line-start': 1129L,
  1133. 'selection_end': 1160L,
  1134. 'selection_start': 1157L,
  1135. 'zoom': 0L},
  1136. 1548527999.634]],
  1137. 20),
  1138. 'current-loc': loc('resources/lib/content/file.py'),
  1139. 'editor-state-list': [(loc('changelog.md'),
  1140. {'attrib-starts': [],
  1141. 'first-line': 0L,
  1142. 'folded-linenos': [],
  1143. 'sel-line': 0L,
  1144. 'sel-line-start': 0L,
  1145. 'selection_end': 8L,
  1146. 'selection_start': 8L,
  1147. 'zoom': 0L}),
  1148. (loc('addon.xml'),
  1149. {'attrib-starts': [],
  1150. 'first-line': 0L,
  1151. 'folded-linenos': [],
  1152. 'sel-line': 9L,
  1153. 'sel-line-start': 461L,
  1154. 'selection_end': 491L,
  1155. 'selection_start': 491L,
  1156. 'zoom': 0L}),
  1157. (loc('context_menu.py'),
  1158. {'attrib-starts': [],
  1159. 'first-line': 0L,
  1160. 'folded-linenos': [],
  1161. 'sel-line': 17L,
  1162. 'sel-line-start': 627L,
  1163. 'selection_end': 627L,
  1164. 'selection_start': 627L,
  1165. 'zoom': 0L}),
  1166. (loc('kmake.bat'),
  1167. {'attrib-starts': [],
  1168. 'first-line': 0L,
  1169. 'folded-linenos': [],
  1170. 'sel-line': 5L,
  1171. 'sel-line-start': 102L,
  1172. 'selection_end': 111L,
  1173. 'selection_start': 111L,
  1174. 'zoom': 0L}),
  1175. (loc('addon.py'),
  1176. {'attrib-starts': [('play_video',
  1177. 223)],
  1178. 'first-line': 219L,
  1179. 'folded-linenos': [44L,
  1180. 87L],
  1181. 'sel-line': 234L,
  1182. 'sel-line-start': 10475L,
  1183. 'selection_end': 10475L,
  1184. 'selection_start': 10475L,
  1185. 'zoom': 0L}),
  1186. (loc('context_download.py'),
  1187. {'attrib-starts': [('download_stream',
  1188. 149)],
  1189. 'first-line': 0L,
  1190. 'folded-linenos': [],
  1191. 'sel-line': 186L,
  1192. 'sel-line-start': 7336L,
  1193. 'selection_end': 7352L,
  1194. 'selection_start': 7348L,
  1195. 'zoom': 0L}),
  1196. (loc('resources/lib/content/ContentSources.py'),
  1197. {'attrib-starts': [('ContentSources',
  1198. 16),
  1199. ('ContentSources.get_content',
  1200. 64)],
  1201. 'first-line': 62L,
  1202. 'folded-linenos': [],
  1203. 'sel-line': 67L,
  1204. 'sel-line-start': 2870L,
  1205. 'selection_end': 2870L,
  1206. 'selection_start': 2870L,
  1207. 'zoom': 0L}),
  1208. (loc('resources/lib/content/sources/config.py'),
  1209. {'attrib-starts': [('Source',
  1210. 12),
  1211. ('Source.__init__',
  1212. 14)],
  1213. 'first-line': 10L,
  1214. 'folded-linenos': [],
  1215. 'sel-line': 15L,
  1216. 'sel-line-start': 505L,
  1217. 'selection_end': 505L,
  1218. 'selection_start': 505L,
  1219. 'zoom': 0L}),
  1220. (loc('resources/lib/content/sources/ltc.py'),
  1221. {'attrib-starts': [('Source',
  1222. 26),
  1223. ('Source.get_epg_date',
  1224. 772)],
  1225. 'first-line': 772L,
  1226. 'folded-linenos': [],
  1227. 'sel-line': 782L,
  1228. 'sel-line-start': 42468L,
  1229. 'selection_end': 42468L,
  1230. 'selection_start': 42468L,
  1231. 'zoom': 0L}),
  1232. (loc('resources/lib/content/file.py'),
  1233. {'attrib-starts': [('FileObject',
  1234. 20),
  1235. ('FileObject.write',
  1236. 51)],
  1237. 'first-line': 54L,
  1238. 'folded-linenos': [86L,
  1239. 102L],
  1240. 'sel-line': 65L,
  1241. 'sel-line-start': 2364L,
  1242. 'selection_end': 2364L,
  1243. 'selection_start': 2364L,
  1244. 'zoom': 0L})],
  1245. 'has-focus': True,
  1246. 'locked': False},
  1247. [loc('changelog.md'),
  1248. loc('addon.xml'),
  1249. loc('context_menu.py'),
  1250. loc('kmake.bat'),
  1251. loc('addon.py'),
  1252. loc('context_download.py'),
  1253. loc('resources/lib/content/ContentSources.py'),
  1254. loc('resources/lib/content/sources/config.py'),
  1255. loc('resources/lib/content/sources/ltc.py'),
  1256. loc('resources/lib/content/file.py')]),
  1257. ({'bookmarks': ([(loc('iubx.py'),
  1258. {'attrib-starts': [('main',
  1259. 42)],
  1260. 'first-line': 108,
  1261. 'folded-linenos': [],
  1262. 'sel-line': 135,
  1263. 'sel-line-start': 6123,
  1264. 'selection_end': 6123,
  1265. 'selection_start': 6123},
  1266. 1370449380.505),
  1267. (loc('iubx.py'),
  1268. {'attrib-starts': [('main',
  1269. 42)],
  1270. 'first-line': 108,
  1271. 'folded-linenos': [],
  1272. 'sel-line': 135,
  1273. 'sel-line-start': 6123,
  1274. 'selection_end': 6123,
  1275. 'selection_start': 6123},
  1276. 1370449384.062),
  1277. [loc('iubx2.py'),
  1278. {'attrib-starts': [('main',
  1279. 42)],
  1280. 'first-line': 111,
  1281. 'folded-linenos': [],
  1282. 'sel-line': 158,
  1283. 'sel-line-start': 7392,
  1284. 'selection_end': 7392,
  1285. 'selection_start': 7392},
  1286. 1455788262.586],
  1287. [loc('iubx2.py'),
  1288. {'attrib-starts': [('main',
  1289. 42)],
  1290. 'first-line': 104,
  1291. 'folded-linenos': [],
  1292. 'sel-line': 141,
  1293. 'sel-line-start': 5871,
  1294. 'selection_end': 5871,
  1295. 'selection_start': 5871},
  1296. 1456308657.576],
  1297. [loc('../audits/test1.py'),
  1298. {'attrib-starts': [],
  1299. 'first-line': 0,
  1300. 'folded-linenos': [],
  1301. 'sel-line': 0,
  1302. 'sel-line-start': 0,
  1303. 'selection_end': 0,
  1304. 'selection_start': 0},
  1305. 1457449493.859],
  1306. [loc('iub_db2.py'),
  1307. {'attrib-starts': [('main',
  1308. -1)],
  1309. 'first-line': 109,
  1310. 'folded-linenos': [],
  1311. 'sel-line': 146,
  1312. 'sel-line-start': 6796,
  1313. 'selection_end': 6797,
  1314. 'selection_start': 6797},
  1315. 1459750791.479],
  1316. [loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  1317. {'attrib-starts': [],
  1318. 'first-line': 0,
  1319. 'folded-linenos': [],
  1320. 'sel-line': 0,
  1321. 'sel-line-start': 0,
  1322. 'selection_end': 0,
  1323. 'selection_start': 0},
  1324. 1459757438.323],
  1325. [loc('iub_email.py'),
  1326. {'attrib-starts': [('main',
  1327. -1)],
  1328. 'first-line': 0,
  1329. 'folded-linenos': [],
  1330. 'sel-line': 104,
  1331. 'sel-line-start': 4084,
  1332. 'selection_end': 4084,
  1333. 'selection_start': 4084},
  1334. 1459798097.611],
  1335. [loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  1336. {'attrib-starts': [],
  1337. 'first-line': 0,
  1338. 'folded-linenos': [],
  1339. 'sel-line': 0,
  1340. 'sel-line-start': 0,
  1341. 'selection_end': 0,
  1342. 'selection_start': 0},
  1343. 1460048392.844],
  1344. [loc('utils.py'),
  1345. {'attrib-starts': [],
  1346. 'first-line': 0,
  1347. 'folded-linenos': [],
  1348. 'sel-line': 0,
  1349. 'sel-line-start': 0,
  1350. 'selection_end': 0,
  1351. 'selection_start': 0},
  1352. 1462256767.769],
  1353. [loc('untitled-2.py'),
  1354. {'attrib-starts': [],
  1355. 'first-line': 0,
  1356. 'folded-linenos': [],
  1357. 'sel-line': 0,
  1358. 'sel-line-start': 0,
  1359. 'selection_end': 0,
  1360. 'selection_start': 0},
  1361. 1462256769.932],
  1362. [loc('test2.py'),
  1363. {'attrib-starts': [],
  1364. 'first-line': 0,
  1365. 'folded-linenos': [],
  1366. 'sel-line': 0,
  1367. 'sel-line-start': 0,
  1368. 'selection_end': 0,
  1369. 'selection_start': 0},
  1370. 1462256771.174],
  1371. [loc('test1.py'),
  1372. {'attrib-starts': [],
  1373. 'first-line': 0,
  1374. 'folded-linenos': [],
  1375. 'sel-line': 0,
  1376. 'sel-line-start': 0,
  1377. 'selection_end': 0,
  1378. 'selection_start': 0},
  1379. 1462256772.38],
  1380. [loc('sources/iub.py'),
  1381. {'attrib-starts': [],
  1382. 'first-line': 0,
  1383. 'folded-linenos': [],
  1384. 'sel-line': 0,
  1385. 'sel-line-start': 0,
  1386. 'selection_end': 0,
  1387. 'selection_start': 0},
  1388. 1462256777.34],
  1389. [loc('iub_email.py'),
  1390. {'attrib-starts': [],
  1391. 'first-line': 0,
  1392. 'folded-linenos': [],
  1393. 'sel-line': 0,
  1394. 'sel-line-start': 0,
  1395. 'selection_end': 0,
  1396. 'selection_start': 0},
  1397. 1462256778.451],
  1398. [loc('iub_db2.py'),
  1399. {'attrib-starts': [],
  1400. 'first-line': 0,
  1401. 'folded-linenos': [],
  1402. 'sel-line': 0,
  1403. 'sel-line-start': 0,
  1404. 'selection_end': 0,
  1405. 'selection_start': 0},
  1406. 1462256779.578],
  1407. [loc('iepirkumi/rss/rss.cgi'),
  1408. {'attrib-starts': [],
  1409. 'first-line': 0,
  1410. 'folded-linenos': [],
  1411. 'sel-line': 0,
  1412. 'sel-line-start': 0,
  1413. 'selection_end': 0,
  1414. 'selection_start': 0},
  1415. 1462256780.838],
  1416. [loc('iepirkumi/rss/feeds.py'),
  1417. {'attrib-starts': [],
  1418. 'first-line': 0,
  1419. 'folded-linenos': [],
  1420. 'sel-line': 0,
  1421. 'sel-line-start': 0,
  1422. 'selection_end': 0,
  1423. 'selection_start': 0},
  1424. 1462256782.091],
  1425. [loc('iepirkumi/rss/database3.py'),
  1426. {'attrib-starts': [],
  1427. 'first-line': 0,
  1428. 'folded-linenos': [],
  1429. 'sel-line': 0,
  1430. 'sel-line-start': 0,
  1431. 'selection_end': 0,
  1432. 'selection_start': 0},
  1433. 1462256785.892],
  1434. [loc('database.py'),
  1435. {'attrib-starts': [],
  1436. 'first-line': 0,
  1437. 'folded-linenos': [],
  1438. 'sel-line': 0,
  1439. 'sel-line-start': 0,
  1440. 'selection_end': 0,
  1441. 'selection_start': 0},
  1442. 1462256788.361]],
  1443. 20),
  1444. 'current-loc': loc('addon.py'),
  1445. 'editor-state-list': [(loc('addon.py'),
  1446. {'attrib-starts': [],
  1447. 'first-line': 0L,
  1448. 'folded-linenos': [],
  1449. 'sel-line': 0L,
  1450. 'sel-line-start': 0L,
  1451. 'selection_end': 0L,
  1452. 'selection_start': 0L,
  1453. 'zoom': 0L}),
  1454. (loc('changelog.md'),
  1455. {}),
  1456. (loc('service.py'),
  1457. {'attrib-starts': [],
  1458. 'first-line': 0L,
  1459. 'folded-linenos': [],
  1460. 'sel-line': 0L,
  1461. 'sel-line-start': 0L,
  1462. 'selection_end': 0L,
  1463. 'selection_start': 0L,
  1464. 'zoom': 0L}),
  1465. (loc('resources/lib/content/ContentSources.py'),
  1466. {'attrib-starts': [('ContentSources',
  1467. 16),
  1468. ('ContentSources.is_video',
  1469. 152)],
  1470. 'first-line': 144L,
  1471. 'folded-linenos': [],
  1472. 'sel-line': 157L,
  1473. 'sel-line-start': 6347L,
  1474. 'selection_end': 6347L,
  1475. 'selection_start': 6347L,
  1476. 'zoom': 0L}),
  1477. (loc('plugin.video.playstream/resources/settings.xml'),
  1478. {'attrib-starts': [],
  1479. 'first-line': 0L,
  1480. 'folded-linenos': [],
  1481. 'sel-line': 0L,
  1482. 'sel-line-start': 0L,
  1483. 'selection_end': 0L,
  1484. 'selection_start': 0L,
  1485. 'zoom': 0L}),
  1486. (loc('que_management.py'),
  1487. {}),
  1488. (loc('plugin.video.playstream/resources/lib/util.py'),
  1489. {})],
  1490. 'has-focus': False,
  1491. 'locked': False},
  1492. [loc('addon.py'),
  1493. loc('changelog.md'),
  1494. loc('service.py'),
  1495. loc('resources/lib/content/ContentSources.py'),
  1496. loc('plugin.video.playstream/resources/settings.xml'),
  1497. loc('que_management.py'),
  1498. loc('plugin.video.playstream/resources/lib/util.py')])),
  1499. 'open_files': [u'addon.xml',
  1500. u'changelog.md',
  1501. u'context_menu.py',
  1502. u'kmake.bat',
  1503. u'resources/lib/content/ContentSources.py',
  1504. u'resources/lib/content/sources/config.py',
  1505. u'resources/lib/content/sources/ltc.py',
  1506. u'context_download.py',
  1507. u'addon.py',
  1508. u'resources/lib/content/file.py',
  1509. u'addon.py',
  1510. u'changelog.md',
  1511. u'plugin.video.playstream/resources/lib/util.py',
  1512. u'plugin.video.playstream/resources/settings.xml',
  1513. u'que_management.py',
  1514. u'resources/lib/content/ContentSources.py',
  1515. u'service.py']},
  1516. 'saved_notebook_display': None,
  1517. 'split_percents': {0: 0.5465909090909091},
  1518. 'splits': 2,
  1519. 'tab_location': 'top',
  1520. 'user_data': {}},
  1521. 'saved_notebook_display': None,
  1522. 'split_percents': {0: 0.5},
  1523. 'splits': 2,
  1524. 'tab_location': 'left',
  1525. 'user_data': {}},
  1526. 'window-alloc': (125,
  1527. 0,
  1528. 2459,
  1529. 1462)}]}
  1530. guimgr.recent-documents = [loc('resources/lib/content/file.py'),
  1531. loc('addon.py'),
  1532. loc('context_download.py'),
  1533. loc('service.py'),
  1534. loc('resources/lib/content/sources/ltc.py'),
  1535. loc('resources/lib/content/ContentSources.py'),
  1536. loc('resources/lib/content/sources/config.py'),
  1537. loc('kmake.bat'),
  1538. loc('context_menu.py'),
  1539. loc('addon.xml'),
  1540. loc('changelog.md')]
  1541. guimgr.visual-state = {loc('addon.py'): {'attrib-starts': [],
  1542. 'first-line': 0L,
  1543. 'folded-linenos': [],
  1544. 'sel-line': 13L,
  1545. 'sel-line-start': 352L,
  1546. 'selection_end': 356L,
  1547. 'selection_start': 356L,
  1548. 'zoom': 0L},
  1549. loc('addon.xml'): {'attrib-starts': [],
  1550. 'first-line': 0L,
  1551. 'folded-linenos': [],
  1552. 'sel-line': 7L,
  1553. 'sel-line-start': 363L,
  1554. 'selection_end': 363L,
  1555. 'selection_start': 363L,
  1556. 'zoom': 0L},
  1557. loc('changelog.md'): {'attrib-starts': [],
  1558. 'first-line': 0L,
  1559. 'folded-linenos': [],
  1560. 'sel-line': 0L,
  1561. 'sel-line-start': 0L,
  1562. 'selection_end': 8L,
  1563. 'selection_start': 8L,
  1564. 'zoom': 0L},
  1565. loc('config.py'): {'attrib-starts': [],
  1566. 'first-line': 0,
  1567. 'folded-linenos': [],
  1568. 'sel-line': 38,
  1569. 'sel-line-start': 1110,
  1570. 'selection_end': 1110,
  1571. 'selection_start': 1110},
  1572. loc('context_download.py'): {'attrib-starts': [('down'\
  1573. 'load_video',
  1574. 81)],
  1575. 'first-line': 87L,
  1576. 'folded-linenos': [],
  1577. 'sel-line': 107L,
  1578. 'sel-line-start': 3741L,
  1579. 'selection_end': 3746L,
  1580. 'selection_start': 3746L,
  1581. 'zoom': 0L},
  1582. loc('context_menu.py'): {'attrib-starts': [],
  1583. 'first-line': 33L,
  1584. 'folded-linenos': [],
  1585. 'sel-line': 33L,
  1586. 'sel-line-start': 847L,
  1587. 'selection_end': 848L,
  1588. 'selection_start': 848L,
  1589. 'zoom': 0L},
  1590. loc('debug.py'): {'attrib-starts': [],
  1591. 'first-line': 0L,
  1592. 'folded-linenos': [],
  1593. 'sel-line': 0L,
  1594. 'sel-line-start': 0L,
  1595. 'selection_end': 17L,
  1596. 'selection_start': 0L,
  1597. 'zoom': 0L},
  1598. loc('download_service.py'): {'attrib-starts': [],
  1599. 'first-line': 0L,
  1600. 'folded-linenos': [26L,
  1601. 48L],
  1602. 'sel-line': 9L,
  1603. 'sel-line-start': 236L,
  1604. 'selection_end': 287L,
  1605. 'selection_start': 283L,
  1606. 'zoom': 0L},
  1607. loc('downloadqueue.py'): {'attrib-starts': [('Downloa'\
  1608. 'dQueue',
  1609. 13),
  1610. ('DownloadQueue.jobs_count',
  1611. 51)],
  1612. 'first-line': 52L,
  1613. 'folded-linenos': [],
  1614. 'sel-line': 56L,
  1615. 'sel-line-start': 1398L,
  1616. 'selection_end': 1430L,
  1617. 'selection_start': 1430L,
  1618. 'zoom': 0L},
  1619. loc('iub.py'): {'attrib-starts': [('get_table',
  1620. 51)],
  1621. 'first-line': 0,
  1622. 'folded-linenos': [],
  1623. 'sel-line': 101,
  1624. 'sel-line-start': 3652,
  1625. 'selection_end': 3685,
  1626. 'selection_start': 3669},
  1627. loc('iubx.py'): {'attrib-starts': [('parse_arguments',
  1628. 25)],
  1629. 'first-line': 0,
  1630. 'folded-linenos': [],
  1631. 'sel-line': 32,
  1632. 'sel-line-start': 1289,
  1633. 'selection_end': 1335,
  1634. 'selection_start': 1335},
  1635. loc('iubx0.py'): {'attrib-starts': [('main',
  1636. 40)],
  1637. 'first-line': 349,
  1638. 'folded-linenos': [],
  1639. 'sel-line': 84,
  1640. 'sel-line-start': 3404,
  1641. 'selection_end': 3450,
  1642. 'selection_start': 3449},
  1643. loc('kodiswift/__init__.py'): {'attrib-starts': [],
  1644. 'first-line': 65L,
  1645. 'folded-linenos': [],
  1646. 'sel-line': 66L,
  1647. 'sel-line-start': 2166L,
  1648. 'selection_end': 2182L,
  1649. 'selection_start': 2182L,
  1650. 'zoom': 0L},
  1651. loc('kodiswift/cli/app.py'): {'attrib-starts': [('onc'\
  1652. 'e',
  1653. 153)],
  1654. 'first-line': 157L,
  1655. 'folded-linenos': [],
  1656. 'sel-line': 168L,
  1657. 'sel-line-start': 5238L,
  1658. 'selection_end': 5238L,
  1659. 'selection_start': 5238L},
  1660. loc('kodiswift/cli/cli.py'): {'attrib-starts': [],
  1661. 'first-line': 22L,
  1662. 'folded-linenos': [],
  1663. 'sel-line': 27L,
  1664. 'sel-line-start': 617L,
  1665. 'selection_end': 643L,
  1666. 'selection_start': 643L,
  1667. 'zoom': 0L},
  1668. loc('kodiswift/cli/console.py'): {'attrib-starts': [('d'\
  1669. 'isplay_video',
  1670. 56)],
  1671. 'first-line': 55L,
  1672. 'folded-linenos': [],
  1673. 'sel-line': 60L,
  1674. 'sel-line-start': 1655L,
  1675. 'selection_end': 1655L,
  1676. 'selection_start': 1655L,
  1677. 'zoom': 0L},
  1678. loc('kodiswift/listitem.py'): {'attrib-starts': [('Li'\
  1679. 'stItem',
  1680. 20),
  1681. ('ListItem.label',
  1682. 68)],
  1683. 'first-line': 60L,
  1684. 'folded-linenos': [],
  1685. 'sel-line': 65L,
  1686. 'sel-line-start': 1996L,
  1687. 'selection_end': 1996L,
  1688. 'selection_start': 1996L,
  1689. 'zoom': 0L},
  1690. loc('kodiswift/mockxbmc/xbmc.py'): {'attrib-starts': [('t'\
  1691. 'ranslatePath',
  1692. 42)],
  1693. 'first-line': 44L,
  1694. 'folded-linenos': [],
  1695. 'sel-line': 55L,
  1696. 'sel-line-start': 1566L,
  1697. 'selection_end': 1571L,
  1698. 'selection_start': 1571L,
  1699. 'zoom': 0L},
  1700. loc('kodiswift/mockxbmc/xbmcgui.py'): {'attrib-starts': [],
  1701. 'first-line': 0L,
  1702. 'folded-linenos': [],
  1703. 'sel-line': 0L,
  1704. 'sel-line-start': 0L,
  1705. 'selection_end': 0L,
  1706. 'selection_start': 0L,
  1707. 'zoom': 0L},
  1708. loc('kodiswift/plugin.py'): {'attrib-starts': [('Plug'\
  1709. 'in',
  1710. 27),
  1711. ('Plugin._dispatch',
  1712. 318)],
  1713. 'first-line': 325L,
  1714. 'folded-linenos': [],
  1715. 'sel-line': 338L,
  1716. 'sel-line-start': 12648L,
  1717. 'selection_end': 12648L,
  1718. 'selection_start': 12648L,
  1719. 'zoom': 0L},
  1720. loc('kodiswift/request.py'): {'attrib-starts': [('Req'\
  1721. 'uest',
  1722. 20),
  1723. ('Request.__init__',
  1724. 22)],
  1725. 'first-line': 32L,
  1726. 'folded-linenos': [],
  1727. 'sel-line': 45L,
  1728. 'sel-line-start': 1422L,
  1729. 'selection_end': 1422L,
  1730. 'selection_start': 1422L,
  1731. 'zoom': 0L},
  1732. loc('kodiswift/xbmcmixin.py'): {'attrib-starts': [('X'\
  1733. 'BMCMixin',
  1734. 21),
  1735. ('XBMCMixin.finish',
  1736. 473)],
  1737. 'first-line': 513L,
  1738. 'folded-linenos': [],
  1739. 'sel-line': 526L,
  1740. 'sel-line-start': 22326L,
  1741. 'selection_end': 22326L,
  1742. 'selection_start': 22326L,
  1743. 'zoom': 0L},
  1744. loc('kodiswift2/listitem.py'): {'attrib-starts': [('L'\
  1745. 'istItem',
  1746. 20),
  1747. ('ListItem.from_dict',
  1748. 277)],
  1749. 'first-line': 265L,
  1750. 'folded-linenos': [],
  1751. 'sel-line': 277L,
  1752. 'sel-line-start': 8224L,
  1753. 'selection_end': 8237L,
  1754. 'selection_start': 8232L},
  1755. loc('libsmb.py'): {'attrib-starts': [('parse_url',
  1756. 8)],
  1757. 'first-line': 0L,
  1758. 'folded-linenos': [57L,
  1759. 67L,
  1760. 97L,
  1761. 106L],
  1762. 'sel-line': 11L,
  1763. 'sel-line-start': 224L,
  1764. 'selection_end': 234L,
  1765. 'selection_start': 234L,
  1766. 'zoom': 0L},
  1767. loc('playstreamproxy.py'): {'attrib-starts': [],
  1768. 'first-line': 0L,
  1769. 'folded-linenos': [],
  1770. 'sel-line': 0L,
  1771. 'sel-line-start': 0L,
  1772. 'selection_end': 0L,
  1773. 'selection_start': 0L,
  1774. 'zoom': 0L},
  1775. loc('plugin.video.playstream/context_menu.py'): {'att'\
  1776. 'rib-starts': [],
  1777. 'first-line': 0L,
  1778. 'folded-linenos': [],
  1779. 'sel-line': 0L,
  1780. 'sel-line-start': 0L,
  1781. 'selection_end': 20L,
  1782. 'selection_start': 20L,
  1783. 'zoom': 0L},
  1784. loc('plugin.video.playstream/kodiswift/constants.py'): {'a'\
  1785. 'ttrib-starts': [],
  1786. 'first-line': 0L,
  1787. 'folded-linenos': [],
  1788. 'sel-line': 14L,
  1789. 'sel-line-start': 313L,
  1790. 'selection_end': 313L,
  1791. 'selection_start': 313L},
  1792. loc('plugin.video.playstream/resources/lib/ContentSources.py'): {'a'\
  1793. 'ttrib-starts': [('ContentSources',
  1794. 15),
  1795. ('ContentSources.get_content',
  1796. 59)],
  1797. 'first-line': 48L,
  1798. 'folded-linenos': [],
  1799. 'sel-line': 61L,
  1800. 'sel-line-start': 2487L,
  1801. 'selection_end': 2521L,
  1802. 'selection_start': 2521L},
  1803. loc('plugin.video.playstream/resources/lib/content/playstreamproxy.py'): {'a'\
  1804. 'ttrib-starts': [],
  1805. 'first-line': 550L,
  1806. 'folded-linenos': [],
  1807. 'sel-line': 564L,
  1808. 'sel-line-start': 20659L,
  1809. 'selection_end': 20687L,
  1810. 'selection_start': 20659L,
  1811. 'zoom': 0L},
  1812. loc('plugin.video.playstream/resources/lib/content/sources/play24.py'): {'a'\
  1813. 'ttrib-starts': [],
  1814. 'first-line': 0L,
  1815. 'folded-linenos': [],
  1816. 'sel-line': 0L,
  1817. 'sel-line-start': 0L,
  1818. 'selection_end': 0L,
  1819. 'selection_start': 0L,
  1820. 'zoom': 0L},
  1821. loc('plugin.video.playstream/resources/lib/resolvers/hdgo.py'): {'a'\
  1822. 'ttrib-starts': [],
  1823. 'first-line': 19L,
  1824. 'folded-linenos': [],
  1825. 'sel-line': 31L,
  1826. 'sel-line-start': 1047L,
  1827. 'selection_end': 1062L,
  1828. 'selection_start': 1047L},
  1829. loc('plugin.video.playstream/resources/lib/resolvers/hqqresolver.py'): {'a'\
  1830. 'ttrib-starts': [],
  1831. 'first-line': 12L,
  1832. 'folded-linenos': [],
  1833. 'sel-line': 27L,
  1834. 'sel-line-start': 761L,
  1835. 'selection_end': 827L,
  1836. 'selection_start': 827L},
  1837. loc('plugin.video.playstream/resources/lib/resolvers/kapnob.py'): {'a'\
  1838. 'ttrib-starts': [],
  1839. 'first-line': 17L,
  1840. 'folded-linenos': [],
  1841. 'sel-line': 32L,
  1842. 'sel-line-start': 1120L,
  1843. 'selection_end': 1186L,
  1844. 'selection_start': 1186L},
  1845. loc('plugin.video.playstream/resources/lib/sources/SourceBase.py'): {'a'\
  1846. 'ttrib-starts': [],
  1847. 'first-line': 0L,
  1848. 'folded-linenos': [],
  1849. 'sel-line': 10L,
  1850. 'sel-line-start': 336L,
  1851. 'selection_end': 351L,
  1852. 'selection_start': 336L},
  1853. loc('plugin.video.playstream/resources/lib/sources/config.py'): {'a'\
  1854. 'ttrib-starts': [('Source',
  1855. 12),
  1856. ('Source.__init__',
  1857. 14)],
  1858. 'first-line': 20L,
  1859. 'folded-linenos': [],
  1860. 'sel-line': 20L,
  1861. 'sel-line-start': 737L,
  1862. 'selection_end': 743L,
  1863. 'selection_start': 743L,
  1864. 'zoom': 0L},
  1865. loc('plugin.video.playstream/resources/lib/sources/euronews.py'): {'a'\
  1866. 'ttrib-starts': [],
  1867. 'first-line': 0L,
  1868. 'folded-linenos': [],
  1869. 'sel-line': 0L,
  1870. 'sel-line-start': 0L,
  1871. 'selection_end': 0L,
  1872. 'selection_start': 0L},
  1873. loc('plugin.video.playstream/resources/lib/sources/tvdom.py'): {'a'\
  1874. 'ttrib-starts': [],
  1875. 'first-line': 0L,
  1876. 'folded-linenos': [],
  1877. 'sel-line': 0L,
  1878. 'sel-line-start': 0L,
  1879. 'selection_end': 0L,
  1880. 'selection_start': 0L,
  1881. 'zoom': 0L},
  1882. loc('plugin.video.playstream/resources/lib/util.py'): {'a'\
  1883. 'ttrib-starts': [],
  1884. 'first-line': 0L,
  1885. 'folded-linenos': [],
  1886. 'sel-line': 0L,
  1887. 'sel-line-start': 0L,
  1888. 'selection_end': 0L,
  1889. 'selection_start': 0L,
  1890. 'zoom': 0L},
  1891. loc('plugin.video.playstream/resources/settings.xml'): {'a'\
  1892. 'ttrib-starts': [],
  1893. 'first-line': 0L,
  1894. 'folded-linenos': [],
  1895. 'sel-line': 0L,
  1896. 'sel-line-start': 0L,
  1897. 'selection_end': 0L,
  1898. 'selection_start': 0L,
  1899. 'zoom': 0L},
  1900. loc('plugin.video.playstream0/resources/lib/content/sources/ltc.cfg'): {'a'\
  1901. 'ttrib-starts': [],
  1902. 'first-line': 0L,
  1903. 'folded-linenos': [],
  1904. 'sel-line': 0L,
  1905. 'sel-line-start': 0L,
  1906. 'selection_end': 0L,
  1907. 'selection_start': 0L,
  1908. 'zoom': 0L},
  1909. loc('plugin.video.playstream0/resources/lib/content/sources/ltc.py'): {'a'\
  1910. 'ttrib-starts': [('Source',
  1911. 27),
  1912. ('Source.get_content',
  1913. 74)],
  1914. 'first-line': 133L,
  1915. 'folded-linenos': [],
  1916. 'sel-line': 144L,
  1917. 'sel-line-start': 6162L,
  1918. 'selection_end': 6189L,
  1919. 'selection_start': 6189L,
  1920. 'zoom': 0L},
  1921. loc('plugin.video.playstream0/resources/lib/content/util.py'): {'a'\
  1922. 'ttrib-starts': [],
  1923. 'first-line': 0L,
  1924. 'folded-linenos': [],
  1925. 'sel-line': 14L,
  1926. 'sel-line-start': 603L,
  1927. 'selection_end': 606L,
  1928. 'selection_start': 606L,
  1929. 'zoom': 0L},
  1930. loc('pyaes/aes.py'): {'attrib-starts': [('AESModeOfOp'\
  1931. 'erationCBC',
  1932. 355),
  1933. ('AESModeOfOperationCBC.decrypt',
  1934. 396)],
  1935. 'first-line': 384L,
  1936. 'folded-linenos': [],
  1937. 'sel-line': 398L,
  1938. 'sel-line-start': 53393L,
  1939. 'selection_end': 53393L,
  1940. 'selection_start': 53393L,
  1941. 'zoom': 0L},
  1942. loc('que_management.py'): {'attrib-starts': [],
  1943. 'first-line': 0L,
  1944. 'folded-linenos': [],
  1945. 'sel-line': 0L,
  1946. 'sel-line-start': 0L,
  1947. 'selection_end': 0L,
  1948. 'selection_start': 0L,
  1949. 'zoom': 0L},
  1950. loc('resources/lib/ContentSources.py'): {'attrib-star'\
  1951. 'ts': [],
  1952. 'first-line': 0L,
  1953. 'folded-linenos': [],
  1954. 'sel-line': 0L,
  1955. 'sel-line-start': 0L,
  1956. 'selection_end': 0L,
  1957. 'selection_start': 0L,
  1958. 'zoom': 0L},
  1959. loc('resources/lib/content/ContentSources.py'): {'att'\
  1960. 'rib-starts': [('ContentSources',
  1961. 16),
  1962. ('ContentSources.is_video',
  1963. 152)],
  1964. 'first-line': 144L,
  1965. 'folded-linenos': [],
  1966. 'sel-line': 157L,
  1967. 'sel-line-start': 6347L,
  1968. 'selection_end': 6347L,
  1969. 'selection_start': 6347L,
  1970. 'zoom': 0L},
  1971. loc('resources/lib/content/Downloader.py'): {'attrib-'\
  1972. 'starts': [],
  1973. 'first-line': 218L,
  1974. 'folded-linenos': [9L,
  1975. 47L],
  1976. 'sel-line': 279L,
  1977. 'sel-line-start': 10855L,
  1978. 'selection_end': 10939L,
  1979. 'selection_start': 10877L,
  1980. 'zoom': 0L},
  1981. loc('resources/lib/content/file.py'): {'attrib-starts': [('e'\
  1982. 'ncode',
  1983. 216)],
  1984. 'first-line': 211L,
  1985. 'folded-linenos': [],
  1986. 'sel-line': 225L,
  1987. 'sel-line-start': 7005L,
  1988. 'selection_end': 7005L,
  1989. 'selection_start': 7005L,
  1990. 'zoom': 0L},
  1991. loc('resources/lib/content/libsmb.py'): {'attrib-star'\
  1992. 'ts': [('remove',
  1993. 150)],
  1994. 'first-line': 138L,
  1995. 'folded-linenos': [],
  1996. 'sel-line': 154L,
  1997. 'sel-line-start': 4655L,
  1998. 'selection_end': 4691L,
  1999. 'selection_start': 4691L,
  2000. 'zoom': 0L},
  2001. loc('resources/lib/content/run.py'): {'attrib-starts': [('p'\
  2002. 'layer',
  2003. 683)],
  2004. 'first-line': 683L,
  2005. 'folded-linenos': [689L],
  2006. 'sel-line': 684L,
  2007. 'sel-line-start': 27534L,
  2008. 'selection_end': 27565L,
  2009. 'selection_start': 27538L,
  2010. 'zoom': 0L},
  2011. loc('resources/lib/content/sources/enigma2.py'): {'at'\
  2012. 'trib-starts': [('Source',
  2013. 31),
  2014. ('Source.get_streams',
  2015. 125)],
  2016. 'first-line': 123L,
  2017. 'folded-linenos': [],
  2018. 'sel-line': 142L,
  2019. 'sel-line-start': 5510L,
  2020. 'selection_end': 5547L,
  2021. 'selection_start': 5543L,
  2022. 'zoom': 0L},
  2023. loc('resources/lib/content/sources/filmas.py'): {'att'\
  2024. 'rib-starts': [('Source',
  2025. 36),
  2026. ('Source.get_content',
  2027. 59)],
  2028. 'first-line': 71L,
  2029. 'folded-linenos': [],
  2030. 'sel-line': 80L,
  2031. 'sel-line-start': 3412L,
  2032. 'selection_end': 3446L,
  2033. 'selection_start': 3446L,
  2034. 'zoom': 0L},
  2035. loc('resources/lib/content/sources/filmix.py'): {'att'\
  2036. 'rib-starts': [('Source',
  2037. 31),
  2038. ('Source.get_streams',
  2039. 263)],
  2040. 'first-line': 259L,
  2041. 'folded-linenos': [],
  2042. 'sel-line': 264L,
  2043. 'sel-line-start': 11528L,
  2044. 'selection_end': 11528L,
  2045. 'selection_start': 11528L,
  2046. 'zoom': 0L},
  2047. loc('resources/lib/content/sources/iplayer.py'): {'at'\
  2048. 'trib-starts': [('Source',
  2049. 27),
  2050. ('Source.get_epg_video',
  2051. 370)],
  2052. 'first-line': 395L,
  2053. 'folded-linenos': [],
  2054. 'sel-line': 405L,
  2055. 'sel-line-start': 20384L,
  2056. 'selection_end': 20399L,
  2057. 'selection_start': 20396L,
  2058. 'zoom': 0L},
  2059. loc('resources/lib/content/sources/lmt.py'): {'attrib'\
  2060. '-starts': [('Source',
  2061. 32),
  2062. ('Source.get_content',
  2063. 52)],
  2064. 'first-line': 103L,
  2065. 'folded-linenos': [],
  2066. 'sel-line': 112L,
  2067. 'sel-line-start': 4930L,
  2068. 'selection_end': 5005L,
  2069. 'selection_start': 4995L,
  2070. 'zoom': 0L},
  2071. loc('resources/lib/content/sources/ltc.py'): {'attrib'\
  2072. '-starts': [('Source',
  2073. 26),
  2074. ('Source.get_stream_url2',
  2075. 978)],
  2076. 'first-line': 1017L,
  2077. 'folded-linenos': [],
  2078. 'sel-line': 1032L,
  2079. 'sel-line-start': 53493L,
  2080. 'selection_end': 53533L,
  2081. 'selection_start': 53526L,
  2082. 'zoom': 0L},
  2083. loc('resources/lib/content/sources/play24.py'): {'att'\
  2084. 'rib-starts': [('Source',
  2085. 28),
  2086. ('Source.get_content',
  2087. 37)],
  2088. 'first-line': 148L,
  2089. 'folded-linenos': [],
  2090. 'sel-line': 163L,
  2091. 'sel-line-start': 7492L,
  2092. 'selection_end': 7542L,
  2093. 'selection_start': 7515L,
  2094. 'zoom': 0L},
  2095. loc('resources/lib/content/sources/replay.py'): {'att'\
  2096. 'rib-starts': [('Source',
  2097. 31),
  2098. ('Source.get_streams',
  2099. 220)],
  2100. 'first-line': 334L,
  2101. 'folded-linenos': [],
  2102. 'sel-line': 339L,
  2103. 'sel-line-start': 17054L,
  2104. 'selection_end': 17054L,
  2105. 'selection_start': 17054L,
  2106. 'zoom': 0L},
  2107. loc('resources/lib/content/sources/tvplay.py'): {'att'\
  2108. 'rib-starts': [('Source',
  2109. 32),
  2110. ('Source.get_content',
  2111. 62)],
  2112. 'first-line': 152L,
  2113. 'folded-linenos': [],
  2114. 'sel-line': 166L,
  2115. 'sel-line-start': 7859L,
  2116. 'selection_end': 7938L,
  2117. 'selection_start': 7917L,
  2118. 'zoom': 0L},
  2119. loc('resources/lib/content/util.py'): {'attrib-starts': [('n'\
  2120. 'fo2xml',
  2121. 62)],
  2122. 'first-line': 57L,
  2123. 'folded-linenos': [355L,
  2124. 385L,
  2125. 398L,
  2126. 450L],
  2127. 'sel-line': 62L,
  2128. 'sel-line-start': 1850L,
  2129. 'selection_end': 1870L,
  2130. 'selection_start': 1862L,
  2131. 'zoom': 0L},
  2132. loc('resources/lib/resolvers/hdgo.py'): {'attrib-star'\
  2133. 'ts': [],
  2134. 'first-line': 18L,
  2135. 'folded-linenos': [],
  2136. 'sel-line': 33L,
  2137. 'sel-line-start': 1135L,
  2138. 'selection_end': 1201L,
  2139. 'selection_start': 1201L},
  2140. loc('resources/lib/resolvers/hqqresolver.py'): {'attr'\
  2141. 'ib-starts': [],
  2142. 'first-line': 12L,
  2143. 'folded-linenos': [],
  2144. 'sel-line': 27L,
  2145. 'sel-line-start': 761L,
  2146. 'selection_end': 827L,
  2147. 'selection_start': 827L},
  2148. loc('resources/lib/resolvers/kapnob.py'): {'attrib-st'\
  2149. 'arts': [],
  2150. 'first-line': 18L,
  2151. 'folded-linenos': [],
  2152. 'sel-line': 30L,
  2153. 'sel-line-start': 1032L,
  2154. 'selection_end': 1047L,
  2155. 'selection_start': 1032L},
  2156. loc('resources/lib/resolvers/kodik.py'): {'attrib-sta'\
  2157. 'rts': [],
  2158. 'first-line': 17L,
  2159. 'folded-linenos': [],
  2160. 'sel-line': 32L,
  2161. 'sel-line-start': 1120L,
  2162. 'selection_end': 1186L,
  2163. 'selection_start': 1186L},
  2164. loc('resources/lib/resolvers/openload3.py'): {'attrib'\
  2165. '-starts': [],
  2166. 'first-line': 18L,
  2167. 'folded-linenos': [],
  2168. 'sel-line': 33L,
  2169. 'sel-line-start': 1141L,
  2170. 'selection_end': 1207L,
  2171. 'selection_start': 1207L},
  2172. loc('resources/lib/resolvers0/hdgo.py'): {'attrib-sta'\
  2173. 'rts': [],
  2174. 'first-line': 19L,
  2175. 'folded-linenos': [],
  2176. 'sel-line': 31L,
  2177. 'sel-line-start': 1047L,
  2178. 'selection_end': 1062L,
  2179. 'selection_start': 1047L},
  2180. loc('resources/lib/smb/SMBConnection.py'): {'attrib-s'\
  2181. 'tarts': [('SMBConnection',
  2182. 8),
  2183. ('SMBConnection.storeFileFromOffset',
  2184. 318),
  2185. ('SMBConnection.storeFileFromOffset.eb',
  2186. 339)],
  2187. 'first-line': 327L,
  2188. 'folded-linenos': [],
  2189. 'sel-line': 341L,
  2190. 'sel-line-start': 16361L,
  2191. 'selection_end': 16361L,
  2192. 'selection_start': 16361L,
  2193. 'zoom': 0L},
  2194. loc('resources/lib/sources/SourceBase.py'): {'attrib-'\
  2195. 'starts': [],
  2196. 'first-line': 0L,
  2197. 'folded-linenos': [],
  2198. 'sel-line': 10L,
  2199. 'sel-line-start': 336L,
  2200. 'selection_end': 351L,
  2201. 'selection_start': 336L},
  2202. loc('resources/lib/sources/config.py'): {'attrib-star'\
  2203. 'ts': [('Source',
  2204. 12)],
  2205. 'first-line': 1L,
  2206. 'folded-linenos': [],
  2207. 'sel-line': 12L,
  2208. 'sel-line-start': 411L,
  2209. 'selection_end': 423L,
  2210. 'selection_start': 417L},
  2211. loc('resources/lib/sources/filmas.py'): {'attrib-star'\
  2212. 'ts': [],
  2213. 'first-line': 5L,
  2214. 'folded-linenos': [],
  2215. 'sel-line': 17L,
  2216. 'sel-line-start': 523L,
  2217. 'selection_end': 538L,
  2218. 'selection_start': 523L},
  2219. loc('resources/lib/sources/iplayer.py'): {'attrib-sta'\
  2220. 'rts': [('Source',
  2221. 24),
  2222. ('Source._http_request',
  2223. 464)],
  2224. 'first-line': 453L,
  2225. 'folded-linenos': [],
  2226. 'sel-line': 468L,
  2227. 'sel-line-start': 22190L,
  2228. 'selection_end': 22264L,
  2229. 'selection_start': 22264L},
  2230. loc('resources/lib/sources/tvdom.py'): {'attrib-start'\
  2231. 's': [('Source',
  2232. 25),
  2233. ('Source.login',
  2234. 43)],
  2235. 'first-line': 45L,
  2236. 'folded-linenos': [],
  2237. 'sel-line': 60L,
  2238. 'sel-line-start': 2253L,
  2239. 'selection_end': 2327L,
  2240. 'selection_start': 2327L},
  2241. loc('resources/lib/sources/ustvnow.py'): {'attrib-sta'\
  2242. 'rts': [],
  2243. 'first-line': 0L,
  2244. 'folded-linenos': [],
  2245. 'sel-line': 0L,
  2246. 'sel-line-start': 0L,
  2247. 'selection_end': 0L,
  2248. 'selection_start': 0L,
  2249. 'zoom': 0L},
  2250. loc('resources/lib/sources/viaplay.py'): {'attrib-sta'\
  2251. 'rts': [],
  2252. 'first-line': 0L,
  2253. 'folded-linenos': [],
  2254. 'sel-line': 14L,
  2255. 'sel-line-start': 432L,
  2256. 'selection_end': 498L,
  2257. 'selection_start': 498L},
  2258. loc('resources/lib/twisted/internet/_win32stdio.py'): {'a'\
  2259. 'ttrib-starts': [],
  2260. 'first-line': 0L,
  2261. 'folded-linenos': [],
  2262. 'sel-line': 17L,
  2263. 'sel-line-start': 422L,
  2264. 'selection_end': 452L,
  2265. 'selection_start': 452L,
  2266. 'zoom': 0L},
  2267. loc('resources/lib/twisted/internet/ssl.py'): {'attri'\
  2268. 'b-starts': [],
  2269. 'first-line': 0L,
  2270. 'folded-linenos': [],
  2271. 'sel-line': 0L,
  2272. 'sel-line-start': 0L,
  2273. 'selection_end': 0L,
  2274. 'selection_start': 0L,
  2275. 'zoom': 0L},
  2276. loc('resources/lib/twisted/python/deprecate.py'): {'a'\
  2277. 'ttrib-starts': [],
  2278. 'first-line': 0L,
  2279. 'folded-linenos': [],
  2280. 'sel-line': 0L,
  2281. 'sel-line-start': 0L,
  2282. 'selection_end': 0L,
  2283. 'selection_start': 0L,
  2284. 'zoom': 0L},
  2285. loc('resources/lib/util.py'): {'attrib-starts': [],
  2286. 'first-line': 0L,
  2287. 'folded-linenos': [],
  2288. 'sel-line': 0L,
  2289. 'sel-line-start': 0L,
  2290. 'selection_end': 0L,
  2291. 'selection_start': 0L},
  2292. loc('resources/settings.xml'): {'attrib-starts': [],
  2293. 'first-line': 0L,
  2294. 'folded-linenos': [],
  2295. 'sel-line': 11L,
  2296. 'sel-line-start': 802L,
  2297. 'selection_end': 869L,
  2298. 'selection_start': 869L,
  2299. 'zoom': 0L},
  2300. loc('run.py'): {'attrib-starts': [],
  2301. 'first-line': 0L,
  2302. 'folded-linenos': [],
  2303. 'sel-line': 8L,
  2304. 'sel-line-start': 252L,
  2305. 'selection_end': 252L,
  2306. 'selection_start': 252L,
  2307. 'zoom': 0L},
  2308. loc('service.py'): {'attrib-starts': [],
  2309. 'first-line': 11L,
  2310. 'folded-linenos': [],
  2311. 'sel-line': 21L,
  2312. 'sel-line-start': 785L,
  2313. 'selection_end': 785L,
  2314. 'selection_start': 785L,
  2315. 'zoom': 0L},
  2316. loc('test1.py'): {'attrib-starts': [],
  2317. 'first-line': 0L,
  2318. 'folded-linenos': [],
  2319. 'sel-line': 2L,
  2320. 'sel-line-start': 18L,
  2321. 'selection_end': 48L,
  2322. 'selection_start': 32L,
  2323. 'zoom': 0L},
  2324. loc('transcode_video.py'): {'attrib-starts': [],
  2325. 'first-line': 0L,
  2326. 'folded-linenos': [],
  2327. 'sel-line': 19L,
  2328. 'sel-line-start': 651L,
  2329. 'selection_end': 664L,
  2330. 'selection_start': 664L,
  2331. 'zoom': 0L},
  2332. loc('wingdbstub.py'): {'attrib-starts': [],
  2333. 'first-line': 165L,
  2334. 'folded-linenos': [],
  2335. 'sel-line': 91L,
  2336. 'sel-line-start': 3896L,
  2337. 'selection_end': 3909L,
  2338. 'selection_start': 3909L,
  2339. 'zoom': 0L},
  2340. loc('../untitled-1.py'): {'attrib-starts': [],
  2341. 'first-line': 0,
  2342. 'folded-linenos': [],
  2343. 'sel-line': 0,
  2344. 'sel-line-start': 0,
  2345. 'selection_end': 1,
  2346. 'selection_start': 1},
  2347. loc('../xbmcswift2/plugin.py'): {'attrib-starts': [],
  2348. 'first-line': 0L,
  2349. 'folded-linenos': [],
  2350. 'sel-line': 0L,
  2351. 'sel-line-start': 0L,
  2352. 'selection_end': 0L,
  2353. 'selection_start': 0L},
  2354. loc('../xbmcswift2/request.py'): {'attrib-starts': [],
  2355. 'first-line': 0L,
  2356. 'folded-linenos': [],
  2357. 'sel-line': 0L,
  2358. 'sel-line-start': 0L,
  2359. 'selection_end': 0L,
  2360. 'selection_start': 0L},
  2361. loc('../../../Python25/Lib/BeautifulSoup.py'): {'attr'\
  2362. 'ib-starts': [('NavigableString',
  2363. 354),
  2364. ('NavigableString.__getattr__',
  2365. 356)],
  2366. 'first-line': 337,
  2367. 'sel-line': 363,
  2368. 'sel-line-start': 13868,
  2369. 'selection_end': 13868,
  2370. 'selection_start': 13868},
  2371. loc('../../../Python25/Lib/HTMLParser.py'): {'attrib-'\
  2372. 'starts': [('HTMLParser',
  2373. 66),
  2374. ('HTMLParser.check_for_whole_start_tag',
  2375. 274)],
  2376. 'first-line': 284,
  2377. 'folded-linenos': [],
  2378. 'sel-line': 301,
  2379. 'sel-line-start': 10981,
  2380. 'selection_end': 11013,
  2381. 'selection_start': 11013},
  2382. loc('../../../Python25/Lib/VideoCapture.py'): {'attri'\
  2383. 'b-starts': [],
  2384. 'first-line': 0,
  2385. 'folded-linenos': [],
  2386. 'sel-line': 7,
  2387. 'sel-line-start': 85,
  2388. 'selection_end': 128,
  2389. 'selection_start': 85},
  2390. loc('../../../Python25/Lib/encodings/cp1257.py'): {'a'\
  2391. 'ttrib-starts': [('Codec',
  2392. 8),
  2393. ('Codec.encode',
  2394. 10)],
  2395. 'first-line': 0,
  2396. 'folded-linenos': [],
  2397. 'sel-line': 10,
  2398. 'sel-line-start': 197,
  2399. 'selection_end': 197,
  2400. 'selection_start': 197},
  2401. loc('../../../Python25/Lib/re.py'): {'attrib-starts': [],
  2402. 'first-line': 0,
  2403. 'folded-linenos': [],
  2404. 'sel-line': 0,
  2405. 'sel-line-start': 0,
  2406. 'selection_end': 0,
  2407. 'selection_start': 0},
  2408. loc('../../../Python25/Lib/site-packages/BeautifulSoup.py'): {'a'\
  2409. 'ttrib-starts': [('SoupStrainer',
  2410. 817),
  2411. ('SoupStrainer._matches',
  2412. 904)],
  2413. 'first-line': 907,
  2414. 'folded-linenos': [],
  2415. 'sel-line': 928,
  2416. 'sel-line-start': 35455,
  2417. 'selection_end': 35455,
  2418. 'selection_start': 35455},
  2419. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'a'\
  2420. 'ttrib-starts': [],
  2421. 'first-line': 26,
  2422. 'folded-linenos': [],
  2423. 'sel-line': 44,
  2424. 'sel-line-start': 1253,
  2425. 'selection_end': 1253,
  2426. 'selection_start': 1253},
  2427. loc('../../../Python25/Lib/site-packages/PIL/__init__.py'): {'a'\
  2428. 'ttrib-starts': [],
  2429. 'first-line': 0,
  2430. 'folded-linenos': [],
  2431. 'sel-line': 0,
  2432. 'sel-line-start': 0,
  2433. 'selection_end': 0,
  2434. 'selection_start': 0},
  2435. loc('../../../Python25/Lib/site-packages/argparse.py'): {'a'\
  2436. 'ttrib-starts': [('_ActionsContainer',
  2437. 926),
  2438. ('_ActionsContainer._handle_conflict_error',
  2439. 1132)],
  2440. 'first-line': 1106,
  2441. 'folded-linenos': [],
  2442. 'sel-line': 1137,
  2443. 'sel-line-start': 41374,
  2444. 'selection_end': 41374,
  2445. 'selection_start': 41374},
  2446. loc('../../../Python25/Lib/site-packages/win32com/client/__init__.py'): {'a'\
  2447. 'ttrib-starts': [('DispatchBaseClass',
  2448. 410),
  2449. ('DispatchBaseClass._ApplyTypes_',
  2450. 443)],
  2451. 'first-line': 425,
  2452. 'folded-linenos': [],
  2453. 'sel-line': 447,
  2454. 'sel-line-start': 19318,
  2455. 'selection_end': 19318,
  2456. 'selection_start': 19318},
  2457. loc('../../../Python25/Lib/site-packages/win32com/client/dynamic.py'): {'a'\
  2458. 'ttrib-starts': [('CDispatch',
  2459. 151),
  2460. ('CDispatch.__getattr__',
  2461. 421)],
  2462. 'first-line': 489,
  2463. 'folded-linenos': [],
  2464. 'sel-line': 494,
  2465. 'sel-line-start': 19030,
  2466. 'selection_end': 19030,
  2467. 'selection_start': 19030},
  2468. loc('../../../Python25/Lib/site-packages/win32com/gen_py/00020813-0000-0000-C000-000000000046x0x1x6.py'): {'a'\
  2469. 'ttrib-starts': [('Range',
  2470. 26378),
  2471. ('Range.__call__',
  2472. 27016)],
  2473. 'first-line': 26996,
  2474. 'folded-linenos': [],
  2475. 'sel-line': 27018,
  2476. 'sel-line-start': 1285165,
  2477. 'selection_end': 1285165,
  2478. 'selection_start': 1285165},
  2479. loc('../../../Python25/Lib/socket.py'): {'attrib-star'\
  2480. 'ts': [('_fileobject',
  2481. 195),
  2482. ('_fileobject.readline',
  2483. 320)],
  2484. 'first-line': 301,
  2485. 'sel-line': 330,
  2486. 'sel-line-start': 10707,
  2487. 'selection_end': 10707,
  2488. 'selection_start': 10707},
  2489. loc('../../../Python25/Lib/sre_parse.py'): {'attrib-s'\
  2490. 'tarts': [('_parse',
  2491. 384)],
  2492. 'first-line': 375,
  2493. 'folded-linenos': [],
  2494. 'sel-line': 406,
  2495. 'sel-line-start': 12403,
  2496. 'selection_end': 12403,
  2497. 'selection_start': 12403},
  2498. loc('../../../../Python27/Lib/site-packages/kodiswift/listitem.py'): {'a'\
  2499. 'ttrib-starts': [('ListItem',
  2500. 20),
  2501. ('ListItem.from_dict',
  2502. 277)],
  2503. 'first-line': 284L,
  2504. 'folded-linenos': [],
  2505. 'sel-line': 289L,
  2506. 'sel-line-start': 8905L,
  2507. 'selection_end': 8905L,
  2508. 'selection_start': 8905L},
  2509. loc('../../../../Python27/Lib/site-packages/kodiswift/xbmcmixin.py'): {'a'\
  2510. 'ttrib-starts': [('XBMCMixin',
  2511. 21),
  2512. ('XBMCMixin.keyboard',
  2513. 277)],
  2514. 'first-line': 271L,
  2515. 'folded-linenos': [],
  2516. 'sel-line': 277L,
  2517. 'sel-line-start': 10611L,
  2518. 'selection_end': 10627L,
  2519. 'selection_start': 10619L},
  2520. loc('../../../../Python27/Lib/site-packages/xbmcswift2/cli/app.py'): {'a'\
  2521. 'ttrib-starts': [('once',
  2522. 146)],
  2523. 'first-line': 153L,
  2524. 'folded-linenos': [],
  2525. 'sel-line': 158L,
  2526. 'sel-line-start': 4898L,
  2527. 'selection_end': 4898L,
  2528. 'selection_start': 4898L},
  2529. loc('../../../../Python27/Lib/site-packages/xbmcswift2/listitem.py'): {'a'\
  2530. 'ttrib-starts': [('ListItem',
  2531. 13),
  2532. ('ListItem.get_played',
  2533. 170)],
  2534. 'first-line': 164L,
  2535. 'folded-linenos': [],
  2536. 'sel-line': 172L,
  2537. 'sel-line-start': 5552L,
  2538. 'selection_end': 5552L,
  2539. 'selection_start': 5552L},
  2540. loc('../../../../Python27/Lib/site-packages/xbmcswift2/mockxbmc/xbmcaddon.py'): {'a'\
  2541. 'ttrib-starts': [],
  2542. 'first-line': 0L,
  2543. 'folded-linenos': [],
  2544. 'sel-line': 0L,
  2545. 'sel-line-start': 0L,
  2546. 'selection_end': 0L,
  2547. 'selection_start': 0L},
  2548. loc('../../../../Python27/Lib/site-packages/xbmcswift2/plugin.py'): {'a'\
  2549. 'ttrib-starts': [],
  2550. 'first-line': 0L,
  2551. 'folded-linenos': [],
  2552. 'sel-line': 0L,
  2553. 'sel-line-start': 0L,
  2554. 'selection_end': 0L,
  2555. 'selection_start': 0L},
  2556. loc('../../../../Python27/Scripts/xbmcswift2-script.py'): {'a'\
  2557. 'ttrib-starts': [],
  2558. 'first-line': 0,
  2559. 'folded-linenos': [],
  2560. 'sel-line': 1,
  2561. 'sel-line-start': 29,
  2562. 'selection_end': 36,
  2563. 'selection_start': 36},
  2564. loc('../../../../Python27/lib/BaseHTTPServer.py'): {'a'\
  2565. 'ttrib-starts': [],
  2566. 'first-line': 0L,
  2567. 'folded-linenos': [],
  2568. 'sel-line': 0L,
  2569. 'sel-line-start': 0L,
  2570. 'selection_end': 0L,
  2571. 'selection_start': 0L,
  2572. 'zoom': 0L},
  2573. loc('../../../../Python27/lib/ftplib.py'): {'attrib-s'\
  2574. 'tarts': [('FTP',
  2575. 78),
  2576. ('FTP.getresp',
  2577. 213)],
  2578. 'first-line': 214L,
  2579. 'folded-linenos': [],
  2580. 'sel-line': 223L,
  2581. 'sel-line-start': 7831L,
  2582. 'selection_end': 7831L,
  2583. 'selection_start': 7831L,
  2584. 'zoom': 0L},
  2585. loc('../../../../Python27/lib/genericpath.py'): {'att'\
  2586. 'rib-starts': [('_splitext',
  2587. 92)],
  2588. 'first-line': 99L,
  2589. 'folded-linenos': [],
  2590. 'sel-line': 109L,
  2591. 'sel-line-start': 3211L,
  2592. 'selection_end': 3211L,
  2593. 'selection_start': 3211L},
  2594. loc('../../../../Python27/lib/ntpath.py'): {'attrib-s'\
  2595. 'tarts': [('splitext',
  2596. 198)],
  2597. 'first-line': 182L,
  2598. 'folded-linenos': [],
  2599. 'sel-line': 199L,
  2600. 'sel-line-start': 7089L,
  2601. 'selection_end': 7089L,
  2602. 'selection_start': 7089L},
  2603. loc('../../../../Python27/lib/site-packages/requests/packages/urllib3/response.py'): {'a'\
  2604. 'ttrib-starts': [('HTTPResponse',
  2605. 67),
  2606. ('HTTPResponse.closed',
  2607. 406)],
  2608. 'first-line': 390L,
  2609. 'folded-linenos': [],
  2610. 'sel-line': 407L,
  2611. 'sel-line-start': 14028L,
  2612. 'selection_end': 14028L,
  2613. 'selection_start': 14028L},
  2614. loc('../../../../Python27/lib/site-packages/smb/base.py'): {'a'\
  2615. 'ttrib-starts': [('SMB',
  2616. 38),
  2617. ('SMB._getAttributes_SMB2',
  2618. 667),
  2619. ('SMB._getAttributes_SMB2.closeCB',
  2620. 721)],
  2621. 'first-line': 709L,
  2622. 'folded-linenos': [],
  2623. 'sel-line': 721L,
  2624. 'sel-line-start': 37290L,
  2625. 'selection_end': 37290L,
  2626. 'selection_start': 37290L,
  2627. 'zoom': 0L},
  2628. loc('../../../../Python27/lib/socket.py'): {'attrib-s'\
  2629. 'tarts': [('_fileobject',
  2630. 238),
  2631. ('_fileobject.flush',
  2632. 295)],
  2633. 'first-line': 296L,
  2634. 'folded-linenos': [],
  2635. 'sel-line': 302L,
  2636. 'sel-line-start': 10294L,
  2637. 'selection_end': 10322L,
  2638. 'selection_start': 10322L},
  2639. loc('../../../../Users/user/AppData/Roaming/Kodi/addons/plugin.video.playstream/addon.py'): {'a'\
  2640. 'ttrib-starts': [],
  2641. 'first-line': 13L,
  2642. 'folded-linenos': [],
  2643. 'sel-line': 18L,
  2644. 'sel-line-start': 514L,
  2645. 'selection_end': 581L,
  2646. 'selection_start': 581L,
  2647. 'zoom': 0L},
  2648. loc('../../../../Users/user/AppData/Roaming/Kodi/addons/plugin.video.playstream/context_menu.py'): {'a'\
  2649. 'ttrib-starts': [],
  2650. 'first-line': 46L,
  2651. 'folded-linenos': [],
  2652. 'sel-line': 56L,
  2653. 'sel-line-start': 1756L,
  2654. 'selection_end': 1756L,
  2655. 'selection_start': 1756L,
  2656. 'zoom': 0L},
  2657. loc('../../../../Users/user/AppData/Roaming/Kodi/addons/plugin.video.playstream/kodiswift/plugin.py'): {'a'\
  2658. 'ttrib-starts': [('Plugin',
  2659. 27),
  2660. ('Plugin.__init__',
  2661. 39)],
  2662. 'first-line': 54L,
  2663. 'folded-linenos': [],
  2664. 'sel-line': 60L,
  2665. 'sel-line-start': 2261L,
  2666. 'selection_end': 2270L,
  2667. 'selection_start': 2270L,
  2668. 'zoom': 0L},
  2669. loc('../../../../Users/user/AppData/Roaming/Kodi/addons/plugin.video.playstream/resources/lib/content/sources/config.py'): {'a'\
  2670. 'ttrib-starts': [('Source',
  2671. 12),
  2672. ('Source.write_streams',
  2673. 73)],
  2674. 'first-line': 96L,
  2675. 'folded-linenos': [],
  2676. 'sel-line': 104L,
  2677. 'sel-line-start': 3907L,
  2678. 'selection_end': 3907L,
  2679. 'selection_start': 3907L,
  2680. 'zoom': 0L},
  2681. loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'): {'a'\
  2682. 'ttrib-starts': [],
  2683. 'first-line': 0L,
  2684. 'folded-linenos': [],
  2685. 'sel-line': 0L,
  2686. 'sel-line-start': 0L,
  2687. 'selection_end': 0L,
  2688. 'selection_start': 0L},
  2689. loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/rlmain.py'): {'a'\
  2690. 'ttrib-starts': [],
  2691. 'first-line': 0L,
  2692. 'folded-linenos': [],
  2693. 'sel-line': 0L,
  2694. 'sel-line-start': 0L,
  2695. 'selection_end': 0L,
  2696. 'selection_start': 0L},
  2697. loc('../../../../Users/user/AppData/Roaming/Wing IDE 6/preferences'): {'a'\
  2698. 'ttrib-starts': [],
  2699. 'first-line': 0L,
  2700. 'folded-linenos': [],
  2701. 'sel-line': 0L,
  2702. 'sel-line-start': 0L,
  2703. 'selection_end': 0L,
  2704. 'selection_start': 0L,
  2705. 'zoom': 0L},
  2706. loc('../../../../Users/user/AppData/Roaming/Wing IDE 6/pylintpanel.cfg'): {'a'\
  2707. 'ttrib-starts': [],
  2708. 'first-line': 15L,
  2709. 'folded-linenos': [],
  2710. 'sel-line': 7L,
  2711. 'sel-line-start': 112L,
  2712. 'selection_end': 112L,
  2713. 'selection_start': 112L,
  2714. 'zoom': 0L},
  2715. loc('x-wingide-zip://C:/Python25/Lib/site-packages/argparse-1.1-py2.5.egg//argparse.py'): {'a'\
  2716. 'ttrib-starts': [('_ActionsContainer',
  2717. 1187),
  2718. ('_ActionsContainer.add_argument',
  2719. 1270)],
  2720. 'first-line': 1271,
  2721. 'folded-linenos': [],
  2722. 'sel-line': 1283,
  2723. 'sel-line-start': 45405,
  2724. 'selection_end': 45405,
  2725. 'selection_start': 45405},
  2726. loc('x-wingide-zip://C:/Python25/Lib/site-packages/beautifulsoup-3.1.0.1-py2.5.egg//BeautifulSoup.py'): {'a'\
  2727. 'ttrib-starts': [('BeautifulSoup',
  2728. 1446),
  2729. ('BeautifulSoup.__init__',
  2730. 1494)],
  2731. 'first-line': 1481,
  2732. 'folded-linenos': [],
  2733. 'sel-line': 1498,
  2734. 'sel-line-start': 57438,
  2735. 'selection_end': 57438,
  2736. 'selection_start': 57438}}
  2737. proj.build-cmd = {None: ('default',
  2738. None)}
  2739. proj.default-encoding = 'utf_8'
  2740. proj.env-vars = {None: ('default',
  2741. [u''])}
  2742. proj.matplotlib-event-loop = False
  2743. proj.pypath = {None: ('custom',
  2744. [u'c:\\Data\\Programming\\Kodi\\kodistubs',
  2745. u''])}
  2746. proj.template-debugging = False
  2747. proj.vcs-system-config = ('proj',
  2748. {'bzr': {'versioncontrol.bzr.active': 'active-if-p'\
  2749. 'roject-dir',
  2750. 'versioncontrol.bzr.executable': u'bzr'},
  2751. 'cvs': {'versioncontrol.cvs.active': 'active-if-p'\
  2752. 'roject-dir',
  2753. 'versioncontrol.cvs.executable': u'cvs',
  2754. 'versioncontrol.cvs.extra-global-args': '-'\
  2755. 'z3'},
  2756. 'git': {'versioncontrol.git.active': 'active-if-p'\
  2757. 'roject-dir',
  2758. 'versioncontrol.git.executable': u'git',
  2759. 'versioncontrol.git.use-porcelain': True},
  2760. 'hg': {'versioncontrol.hg.active': 'active-if-pro'\
  2761. 'ject-dir',
  2762. 'versioncontrol.hg.dont-find-unregistered': True,
  2763. 'versioncontrol.hg.executable': u'hg',
  2764. 'versioncontrol.hg.extra-global-args': '--'\
  2765. 'encoding=utf8'},
  2766. 'perforce': {'versioncontrol.perforce.active': 'n'\
  2767. 'ot-active',
  2768. 'versioncontrol.perforce.dont-find-unregistered': True,
  2769. 'versioncontrol.perforce.executable': u'p4',
  2770. 'versioncontrol.perforce.extra-global-args': ''},
  2771. 'svn': {'versioncontrol.svn.active': 'active-if-p'\
  2772. 'roject-dir',
  2773. 'versioncontrol.svn.executable': u'svn',
  2774. 'versioncontrol.svn.extra-global-args': '',
  2775. 'versioncontrol.svn.svnadmin-executable': u'svnadmin'}})
  2776. search.replace-history = [u'item["posterUrl"]+"/"',
  2777. u'#logger',
  2778. u'ustvnow',
  2779. u'unicode(e)']
  2780. search.search-history = [u'open(',
  2781. u'channels',
  2782. u'"nfo"',
  2783. u'api_url',
  2784. u'api_ur',
  2785. u'get_streams',
  2786. u'download_image',
  2787. u'sources_direco',
  2788. u'sources',
  2789. u'countr',
  2790. u'overwrite',
  2791. u'Except',
  2792. u'ContentSources',
  2793. u'Plugin',
  2794. u'play_vi',
  2795. u'enigma',
  2796. u'UA',
  2797. u'm3u',
  2798. u'kEmbedded',
  2799. u'item["posterUrl"]']
  2800. testing.stored-results = (1,
  2801. [],
  2802. {})