Python module (submodule repositary), which provides content (video streams) from various online stream sources to corresponding Enigma2, Kodi, Plex plugins

project.wpr 86KB

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