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

project.wpr 93KB

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