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

project.wpr 87KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  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',
  24. '')),
  25. loc('context_menu.py'): ('project',
  26. (u'add title url img desc',
  27. '')),
  28. loc('iub_db.py'): ('project',
  29. (u'-d 90 -s -o',
  30. '')),
  31. loc('iub_db2.py'): ('project',
  32. (u'-p 1 2 --debug ',
  33. '')),
  34. loc('iub_email.py'): ('project',
  35. (u'-i --debug',
  36. '')),
  37. loc('iubx.py'): ('project',
  38. (u'-s -d30',
  39. '')),
  40. loc('iubx2.py'): ('project',
  41. (u'-sgr -d 10',
  42. '')),
  43. loc('resources/lib/ContentSources.py'): ('project',
  44. (u'ustvnow::live/view?scode=whtm&token=o7p29h4iq2xznc8j7ek3hdrjxxyz',
  45. '')),
  46. loc('run.py'): ('project',
  47. (u'run interactive',
  48. '')),
  49. loc('../../../../Python27/Scripts/xbmcswift2-script.py'): ('p'\
  50. 'roject',
  51. (u'run interactive',
  52. '')),
  53. loc('../../../../Python27/lib/site-packages/xbmcswift2/plugin.py'): ('p'\
  54. 'roject',
  55. (u'interactive',
  56. ''))}
  57. [user attributes]
  58. debug.breakpoints = {loc('addon.py'): {10L: (0,
  59. None,
  60. 1,
  61. 0),
  62. 83L: (0,
  63. None,
  64. 1,
  65. 0),
  66. 112L: (0,
  67. None,
  68. 1,
  69. 0)},
  70. loc('context_menu.py'): {11L: (0,
  71. None,
  72. 1,
  73. 0)},
  74. loc('iub.py'): {102: (0,
  75. None,
  76. 1,
  77. 0),
  78. 146: (0,
  79. None,
  80. 1,
  81. 0)},
  82. loc('iub_db.py'): {209: (0,
  83. None,
  84. 1,
  85. 0),
  86. 376: (0,
  87. None,
  88. 1,
  89. 0)},
  90. loc('kodiswift/cli/console.py'): {61L: (0,
  91. None,
  92. 1,
  93. 0),
  94. 75L: (0,
  95. None,
  96. 1,
  97. 0)},
  98. loc('kodiswift2/listitem.py'): {289L: (0,
  99. None,
  100. 1,
  101. 0)},
  102. loc('resources/lib/sources/ustvnow.py'): {68L: (0,
  103. None,
  104. 1,
  105. 0),
  106. 120L: (0,
  107. None,
  108. 1,
  109. 0),
  110. 135L: (0,
  111. None,
  112. 1,
  113. 0)},
  114. loc('untitled-1.py'): {10: (0,
  115. None,
  116. 1,
  117. 0)},
  118. loc('../untitled-1.py'): {1: (0,
  119. None,
  120. 1,
  121. 0),
  122. 2: (0,
  123. None,
  124. 1,
  125. 0),
  126. 3: (0,
  127. None,
  128. 1,
  129. 0)},
  130. loc('../../../../Python27/lib/site-packages/kodiswift/cli/console.py'): {61L: (0,
  131. None,
  132. 1,
  133. 0)},
  134. loc('unknown:<untitled> #1'): {2: (0,
  135. None,
  136. 1,
  137. 0)},
  138. loc('unknown:<untitled> #2'): {10: (0,
  139. None,
  140. 1,
  141. 0)}}
  142. debug.err-values = {None: {},
  143. loc('addon.py'): {},
  144. loc('iub_db.py'): {},
  145. loc('iub_email.py'): {},
  146. loc('iubx.py'): {},
  147. loc('run.py'): {}}
  148. debug.recent-run-args = {loc('addon.py'): [u'run interactive',
  149. u'interactive',
  150. u'0 plugin://plugin.video.aaa/',
  151. u'0 plugin://plugin.video.aaa/index/',
  152. u'0 plugin://plugin.video.aaa/index',
  153. u'0 ',
  154. u'plugin://plugin.video.aaa/',
  155. u'plugin:// '],
  156. loc('context_menu.py'): [u'add title url img desc'],
  157. loc('iub_db.py'): [u'-d 90 -s -o',
  158. u'-d 40 -rg -o',
  159. u'-d 40 -s -o',
  160. u'-d 40 -r -o',
  161. u'-d 40 -g -o',
  162. u'-d 60 -s -o',
  163. u'-d 10 -r -o',
  164. u'-d 3 --slud -o',
  165. u'-d 10 --rez -o',
  166. u'-d 10 --rez',
  167. u'-d 10 --groz',
  168. u'-d 20 --groz',
  169. u'-d 20 --slud',
  170. u'-d 10 --slud',
  171. u'-d 3 --slud',
  172. u'-d 3'],
  173. loc('iub_db2.py'): [u'-p 1 2 --debug ',
  174. u'-d 1 --debug ',
  175. u'-p 51 53 --debug -o',
  176. u'-p 50 53 --debug -o',
  177. u'-d 3 --debug -o',
  178. u'-d 1 --debug -o',
  179. u'-d 1 --debug -o',
  180. u'-d 1 --debug',
  181. u'-d 1',
  182. u'-h'],
  183. loc('iub_email.py'): [u'-i --debug',
  184. u'-i ',
  185. u'-i',
  186. u'-p'],
  187. loc('iubx.py'): [u'-s -d30',
  188. u'-s -d10',
  189. u'-s -d3',
  190. u'-s -d40',
  191. '-s -d 10\n'],
  192. loc('iubx2.py'): [u'-sgr -d 10',
  193. u'-sgr',
  194. u'--sgr',
  195. u'--slud'],
  196. loc('resources/lib/ContentSources.py'): [u'ustvnow::live/view?scode=whtm&token=o7p29h4iq2xznc8j7ek3hdrjxxyz',
  197. u'config::home',
  198. u'filmas::home'],
  199. loc('run.py'): [u'run interactive'],
  200. loc('../../../../Python27/Scripts/xbmcswift2-script.py'): [u'run interactive'],
  201. loc('../../../../Python27/lib/site-packages/xbmcswift2/plugin.py'): [u'interactive']}
  202. debug.run-args = {}
  203. debug.var-col-widths = [0.41872791519434627,
  204. 0.5812720848056537]
  205. guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
  206. 'windows': [{'name': 'F8FpRDICw7YHXG3HV2rBc63asU'\
  207. 'LBT7JH',
  208. 'size-state': 'maximized',
  209. 'type': 'dock',
  210. 'view': {'area': 'tall',
  211. 'constraint': None,
  212. 'current_pages': [0,
  213. 1],
  214. 'full-screen': False,
  215. 'notebook_display': 'normal',
  216. 'notebook_percent': 0.17992831541218635,
  217. 'override_title': None,
  218. 'pagelist': [('project',
  219. 'tall',
  220. 0,
  221. {'tree-state': {'file-sort-method': 'by name',
  222. 'list-files-first': 0,
  223. 'tree-states': {'deep': {'expanded-nodes': [],
  224. 'selected-nodes': [(13,)],
  225. 'top-node': (0,)}},
  226. 'tree-style': 'deep'}}),
  227. ('snippets',
  228. 'tall',
  229. 0,
  230. {'tree-states': {u'c': [],
  231. u'html': [],
  232. u'py': [['class',
  233. 'all',
  234. '']]}}),
  235. ('browser',
  236. 'tall',
  237. 0,
  238. {'all_tree_states': {loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'): {'c'\
  239. 'olumn-widths': [1.0],
  240. 'expanded-nodes': [],
  241. 'selected-nodes': [],
  242. 'top-node': [('generic attribute',
  243. loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'),
  244. 'ft')]},
  245. 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'\
  246. 'olumn-widths': [1.0],
  247. 'expanded-nodes': [],
  248. 'selected-nodes': [],
  249. 'top-node': [('generic attribute',
  250. 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'),
  251. 'ANYTHING')]},
  252. loc('../$test/test2.py'): {'column-widths': [1.0],
  253. 'expanded-nodes': [],
  254. 'selected-nodes': [],
  255. 'top-node': [('generic attribute',
  256. loc('../$test/test2.py'),
  257. 'con')]},
  258. loc('../$test/test3.py'): {'column-widths': [1.0],
  259. 'expanded-nodes': [],
  260. 'selected-nodes': [],
  261. 'top-node': [('generic attribute',
  262. loc('../$test/test3.py'),
  263. 'area')]},
  264. loc('../$test/test4.py'): {'column-widths': [1.0],
  265. 'expanded-nodes': [],
  266. 'selected-nodes': [],
  267. 'top-node': [('generic attribute',
  268. loc('../$test/test4.py'),
  269. 'con')]},
  270. loc('../5streets/5streets.py'): {'column-widths': [1.0],
  271. 'expanded-nodes': [],
  272. 'selected-nodes': [],
  273. 'top-node': [('generic attribute',
  274. loc('../5streets/5streets.py'),
  275. 'dlat')]},
  276. loc('../JS2/JSData.py'): {'column-widths': [1.0],
  277. 'expanded-nodes': [],
  278. 'selected-nodes': [],
  279. 'top-node': [('generic attribute',
  280. loc('../JS2/JSData.py'),
  281. 'db')]},
  282. loc('../JS2/const.py'): {'column-widths': [1.0],
  283. 'expanded-nodes': [],
  284. 'selected-nodes': [],
  285. 'top-node': [('generic attribute',
  286. loc('../JS2/const.py'),
  287. 'config')]},
  288. loc('../JS2/js2gif2.py'): {'column-widths': [1.0],
  289. 'expanded-nodes': [],
  290. 'selected-nodes': [],
  291. 'top-node': [('generic attribute',
  292. loc('../JS2/js2gif2.py'),
  293. 'argc')]},
  294. loc('../JS2/js3.py'): {'column-widths': [1.0],
  295. 'expanded-nodes': [],
  296. 'selected-nodes': [],
  297. 'top-node': [('function def',
  298. loc('../JS2/js3.py'),
  299. 'deg')]},
  300. loc('../JS2/js3s.py'): {'column-widths': [1.0],
  301. 'expanded-nodes': [],
  302. 'selected-nodes': [],
  303. 'top-node': [('function def',
  304. loc('../JS2/js3s.py'),
  305. 'deg')]},
  306. loc('../JS2/js_2gif.py'): {'column-widths': [1.0],
  307. 'expanded-nodes': [],
  308. 'selected-nodes': [],
  309. 'top-node': [('generic attribute',
  310. loc('../JS2/js_2gif.py'),
  311. 'argc')]},
  312. loc('../JS2/js_db.py'): {'column-widths': [1.0],
  313. 'expanded-nodes': [],
  314. 'selected-nodes': [],
  315. 'top-node': [('generic attribute',
  316. loc('../JS2/js_db.py'),
  317. 'bks93')]},
  318. loc('../JS2/js_map.py'): {'column-widths': [1.0],
  319. 'expanded-nodes': [],
  320. 'selected-nodes': [[('function def',
  321. loc('../JS2/js_map.py'),
  322. 'deg')]],
  323. 'top-node': [('function def',
  324. loc('../JS2/js_map.py'),
  325. 'deg')]},
  326. loc('../JS2/js_map2.py'): {'column-widths': [1.0],
  327. 'expanded-nodes': [],
  328. 'selected-nodes': [],
  329. 'top-node': [('function def',
  330. loc('../JS2/js_map2.py'),
  331. 'deg')]},
  332. loc('../JS2/js_map3.py'): {'column-widths': [1.0],
  333. 'expanded-nodes': [],
  334. 'selected-nodes': [],
  335. 'top-node': [('function def',
  336. loc('../JS2/js_map3.py'),
  337. 'deg')]},
  338. loc('../JS2/js_map4.py'): {'column-widths': [1.0],
  339. 'expanded-nodes': [],
  340. 'selected-nodes': [],
  341. 'top-node': [('function def',
  342. loc('../JS2/js_map4.py'),
  343. 'create_map')]},
  344. loc('../JS2/js_shp.py'): {'column-widths': [1.0],
  345. 'expanded-nodes': [],
  346. 'selected-nodes': [],
  347. 'top-node': [('generic attribute',
  348. loc('../JS2/js_shp.py'),
  349. 'cx')]},
  350. loc('../JS2/js_unpack.py'): {'column-widths': [1.0],
  351. 'expanded-nodes': [],
  352. 'selected-nodes': [],
  353. 'top-node': [('generic attribute',
  354. loc('../JS2/js_unpack.py'),
  355. 'argc')]},
  356. loc('../JS2/jsdb2.py'): {'column-widths': [1.0],
  357. 'expanded-nodes': [],
  358. 'selected-nodes': [],
  359. 'top-node': [('generic attribute',
  360. loc('../JS2/jsdb2.py'),
  361. 'bks93')]},
  362. loc('../JS2/jsunpack2.py'): {'column-widths': [1.0],
  363. 'expanded-nodes': [],
  364. 'selected-nodes': [],
  365. 'top-node': [('generic attribute',
  366. loc('../JS2/jsunpack2.py'),
  367. 'argc')]},
  368. loc('../JS2/ozimap.py'): {'column-widths': [1.0],
  369. 'expanded-nodes': [],
  370. 'selected-nodes': [],
  371. 'top-node': [('generic attribute',
  372. loc('../JS2/ozimap.py'),
  373. 'epilog')]},
  374. loc('../JS2/test PIL.py'): {'column-widths': [1.0],
  375. 'expanded-nodes': [],
  376. 'selected-nodes': [],
  377. 'top-node': [('function def',
  378. loc('../JS2/test PIL.py'),
  379. 'get_pp')]},
  380. loc('../fakemap/fakemap.py'): {'column-widths': [1.0],
  381. 'expanded-nodes': [],
  382. 'selected-nodes': [],
  383. 'top-node': [('generic attribute',
  384. loc('../fakemap/fakemap.py'),
  385. 'dir')]},
  386. loc('../getpics/ggg2.py'): {'column-widths': [1.0],
  387. 'expanded-nodes': [],
  388. 'selected-nodes': [],
  389. 'top-node': [('generic attribute',
  390. loc('../getpics/ggg2.py'),
  391. 'con')]},
  392. loc('../ozi/ozi.py'): {'column-widths': [1.0],
  393. 'expanded-nodes': [],
  394. 'selected-nodes': [],
  395. 'top-node': [('generic attribute',
  396. loc('../ozi/ozi.py'),
  397. 'epilog')]},
  398. loc('../ozi/ozimap.py'): {'column-widths': [1.0],
  399. 'expanded-nodes': [],
  400. 'selected-nodes': [],
  401. 'top-node': [('generic attribute',
  402. loc('../ozi/ozimap.py'),
  403. 'epilog')]},
  404. loc('BeautifulSoup.py'): {'expanded-nodes': [],
  405. 'selected-nodes': [],
  406. 'top-node': [('class def',
  407. loc('BeautifulSoup.py'),
  408. 'BeautifulSOAP')]},
  409. loc('config.py'): {'expanded-nodes': [],
  410. 'selected-nodes': [],
  411. 'top-node': [('generic attribute',
  412. loc('config.py'),
  413. 'config')]},
  414. loc('database.py'): {'expanded-nodes': [],
  415. 'selected-nodes': [],
  416. 'top-node': [('class def',
  417. loc('database.py'),
  418. 'Database')]},
  419. loc('excel3.py'): {'expanded-nodes': [],
  420. 'selected-nodes': [],
  421. 'top-node': [('class def',
  422. loc('excel3.py'),
  423. 'Excel')]},
  424. loc('iub_db.py'): {'expanded-nodes': [],
  425. 'selected-nodes': [],
  426. 'top-node': [('function def',
  427. loc('iub_db.py'),
  428. 'add_rec')]},
  429. loc('iub_db2.py'): {'expanded-nodes': [],
  430. 'selected-nodes': [[('generic attribute',
  431. loc('iub_db2.py'),
  432. 'version')]],
  433. 'top-node': [('generic attribute',
  434. loc('iub_db2.py'),
  435. 'config')]},
  436. loc('iubx.ini'): {'expanded-nodes': [],
  437. 'selected-nodes': [],
  438. 'top-node': None},
  439. loc('iubx.py'): {'column-widths': None,
  440. 'expanded-nodes': [],
  441. 'selected-nodes': [],
  442. 'top-node': [('function def',
  443. loc('iubx.py'),
  444. 'check_cpv')]},
  445. loc('iubx0.py'): {'column-widths': [1.0],
  446. 'expanded-nodes': [],
  447. 'selected-nodes': [[('generic attribute',
  448. loc('iubx0.py'),
  449. 'config')]],
  450. 'top-node': [('generic attribute',
  451. loc('iubx0.py'),
  452. 'config')]},
  453. loc('latvian.xml'): {'expanded-nodes': [],
  454. 'selected-nodes': [],
  455. 'top-node': None},
  456. loc('record.py'): {'expanded-nodes': [],
  457. 'selected-nodes': [],
  458. 'top-node': [('generic attribute',
  459. loc('record.py'),
  460. 'r1')]},
  461. loc('sources/iub.py'): {'expanded-nodes': [],
  462. 'selected-nodes': [[('class def',
  463. loc('sources/iub.py'),
  464. 'Source')]],
  465. 'top-node': [('generic attribute',
  466. loc('sources/iub.py'),
  467. 'h')]},
  468. loc('test1.py'): {'expanded-nodes': [],
  469. 'selected-nodes': [],
  470. 'top-node': [('generic attribute',
  471. loc('test1.py'),
  472. 'conn')]},
  473. loc('utils.py'): {'expanded-nodes': [],
  474. 'selected-nodes': [],
  475. 'top-node': [('function def',
  476. loc('utils.py'),
  477. 'check_cpv')]},
  478. loc('../theyr/ikite/ikite.py'): {'column-widths': [1.0],
  479. 'expanded-nodes': [],
  480. 'selected-nodes': [],
  481. 'top-node': [('generic attribute',
  482. loc('../theyr/ikite/ikite.py'),
  483. 'day')]},
  484. loc('../vietas/vietas.py'): {'column-widths': [1.0],
  485. 'expanded-nodes': [],
  486. 'selected-nodes': [],
  487. 'top-node': [('generic attribute',
  488. loc('../vietas/vietas.py'),
  489. 'count')]},
  490. loc('../vietas/vietas0.py'): {'column-widths': [1.0],
  491. 'expanded-nodes': [],
  492. 'selected-nodes': [],
  493. 'top-node': [('generic attribute',
  494. loc('../vietas/vietas0.py'),
  495. 'c')]},
  496. loc('../vietas/vietas2.py'): {'column-widths': [1.0],
  497. 'expanded-nodes': [],
  498. 'selected-nodes': [],
  499. 'top-node': [('generic attribute',
  500. loc('../vietas/vietas2.py'),
  501. 'd_lat')]},
  502. loc('../../SplashData/remdup.py'): {'column-widths': [1.0],
  503. 'expanded-nodes': [],
  504. 'selected-nodes': [],
  505. 'top-node': [('generic attribute',
  506. loc('../../SplashData/remdup.py'),
  507. 'f')]},
  508. loc('../../../Python25/Lib/BeautifulSoup.py'): {'column-widths': [1.0],
  509. 'expanded-nodes': [],
  510. 'selected-nodes': [],
  511. 'top-node': [('class def',
  512. loc('../../../Python25/Lib/BeautifulSoup.py'),
  513. 'BeautifulSOAP')]},
  514. loc('../../../Python25/Lib/ConfigParser.py'): {'column-widths': [1.0],
  515. 'expanded-nodes': [],
  516. 'selected-nodes': [],
  517. 'top-node': [('class def',
  518. loc('../../../Python25/Lib/ConfigParser.py'),
  519. 'ConfigParser')]},
  520. loc('../../../Python25/Lib/StringIO.py'): {'column-widths': [1.0],
  521. 'expanded-nodes': [],
  522. 'selected-nodes': [],
  523. 'top-node': [('class def',
  524. loc('../../../Python25/Lib/StringIO.py'),
  525. 'StringIO')]},
  526. loc('../../../Python25/Lib/dircache.py'): {'column-widths': [1.0],
  527. 'expanded-nodes': [],
  528. 'selected-nodes': [],
  529. 'top-node': [('function def',
  530. loc('../../../Python25/Lib/dircache.py'),
  531. 'annotate')]},
  532. loc('../../../Python25/Lib/encodings/cp1257.py'): {'column-widths': [1.0],
  533. 'expanded-nodes': [],
  534. 'selected-nodes': [],
  535. 'top-node': [('class def',
  536. loc('../../../Python25/Lib/encodings/cp1257.py'),
  537. 'Codec')]},
  538. loc('../../../Python25/Lib/encodings/utf_8.py'): {'column-widths': [1.0],
  539. 'expanded-nodes': [],
  540. 'selected-nodes': [],
  541. 'top-node': [('function def',
  542. loc('../../../Python25/Lib/encodings/utf_8.py'),
  543. 'decode')]},
  544. loc('../../../Python25/Lib/ntpath.py'): {'column-widths': [1.0],
  545. 'expanded-nodes': [],
  546. 'selected-nodes': [],
  547. 'top-node': [('function def',
  548. loc('../../../Python25/Lib/ntpath.py'),
  549. 'abspath')]},
  550. loc('../../../Python25/Lib/re.py'): {'column-widths': [1.0],
  551. 'expanded-nodes': [],
  552. 'selected-nodes': [],
  553. 'top-node': [('generic attribute',
  554. loc('../../../Python25/Lib/re.py'),
  555. 'c')]},
  556. loc('../../../Python25/Lib/sgmllib.py'): {'column-widths': [1.0],
  557. 'expanded-nodes': [],
  558. 'selected-nodes': [],
  559. 'top-node': [('generic attribute',
  560. loc('../../../Python25/Lib/sgmllib.py'),
  561. 'attrfind')]},
  562. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'): {'c'\
  563. 'olumn-widths': [1.0],
  564. 'expanded-nodes': [],
  565. 'selected-nodes': [],
  566. 'top-node': [('generic attribute',
  567. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'),
  568. 'BIT2MODE')]},
  569. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'): {'c'\
  570. 'olumn-widths': [1.0],
  571. 'expanded-nodes': [],
  572. 'selected-nodes': [],
  573. 'top-node': [('function def',
  574. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'),
  575. 'getdata')]},
  576. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'column-wi'\
  577. 'dths': [1.0],
  578. 'expanded-nodes': [],
  579. 'selected-nodes': [[('generic attribute',
  580. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  581. '_initialized')]],
  582. 'top-node': [('generic attribute',
  583. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  584. 'ADAPTIVE')]},
  585. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'): {'colum'\
  586. 'n-widths': [1.0],
  587. 'expanded-nodes': [],
  588. 'selected-nodes': [],
  589. 'top-node': [('generic attribute',
  590. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'),
  591. 'ERRORS')]},
  592. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'): {'co'\
  593. 'lumn-widths': [1.0],
  594. 'expanded-nodes': [],
  595. 'selected-nodes': [],
  596. 'top-node': [('class def',
  597. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'),
  598. 'ImagePalette')]},
  599. loc('../../../Python25/Lib/site-packages/argparse.py'): {'column-wid'\
  600. 'ths': [1.0],
  601. 'expanded-nodes': [],
  602. 'selected-nodes': [],
  603. 'top-node': [('class def',
  604. loc('../../../Python25/Lib/site-packages/argparse.py'),
  605. 'Action')]},
  606. loc('../../../Python25/Lib/site-packages/pdo.py'): {'column-widths': [1.0],
  607. 'expanded-nodes': [],
  608. 'selected-nodes': [],
  609. 'top-node': [('class def',
  610. loc('../../../Python25/Lib/site-packages/pdo.py'),
  611. 'connect')]},
  612. loc('../../../Python25/Lib/struct.py'): {'column-widths': [1.0],
  613. 'expanded-nodes': [],
  614. 'selected-nodes': [],
  615. 'top-node': [('function def',
  616. loc('../../../Python25/Lib/struct.py'),
  617. 'calcsize')]},
  618. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'): {'exp'\
  619. 'anded-nodes': [],
  620. 'selected-nodes': [],
  621. 'top-node': [('class def',
  622. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  623. 'CompositeCaster')]},
  624. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'): {'e'\
  625. 'xpanded-nodes': [],
  626. 'selected-nodes': [],
  627. 'top-node': [('generic attribute',
  628. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  629. 'ALL_INVOKE_TYPES')]},
  630. loc('unknown:<untitled> #6'): {'expanded-nodes': [],
  631. 'selected-nodes': [],
  632. 'top-node': None},
  633. loc('unknown:<untitled> #5'): {'column-widths': [1.0],
  634. 'expanded-nodes': [],
  635. 'selected-nodes': [],
  636. 'top-node': None},
  637. loc('unknown:<untitled> #3'): {'column-widths': [1.0],
  638. 'expanded-nodes': [],
  639. 'selected-nodes': [],
  640. 'top-node': None},
  641. loc('unknown:<untitled> #4'): {'expanded-nodes': [],
  642. 'selected-nodes': [],
  643. 'top-node': None}},
  644. 'browse_mode': u'Current Module',
  645. 'follow-selection': False,
  646. 'sort_mode': 'Alphabetically',
  647. 'visibility_options': {u'Derived Classes': False,
  648. u'Imported': False,
  649. u'Modules': True}}),
  650. ('debug-stack',
  651. 'tall',
  652. 1,
  653. {'codeline-mode': 'below'}),
  654. ('source-assistant',
  655. 'tall',
  656. 1,
  657. {}),
  658. ('indent',
  659. 'tall',
  660. 2,
  661. {}),
  662. ('templating#02EFWRQK9X23',
  663. 'tall',
  664. 0,
  665. None)],
  666. 'primary_view_state': {'area': 'wide',
  667. 'constraint': None,
  668. 'current_pages': [2,
  669. 1],
  670. 'notebook_display': 'normal',
  671. 'notebook_percent': 0.45990566037735847,
  672. 'override_title': None,
  673. 'pagelist': [('debug-breakpoints',
  674. 'wide',
  675. 0,
  676. {'tree-state': []}),
  677. ('debug-io',
  678. 'wide',
  679. 0,
  680. {}),
  681. ('debug-exceptions',
  682. 'wide',
  683. 0,
  684. {}),
  685. ('interactive-search',
  686. 'wide',
  687. 0,
  688. {'fScope': {'fFileSetName': 'All Source Files',
  689. 'fLocation': None,
  690. 'fRecursive': True,
  691. 'fType': 'project-files'},
  692. 'fSearchSpec': {'fEndPos': None,
  693. 'fIncludeLinenos': True,
  694. 'fInterpretBackslashes': False,
  695. 'fMatchCase': False,
  696. 'fOmitBinary': True,
  697. 'fRegexFlags': 46,
  698. 'fReplaceText': u'ustvnow',
  699. 'fReverse': False,
  700. 'fSearchText': u'add_',
  701. 'fStartPos': 0,
  702. 'fStyle': 'text',
  703. 'fWholeWords': False,
  704. 'fWrap': True},
  705. 'fUIOptions': {'fAutoBackground': True,
  706. 'fFilePrefix': 'short-file',
  707. 'fFindAfterReplace': True,
  708. 'fInSelection': False,
  709. 'fIncremental': True,
  710. 'fReplaceOnDisk': False,
  711. 'fShowFirstMatch': False,
  712. 'fShowLineno': True,
  713. 'fShowReplaceWidgets': False}}),
  714. ('batch-search',
  715. 'wide',
  716. 0,
  717. {'fScope': {'fFileSetName': 'Python Files',
  718. 'fLocation': None,
  719. 'fRecursive': True,
  720. 'fType': 'project-files'},
  721. 'fSearchSpec': {'fEndPos': None,
  722. 'fIncludeLinenos': True,
  723. 'fInterpretBackslashes': False,
  724. 'fMatchCase': False,
  725. 'fOmitBinary': True,
  726. 'fRegexFlags': 46,
  727. 'fReplaceText': u'',
  728. 'fReverse': False,
  729. 'fSearchText': u'traceback',
  730. 'fStartPos': 0,
  731. 'fStyle': 'text',
  732. 'fWholeWords': False,
  733. 'fWrap': True},
  734. 'fUIOptions': {'fAutoBackground': True,
  735. 'fFilePrefix': 'short-file',
  736. 'fFindAfterReplace': True,
  737. 'fInSelection': False,
  738. 'fIncremental': True,
  739. 'fReplaceOnDisk': False,
  740. 'fShowFirstMatch': False,
  741. 'fShowLineno': True,
  742. 'fShowReplaceWidgets': False},
  743. 'replace-entry-expanded': False,
  744. 'search-entry-expanded': False}),
  745. ('debug-data',
  746. 'wide',
  747. 0,
  748. {}),
  749. ('testing',
  750. 'wide',
  751. 0,
  752. {'added-files': [],
  753. 'filter': u'',
  754. 'recent-filters': None,
  755. 'sort-order': 'alpha',
  756. 'tree-state': {'expanded-nodes': [],
  757. 'selected-nodes': [],
  758. 'top-node': (0,)}}),
  759. ('bookmarks',
  760. 'wide',
  761. 1,
  762. {}),
  763. ('debug-probe',
  764. 'wide',
  765. 2,
  766. {'active-range': (None,
  767. -1,
  768. -1),
  769. 'attrib-starts': [],
  770. 'first-line': 0L,
  771. 'folded-linenos': [],
  772. 'history': {},
  773. 'launch-id': None,
  774. 'sel-line': 0L,
  775. 'sel-line-start': 0L,
  776. 'selection_end': 0L,
  777. 'selection_start': 0L}),
  778. ('messages',
  779. 'wide',
  780. 2,
  781. {'current-domain': 0}),
  782. ('debug-modules',
  783. 'wide',
  784. 1,
  785. {}),
  786. ('os-command',
  787. 'wide',
  788. 1,
  789. {'last-percent': 0.8,
  790. 'toolbox-percent': 1.0,
  791. 'toolbox-tree-sel': ''}),
  792. ('python-shell',
  793. 'wide',
  794. 2,
  795. {'active-range': (None,
  796. -1,
  797. -1),
  798. 'attrib-starts': [],
  799. 'first-line': 0L,
  800. 'folded-linenos': [],
  801. 'history': {},
  802. 'launch-id': None,
  803. 'sel-line': 2L,
  804. 'sel-line-start': 146L,
  805. 'selection_end': 146L,
  806. 'selection_start': 146L}),
  807. ('debug-watch',
  808. 'wide',
  809. 1,
  810. {'node-states': [('eval',
  811. 'rec'),
  812. ('eval',
  813. u'cur'),
  814. ('eval',
  815. u'stream')],
  816. 'tree-state': {'expanded-nodes': [],
  817. 'selected-nodes': [(2,)],
  818. 'top-node': (0,)}})],
  819. 'primary_view_state': {'editor_states': ('horizontal',
  820. 1.0,
  821. ({'bookmarks': ([[loc('addon.py'),
  822. {'attrib-starts': [('get_list',
  823. 58)],
  824. 'first-line': 56L,
  825. 'folded-linenos': [],
  826. 'sel-line': 60L,
  827. 'sel-line-start': 2272L,
  828. 'selection_end': 2286L,
  829. 'selection_start': 2286L},
  830. 1488578798.753],
  831. [loc('addon.py'),
  832. {'attrib-starts': [('get_list',
  833. 58)],
  834. 'first-line': 59L,
  835. 'folded-linenos': [],
  836. 'sel-line': 69L,
  837. 'sel-line-start': 2614L,
  838. 'selection_end': 2720L,
  839. 'selection_start': 2720L},
  840. 1488578929.769],
  841. [loc('plugin.video.playstream/resources/lib/sources/config.py'),
  842. {'attrib-starts': [('Source',
  843. 12),
  844. ('Source.read_streams',
  845. 33)],
  846. 'first-line': 45L,
  847. 'folded-linenos': [],
  848. 'sel-line': 33L,
  849. 'sel-line-start': 1050L,
  850. 'selection_end': 1070L,
  851. 'selection_start': 1058L},
  852. 1488579095.298],
  853. [loc('context_menu.py'),
  854. {'attrib-starts': [],
  855. 'first-line': 0L,
  856. 'folded-linenos': [],
  857. 'sel-line': 9L,
  858. 'sel-line-start': 203L,
  859. 'selection_end': 203L,
  860. 'selection_start': 203L},
  861. 1488579728.548],
  862. [loc('plugin.video.playstream/resources/lib/sources/config.py'),
  863. {'attrib-starts': [('Source',
  864. 12),
  865. ('Source.__init__',
  866. 14)],
  867. 'first-line': 20L,
  868. 'folded-linenos': [],
  869. 'sel-line': 20L,
  870. 'sel-line-start': 725L,
  871. 'selection_end': 743L,
  872. 'selection_start': 743L},
  873. 1488580147.368],
  874. [loc('context_menu.py'),
  875. {'attrib-starts': [],
  876. 'first-line': 0L,
  877. 'folded-linenos': [],
  878. 'sel-line': 9L,
  879. 'sel-line-start': 203L,
  880. 'selection_end': 203L,
  881. 'selection_start': 203L},
  882. 1490215365.352],
  883. [loc('addon.py'),
  884. {'attrib-starts': [('get_list',
  885. 58)],
  886. 'first-line': 59L,
  887. 'folded-linenos': [],
  888. 'sel-line': 69L,
  889. 'sel-line-start': 2614L,
  890. 'selection_end': 2720L,
  891. 'selection_start': 2720L},
  892. 1490215385.87],
  893. [loc('../../../../Python27/lib/ctypes/__init__.py'),
  894. {'attrib-starts': [('CDLL',
  895. 328),
  896. ('CDLL.__init__',
  897. 345)],
  898. 'first-line': 344L,
  899. 'folded-linenos': [],
  900. 'sel-line': 361L,
  901. 'sel-line-start': 11284L,
  902. 'selection_end': 11284L,
  903. 'selection_start': 11284L},
  904. 1490215401.076],
  905. [loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'),
  906. {'attrib-starts': [('Console',
  907. 175),
  908. ('Console.__init__',
  909. 180)],
  910. 'first-line': 203L,
  911. 'folded-linenos': [],
  912. 'sel-line': 220L,
  913. 'sel-line-start': 7018L,
  914. 'selection_end': 7018L,
  915. 'selection_start': 7018L},
  916. 1490215403.323],
  917. [loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/readline.py'),
  918. {'attrib-starts': [],
  919. 'first-line': 16L,
  920. 'folded-linenos': [],
  921. 'sel-line': 33L,
  922. 'sel-line-start': 1141L,
  923. 'selection_end': 1141L,
  924. 'selection_start': 1141L},
  925. 1490215406.271],
  926. [loc('kodiswift/cli/create.py'),
  927. {'attrib-starts': [],
  928. 'first-line': 0L,
  929. 'folded-linenos': [],
  930. 'sel-line': 13L,
  931. 'sel-line-start': 300L,
  932. 'selection_end': 300L,
  933. 'selection_start': 300L},
  934. 1490215408.944],
  935. [loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/readline.py'),
  936. {'attrib-starts': [],
  937. 'first-line': 23L,
  938. 'folded-linenos': [],
  939. 'sel-line': 33L,
  940. 'sel-line-start': 1141L,
  941. 'selection_end': 1141L,
  942. 'selection_start': 1141L},
  943. 1490215432.838],
  944. [loc('addon.py'),
  945. {'attrib-starts': [('get_list',
  946. 58)],
  947. 'first-line': 100L,
  948. 'folded-linenos': [],
  949. 'sel-line': 69L,
  950. 'sel-line-start': 2614L,
  951. 'selection_end': 2720L,
  952. 'selection_start': 2720L},
  953. 1490215447.377],
  954. [loc('../../../../Python27/lib/ctypes/__init__.py'),
  955. {'attrib-starts': [('CDLL',
  956. 328),
  957. ('CDLL.__init__',
  958. 345)],
  959. 'first-line': 344L,
  960. 'folded-linenos': [],
  961. 'sel-line': 361L,
  962. 'sel-line-start': 11284L,
  963. 'selection_end': 11284L,
  964. 'selection_start': 11284L},
  965. 1490215461.96],
  966. [loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'),
  967. {'attrib-starts': [('Console',
  968. 175),
  969. ('Console.__init__',
  970. 180)],
  971. 'first-line': 203L,
  972. 'folded-linenos': [],
  973. 'sel-line': 220L,
  974. 'sel-line-start': 7018L,
  975. 'selection_end': 7018L,
  976. 'selection_start': 7018L},
  977. 1490215470.576],
  978. [loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/rlmain.py'),
  979. {'attrib-starts': [('Readline',
  980. 417),
  981. ('Readline.__init__',
  982. 420)],
  983. 'first-line': 412L,
  984. 'folded-linenos': [],
  985. 'sel-line': 422L,
  986. 'sel-line-start': 16335L,
  987. 'selection_end': 16335L,
  988. 'selection_start': 16335L},
  989. 1490215804.58],
  990. [loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/readline.py'),
  991. {'attrib-starts': [],
  992. 'first-line': 16L,
  993. 'folded-linenos': [],
  994. 'sel-line': 33L,
  995. 'sel-line-start': 1141L,
  996. 'selection_end': 1141L,
  997. 'selection_start': 1141L},
  998. 1490215807.095],
  999. [loc('kodiswift/cli/create.py'),
  1000. {'attrib-starts': [],
  1001. 'first-line': 0L,
  1002. 'folded-linenos': [],
  1003. 'sel-line': 13L,
  1004. 'sel-line-start': 300L,
  1005. 'selection_end': 300L,
  1006. 'selection_start': 300L},
  1007. 1490215825.399],
  1008. [loc('../../../../Python27/lib/ctypes/__init__.py'),
  1009. {'attrib-starts': [('CDLL',
  1010. 328),
  1011. ('CDLL.__init__',
  1012. 345)],
  1013. 'first-line': 344L,
  1014. 'folded-linenos': [],
  1015. 'sel-line': 361L,
  1016. 'sel-line-start': 11284L,
  1017. 'selection_end': 11284L,
  1018. 'selection_start': 11284L},
  1019. 1490215830.44],
  1020. [loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'),
  1021. {'attrib-starts': [('Console',
  1022. 175),
  1023. ('Console.__init__',
  1024. 180)],
  1025. 'first-line': 203L,
  1026. 'folded-linenos': [],
  1027. 'sel-line': 220L,
  1028. 'sel-line-start': 7018L,
  1029. 'selection_end': 7018L,
  1030. 'selection_start': 7018L},
  1031. 1490215840.744]],
  1032. 20),
  1033. 'current-loc': loc('addon.py'),
  1034. 'editor-state-list': [(loc('addon.xml'),
  1035. {'attrib-starts': [],
  1036. 'first-line': 0L,
  1037. 'folded-linenos': [],
  1038. 'sel-line': 14L,
  1039. 'sel-line-start': 628L,
  1040. 'selection_end': 655L,
  1041. 'selection_start': 655L}),
  1042. (loc('addon.py'),
  1043. {'attrib-starts': [('get_list',
  1044. 58)],
  1045. 'first-line': 100L,
  1046. 'folded-linenos': [],
  1047. 'sel-line': 69L,
  1048. 'sel-line-start': 2614L,
  1049. 'selection_end': 2720L,
  1050. 'selection_start': 2720L}),
  1051. (loc('changelog.md'),
  1052. {'attrib-starts': [],
  1053. 'first-line': 0L,
  1054. 'folded-linenos': [],
  1055. 'sel-line': 3L,
  1056. 'sel-line-start': 60L,
  1057. 'selection_end': 67L,
  1058. 'selection_start': 67L}),
  1059. (loc('kodiswift/listitem.py'),
  1060. {'attrib-starts': [('ListItem',
  1061. 20),
  1062. ('ListItem.label',
  1063. 68)],
  1064. 'first-line': 60L,
  1065. 'folded-linenos': [],
  1066. 'sel-line': 65L,
  1067. 'sel-line-start': 1996L,
  1068. 'selection_end': 1996L,
  1069. 'selection_start': 1996L}),
  1070. (loc('kodiswift/plugin.py'),
  1071. {'attrib-starts': [],
  1072. 'first-line': 0L,
  1073. 'folded-linenos': [],
  1074. 'sel-line': 3L,
  1075. 'sel-line-start': 45L,
  1076. 'selection_end': 62L,
  1077. 'selection_start': 62L}),
  1078. (loc('kodiswift/cli/cli.py'),
  1079. {'attrib-starts': [],
  1080. 'first-line': 22L,
  1081. 'folded-linenos': [],
  1082. 'sel-line': 27L,
  1083. 'sel-line-start': 617L,
  1084. 'selection_end': 643L,
  1085. 'selection_start': 643L}),
  1086. (loc('kodiswift/xbmcmixin.py'),
  1087. {'attrib-starts': [('XBMCMixin',
  1088. 21),
  1089. ('XBMCMixin.notify',
  1090. 321)],
  1091. 'first-line': 320L,
  1092. 'folded-linenos': [],
  1093. 'sel-line': 337L,
  1094. 'sel-line-start': 13664L,
  1095. 'selection_end': 13726L,
  1096. 'selection_start': 13726L}),
  1097. (loc('kodiswift/cli/console.py'),
  1098. {'attrib-starts': [('display_video',
  1099. 56)],
  1100. 'first-line': 59L,
  1101. 'folded-linenos': [],
  1102. 'sel-line': 67L,
  1103. 'sel-line-start': 1981L,
  1104. 'selection_end': 1981L,
  1105. 'selection_start': 1981L}),
  1106. (loc('resources/lib/sources/ustvnow.py'),
  1107. {'attrib-starts': [('Source',
  1108. 29),
  1109. ('Source.get_content',
  1110. 66)],
  1111. 'first-line': 110L,
  1112. 'folded-linenos': [],
  1113. 'sel-line': 124L,
  1114. 'sel-line-start': 5112L,
  1115. 'selection_end': 5112L,
  1116. 'selection_start': 5112L}),
  1117. (loc('resources/lib/ContentSources.py'),
  1118. {'attrib-starts': [],
  1119. 'first-line': 199L,
  1120. 'folded-linenos': [],
  1121. 'sel-line': 214L,
  1122. 'sel-line-start': 7496L,
  1123. 'selection_end': 7524L,
  1124. 'selection_start': 7514L}),
  1125. (loc('plugin.video.playstream/resources/lib/sources/config.py'),
  1126. {'attrib-starts': [('Source',
  1127. 12),
  1128. ('Source.__init__',
  1129. 14)],
  1130. 'first-line': 20L,
  1131. 'folded-linenos': [],
  1132. 'sel-line': 20L,
  1133. 'sel-line-start': 725L,
  1134. 'selection_end': 743L,
  1135. 'selection_start': 743L}),
  1136. (loc('context_menu.py'),
  1137. {'attrib-starts': [],
  1138. 'first-line': 0L,
  1139. 'folded-linenos': [],
  1140. 'sel-line': 9L,
  1141. 'sel-line-start': 203L,
  1142. 'selection_end': 203L,
  1143. 'selection_start': 203L}),
  1144. (loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'),
  1145. {'attrib-starts': [('Console',
  1146. 175),
  1147. ('Console.__init__',
  1148. 180)],
  1149. 'first-line': 203L,
  1150. 'folded-linenos': [],
  1151. 'sel-line': 220L,
  1152. 'sel-line-start': 7018L,
  1153. 'selection_end': 7018L,
  1154. 'selection_start': 7018L}),
  1155. (loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/rlmain.py'),
  1156. {'attrib-starts': [('Readline',
  1157. 417),
  1158. ('Readline.__init__',
  1159. 420)],
  1160. 'first-line': 405L,
  1161. 'folded-linenos': [],
  1162. 'sel-line': 422L,
  1163. 'sel-line-start': 16335L,
  1164. 'selection_end': 16335L,
  1165. 'selection_start': 16335L})],
  1166. 'has-focus': False,
  1167. 'locked': False},
  1168. [loc('addon.xml'),
  1169. loc('addon.py'),
  1170. loc('changelog.md'),
  1171. loc('kodiswift/listitem.py'),
  1172. loc('kodiswift/plugin.py'),
  1173. loc('kodiswift/cli/cli.py'),
  1174. loc('kodiswift/xbmcmixin.py'),
  1175. loc('kodiswift/cli/console.py'),
  1176. loc('resources/lib/sources/ustvnow.py'),
  1177. loc('resources/lib/ContentSources.py'),
  1178. loc('plugin.video.playstream/resources/lib/sources/config.py'),
  1179. loc('context_menu.py'),
  1180. loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'),
  1181. loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/rlmain.py')]),
  1182. ({'bookmarks': ([(loc('iubx.py'),
  1183. {'attrib-starts': [('main',
  1184. 42)],
  1185. 'first-line': 108,
  1186. 'folded-linenos': [],
  1187. 'sel-line': 135,
  1188. 'sel-line-start': 6123,
  1189. 'selection_end': 6123,
  1190. 'selection_start': 6123},
  1191. 1370449380.505),
  1192. (loc('iubx.py'),
  1193. {'attrib-starts': [('main',
  1194. 42)],
  1195. 'first-line': 108,
  1196. 'folded-linenos': [],
  1197. 'sel-line': 135,
  1198. 'sel-line-start': 6123,
  1199. 'selection_end': 6123,
  1200. 'selection_start': 6123},
  1201. 1370449384.062),
  1202. [loc('iubx2.py'),
  1203. {'attrib-starts': [('main',
  1204. 42)],
  1205. 'first-line': 111,
  1206. 'folded-linenos': [],
  1207. 'sel-line': 158,
  1208. 'sel-line-start': 7392,
  1209. 'selection_end': 7392,
  1210. 'selection_start': 7392},
  1211. 1455788262.586],
  1212. [loc('iubx2.py'),
  1213. {'attrib-starts': [('main',
  1214. 42)],
  1215. 'first-line': 104,
  1216. 'folded-linenos': [],
  1217. 'sel-line': 141,
  1218. 'sel-line-start': 5871,
  1219. 'selection_end': 5871,
  1220. 'selection_start': 5871},
  1221. 1456308657.576],
  1222. [loc('../audits/test1.py'),
  1223. {'attrib-starts': [],
  1224. 'first-line': 0,
  1225. 'folded-linenos': [],
  1226. 'sel-line': 0,
  1227. 'sel-line-start': 0,
  1228. 'selection_end': 0,
  1229. 'selection_start': 0},
  1230. 1457449493.859],
  1231. [loc('iub_db2.py'),
  1232. {'attrib-starts': [('main',
  1233. -1)],
  1234. 'first-line': 109,
  1235. 'folded-linenos': [],
  1236. 'sel-line': 146,
  1237. 'sel-line-start': 6796,
  1238. 'selection_end': 6797,
  1239. 'selection_start': 6797},
  1240. 1459750791.479],
  1241. [loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  1242. {'attrib-starts': [],
  1243. 'first-line': 0,
  1244. 'folded-linenos': [],
  1245. 'sel-line': 0,
  1246. 'sel-line-start': 0,
  1247. 'selection_end': 0,
  1248. 'selection_start': 0},
  1249. 1459757438.323],
  1250. [loc('iub_email.py'),
  1251. {'attrib-starts': [('main',
  1252. -1)],
  1253. 'first-line': 0,
  1254. 'folded-linenos': [],
  1255. 'sel-line': 104,
  1256. 'sel-line-start': 4084,
  1257. 'selection_end': 4084,
  1258. 'selection_start': 4084},
  1259. 1459798097.611],
  1260. [loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  1261. {'attrib-starts': [],
  1262. 'first-line': 0,
  1263. 'folded-linenos': [],
  1264. 'sel-line': 0,
  1265. 'sel-line-start': 0,
  1266. 'selection_end': 0,
  1267. 'selection_start': 0},
  1268. 1460048392.844],
  1269. [loc('utils.py'),
  1270. {'attrib-starts': [],
  1271. 'first-line': 0,
  1272. 'folded-linenos': [],
  1273. 'sel-line': 0,
  1274. 'sel-line-start': 0,
  1275. 'selection_end': 0,
  1276. 'selection_start': 0},
  1277. 1462256767.769],
  1278. [loc('untitled-2.py'),
  1279. {'attrib-starts': [],
  1280. 'first-line': 0,
  1281. 'folded-linenos': [],
  1282. 'sel-line': 0,
  1283. 'sel-line-start': 0,
  1284. 'selection_end': 0,
  1285. 'selection_start': 0},
  1286. 1462256769.932],
  1287. [loc('test2.py'),
  1288. {'attrib-starts': [],
  1289. 'first-line': 0,
  1290. 'folded-linenos': [],
  1291. 'sel-line': 0,
  1292. 'sel-line-start': 0,
  1293. 'selection_end': 0,
  1294. 'selection_start': 0},
  1295. 1462256771.174],
  1296. [loc('test1.py'),
  1297. {'attrib-starts': [],
  1298. 'first-line': 0,
  1299. 'folded-linenos': [],
  1300. 'sel-line': 0,
  1301. 'sel-line-start': 0,
  1302. 'selection_end': 0,
  1303. 'selection_start': 0},
  1304. 1462256772.38],
  1305. [loc('sources/iub.py'),
  1306. {'attrib-starts': [],
  1307. 'first-line': 0,
  1308. 'folded-linenos': [],
  1309. 'sel-line': 0,
  1310. 'sel-line-start': 0,
  1311. 'selection_end': 0,
  1312. 'selection_start': 0},
  1313. 1462256777.34],
  1314. [loc('iub_email.py'),
  1315. {'attrib-starts': [],
  1316. 'first-line': 0,
  1317. 'folded-linenos': [],
  1318. 'sel-line': 0,
  1319. 'sel-line-start': 0,
  1320. 'selection_end': 0,
  1321. 'selection_start': 0},
  1322. 1462256778.451],
  1323. [loc('iub_db2.py'),
  1324. {'attrib-starts': [],
  1325. 'first-line': 0,
  1326. 'folded-linenos': [],
  1327. 'sel-line': 0,
  1328. 'sel-line-start': 0,
  1329. 'selection_end': 0,
  1330. 'selection_start': 0},
  1331. 1462256779.578],
  1332. [loc('iepirkumi/rss/rss.cgi'),
  1333. {'attrib-starts': [],
  1334. 'first-line': 0,
  1335. 'folded-linenos': [],
  1336. 'sel-line': 0,
  1337. 'sel-line-start': 0,
  1338. 'selection_end': 0,
  1339. 'selection_start': 0},
  1340. 1462256780.838],
  1341. [loc('iepirkumi/rss/feeds.py'),
  1342. {'attrib-starts': [],
  1343. 'first-line': 0,
  1344. 'folded-linenos': [],
  1345. 'sel-line': 0,
  1346. 'sel-line-start': 0,
  1347. 'selection_end': 0,
  1348. 'selection_start': 0},
  1349. 1462256782.091],
  1350. [loc('iepirkumi/rss/database3.py'),
  1351. {'attrib-starts': [],
  1352. 'first-line': 0,
  1353. 'folded-linenos': [],
  1354. 'sel-line': 0,
  1355. 'sel-line-start': 0,
  1356. 'selection_end': 0,
  1357. 'selection_start': 0},
  1358. 1462256785.892],
  1359. [loc('database.py'),
  1360. {'attrib-starts': [],
  1361. 'first-line': 0,
  1362. 'folded-linenos': [],
  1363. 'sel-line': 0,
  1364. 'sel-line-start': 0,
  1365. 'selection_end': 0,
  1366. 'selection_start': 0},
  1367. 1462256788.361]],
  1368. 20),
  1369. 'current-loc': loc('addon.py'),
  1370. 'editor-state-list': [(loc('addon.py'),
  1371. {'attrib-starts': [],
  1372. 'first-line': 0L,
  1373. 'folded-linenos': [],
  1374. 'sel-line': 0L,
  1375. 'sel-line-start': 0L,
  1376. 'selection_end': 0L,
  1377. 'selection_start': 0L}),
  1378. (loc('addon.xml'),
  1379. {}),
  1380. (loc('changelog.md'),
  1381. {}),
  1382. (loc('plugin.video.playstream/resources/lib/sources/config.py'),
  1383. {}),
  1384. (loc('kodiswift/cli/console.py'),
  1385. {}),
  1386. (loc('resources/lib/ContentSources.py'),
  1387. {'attrib-starts': [('ContentSources',
  1388. 15),
  1389. ('ContentSources.__init__',
  1390. 19)],
  1391. 'first-line': 21L,
  1392. 'folded-linenos': [],
  1393. 'sel-line': 33L,
  1394. 'sel-line-start': 1262L,
  1395. 'selection_end': 1280L,
  1396. 'selection_start': 1278L}),
  1397. (loc('kodiswift/listitem.py'),
  1398. {}),
  1399. (loc('kodiswift/plugin.py'),
  1400. {}),
  1401. (loc('kodiswift/cli/cli.py'),
  1402. {}),
  1403. (loc('context_menu.py'),
  1404. {}),
  1405. (loc('resources/lib/sources/ustvnow.py'),
  1406. {'attrib-starts': [],
  1407. 'first-line': 0L,
  1408. 'folded-linenos': [],
  1409. 'sel-line': 0L,
  1410. 'sel-line-start': 0L,
  1411. 'selection_end': 0L,
  1412. 'selection_start': 0L}),
  1413. (loc('kodiswift/xbmcmixin.py'),
  1414. {}),
  1415. (loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'),
  1416. {}),
  1417. (loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/rlmain.py'),
  1418. {})],
  1419. 'has-focus': False,
  1420. 'locked': False},
  1421. [loc('addon.py'),
  1422. loc('addon.xml'),
  1423. loc('changelog.md'),
  1424. loc('plugin.video.playstream/resources/lib/sources/config.py'),
  1425. loc('kodiswift/cli/console.py'),
  1426. loc('resources/lib/ContentSources.py'),
  1427. loc('kodiswift/listitem.py'),
  1428. loc('kodiswift/plugin.py'),
  1429. loc('kodiswift/cli/cli.py'),
  1430. loc('context_menu.py'),
  1431. loc('resources/lib/sources/ustvnow.py'),
  1432. loc('kodiswift/xbmcmixin.py'),
  1433. loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py'),
  1434. loc('../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/rlmain.py')])),
  1435. 'open_files': [u'addon.xml',
  1436. u'changelog.md',
  1437. u'context_menu.py',
  1438. u'kodiswift/cli/cli.py',
  1439. u'kodiswift/cli/console.py',
  1440. u'kodiswift/listitem.py',
  1441. u'kodiswift/plugin.py',
  1442. u'kodiswift/xbmcmixin.py',
  1443. u'plugin.video.playstream/resources/lib/sources/config.py',
  1444. u'resources/lib/ContentSources.py',
  1445. u'../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/console/console.py',
  1446. u'../../../../Users/user/AppData/Roaming/Python/Python27/site-packages/pyreadline/rlmain.py',
  1447. u'resources/lib/sources/ustvnow.py',
  1448. u'addon.py']},
  1449. 'saved_notebook_display': None,
  1450. 'split_percents': {0: 0.4442211055276382},
  1451. 'splits': 2,
  1452. 'tab_location': 'top',
  1453. 'user_data': {}},
  1454. 'saved_notebook_display': None,
  1455. 'split_percents': {0: 0.5},
  1456. 'splits': 2,
  1457. 'tab_location': 'left',
  1458. 'user_data': {}},
  1459. 'window-alloc': (65,
  1460. 0,
  1461. 1519,
  1462. 859)}]}
  1463. guimgr.recent-documents = [loc('addon.py'),
  1464. loc('resources/lib/sources/ustvnow.py'),
  1465. loc('context_menu.py'),
  1466. loc('plugin.video.playstream/resources/lib/sources/config.py'),
  1467. loc('addon.xml'),
  1468. loc('resources/lib/ContentSources.py'),
  1469. loc('kodiswift/plugin.py'),
  1470. loc('kodiswift/listitem.py'),
  1471. loc('kodiswift/cli/console.py'),
  1472. loc('kodiswift/xbmcmixin.py'),
  1473. loc('kodiswift/cli/cli.py'),
  1474. loc('changelog.md')]
  1475. guimgr.visual-state = {loc('config.py'): {'attrib-starts': [],
  1476. 'first-line': 0,
  1477. 'folded-linenos': [],
  1478. 'sel-line': 38,
  1479. 'sel-line-start': 1110,
  1480. 'selection_end': 1110,
  1481. 'selection_start': 1110},
  1482. loc('iub.py'): {'attrib-starts': [('get_table',
  1483. 51)],
  1484. 'first-line': 0,
  1485. 'folded-linenos': [],
  1486. 'sel-line': 101,
  1487. 'sel-line-start': 3652,
  1488. 'selection_end': 3685,
  1489. 'selection_start': 3669},
  1490. loc('iubx.py'): {'attrib-starts': [('parse_arguments',
  1491. 25)],
  1492. 'first-line': 0,
  1493. 'folded-linenos': [],
  1494. 'sel-line': 32,
  1495. 'sel-line-start': 1289,
  1496. 'selection_end': 1335,
  1497. 'selection_start': 1335},
  1498. loc('iubx0.py'): {'attrib-starts': [('main',
  1499. 40)],
  1500. 'first-line': 349,
  1501. 'folded-linenos': [],
  1502. 'sel-line': 84,
  1503. 'sel-line-start': 3404,
  1504. 'selection_end': 3450,
  1505. 'selection_start': 3449},
  1506. loc('kodiswift/cli/app.py'): {'attrib-starts': [('onc'\
  1507. 'e',
  1508. 153)],
  1509. 'first-line': 157L,
  1510. 'folded-linenos': [],
  1511. 'sel-line': 168L,
  1512. 'sel-line-start': 5238L,
  1513. 'selection_end': 5238L,
  1514. 'selection_start': 5238L},
  1515. loc('kodiswift2/listitem.py'): {'attrib-starts': [('L'\
  1516. 'istItem',
  1517. 20),
  1518. ('ListItem.from_dict',
  1519. 277)],
  1520. 'first-line': 265L,
  1521. 'folded-linenos': [],
  1522. 'sel-line': 277L,
  1523. 'sel-line-start': 8224L,
  1524. 'selection_end': 8237L,
  1525. 'selection_start': 8232L},
  1526. loc('plugin.video.playstream/kodiswift/constants.py'): {'a'\
  1527. 'ttrib-starts': [],
  1528. 'first-line': 0L,
  1529. 'folded-linenos': [],
  1530. 'sel-line': 14L,
  1531. 'sel-line-start': 313L,
  1532. 'selection_end': 313L,
  1533. 'selection_start': 313L},
  1534. loc('plugin.video.playstream/resources/lib/ContentSources.py'): {'a'\
  1535. 'ttrib-starts': [('ContentSources',
  1536. 15),
  1537. ('ContentSources.get_content',
  1538. 59)],
  1539. 'first-line': 48L,
  1540. 'folded-linenos': [],
  1541. 'sel-line': 61L,
  1542. 'sel-line-start': 2487L,
  1543. 'selection_end': 2521L,
  1544. 'selection_start': 2521L},
  1545. loc('plugin.video.playstream/resources/lib/resolvers/hdgo.py'): {'a'\
  1546. 'ttrib-starts': [],
  1547. 'first-line': 19L,
  1548. 'folded-linenos': [],
  1549. 'sel-line': 31L,
  1550. 'sel-line-start': 1047L,
  1551. 'selection_end': 1062L,
  1552. 'selection_start': 1047L},
  1553. loc('plugin.video.playstream/resources/lib/resolvers/hqqresolver.py'): {'a'\
  1554. 'ttrib-starts': [],
  1555. 'first-line': 12L,
  1556. 'folded-linenos': [],
  1557. 'sel-line': 27L,
  1558. 'sel-line-start': 761L,
  1559. 'selection_end': 827L,
  1560. 'selection_start': 827L},
  1561. loc('plugin.video.playstream/resources/lib/resolvers/kapnob.py'): {'a'\
  1562. 'ttrib-starts': [],
  1563. 'first-line': 17L,
  1564. 'folded-linenos': [],
  1565. 'sel-line': 32L,
  1566. 'sel-line-start': 1120L,
  1567. 'selection_end': 1186L,
  1568. 'selection_start': 1186L},
  1569. loc('plugin.video.playstream/resources/lib/sources/SourceBase.py'): {'a'\
  1570. 'ttrib-starts': [],
  1571. 'first-line': 0L,
  1572. 'folded-linenos': [],
  1573. 'sel-line': 10L,
  1574. 'sel-line-start': 336L,
  1575. 'selection_end': 351L,
  1576. 'selection_start': 336L},
  1577. loc('plugin.video.playstream/resources/lib/sources/euronews.py'): {'a'\
  1578. 'ttrib-starts': [],
  1579. 'first-line': 0L,
  1580. 'folded-linenos': [],
  1581. 'sel-line': 0L,
  1582. 'sel-line-start': 0L,
  1583. 'selection_end': 0L,
  1584. 'selection_start': 0L},
  1585. loc('resources/lib/ContentSources.py'): {'attrib-star'\
  1586. 'ts': [('ContentSources',
  1587. 15),
  1588. ('ContentSources.__init__',
  1589. 19)],
  1590. 'first-line': 21L,
  1591. 'folded-linenos': [],
  1592. 'sel-line': 33L,
  1593. 'sel-line-start': 1262L,
  1594. 'selection_end': 1280L,
  1595. 'selection_start': 1278L},
  1596. loc('resources/lib/resolvers/hdgo.py'): {'attrib-star'\
  1597. 'ts': [],
  1598. 'first-line': 18L,
  1599. 'folded-linenos': [],
  1600. 'sel-line': 33L,
  1601. 'sel-line-start': 1135L,
  1602. 'selection_end': 1201L,
  1603. 'selection_start': 1201L},
  1604. loc('resources/lib/resolvers/hqqresolver.py'): {'attr'\
  1605. 'ib-starts': [],
  1606. 'first-line': 12L,
  1607. 'folded-linenos': [],
  1608. 'sel-line': 27L,
  1609. 'sel-line-start': 761L,
  1610. 'selection_end': 827L,
  1611. 'selection_start': 827L},
  1612. loc('resources/lib/resolvers/kapnob.py'): {'attrib-st'\
  1613. 'arts': [],
  1614. 'first-line': 18L,
  1615. 'folded-linenos': [],
  1616. 'sel-line': 30L,
  1617. 'sel-line-start': 1032L,
  1618. 'selection_end': 1047L,
  1619. 'selection_start': 1032L},
  1620. loc('resources/lib/resolvers/kodik.py'): {'attrib-sta'\
  1621. 'rts': [],
  1622. 'first-line': 17L,
  1623. 'folded-linenos': [],
  1624. 'sel-line': 32L,
  1625. 'sel-line-start': 1120L,
  1626. 'selection_end': 1186L,
  1627. 'selection_start': 1186L},
  1628. loc('resources/lib/resolvers/openload3.py'): {'attrib'\
  1629. '-starts': [],
  1630. 'first-line': 18L,
  1631. 'folded-linenos': [],
  1632. 'sel-line': 33L,
  1633. 'sel-line-start': 1141L,
  1634. 'selection_end': 1207L,
  1635. 'selection_start': 1207L},
  1636. loc('resources/lib/resolvers0/hdgo.py'): {'attrib-sta'\
  1637. 'rts': [],
  1638. 'first-line': 19L,
  1639. 'folded-linenos': [],
  1640. 'sel-line': 31L,
  1641. 'sel-line-start': 1047L,
  1642. 'selection_end': 1062L,
  1643. 'selection_start': 1047L},
  1644. loc('resources/lib/sources/SourceBase.py'): {'attrib-'\
  1645. 'starts': [],
  1646. 'first-line': 0L,
  1647. 'folded-linenos': [],
  1648. 'sel-line': 10L,
  1649. 'sel-line-start': 336L,
  1650. 'selection_end': 351L,
  1651. 'selection_start': 336L},
  1652. loc('resources/lib/sources/config.py'): {'attrib-star'\
  1653. 'ts': [('Source',
  1654. 12)],
  1655. 'first-line': 1L,
  1656. 'folded-linenos': [],
  1657. 'sel-line': 12L,
  1658. 'sel-line-start': 411L,
  1659. 'selection_end': 423L,
  1660. 'selection_start': 417L},
  1661. loc('resources/lib/sources/filmas.py'): {'attrib-star'\
  1662. 'ts': [],
  1663. 'first-line': 5L,
  1664. 'folded-linenos': [],
  1665. 'sel-line': 17L,
  1666. 'sel-line-start': 523L,
  1667. 'selection_end': 538L,
  1668. 'selection_start': 523L},
  1669. loc('resources/lib/sources/iplayer.py'): {'attrib-sta'\
  1670. 'rts': [('Source',
  1671. 24),
  1672. ('Source._http_request',
  1673. 464)],
  1674. 'first-line': 453L,
  1675. 'folded-linenos': [],
  1676. 'sel-line': 468L,
  1677. 'sel-line-start': 22190L,
  1678. 'selection_end': 22264L,
  1679. 'selection_start': 22264L},
  1680. loc('resources/lib/sources/tvdom.py'): {'attrib-start'\
  1681. 's': [('Source',
  1682. 25),
  1683. ('Source.login',
  1684. 43)],
  1685. 'first-line': 45L,
  1686. 'folded-linenos': [],
  1687. 'sel-line': 60L,
  1688. 'sel-line-start': 2253L,
  1689. 'selection_end': 2327L,
  1690. 'selection_start': 2327L},
  1691. loc('resources/lib/sources/viaplay.py'): {'attrib-sta'\
  1692. 'rts': [],
  1693. 'first-line': 0L,
  1694. 'folded-linenos': [],
  1695. 'sel-line': 14L,
  1696. 'sel-line-start': 432L,
  1697. 'selection_end': 498L,
  1698. 'selection_start': 498L},
  1699. loc('resources/lib/util.py'): {'attrib-starts': [],
  1700. 'first-line': 0L,
  1701. 'folded-linenos': [],
  1702. 'sel-line': 0L,
  1703. 'sel-line-start': 0L,
  1704. 'selection_end': 0L,
  1705. 'selection_start': 0L},
  1706. loc('run.py'): {'attrib-starts': [],
  1707. 'first-line': 0L,
  1708. 'folded-linenos': [],
  1709. 'sel-line': 8L,
  1710. 'sel-line-start': 252L,
  1711. 'selection_end': 252L,
  1712. 'selection_start': 252L},
  1713. loc('../untitled-1.py'): {'attrib-starts': [],
  1714. 'first-line': 0,
  1715. 'folded-linenos': [],
  1716. 'sel-line': 0,
  1717. 'sel-line-start': 0,
  1718. 'selection_end': 1,
  1719. 'selection_start': 1},
  1720. loc('../xbmcswift2/plugin.py'): {'attrib-starts': [],
  1721. 'first-line': 0L,
  1722. 'folded-linenos': [],
  1723. 'sel-line': 0L,
  1724. 'sel-line-start': 0L,
  1725. 'selection_end': 0L,
  1726. 'selection_start': 0L},
  1727. loc('../xbmcswift2/request.py'): {'attrib-starts': [],
  1728. 'first-line': 0L,
  1729. 'folded-linenos': [],
  1730. 'sel-line': 0L,
  1731. 'sel-line-start': 0L,
  1732. 'selection_end': 0L,
  1733. 'selection_start': 0L},
  1734. loc('../../../Python25/Lib/BeautifulSoup.py'): {'attr'\
  1735. 'ib-starts': [('NavigableString',
  1736. 354),
  1737. ('NavigableString.__getattr__',
  1738. 356)],
  1739. 'first-line': 337,
  1740. 'sel-line': 363,
  1741. 'sel-line-start': 13868,
  1742. 'selection_end': 13868,
  1743. 'selection_start': 13868},
  1744. loc('../../../Python25/Lib/HTMLParser.py'): {'attrib-'\
  1745. 'starts': [('HTMLParser',
  1746. 66),
  1747. ('HTMLParser.check_for_whole_start_tag',
  1748. 274)],
  1749. 'first-line': 284,
  1750. 'folded-linenos': [],
  1751. 'sel-line': 301,
  1752. 'sel-line-start': 10981,
  1753. 'selection_end': 11013,
  1754. 'selection_start': 11013},
  1755. loc('../../../Python25/Lib/VideoCapture.py'): {'attri'\
  1756. 'b-starts': [],
  1757. 'first-line': 0,
  1758. 'folded-linenos': [],
  1759. 'sel-line': 7,
  1760. 'sel-line-start': 85,
  1761. 'selection_end': 128,
  1762. 'selection_start': 85},
  1763. loc('../../../Python25/Lib/encodings/cp1257.py'): {'a'\
  1764. 'ttrib-starts': [('Codec',
  1765. 8),
  1766. ('Codec.encode',
  1767. 10)],
  1768. 'first-line': 0,
  1769. 'folded-linenos': [],
  1770. 'sel-line': 10,
  1771. 'sel-line-start': 197,
  1772. 'selection_end': 197,
  1773. 'selection_start': 197},
  1774. loc('../../../Python25/Lib/re.py'): {'attrib-starts': [],
  1775. 'first-line': 0,
  1776. 'folded-linenos': [],
  1777. 'sel-line': 0,
  1778. 'sel-line-start': 0,
  1779. 'selection_end': 0,
  1780. 'selection_start': 0},
  1781. loc('../../../Python25/Lib/site-packages/BeautifulSoup.py'): {'a'\
  1782. 'ttrib-starts': [('SoupStrainer',
  1783. 817),
  1784. ('SoupStrainer._matches',
  1785. 904)],
  1786. 'first-line': 907,
  1787. 'folded-linenos': [],
  1788. 'sel-line': 928,
  1789. 'sel-line-start': 35455,
  1790. 'selection_end': 35455,
  1791. 'selection_start': 35455},
  1792. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'a'\
  1793. 'ttrib-starts': [],
  1794. 'first-line': 26,
  1795. 'folded-linenos': [],
  1796. 'sel-line': 44,
  1797. 'sel-line-start': 1253,
  1798. 'selection_end': 1253,
  1799. 'selection_start': 1253},
  1800. loc('../../../Python25/Lib/site-packages/PIL/__init__.py'): {'a'\
  1801. 'ttrib-starts': [],
  1802. 'first-line': 0,
  1803. 'folded-linenos': [],
  1804. 'sel-line': 0,
  1805. 'sel-line-start': 0,
  1806. 'selection_end': 0,
  1807. 'selection_start': 0},
  1808. loc('../../../Python25/Lib/site-packages/argparse.py'): {'a'\
  1809. 'ttrib-starts': [('_ActionsContainer',
  1810. 926),
  1811. ('_ActionsContainer._handle_conflict_error',
  1812. 1132)],
  1813. 'first-line': 1106,
  1814. 'folded-linenos': [],
  1815. 'sel-line': 1137,
  1816. 'sel-line-start': 41374,
  1817. 'selection_end': 41374,
  1818. 'selection_start': 41374},
  1819. loc('../../../Python25/Lib/site-packages/win32com/client/__init__.py'): {'a'\
  1820. 'ttrib-starts': [('DispatchBaseClass',
  1821. 410),
  1822. ('DispatchBaseClass._ApplyTypes_',
  1823. 443)],
  1824. 'first-line': 425,
  1825. 'folded-linenos': [],
  1826. 'sel-line': 447,
  1827. 'sel-line-start': 19318,
  1828. 'selection_end': 19318,
  1829. 'selection_start': 19318},
  1830. loc('../../../Python25/Lib/site-packages/win32com/client/dynamic.py'): {'a'\
  1831. 'ttrib-starts': [('CDispatch',
  1832. 151),
  1833. ('CDispatch.__getattr__',
  1834. 421)],
  1835. 'first-line': 489,
  1836. 'folded-linenos': [],
  1837. 'sel-line': 494,
  1838. 'sel-line-start': 19030,
  1839. 'selection_end': 19030,
  1840. 'selection_start': 19030},
  1841. loc('../../../Python25/Lib/site-packages/win32com/gen_py/00020813-0000-0000-C000-000000000046x0x1x6.py'): {'a'\
  1842. 'ttrib-starts': [('Range',
  1843. 26378),
  1844. ('Range.__call__',
  1845. 27016)],
  1846. 'first-line': 26996,
  1847. 'folded-linenos': [],
  1848. 'sel-line': 27018,
  1849. 'sel-line-start': 1285165,
  1850. 'selection_end': 1285165,
  1851. 'selection_start': 1285165},
  1852. loc('../../../Python25/Lib/socket.py'): {'attrib-star'\
  1853. 'ts': [('_fileobject',
  1854. 195),
  1855. ('_fileobject.readline',
  1856. 320)],
  1857. 'first-line': 301,
  1858. 'sel-line': 330,
  1859. 'sel-line-start': 10707,
  1860. 'selection_end': 10707,
  1861. 'selection_start': 10707},
  1862. loc('../../../Python25/Lib/sre_parse.py'): {'attrib-s'\
  1863. 'tarts': [('_parse',
  1864. 384)],
  1865. 'first-line': 375,
  1866. 'folded-linenos': [],
  1867. 'sel-line': 406,
  1868. 'sel-line-start': 12403,
  1869. 'selection_end': 12403,
  1870. 'selection_start': 12403},
  1871. loc('../../../../Python27/Lib/site-packages/xbmcswift2/cli/app.py'): {'a'\
  1872. 'ttrib-starts': [('once',
  1873. 146)],
  1874. 'first-line': 153L,
  1875. 'folded-linenos': [],
  1876. 'sel-line': 158L,
  1877. 'sel-line-start': 4898L,
  1878. 'selection_end': 4898L,
  1879. 'selection_start': 4898L},
  1880. loc('../../../../Python27/Lib/site-packages/xbmcswift2/mockxbmc/xbmcaddon.py'): {'a'\
  1881. 'ttrib-starts': [],
  1882. 'first-line': 0L,
  1883. 'folded-linenos': [],
  1884. 'sel-line': 0L,
  1885. 'sel-line-start': 0L,
  1886. 'selection_end': 0L,
  1887. 'selection_start': 0L},
  1888. loc('../../../../Python27/Scripts/xbmcswift2-script.py'): {'a'\
  1889. 'ttrib-starts': [],
  1890. 'first-line': 0,
  1891. 'folded-linenos': [],
  1892. 'sel-line': 1,
  1893. 'sel-line-start': 29,
  1894. 'selection_end': 36,
  1895. 'selection_start': 36},
  1896. loc('../../../../Python27/lib/genericpath.py'): {'att'\
  1897. 'rib-starts': [('_splitext',
  1898. 92)],
  1899. 'first-line': 99L,
  1900. 'folded-linenos': [],
  1901. 'sel-line': 109L,
  1902. 'sel-line-start': 3211L,
  1903. 'selection_end': 3211L,
  1904. 'selection_start': 3211L},
  1905. loc('../../../../Python27/lib/ntpath.py'): {'attrib-s'\
  1906. 'tarts': [('splitext',
  1907. 198)],
  1908. 'first-line': 182L,
  1909. 'folded-linenos': [],
  1910. 'sel-line': 199L,
  1911. 'sel-line-start': 7089L,
  1912. 'selection_end': 7089L,
  1913. 'selection_start': 7089L},
  1914. loc('../../../../Python27/lib/site-packages/kodiswift/listitem.py'): {'a'\
  1915. 'ttrib-starts': [('ListItem',
  1916. 20),
  1917. ('ListItem.from_dict',
  1918. 277)],
  1919. 'first-line': 284L,
  1920. 'folded-linenos': [],
  1921. 'sel-line': 289L,
  1922. 'sel-line-start': 8905L,
  1923. 'selection_end': 8905L,
  1924. 'selection_start': 8905L},
  1925. loc('../../../../Python27/lib/site-packages/kodiswift/xbmcmixin.py'): {'a'\
  1926. 'ttrib-starts': [('XBMCMixin',
  1927. 21),
  1928. ('XBMCMixin.keyboard',
  1929. 277)],
  1930. 'first-line': 271L,
  1931. 'folded-linenos': [],
  1932. 'sel-line': 277L,
  1933. 'sel-line-start': 10611L,
  1934. 'selection_end': 10627L,
  1935. 'selection_start': 10619L},
  1936. loc('../../../../Python27/lib/site-packages/xbmcswift2/listitem.py'): {'a'\
  1937. 'ttrib-starts': [('ListItem',
  1938. 13),
  1939. ('ListItem.get_played',
  1940. 170)],
  1941. 'first-line': 164L,
  1942. 'folded-linenos': [],
  1943. 'sel-line': 172L,
  1944. 'sel-line-start': 5552L,
  1945. 'selection_end': 5552L,
  1946. 'selection_start': 5552L},
  1947. loc('../../../../Python27/lib/site-packages/xbmcswift2/plugin.py'): {'a'\
  1948. 'ttrib-starts': [],
  1949. 'first-line': 0L,
  1950. 'folded-linenos': [],
  1951. 'sel-line': 0L,
  1952. 'sel-line-start': 0L,
  1953. 'selection_end': 0L,
  1954. 'selection_start': 0L},
  1955. loc('x-wingide-zip://C:/Python25/Lib/site-packages/argparse-1.1-py2.5.egg//argparse.py'): {'a'\
  1956. 'ttrib-starts': [('_ActionsContainer',
  1957. 1187),
  1958. ('_ActionsContainer.add_argument',
  1959. 1270)],
  1960. 'first-line': 1271,
  1961. 'folded-linenos': [],
  1962. 'sel-line': 1283,
  1963. 'sel-line-start': 45405,
  1964. 'selection_end': 45405,
  1965. 'selection_start': 45405},
  1966. loc('x-wingide-zip://C:/Python25/Lib/site-packages/beautifulsoup-3.1.0.1-py2.5.egg//BeautifulSoup.py'): {'a'\
  1967. 'ttrib-starts': [('BeautifulSoup',
  1968. 1446),
  1969. ('BeautifulSoup.__init__',
  1970. 1494)],
  1971. 'first-line': 1481,
  1972. 'folded-linenos': [],
  1973. 'sel-line': 1498,
  1974. 'sel-line-start': 57438,
  1975. 'selection_end': 57438,
  1976. 'selection_start': 57438}}
  1977. proj.build-cmd = {None: ('default',
  1978. None)}
  1979. proj.default-encoding = 'utf_8'
  1980. proj.env-vars = {None: ('default',
  1981. [u''])}
  1982. proj.matplotlib-event-loop = False
  1983. proj.pypath = {None: ('default',
  1984. [u'c:\\Data\\Programming\\Kodi',
  1985. u''])}
  1986. proj.template-debugging = False
  1987. proj.vcs-system-config = ('proj',
  1988. {'bzr': {'versioncontrol.bzr.active': 'active-if-p'\
  1989. 'roject-dir',
  1990. 'versioncontrol.bzr.executable': u'bzr'},
  1991. 'cvs': {'versioncontrol.cvs.active': 'active-if-p'\
  1992. 'roject-dir',
  1993. 'versioncontrol.cvs.executable': u'cvs',
  1994. 'versioncontrol.cvs.extra-global-args': '-'\
  1995. 'z3'},
  1996. 'git': {'versioncontrol.git.active': 'active-if-p'\
  1997. 'roject-dir',
  1998. 'versioncontrol.git.executable': u'git',
  1999. 'versioncontrol.git.use-porcelain': True},
  2000. 'hg': {'versioncontrol.hg.active': 'active-if-pro'\
  2001. 'ject-dir',
  2002. 'versioncontrol.hg.dont-find-unregistered': True,
  2003. 'versioncontrol.hg.executable': u'hg',
  2004. 'versioncontrol.hg.extra-global-args': '--'\
  2005. 'encoding=utf8'},
  2006. 'perforce': {'versioncontrol.perforce.active': 'n'\
  2007. 'ot-active',
  2008. 'versioncontrol.perforce.dont-find-unregistered': True,
  2009. 'versioncontrol.perforce.executable': u'p4',
  2010. 'versioncontrol.perforce.extra-global-args': ''},
  2011. 'svn': {'versioncontrol.svn.active': 'active-if-p'\
  2012. 'roject-dir',
  2013. 'versioncontrol.svn.executable': u'svn',
  2014. 'versioncontrol.svn.extra-global-args': '',
  2015. 'versioncontrol.svn.svnadmin-executable': u'svnadmin'}})
  2016. search.replace-history = [u'ustvnow',
  2017. u'unicode(e)']
  2018. search.search-history = [u'traceback',
  2019. u'self.r',
  2020. u'play_video',
  2021. u'excep',
  2022. u'tvdom',
  2023. u'str(e)',
  2024. u'dialo',
  2025. u'notify',
  2026. u'started',
  2027. u'player',
  2028. u'plugin',
  2029. u'CLI_MODE',
  2030. u'CLI_',
  2031. u'setting',
  2032. u'get_setti',
  2033. u'settin',
  2034. u'load_addon_settings',
  2035. u'setConte',
  2036. u'mixin',
  2037. u'notif']
  2038. testing.stored-results = (1,
  2039. [],
  2040. {})