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

project.wpr 80KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  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> #1'): {10: (0,
  190. None,
  191. 1,
  192. 0)},
  193. loc('unknown:<untitled> #2'): {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> #5'): {'column-widths': [1.0],
  823. 'expanded-nodes': [],
  824. 'selected-nodes': [],
  825. 'top-node': None},
  826. loc('unknown:<untitled> #6'): {'expanded-nodes': [],
  827. 'selected-nodes': [],
  828. 'top-node': None},
  829. loc('unknown:<untitled> #4'): {'expanded-nodes': [],
  830. 'selected-nodes': [],
  831. 'top-node': None},
  832. loc('unknown:<untitled> #3'): {'column-widths': [1.0],
  833. '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': [4,
  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'filmix.co',
  895. 'fReverse': False,
  896. 'fSearchText': u'filmix.me',
  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': True}}),
  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/ltc.py'),
  1025. {'attrib-starts': [('Source',
  1026. 26),
  1027. ('Source.get_content',
  1028. 78)],
  1029. 'first-line': 174L,
  1030. 'folded-linenos': [108L,
  1031. 131L,
  1032. 160L,
  1033. 220L,
  1034. 231L,
  1035. 257L,
  1036. 276L,
  1037. 295L,
  1038. 319L,
  1039. 349L,
  1040. 350L,
  1041. 367L,
  1042. 398L,
  1043. 411L,
  1044. 525L],
  1045. 'sel-line': 184L,
  1046. 'sel-line-start': 8707L,
  1047. 'selection_end': 8757L,
  1048. 'selection_start': 8754L,
  1049. 'zoom': 0L},
  1050. 1524827996.646],
  1051. [loc('sources/ltc.py'),
  1052. {'attrib-starts': [('Source',
  1053. 26),
  1054. ('Source.__init__',
  1055. 28)],
  1056. 'first-line': 31L,
  1057. 'folded-linenos': [108L,
  1058. 131L,
  1059. 160L,
  1060. 220L,
  1061. 231L,
  1062. 257L,
  1063. 276L,
  1064. 295L,
  1065. 319L,
  1066. 349L,
  1067. 350L,
  1068. 367L,
  1069. 398L,
  1070. 411L,
  1071. 525L],
  1072. 'sel-line': 36L,
  1073. 'sel-line-start': 1390L,
  1074. 'selection_end': 1451L,
  1075. 'selection_start': 1448L,
  1076. 'zoom': 0L},
  1077. 1524828002.53],
  1078. [loc('sources/ltc.py'),
  1079. {'attrib-starts': [('Source',
  1080. 26),
  1081. ('Source.get_content',
  1082. 78)],
  1083. 'first-line': 92L,
  1084. 'folded-linenos': [108L,
  1085. 131L,
  1086. 160L,
  1087. 220L,
  1088. 231L,
  1089. 257L,
  1090. 276L,
  1091. 295L,
  1092. 319L,
  1093. 349L,
  1094. 350L,
  1095. 367L,
  1096. 398L,
  1097. 411L,
  1098. 525L],
  1099. 'sel-line': 102L,
  1100. 'sel-line-start': 4467L,
  1101. 'selection_end': 4494L,
  1102. 'selection_start': 4491L,
  1103. 'zoom': 0L},
  1104. 1524828004.058],
  1105. [loc('sources/ltc.py'),
  1106. {'attrib-starts': [('Source',
  1107. 26),
  1108. ('Source.__init__',
  1109. 28)],
  1110. 'first-line': 31L,
  1111. 'folded-linenos': [108L,
  1112. 131L,
  1113. 160L,
  1114. 220L,
  1115. 231L,
  1116. 257L,
  1117. 276L,
  1118. 295L,
  1119. 319L,
  1120. 349L,
  1121. 350L,
  1122. 367L,
  1123. 398L,
  1124. 411L,
  1125. 525L],
  1126. 'sel-line': 36L,
  1127. 'sel-line-start': 1390L,
  1128. 'selection_end': 1451L,
  1129. 'selection_start': 1448L,
  1130. 'zoom': 0L},
  1131. 1524828020.442],
  1132. [loc('sources/ltc.py'),
  1133. {'attrib-starts': [('Source',
  1134. 26),
  1135. ('Source.get_streams',
  1136. 549)],
  1137. 'first-line': 555L,
  1138. 'folded-linenos': [108L,
  1139. 131L,
  1140. 160L,
  1141. 220L,
  1142. 231L,
  1143. 257L,
  1144. 276L,
  1145. 295L,
  1146. 319L,
  1147. 349L,
  1148. 350L,
  1149. 367L,
  1150. 398L,
  1151. 411L,
  1152. 525L],
  1153. 'sel-line': 564L,
  1154. 'sel-line-start': 33428L,
  1155. 'selection_end': 33428L,
  1156. 'selection_start': 33428L,
  1157. 'zoom': 0L},
  1158. 1526594085.844],
  1159. [loc('sources/filmix.py'),
  1160. {'attrib-starts': [('Source',
  1161. 31),
  1162. ('Source.get_streams',
  1163. 263)],
  1164. 'first-line': 2L,
  1165. 'folded-linenos': [],
  1166. 'sel-line': 288L,
  1167. 'sel-line-start': 12733L,
  1168. 'selection_end': 12813L,
  1169. 'selection_start': 12813L,
  1170. 'zoom': 0L},
  1171. 1526594099.017],
  1172. [loc('sources/filmix.py'),
  1173. {'attrib-starts': [('Source',
  1174. 31),
  1175. ('Source.get_movie_info',
  1176. 355)],
  1177. 'first-line': 354L,
  1178. 'folded-linenos': [],
  1179. 'sel-line': 362L,
  1180. 'sel-line-start': 16151L,
  1181. 'selection_end': 16178L,
  1182. 'selection_start': 16172L,
  1183. 'zoom': 0L},
  1184. 1526594100.287],
  1185. [loc('sources/filmix.py'),
  1186. {'attrib-starts': [('Source',
  1187. 31),
  1188. ('Source.get_movie_info',
  1189. 355)],
  1190. 'first-line': 354L,
  1191. 'folded-linenos': [],
  1192. 'sel-line': 362L,
  1193. 'sel-line-start': 16151L,
  1194. 'selection_end': 16181L,
  1195. 'selection_start': 16181L,
  1196. 'zoom': 0L},
  1197. 1526594111.402],
  1198. [loc('sources/filmix.py'),
  1199. {'attrib-starts': [('Source',
  1200. 31),
  1201. ('Source.get_movie_info',
  1202. 355)],
  1203. 'first-line': 354L,
  1204. 'folded-linenos': [],
  1205. 'sel-line': 362L,
  1206. 'sel-line-start': 16151L,
  1207. 'selection_end': 16181L,
  1208. 'selection_start': 16172L,
  1209. 'zoom': 0L},
  1210. 1526594111.565],
  1211. [loc('sources/filmix.py'),
  1212. {'attrib-starts': [('Source',
  1213. 31),
  1214. ('Source.get_movie_info',
  1215. 355)],
  1216. 'first-line': 358L,
  1217. 'folded-linenos': [],
  1218. 'sel-line': 366L,
  1219. 'sel-line-start': 16279L,
  1220. 'selection_end': 16319L,
  1221. 'selection_start': 16310L,
  1222. 'zoom': 0L},
  1223. 1526594114.253],
  1224. [loc('sources/filmix.py'),
  1225. {'attrib-starts': [('Source',
  1226. 31),
  1227. ('Source.__init__',
  1228. 33)],
  1229. 'first-line': 30L,
  1230. 'folded-linenos': [],
  1231. 'sel-line': 35L,
  1232. 'sel-line-start': 941L,
  1233. 'selection_end': 972L,
  1234. 'selection_start': 972L,
  1235. 'zoom': 0L},
  1236. 1526594119.161],
  1237. [loc('sources/filmix.py'),
  1238. {'attrib-starts': [('Source',
  1239. 31),
  1240. ('Source.__init__',
  1241. 33)],
  1242. 'first-line': 30L,
  1243. 'folded-linenos': [],
  1244. 'sel-line': 35L,
  1245. 'sel-line-start': 941L,
  1246. 'selection_end': 972L,
  1247. 'selection_start': 963L,
  1248. 'zoom': 0L},
  1249. 1526594119.327],
  1250. [loc('sources/filmix.py'),
  1251. {'attrib-starts': [('Source',
  1252. 31),
  1253. ('Source.__init__',
  1254. 33)],
  1255. 'first-line': 30L,
  1256. 'folded-linenos': [],
  1257. 'sel-line': 37L,
  1258. 'sel-line-start': 1008L,
  1259. 'selection_end': 1038L,
  1260. 'selection_start': 1038L,
  1261. 'zoom': 0L},
  1262. 1526594125.384],
  1263. [loc('sources/filmix.py'),
  1264. {'attrib-starts': [('Source',
  1265. 31),
  1266. ('Source.__init__',
  1267. 33)],
  1268. 'first-line': 30L,
  1269. 'folded-linenos': [],
  1270. 'sel-line': 37L,
  1271. 'sel-line-start': 1008L,
  1272. 'selection_end': 1038L,
  1273. 'selection_start': 1029L,
  1274. 'zoom': 0L},
  1275. 1526594125.557],
  1276. [loc('sources/filmix.py'),
  1277. {'attrib-starts': [('Source',
  1278. 31),
  1279. ('Source.__init__',
  1280. 33)],
  1281. 'first-line': 30L,
  1282. 'folded-linenos': [],
  1283. 'sel-line': 40L,
  1284. 'sel-line-start': 1133L,
  1285. 'selection_end': 1148L,
  1286. 'selection_start': 1139L,
  1287. 'zoom': 0L},
  1288. 1526594128.471],
  1289. [loc('sources/filmix.py'),
  1290. {'attrib-starts': [('Source',
  1291. 31),
  1292. ('Source.__init__',
  1293. 33)],
  1294. 'first-line': 40L,
  1295. 'folded-linenos': [],
  1296. 'sel-line': 50L,
  1297. 'sel-line-start': 1591L,
  1298. 'selection_end': 1628L,
  1299. 'selection_start': 1619L,
  1300. 'zoom': 0L},
  1301. 1526594130.412],
  1302. [loc('sources/filmix.py'),
  1303. {'attrib-starts': [('Source',
  1304. 31),
  1305. ('Source.get_content',
  1306. 56)],
  1307. 'first-line': 68L,
  1308. 'folded-linenos': [],
  1309. 'sel-line': 78L,
  1310. 'sel-line-start': 2577L,
  1311. 'selection_end': 2613L,
  1312. 'selection_start': 2613L,
  1313. 'zoom': 0L},
  1314. 1526594132.495],
  1315. [loc('sources/filmix.py'),
  1316. {'attrib-starts': [('Source',
  1317. 31),
  1318. ('Source.get_content',
  1319. 56)],
  1320. 'first-line': 68L,
  1321. 'folded-linenos': [],
  1322. 'sel-line': 78L,
  1323. 'sel-line-start': 2577L,
  1324. 'selection_end': 2613L,
  1325. 'selection_start': 2604L,
  1326. 'zoom': 0L},
  1327. 1526594132.675],
  1328. [loc('sources/filmix.py'),
  1329. {'attrib-starts': [('Source',
  1330. 31),
  1331. ('Source.process_list',
  1332. 191)],
  1333. 'first-line': 184L,
  1334. 'folded-linenos': [],
  1335. 'sel-line': 194L,
  1336. 'sel-line-start': 8440L,
  1337. 'selection_end': 8518L,
  1338. 'selection_start': 8509L,
  1339. 'zoom': 0L},
  1340. 1526594135.335],
  1341. [loc('sources/filmix.py'),
  1342. {'attrib-starts': [('Source',
  1343. 31),
  1344. ('Source.process_list',
  1345. 191)],
  1346. 'first-line': 188L,
  1347. 'folded-linenos': [],
  1348. 'sel-line': 196L,
  1349. 'sel-line-start': 8666L,
  1350. 'selection_end': 8759L,
  1351. 'selection_start': 8759L,
  1352. 'zoom': 0L},
  1353. 1526594136.652]],
  1354. 20),
  1355. 'current-loc': loc('sources/filmix.py'),
  1356. 'editor-state-list': [(loc('run.py'),
  1357. {'attrib-starts': [('Main',
  1358. 22),
  1359. ('Main.list_action',
  1360. 106)],
  1361. 'first-line': 120L,
  1362. 'folded-linenos': [],
  1363. 'sel-line': 121L,
  1364. 'sel-line-start': 4809L,
  1365. 'selection_end': 4832L,
  1366. 'selection_start': 4832L,
  1367. 'zoom': 0L}),
  1368. (loc('util.py'),
  1369. {'attrib-starts': [('unescape',
  1370. 538)],
  1371. 'first-line': 537L,
  1372. 'folded-linenos': [],
  1373. 'sel-line': 540L,
  1374. 'sel-line-start': 16550L,
  1375. 'selection_end': 16598L,
  1376. 'selection_start': 16598L,
  1377. 'zoom': 0L}),
  1378. (loc('ContentSources.py'),
  1379. {'attrib-starts': [('ContentSources',
  1380. 16),
  1381. ('ContentSources.get_streams',
  1382. 96)],
  1383. 'first-line': 103L,
  1384. 'folded-linenos': [],
  1385. 'sel-line': 113L,
  1386. 'sel-line-start': 4784L,
  1387. 'selection_end': 4784L,
  1388. 'selection_start': 4784L,
  1389. 'zoom': 0L}),
  1390. (loc('sources/ltc.py'),
  1391. {'attrib-starts': [('Source',
  1392. 26),
  1393. ('Source.get_streams',
  1394. 549)],
  1395. 'first-line': 555L,
  1396. 'folded-linenos': [108L,
  1397. 131L,
  1398. 160L,
  1399. 220L,
  1400. 231L,
  1401. 257L,
  1402. 276L,
  1403. 295L,
  1404. 319L,
  1405. 349L,
  1406. 350L,
  1407. 367L,
  1408. 398L,
  1409. 411L,
  1410. 525L],
  1411. 'sel-line': 564L,
  1412. 'sel-line-start': 33428L,
  1413. 'selection_end': 33428L,
  1414. 'selection_start': 33428L,
  1415. 'zoom': 0L}),
  1416. (loc('sources/replay.py'),
  1417. {'attrib-starts': [('Source',
  1418. 31),
  1419. ('Source.get_content',
  1420. 42)],
  1421. 'first-line': 285L,
  1422. 'folded-linenos': [],
  1423. 'sel-line': 298L,
  1424. 'sel-line-start': 15564L,
  1425. 'selection_end': 15564L,
  1426. 'selection_start': 15564L,
  1427. 'zoom': 0L}),
  1428. (loc('sources/lmt.py'),
  1429. {'attrib-starts': [],
  1430. 'first-line': 199L,
  1431. 'folded-linenos': [],
  1432. 'sel-line': 210L,
  1433. 'sel-line-start': 8912L,
  1434. 'selection_end': 8920L,
  1435. 'selection_start': 8920L,
  1436. 'zoom': 0L}),
  1437. (loc('Downloader.py'),
  1438. {'attrib-starts': [('get_header',
  1439. 195)],
  1440. 'first-line': 175L,
  1441. 'folded-linenos': [],
  1442. 'sel-line': 198L,
  1443. 'sel-line-start': 7992L,
  1444. 'selection_end': 8012L,
  1445. 'selection_start': 8012L,
  1446. 'zoom': 0L}),
  1447. (loc('sources/euronews.py'),
  1448. {'attrib-starts': [],
  1449. 'first-line': 302L,
  1450. 'folded-linenos': [],
  1451. 'sel-line': 309L,
  1452. 'sel-line-start': 12837L,
  1453. 'selection_end': 12837L,
  1454. 'selection_start': 12837L,
  1455. 'zoom': 0L}),
  1456. (loc('resolver.py'),
  1457. {'attrib-starts': [],
  1458. 'first-line': 0L,
  1459. 'folded-linenos': [],
  1460. 'sel-line': 0L,
  1461. 'sel-line-start': 0L,
  1462. 'selection_end': 0L,
  1463. 'selection_start': 0L,
  1464. 'zoom': 0L}),
  1465. (loc('sources/config.py'),
  1466. {'attrib-starts': [('Source',
  1467. 12),
  1468. ('Source.write_streams',
  1469. 76)],
  1470. 'first-line': 107L,
  1471. 'folded-linenos': [],
  1472. 'sel-line': 116L,
  1473. 'sel-line-start': 4379L,
  1474. 'selection_end': 4379L,
  1475. 'selection_start': 4379L,
  1476. 'zoom': 0L}),
  1477. (loc('changelog.md'),
  1478. {'attrib-starts': [],
  1479. 'first-line': 0L,
  1480. 'folded-linenos': [],
  1481. 'sel-line': 1L,
  1482. 'sel-line-start': 17L,
  1483. 'selection_end': 59L,
  1484. 'selection_start': 59L,
  1485. 'zoom': 0L}),
  1486. (loc('sources/filmix.py'),
  1487. {'attrib-starts': [('Source',
  1488. 31),
  1489. ('Source.process_list',
  1490. 191)],
  1491. 'first-line': 188L,
  1492. 'folded-linenos': [],
  1493. 'sel-line': 196L,
  1494. 'sel-line-start': 8666L,
  1495. 'selection_end': 8759L,
  1496. 'selection_start': 8750L,
  1497. 'zoom': 0L})],
  1498. 'has-focus': False,
  1499. 'locked': False},
  1500. [loc('run.py'),
  1501. loc('util.py'),
  1502. loc('ContentSources.py'),
  1503. loc('sources/ltc.py'),
  1504. loc('sources/replay.py'),
  1505. loc('sources/lmt.py'),
  1506. loc('Downloader.py'),
  1507. loc('sources/euronews.py'),
  1508. loc('resolver.py'),
  1509. loc('sources/config.py'),
  1510. loc('changelog.md'),
  1511. loc('sources/filmix.py')]),
  1512. 'open_files': [u'ContentSources.py',
  1513. u'Downloader.py',
  1514. u'changelog.md',
  1515. u'resolver.py',
  1516. u'run.py',
  1517. u'sources/config.py',
  1518. u'sources/euronews.py',
  1519. u'sources/lmt.py',
  1520. u'sources/replay.py',
  1521. u'util.py',
  1522. u'sources/ltc.py',
  1523. u'sources/filmix.py']},
  1524. 'saved_notebook_display': None,
  1525. 'split_percents': {0: 0.5061155630535639},
  1526. 'splits': 2,
  1527. 'tab_location': 'top',
  1528. 'user_data': {}},
  1529. 'saved_notebook_display': None,
  1530. 'split_percents': {0: 0.5},
  1531. 'splits': 2,
  1532. 'tab_location': 'left',
  1533. 'user_data': {}},
  1534. 'window-alloc': (126,
  1535. 0,
  1536. 2434,
  1537. 1440)}]}
  1538. guimgr.recent-documents = [loc('sources/filmix.py'),
  1539. loc('sources/ltc.py'),
  1540. loc('util.py'),
  1541. loc('sources/replay.py'),
  1542. loc('changelog.md'),
  1543. loc('run.py'),
  1544. loc('sources/config.py'),
  1545. loc('ContentSources.py'),
  1546. loc('sources/euronews.py'),
  1547. loc('resolver.py'),
  1548. loc('Downloader.py'),
  1549. loc('sources/lmt.py')]
  1550. guimgr.visual-state = {loc('../../../Python25/Lib/BeautifulSoup.py'): {'attr'\
  1551. 'ib-starts': [('NavigableString',
  1552. 354),
  1553. ('NavigableString.__getattr__',
  1554. 356)],
  1555. 'first-line': 337,
  1556. 'sel-line': 363,
  1557. 'sel-line-start': 13868,
  1558. 'selection_end': 13868,
  1559. 'selection_start': 13868},
  1560. loc('../../../Python25/Lib/HTMLParser.py'): {'attrib-'\
  1561. 'starts': [('HTMLParser',
  1562. 66),
  1563. ('HTMLParser.check_for_whole_start_tag',
  1564. 274)],
  1565. 'first-line': 284,
  1566. 'folded-linenos': [],
  1567. 'sel-line': 301,
  1568. 'sel-line-start': 10981,
  1569. 'selection_end': 11013,
  1570. 'selection_start': 11013},
  1571. loc('../../../Python25/Lib/VideoCapture.py'): {'attri'\
  1572. 'b-starts': [],
  1573. 'first-line': 0,
  1574. 'folded-linenos': [],
  1575. 'sel-line': 7,
  1576. 'sel-line-start': 85,
  1577. 'selection_end': 128,
  1578. 'selection_start': 85},
  1579. loc('../../../Python25/Lib/encodings/cp1257.py'): {'a'\
  1580. 'ttrib-starts': [('Codec',
  1581. 8),
  1582. ('Codec.encode',
  1583. 10)],
  1584. 'first-line': 0,
  1585. 'folded-linenos': [],
  1586. 'sel-line': 10,
  1587. 'sel-line-start': 197,
  1588. 'selection_end': 197,
  1589. 'selection_start': 197},
  1590. loc('../../../Python25/Lib/re.py'): {'attrib-starts': [],
  1591. 'first-line': 0,
  1592. 'folded-linenos': [],
  1593. 'sel-line': 0,
  1594. 'sel-line-start': 0,
  1595. 'selection_end': 0,
  1596. 'selection_start': 0},
  1597. loc('../../../Python25/Lib/site-packages/BeautifulSoup.py'): {'a'\
  1598. 'ttrib-starts': [('SoupStrainer',
  1599. 817),
  1600. ('SoupStrainer._matches',
  1601. 904)],
  1602. 'first-line': 907,
  1603. 'folded-linenos': [],
  1604. 'sel-line': 928,
  1605. 'sel-line-start': 35455,
  1606. 'selection_end': 35455,
  1607. 'selection_start': 35455},
  1608. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'a'\
  1609. 'ttrib-starts': [],
  1610. 'first-line': 26,
  1611. 'folded-linenos': [],
  1612. 'sel-line': 44,
  1613. 'sel-line-start': 1253,
  1614. 'selection_end': 1253,
  1615. 'selection_start': 1253},
  1616. loc('../../../Python25/Lib/site-packages/PIL/__init__.py'): {'a'\
  1617. 'ttrib-starts': [],
  1618. 'first-line': 0,
  1619. 'folded-linenos': [],
  1620. 'sel-line': 0,
  1621. 'sel-line-start': 0,
  1622. 'selection_end': 0,
  1623. 'selection_start': 0},
  1624. loc('../../../Python25/Lib/site-packages/argparse.py'): {'a'\
  1625. 'ttrib-starts': [('_ActionsContainer',
  1626. 926),
  1627. ('_ActionsContainer._handle_conflict_error',
  1628. 1132)],
  1629. 'first-line': 1106,
  1630. 'folded-linenos': [],
  1631. 'sel-line': 1137,
  1632. 'sel-line-start': 41374,
  1633. 'selection_end': 41374,
  1634. 'selection_start': 41374},
  1635. loc('../../../Python25/Lib/site-packages/win32com/client/__init__.py'): {'a'\
  1636. 'ttrib-starts': [('DispatchBaseClass',
  1637. 410),
  1638. ('DispatchBaseClass._ApplyTypes_',
  1639. 443)],
  1640. 'first-line': 425,
  1641. 'folded-linenos': [],
  1642. 'sel-line': 447,
  1643. 'sel-line-start': 19318,
  1644. 'selection_end': 19318,
  1645. 'selection_start': 19318},
  1646. loc('../../../Python25/Lib/site-packages/win32com/client/dynamic.py'): {'a'\
  1647. 'ttrib-starts': [('CDispatch',
  1648. 151),
  1649. ('CDispatch.__getattr__',
  1650. 421)],
  1651. 'first-line': 489,
  1652. 'folded-linenos': [],
  1653. 'sel-line': 494,
  1654. 'sel-line-start': 19030,
  1655. 'selection_end': 19030,
  1656. 'selection_start': 19030},
  1657. loc('../../../Python25/Lib/site-packages/win32com/gen_py/00020813-0000-0000-C000-000000000046x0x1x6.py'): {'a'\
  1658. 'ttrib-starts': [('Range',
  1659. 26378),
  1660. ('Range.__call__',
  1661. 27016)],
  1662. 'first-line': 26996,
  1663. 'folded-linenos': [],
  1664. 'sel-line': 27018,
  1665. 'sel-line-start': 1285165,
  1666. 'selection_end': 1285165,
  1667. 'selection_start': 1285165},
  1668. loc('../../../Python25/Lib/socket.py'): {'attrib-star'\
  1669. 'ts': [('_fileobject',
  1670. 195),
  1671. ('_fileobject.readline',
  1672. 320)],
  1673. 'first-line': 301,
  1674. 'sel-line': 330,
  1675. 'sel-line-start': 10707,
  1676. 'selection_end': 10707,
  1677. 'selection_start': 10707},
  1678. loc('../../../Python25/Lib/sre_parse.py'): {'attrib-s'\
  1679. 'tarts': [('_parse',
  1680. 384)],
  1681. 'first-line': 375,
  1682. 'folded-linenos': [],
  1683. 'sel-line': 406,
  1684. 'sel-line-start': 12403,
  1685. 'selection_end': 12403,
  1686. 'selection_start': 12403},
  1687. loc('config.py'): {'attrib-starts': [],
  1688. 'first-line': 0,
  1689. 'folded-linenos': [],
  1690. 'sel-line': 38,
  1691. 'sel-line-start': 1110,
  1692. 'selection_end': 1110,
  1693. 'selection_start': 1110},
  1694. loc('iub.py'): {'attrib-starts': [('get_table',
  1695. 51)],
  1696. 'first-line': 0,
  1697. 'folded-linenos': [],
  1698. 'sel-line': 101,
  1699. 'sel-line-start': 3652,
  1700. 'selection_end': 3685,
  1701. 'selection_start': 3669},
  1702. loc('iubx.py'): {'attrib-starts': [('parse_arguments',
  1703. 25)],
  1704. 'first-line': 0,
  1705. 'folded-linenos': [],
  1706. 'sel-line': 32,
  1707. 'sel-line-start': 1289,
  1708. 'selection_end': 1335,
  1709. 'selection_start': 1335},
  1710. loc('iubx0.py'): {'attrib-starts': [('main',
  1711. 40)],
  1712. 'first-line': 349,
  1713. 'folded-linenos': [],
  1714. 'sel-line': 84,
  1715. 'sel-line-start': 3404,
  1716. 'selection_end': 3450,
  1717. 'selection_start': 3449},
  1718. loc('kivy_test.py'): {'attrib-starts': [],
  1719. 'first-line': 0L,
  1720. 'folded-linenos': [24L],
  1721. 'sel-line': 0L,
  1722. 'sel-line-start': 0L,
  1723. 'selection_end': 3L,
  1724. 'selection_start': 3L,
  1725. 'zoom': 0L},
  1726. loc('kivy_test2.py'): {'attrib-starts': [],
  1727. 'first-line': 0L,
  1728. 'folded-linenos': [],
  1729. 'sel-line': 1L,
  1730. 'sel-line-start': 11L,
  1731. 'selection_end': 42L,
  1732. 'selection_start': 42L,
  1733. 'zoom': 0L},
  1734. loc('resolvers/cloudsany.py'): {'attrib-starts': [('r'\
  1735. 'esolve',
  1736. 30)],
  1737. 'first-line': 32L,
  1738. 'folded-linenos': [],
  1739. 'sel-line': 39L,
  1740. 'sel-line-start': 1116L,
  1741. 'selection_end': 1158L,
  1742. 'selection_start': 1130L,
  1743. 'zoom': 0L},
  1744. loc('resolvers/hqqresolver.py'): {'attrib-starts': [('r'\
  1745. 'esolve',
  1746. 127)],
  1747. 'first-line': 155L,
  1748. 'folded-linenos': [],
  1749. 'sel-line': 166L,
  1750. 'sel-line-start': 6121L,
  1751. 'selection_end': 6141L,
  1752. 'selection_start': 6137L,
  1753. 'zoom': 0L},
  1754. loc('resolvers/openload3.py'): {'attrib-starts': [('r'\
  1755. 'esolve',
  1756. 49)],
  1757. 'first-line': 47L,
  1758. 'folded-linenos': [],
  1759. 'sel-line': 59L,
  1760. 'sel-line-start': 1909L,
  1761. 'selection_end': 1932L,
  1762. 'selection_start': 1928L,
  1763. 'zoom': 0L},
  1764. loc('run.py'): {'attrib-starts': [('Main',
  1765. 22),
  1766. ('Main.__init__',
  1767. 24)],
  1768. 'first-line': 30L,
  1769. 'folded-linenos': [],
  1770. 'sel-line': 38L,
  1771. 'sel-line-start': 1189L,
  1772. 'selection_end': 1272L,
  1773. 'selection_start': 1272L,
  1774. 'zoom': 0L},
  1775. loc('sources/SourceBase.py'): {'attrib-starts': [('So'\
  1776. 'urceBase',
  1777. 32),
  1778. ('SourceBase._http_request',
  1779. 118)],
  1780. 'first-line': 118L,
  1781. 'folded-linenos': [],
  1782. 'sel-line': 125L,
  1783. 'sel-line-start': 4550L,
  1784. 'selection_end': 4550L,
  1785. 'selection_start': 4550L,
  1786. 'zoom': 0L},
  1787. loc('sources/cinemalive.py'): {'attrib-starts': [('So'\
  1788. 'urce',
  1789. 29),
  1790. ('Source.get_streams',
  1791. 166)],
  1792. 'first-line': 176L,
  1793. 'folded-linenos': [],
  1794. 'sel-line': 184L,
  1795. 'sel-line-start': 9047L,
  1796. 'selection_end': 9087L,
  1797. 'selection_start': 9074L,
  1798. 'zoom': 0L},
  1799. loc('sources/config.py'): {'attrib-starts': [('Source',
  1800. 12),
  1801. ('Source.write_streams',
  1802. 73)],
  1803. 'first-line': 112L,
  1804. 'folded-linenos': [],
  1805. 'sel-line': 115L,
  1806. 'sel-line-start': 4309L,
  1807. 'selection_end': 4309L,
  1808. 'selection_start': 4309L,
  1809. 'zoom': 0L},
  1810. loc('sources/euronews.py'): {'attrib-starts': [('Sour'\
  1811. 'ce',
  1812. 26),
  1813. ('Source.__init__',
  1814. 28)],
  1815. 'first-line': 19L,
  1816. 'folded-linenos': [],
  1817. 'sel-line': 31L,
  1818. 'sel-line-start': 919L,
  1819. 'selection_end': 951L,
  1820. 'selection_start': 951L,
  1821. 'zoom': 0L},
  1822. loc('sources/filmas.py'): {'attrib-starts': [('Source',
  1823. 36),
  1824. ('Source.__init__',
  1825. 38)],
  1826. 'first-line': 42L,
  1827. 'folded-linenos': [],
  1828. 'sel-line': 44L,
  1829. 'sel-line-start': 1330L,
  1830. 'selection_end': 1369L,
  1831. 'selection_start': 1369L,
  1832. 'zoom': 0L},
  1833. loc('sources/filmix.py'): {'attrib-starts': [('Source',
  1834. 31),
  1835. ('Source.get_streams',
  1836. 263)],
  1837. 'first-line': 280L,
  1838. 'folded-linenos': [],
  1839. 'sel-line': 288L,
  1840. 'sel-line-start': 12733L,
  1841. 'selection_end': 12813L,
  1842. 'selection_start': 12813L,
  1843. 'zoom': 0L},
  1844. loc('sources/filmon.py'): {'attrib-starts': [('Source',
  1845. 32),
  1846. ('Source.get_content',
  1847. 47)],
  1848. 'first-line': 113L,
  1849. 'folded-linenos': [],
  1850. 'sel-line': 122L,
  1851. 'sel-line-start': 4665L,
  1852. 'selection_end': 4665L,
  1853. 'selection_start': 4665L,
  1854. 'zoom': 0L},
  1855. loc('sources/iplayer.py'): {'attrib-starts': [('Sourc'\
  1856. 'e',
  1857. 27),
  1858. ('Source.get_epg_video',
  1859. 370)],
  1860. 'first-line': 396L,
  1861. 'folded-linenos': [],
  1862. 'sel-line': 406L,
  1863. 'sel-line-start': 20357L,
  1864. 'selection_end': 20357L,
  1865. 'selection_start': 20357L,
  1866. 'zoom': 0L},
  1867. loc('sources/lmt.py'): {'attrib-starts': [('Source',
  1868. 32),
  1869. ('Source.get_content',
  1870. 52)],
  1871. 'first-line': 49L,
  1872. 'folded-linenos': [],
  1873. 'sel-line': 60L,
  1874. 'sel-line-start': 1987L,
  1875. 'selection_end': 2043L,
  1876. 'selection_start': 2043L,
  1877. 'zoom': 0L},
  1878. loc('sources/ltc.py'): {'attrib-starts': [('Source',
  1879. 27),
  1880. ('Source.__init__',
  1881. 29)],
  1882. 'first-line': 20L,
  1883. 'folded-linenos': [],
  1884. 'sel-line': 32L,
  1885. 'sel-line-start': 1211L,
  1886. 'selection_end': 1227L,
  1887. 'selection_start': 1219L,
  1888. 'zoom': 0L},
  1889. loc('sources/movieplace.py'): {'attrib-starts': [('So'\
  1890. 'urce',
  1891. 32),
  1892. ('Source.__init__',
  1893. 34)],
  1894. 'first-line': 26L,
  1895. 'folded-linenos': [],
  1896. 'sel-line': 38L,
  1897. 'sel-line-start': 1089L,
  1898. 'selection_end': 1119L,
  1899. 'selection_start': 1119L,
  1900. 'zoom': 0L},
  1901. loc('sources/mtgplay.py'): {'attrib-starts': [('Sourc'\
  1902. 'e',
  1903. 40),
  1904. ('Source.get_content',
  1905. 51)],
  1906. 'first-line': 155L,
  1907. 'folded-linenos': [],
  1908. 'sel-line': 162L,
  1909. 'sel-line-start': 8033L,
  1910. 'selection_end': 8077L,
  1911. 'selection_start': 8077L,
  1912. 'zoom': 0L},
  1913. loc('sources/play24.py'): {'attrib-starts': [('Source',
  1914. 28),
  1915. ('Source.__init__',
  1916. 30)],
  1917. 'first-line': 21L,
  1918. 'folded-linenos': [],
  1919. 'sel-line': 33L,
  1920. 'sel-line-start': 1074L,
  1921. 'selection_end': 1090L,
  1922. 'selection_start': 1082L,
  1923. 'zoom': 0L},
  1924. loc('sources/replay.py'): {'attrib-starts': [('Source',
  1925. 30),
  1926. ('Source.get_content',
  1927. 41)],
  1928. 'first-line': 109L,
  1929. 'folded-linenos': [],
  1930. 'sel-line': 114L,
  1931. 'sel-line-start': 5306L,
  1932. 'selection_end': 5306L,
  1933. 'selection_start': 5306L,
  1934. 'zoom': 0L},
  1935. loc('sources/tvdom.py'): {'attrib-starts': [('Source',
  1936. 32),
  1937. ('Source.get_streams',
  1938. 242)],
  1939. 'first-line': 0L,
  1940. 'folded-linenos': [],
  1941. 'sel-line': 291L,
  1942. 'sel-line-start': 13715L,
  1943. 'selection_end': 13715L,
  1944. 'selection_start': 13715L,
  1945. 'zoom': 0L},
  1946. loc('sources/ustvnow.py'): {'attrib-starts': [('Sourc'\
  1947. 'e',
  1948. 32),
  1949. ('Source.__init__',
  1950. 34)],
  1951. 'first-line': 26L,
  1952. 'folded-linenos': [],
  1953. 'sel-line': 38L,
  1954. 'sel-line-start': 1260L,
  1955. 'selection_end': 1287L,
  1956. 'selection_start': 1287L,
  1957. 'zoom': 0L},
  1958. loc('sources/viaplay.py'): {'attrib-starts': [('Sourc'\
  1959. 'e',
  1960. 36),
  1961. ('Source.__init__',
  1962. 38)],
  1963. 'first-line': 37L,
  1964. 'folded-linenos': [],
  1965. 'sel-line': 42L,
  1966. 'sel-line-start': 1308L,
  1967. 'selection_end': 1324L,
  1968. 'selection_start': 1316L,
  1969. 'zoom': 0L},
  1970. loc('test_sources.py'): {'attrib-starts': [('App',
  1971. 2),
  1972. ('App.__init__',
  1973. 4)],
  1974. 'first-line': 0L,
  1975. 'folded-linenos': [],
  1976. 'sel-line': 11L,
  1977. 'sel-line-start': 403L,
  1978. 'selection_end': 429L,
  1979. 'selection_start': 424L,
  1980. 'zoom': 0L},
  1981. loc('test_sources2.py'): {'attrib-starts': [('Main',
  1982. 12),
  1983. ('Main.initUI',
  1984. 30)],
  1985. 'first-line': 39L,
  1986. 'folded-linenos': [],
  1987. 'sel-line': 41L,
  1988. 'sel-line-start': 1171L,
  1989. 'selection_end': 1857L,
  1990. 'selection_start': 1171L,
  1991. 'zoom': 0L},
  1992. loc('../untitled-1.py'): {'attrib-starts': [],
  1993. 'first-line': 0,
  1994. 'folded-linenos': [],
  1995. 'sel-line': 0,
  1996. 'sel-line-start': 0,
  1997. 'selection_end': 1,
  1998. 'selection_start': 1},
  1999. loc('../../../../../Python27/lib/ftplib.py'): {'attri'\
  2000. 'b-starts': [],
  2001. 'first-line': 0L,
  2002. 'folded-linenos': [],
  2003. 'sel-line': 0L,
  2004. 'sel-line-start': 0L,
  2005. 'selection_end': 0L,
  2006. 'selection_start': 0L,
  2007. 'zoom': 0L},
  2008. loc('../../../../../Python27/lib/lib-tk/Tkinter.py'): {'a'\
  2009. 'ttrib-starts': [('CallWrapper',
  2010. 1528),
  2011. ('CallWrapper.__call__',
  2012. 1536)],
  2013. 'first-line': 1537L,
  2014. 'folded-linenos': [],
  2015. 'sel-line': 1542L,
  2016. 'sel-line-start': 60799L,
  2017. 'selection_end': 60799L,
  2018. 'selection_start': 60799L,
  2019. 'zoom': 0L},
  2020. loc('../../../../../Python27/lib/lib-tk/tkCommonDialog.py'): {'a'\
  2021. 'ttrib-starts': [('Dialog',
  2022. 12)],
  2023. 'first-line': 12L,
  2024. 'folded-linenos': [],
  2025. 'sel-line': 12L,
  2026. 'sel-line-start': 298L,
  2027. 'selection_end': 298L,
  2028. 'selection_start': 298L,
  2029. 'zoom': 0L},
  2030. loc('../../../../../Python27/lib/lib-tk/tkSimpleDialog.py'): {'a'\
  2031. 'ttrib-starts': [('Dialog',
  2032. 29),
  2033. ('Dialog.__init__',
  2034. 36)],
  2035. 'first-line': 61L,
  2036. 'folded-linenos': [],
  2037. 'sel-line': 76L,
  2038. 'sel-line-start': 1627L,
  2039. 'selection_end': 1686L,
  2040. 'selection_start': 1686L,
  2041. 'zoom': 0L},
  2042. loc('../../../../../Python27/lib/site-packages/requests/adapters.py'): {'a'\
  2043. 'ttrib-starts': [('HTTPAdapter',
  2044. 80),
  2045. ('HTTPAdapter.send',
  2046. 387)],
  2047. 'first-line': 493L,
  2048. 'folded-linenos': [],
  2049. 'sel-line': 505L,
  2050. 'sel-line-start': 20166L,
  2051. 'selection_end': 20166L,
  2052. 'selection_start': 20166L,
  2053. 'zoom': 0L},
  2054. loc('../../../../../Python27/lib/site-packages/requests/models.py'): {'a'\
  2055. 'ttrib-starts': [('Response',
  2056. 577),
  2057. ('Response.content',
  2058. 810)],
  2059. 'first-line': 819L,
  2060. 'folded-linenos': [],
  2061. 'sel-line': 827L,
  2062. 'sel-line-start': 29594L,
  2063. 'selection_end': 29594L,
  2064. 'selection_start': 29594L,
  2065. 'zoom': 0L},
  2066. loc('x-wingide-zip://C:/Python25/Lib/site-packages/argparse-1.1-py2.5.egg//argparse.py'): {'a'\
  2067. 'ttrib-starts': [('_ActionsContainer',
  2068. 1187),
  2069. ('_ActionsContainer.add_argument',
  2070. 1270)],
  2071. 'first-line': 1271,
  2072. 'folded-linenos': [],
  2073. 'sel-line': 1283,
  2074. 'sel-line-start': 45405,
  2075. 'selection_end': 45405,
  2076. 'selection_start': 45405},
  2077. loc('x-wingide-zip://C:/Python25/Lib/site-packages/beautifulsoup-3.1.0.1-py2.5.egg//BeautifulSoup.py'): {'a'\
  2078. 'ttrib-starts': [('BeautifulSoup',
  2079. 1446),
  2080. ('BeautifulSoup.__init__',
  2081. 1494)],
  2082. 'first-line': 1481,
  2083. 'folded-linenos': [],
  2084. 'sel-line': 1498,
  2085. 'sel-line-start': 57438,
  2086. 'selection_end': 57438,
  2087. 'selection_start': 57438}}
  2088. proj.build-cmd = {None: ('default',
  2089. None)}
  2090. proj.env-vars = {None: ('default',
  2091. [u''])}
  2092. search.replace-history = [u'filmix.co',
  2093. u'https://replay.lsm.lv',
  2094. u'www.shortcut.lv',
  2095. u'shortcut.lv']
  2096. search.search-history = [u'filmix.me',
  2097. u'1.4',
  2098. u'1.3',
  2099. u'img =',
  2100. u'http:',
  2101. u'http://replay.lsm.lv',
  2102. u'img0',
  2103. u'get_movie_info',
  2104. u'player_data',
  2105. u'cfg_file',
  2106. u'read_streams',
  2107. u'read_stream',
  2108. u'confif_file',
  2109. u'confif_f',
  2110. u'streams_file',
  2111. u'img',
  2112. u'desc',
  2113. u'unqute',
  2114. u'raise',
  2115. u'can not find ']
  2116. testing.stored-results = (1,
  2117. [],
  2118. {})