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

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