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

project.wpr 108KB

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