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

project.wpr 116KB

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