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

project.wpr 78KB

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