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

project.wpr 86KB

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