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

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. 53L: (0,
  82. None,
  83. 1,
  84. 0),
  85. 86L: (0,
  86. None,
  87. 1,
  88. 0),
  89. 89L: (0,
  90. None,
  91. 1,
  92. 0),
  93. 117L: (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/euronews.py'): {161L: (0,
  122. None,
  123. 1,
  124. 0)},
  125. loc('sources/filmon.py'): {49L: (0,
  126. None,
  127. 1,
  128. 0)},
  129. loc('sources/ltc.py'): {79L: (0,
  130. None,
  131. 1,
  132. 0)},
  133. loc('sources/replay.py'): {77L: (0,
  134. None,
  135. 1,
  136. 0),
  137. 249L: (0,
  138. None,
  139. 1,
  140. 0)},
  141. loc('sources/tvdom.py'): {292L: (0,
  142. None,
  143. 1,
  144. 0)},
  145. loc('test_sources.py'): {7L: (0,
  146. None,
  147. 1,
  148. 0)},
  149. loc('untitled-1.py'): {10: (0,
  150. None,
  151. 1,
  152. 0)},
  153. loc('../untitled-1.py'): {1: (0,
  154. None,
  155. 1,
  156. 0),
  157. 2: (0,
  158. None,
  159. 1,
  160. 0),
  161. 3: (0,
  162. None,
  163. 1,
  164. 0)},
  165. loc('unknown:<untitled> #1'): {2: (0,
  166. None,
  167. 1,
  168. 0)},
  169. loc('unknown:<untitled> #2'): {10: (0,
  170. None,
  171. 1,
  172. 0)}}
  173. debug.err-values = {None: {},
  174. loc('ContentSources.py'): {},
  175. loc('iub_db.py'): {},
  176. loc('iub_email.py'): {},
  177. loc('iubx.py'): {},
  178. loc('kivy_test2.py'): {},
  179. loc('run.py'): {},
  180. loc('sources/cinemalive.py'): {},
  181. loc('sources/euronews.py'): {},
  182. loc('sources/filmix.py'): {},
  183. loc('sources/ltc.py'): {},
  184. loc('test_sources2.py'): {}}
  185. debug.recent-run-args = {loc('ContentSources.py'): [u'config::home streams_bernu.cfg',
  186. u'ltc::home',
  187. u'config::home'],
  188. loc('Downloader.py'): [u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\ccc',
  189. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\bbb',
  190. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 aaa.mp4'],
  191. loc('iub_db.py'): [u'-d 90 -s -o',
  192. u'-d 40 -rg -o',
  193. u'-d 40 -s -o',
  194. u'-d 40 -r -o',
  195. u'-d 40 -g -o',
  196. u'-d 60 -s -o',
  197. u'-d 10 -r -o',
  198. u'-d 3 --slud -o',
  199. u'-d 10 --rez -o',
  200. u'-d 10 --rez',
  201. u'-d 10 --groz',
  202. u'-d 20 --groz',
  203. u'-d 20 --slud',
  204. u'-d 10 --slud',
  205. u'-d 3 --slud',
  206. u'-d 3'],
  207. loc('iub_db2.py'): [u'-p 1 2 --debug ',
  208. u'-d 1 --debug ',
  209. u'-p 51 53 --debug -o',
  210. u'-p 50 53 --debug -o',
  211. u'-d 3 --debug -o',
  212. u'-d 1 --debug -o',
  213. u'-d 1 --debug -o',
  214. u'-d 1 --debug',
  215. u'-d 1',
  216. u'-h'],
  217. loc('iub_email.py'): [u'-i --debug',
  218. u'-i ',
  219. u'-i',
  220. u'-p'],
  221. loc('iubx.py'): [u'-s -d30',
  222. u'-s -d10',
  223. u'-s -d3',
  224. u'-s -d40',
  225. '-s -d 10\n'],
  226. loc('iubx2.py'): [u'-sgr -d 10',
  227. u'-sgr',
  228. u'--sgr',
  229. u'--slud'],
  230. loc('kivy_test.py'): [u'https://walterebert.com/playground/video/hls/sintel-trailer.m3u8',
  231. u'https://dl4.sanii.co/files/2/60e13omc1cpph2/video.mp4'],
  232. loc('run.py'): [u'config::home ',
  233. u'config::home streams_bernu.cfg',
  234. u'ltc::home',
  235. u'ltc::videonoma',
  236. u'ltc::video ',
  237. u'config::home ',
  238. u'config::home streams_bernu.cfg',
  239. u'config::home'],
  240. loc('sources/lmt.py'): [u'home',
  241. u'home cli'],
  242. loc('sources/ltc.py'): [u'ltc::videonoma']}
  243. debug.run-args = {}
  244. debug.var-col-widths = [0.41872791519434627,
  245. 0.5812720848056537]
  246. edit.bookmarks = {'list_action': (loc('run.py'),
  247. {'attrib-starts': [('Main',
  248. 17),
  249. ('Main.list_action',
  250. 95)],
  251. 'first-line': 98L,
  252. 'sel-line': 124L})}
  253. guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
  254. 'windows': [{'name': 'F8FpRDICw7YHXG3HV2rBc63asU'\
  255. 'LBT7JH',
  256. 'size-state': 'maximized',
  257. 'type': 'dock',
  258. 'view': {'area': 'tall',
  259. 'constraint': None,
  260. 'current_pages': [0,
  261. 0],
  262. 'full-screen': False,
  263. 'notebook_display': 'tabs only',
  264. 'notebook_percent': 0.17992831541218635,
  265. 'override_title': None,
  266. 'pagelist': [('project',
  267. 'tall',
  268. 0,
  269. {'tree-state': {'file-sort-method': 'by name',
  270. 'list-files-first': 0,
  271. 'tree-states': {'deep': {'expanded-nodes': [(1,)],
  272. 'selected-nodes': [(15,)],
  273. 'top-node': (0,)}},
  274. 'tree-style': 'deep'}}),
  275. ('snippets',
  276. 'tall',
  277. 0,
  278. {'tree-states': {u'c': [],
  279. u'html': [],
  280. u'py': [['class',
  281. 'all',
  282. '']]}}),
  283. ('browser',
  284. 'tall',
  285. 0,
  286. {'all_tree_states': {loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'): {'c'\
  287. 'olumn-widths': [1.0],
  288. 'expanded-nodes': [],
  289. 'selected-nodes': [],
  290. 'top-node': [('generic attribute',
  291. loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'),
  292. 'ft')]},
  293. 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'\
  294. 'olumn-widths': [1.0],
  295. 'expanded-nodes': [],
  296. 'selected-nodes': [],
  297. 'top-node': [('generic attribute',
  298. 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'),
  299. 'ANYTHING')]},
  300. loc('../../../Python25/Lib/BeautifulSoup.py'): {'column-widths': [1.0],
  301. 'expanded-nodes': [],
  302. 'selected-nodes': [],
  303. 'top-node': [('class def',
  304. loc('../../../Python25/Lib/BeautifulSoup.py'),
  305. 'BeautifulSOAP')]},
  306. loc('../../../Python25/Lib/ConfigParser.py'): {'column-widths': [1.0],
  307. 'expanded-nodes': [],
  308. 'selected-nodes': [],
  309. 'top-node': [('class def',
  310. loc('../../../Python25/Lib/ConfigParser.py'),
  311. 'ConfigParser')]},
  312. loc('../../../Python25/Lib/StringIO.py'): {'column-widths': [1.0],
  313. 'expanded-nodes': [],
  314. 'selected-nodes': [],
  315. 'top-node': [('class def',
  316. loc('../../../Python25/Lib/StringIO.py'),
  317. 'StringIO')]},
  318. loc('../../../Python25/Lib/dircache.py'): {'column-widths': [1.0],
  319. 'expanded-nodes': [],
  320. 'selected-nodes': [],
  321. 'top-node': [('function def',
  322. loc('../../../Python25/Lib/dircache.py'),
  323. 'annotate')]},
  324. loc('../../../Python25/Lib/encodings/cp1257.py'): {'column-widths': [1.0],
  325. 'expanded-nodes': [],
  326. 'selected-nodes': [],
  327. 'top-node': [('class def',
  328. loc('../../../Python25/Lib/encodings/cp1257.py'),
  329. 'Codec')]},
  330. loc('../../../Python25/Lib/encodings/utf_8.py'): {'column-widths': [1.0],
  331. 'expanded-nodes': [],
  332. 'selected-nodes': [],
  333. 'top-node': [('function def',
  334. loc('../../../Python25/Lib/encodings/utf_8.py'),
  335. 'decode')]},
  336. loc('../../../Python25/Lib/ntpath.py'): {'column-widths': [1.0],
  337. 'expanded-nodes': [],
  338. 'selected-nodes': [],
  339. 'top-node': [('function def',
  340. loc('../../../Python25/Lib/ntpath.py'),
  341. 'abspath')]},
  342. loc('../../../Python25/Lib/re.py'): {'column-widths': [1.0],
  343. 'expanded-nodes': [],
  344. 'selected-nodes': [],
  345. 'top-node': [('generic attribute',
  346. loc('../../../Python25/Lib/re.py'),
  347. 'c')]},
  348. loc('../../../Python25/Lib/sgmllib.py'): {'column-widths': [1.0],
  349. 'expanded-nodes': [],
  350. 'selected-nodes': [],
  351. 'top-node': [('generic attribute',
  352. loc('../../../Python25/Lib/sgmllib.py'),
  353. 'attrfind')]},
  354. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'): {'c'\
  355. 'olumn-widths': [1.0],
  356. 'expanded-nodes': [],
  357. 'selected-nodes': [],
  358. 'top-node': [('generic attribute',
  359. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'),
  360. 'BIT2MODE')]},
  361. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'): {'c'\
  362. 'olumn-widths': [1.0],
  363. 'expanded-nodes': [],
  364. 'selected-nodes': [],
  365. 'top-node': [('function def',
  366. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'),
  367. 'getdata')]},
  368. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'column-wi'\
  369. 'dths': [1.0],
  370. 'expanded-nodes': [],
  371. 'selected-nodes': [[('generic attribute',
  372. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  373. '_initialized')]],
  374. 'top-node': [('generic attribute',
  375. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  376. 'ADAPTIVE')]},
  377. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'): {'colum'\
  378. 'n-widths': [1.0],
  379. 'expanded-nodes': [],
  380. 'selected-nodes': [],
  381. 'top-node': [('generic attribute',
  382. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'),
  383. 'ERRORS')]},
  384. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'): {'co'\
  385. 'lumn-widths': [1.0],
  386. 'expanded-nodes': [],
  387. 'selected-nodes': [],
  388. 'top-node': [('class def',
  389. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'),
  390. 'ImagePalette')]},
  391. loc('../../../Python25/Lib/site-packages/argparse.py'): {'column-wid'\
  392. 'ths': [1.0],
  393. 'expanded-nodes': [],
  394. 'selected-nodes': [],
  395. 'top-node': [('class def',
  396. loc('../../../Python25/Lib/site-packages/argparse.py'),
  397. 'Action')]},
  398. loc('../../../Python25/Lib/site-packages/pdo.py'): {'column-widths': [1.0],
  399. 'expanded-nodes': [],
  400. 'selected-nodes': [],
  401. 'top-node': [('class def',
  402. loc('../../../Python25/Lib/site-packages/pdo.py'),
  403. 'connect')]},
  404. loc('../../../Python25/Lib/struct.py'): {'column-widths': [1.0],
  405. 'expanded-nodes': [],
  406. 'selected-nodes': [],
  407. 'top-node': [('function def',
  408. loc('../../../Python25/Lib/struct.py'),
  409. 'calcsize')]},
  410. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'): {'exp'\
  411. 'anded-nodes': [],
  412. 'selected-nodes': [],
  413. 'top-node': [('class def',
  414. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  415. 'CompositeCaster')]},
  416. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'): {'e'\
  417. 'xpanded-nodes': [],
  418. 'selected-nodes': [],
  419. 'top-node': [('generic attribute',
  420. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  421. 'ALL_INVOKE_TYPES')]},
  422. loc('../$test/test2.py'): {'column-widths': [1.0],
  423. 'expanded-nodes': [],
  424. 'selected-nodes': [],
  425. 'top-node': [('generic attribute',
  426. loc('../$test/test2.py'),
  427. 'con')]},
  428. loc('../$test/test3.py'): {'column-widths': [1.0],
  429. 'expanded-nodes': [],
  430. 'selected-nodes': [],
  431. 'top-node': [('generic attribute',
  432. loc('../$test/test3.py'),
  433. 'area')]},
  434. loc('../$test/test4.py'): {'column-widths': [1.0],
  435. 'expanded-nodes': [],
  436. 'selected-nodes': [],
  437. 'top-node': [('generic attribute',
  438. loc('../$test/test4.py'),
  439. 'con')]},
  440. loc('../5streets/5streets.py'): {'column-widths': [1.0],
  441. 'expanded-nodes': [],
  442. 'selected-nodes': [],
  443. 'top-node': [('generic attribute',
  444. loc('../5streets/5streets.py'),
  445. 'dlat')]},
  446. loc('../JS2/JSData.py'): {'column-widths': [1.0],
  447. 'expanded-nodes': [],
  448. 'selected-nodes': [],
  449. 'top-node': [('generic attribute',
  450. loc('../JS2/JSData.py'),
  451. 'db')]},
  452. loc('../JS2/const.py'): {'column-widths': [1.0],
  453. 'expanded-nodes': [],
  454. 'selected-nodes': [],
  455. 'top-node': [('generic attribute',
  456. loc('../JS2/const.py'),
  457. 'config')]},
  458. loc('../JS2/js2gif2.py'): {'column-widths': [1.0],
  459. 'expanded-nodes': [],
  460. 'selected-nodes': [],
  461. 'top-node': [('generic attribute',
  462. loc('../JS2/js2gif2.py'),
  463. 'argc')]},
  464. loc('../JS2/js3.py'): {'column-widths': [1.0],
  465. 'expanded-nodes': [],
  466. 'selected-nodes': [],
  467. 'top-node': [('function def',
  468. loc('../JS2/js3.py'),
  469. 'deg')]},
  470. loc('../JS2/js3s.py'): {'column-widths': [1.0],
  471. 'expanded-nodes': [],
  472. 'selected-nodes': [],
  473. 'top-node': [('function def',
  474. loc('../JS2/js3s.py'),
  475. 'deg')]},
  476. loc('../JS2/js_2gif.py'): {'column-widths': [1.0],
  477. 'expanded-nodes': [],
  478. 'selected-nodes': [],
  479. 'top-node': [('generic attribute',
  480. loc('../JS2/js_2gif.py'),
  481. 'argc')]},
  482. loc('../JS2/js_db.py'): {'column-widths': [1.0],
  483. 'expanded-nodes': [],
  484. 'selected-nodes': [],
  485. 'top-node': [('generic attribute',
  486. loc('../JS2/js_db.py'),
  487. 'bks93')]},
  488. loc('../JS2/js_map.py'): {'column-widths': [1.0],
  489. 'expanded-nodes': [],
  490. 'selected-nodes': [[('function def',
  491. loc('../JS2/js_map.py'),
  492. 'deg')]],
  493. 'top-node': [('function def',
  494. loc('../JS2/js_map.py'),
  495. 'deg')]},
  496. loc('../JS2/js_map2.py'): {'column-widths': [1.0],
  497. 'expanded-nodes': [],
  498. 'selected-nodes': [],
  499. 'top-node': [('function def',
  500. loc('../JS2/js_map2.py'),
  501. 'deg')]},
  502. loc('../JS2/js_map3.py'): {'column-widths': [1.0],
  503. 'expanded-nodes': [],
  504. 'selected-nodes': [],
  505. 'top-node': [('function def',
  506. loc('../JS2/js_map3.py'),
  507. 'deg')]},
  508. loc('../JS2/js_map4.py'): {'column-widths': [1.0],
  509. 'expanded-nodes': [],
  510. 'selected-nodes': [],
  511. 'top-node': [('function def',
  512. loc('../JS2/js_map4.py'),
  513. 'create_map')]},
  514. loc('../JS2/js_shp.py'): {'column-widths': [1.0],
  515. 'expanded-nodes': [],
  516. 'selected-nodes': [],
  517. 'top-node': [('generic attribute',
  518. loc('../JS2/js_shp.py'),
  519. 'cx')]},
  520. loc('../JS2/js_unpack.py'): {'column-widths': [1.0],
  521. 'expanded-nodes': [],
  522. 'selected-nodes': [],
  523. 'top-node': [('generic attribute',
  524. loc('../JS2/js_unpack.py'),
  525. 'argc')]},
  526. loc('../JS2/jsdb2.py'): {'column-widths': [1.0],
  527. 'expanded-nodes': [],
  528. 'selected-nodes': [],
  529. 'top-node': [('generic attribute',
  530. loc('../JS2/jsdb2.py'),
  531. 'bks93')]},
  532. loc('../JS2/jsunpack2.py'): {'column-widths': [1.0],
  533. 'expanded-nodes': [],
  534. 'selected-nodes': [],
  535. 'top-node': [('generic attribute',
  536. loc('../JS2/jsunpack2.py'),
  537. 'argc')]},
  538. loc('../JS2/ozimap.py'): {'column-widths': [1.0],
  539. 'expanded-nodes': [],
  540. 'selected-nodes': [],
  541. 'top-node': [('generic attribute',
  542. loc('../JS2/ozimap.py'),
  543. 'epilog')]},
  544. loc('../JS2/test PIL.py'): {'column-widths': [1.0],
  545. 'expanded-nodes': [],
  546. 'selected-nodes': [],
  547. 'top-node': [('function def',
  548. loc('../JS2/test PIL.py'),
  549. 'get_pp')]},
  550. loc('BeautifulSoup.py'): {'expanded-nodes': [],
  551. 'selected-nodes': [],
  552. 'top-node': [('class def',
  553. loc('BeautifulSoup.py'),
  554. 'BeautifulSOAP')]},
  555. loc('ContentSources.py'): {'expanded-nodes': [],
  556. 'selected-nodes': [],
  557. 'top-node': [('class def',
  558. loc('ContentSources.py'),
  559. 'ContentSources')]},
  560. loc('config.py'): {'expanded-nodes': [],
  561. 'selected-nodes': [],
  562. 'top-node': [('generic attribute',
  563. loc('config.py'),
  564. 'config')]},
  565. loc('database.py'): {'expanded-nodes': [],
  566. 'selected-nodes': [],
  567. 'top-node': [('class def',
  568. loc('database.py'),
  569. 'Database')]},
  570. loc('excel3.py'): {'expanded-nodes': [],
  571. 'selected-nodes': [],
  572. 'top-node': [('class def',
  573. loc('excel3.py'),
  574. 'Excel')]},
  575. loc('iub_db.py'): {'expanded-nodes': [],
  576. 'selected-nodes': [],
  577. 'top-node': [('function def',
  578. loc('iub_db.py'),
  579. 'add_rec')]},
  580. loc('iub_db2.py'): {'expanded-nodes': [],
  581. 'selected-nodes': [[('generic attribute',
  582. loc('iub_db2.py'),
  583. 'version')]],
  584. 'top-node': [('generic attribute',
  585. loc('iub_db2.py'),
  586. 'config')]},
  587. loc('iubx.ini'): {'expanded-nodes': [],
  588. 'selected-nodes': [],
  589. 'top-node': None},
  590. loc('iubx.py'): {'column-widths': None,
  591. 'expanded-nodes': [],
  592. 'selected-nodes': [],
  593. 'top-node': [('function def',
  594. loc('iubx.py'),
  595. 'check_cpv')]},
  596. loc('iubx0.py'): {'column-widths': [1.0],
  597. 'expanded-nodes': [],
  598. 'selected-nodes': [[('generic attribute',
  599. loc('iubx0.py'),
  600. 'config')]],
  601. 'top-node': [('generic attribute',
  602. loc('iubx0.py'),
  603. 'config')]},
  604. loc('latvian.xml'): {'expanded-nodes': [],
  605. 'selected-nodes': [],
  606. 'top-node': None},
  607. loc('record.py'): {'expanded-nodes': [],
  608. 'selected-nodes': [],
  609. 'top-node': [('generic attribute',
  610. loc('record.py'),
  611. 'r1')]},
  612. loc('run.py'): {'expanded-nodes': [],
  613. 'selected-nodes': [[('class def',
  614. loc('run.py'),
  615. 'ChoiceBox')]],
  616. 'top-node': [('class def',
  617. loc('run.py'),
  618. 'ChoiceBox')]},
  619. loc('sources/SourceBase.py'): {'expanded-nodes': [],
  620. 'selected-nodes': [],
  621. 'top-node': [('generic attribute',
  622. loc('sources/SourceBase.py'),
  623. 'headers2dict')]},
  624. loc('sources/euronews.py'): {'expanded-nodes': [],
  625. 'selected-nodes': [],
  626. 'top-node': [('generic attribute',
  627. loc('sources/euronews.py'),
  628. 'c')]},
  629. loc('sources/filmas.py'): {'expanded-nodes': [],
  630. 'selected-nodes': [],
  631. 'top-node': [('generic attribute',
  632. loc('sources/filmas.py'),
  633. 'c')]},
  634. loc('sources/filmix.py'): {'expanded-nodes': [],
  635. 'selected-nodes': [],
  636. 'top-node': [('generic attribute',
  637. loc('sources/filmix.py'),
  638. 'data')]},
  639. loc('sources/iplayer.py'): {'expanded-nodes': [],
  640. 'selected-nodes': [],
  641. 'top-node': [('generic attribute',
  642. loc('sources/iplayer.py'),
  643. 'API_URL')]},
  644. loc('sources/iub.py'): {'expanded-nodes': [],
  645. 'selected-nodes': [[('class def',
  646. loc('sources/iub.py'),
  647. 'Source')]],
  648. 'top-node': [('generic attribute',
  649. loc('sources/iub.py'),
  650. 'h')]},
  651. loc('sources/lmt.py'): {'expanded-nodes': [],
  652. 'selected-nodes': [],
  653. 'top-node': [('generic attribute',
  654. loc('sources/lmt.py'),
  655. 'data')]},
  656. loc('sources/ltc.py'): {'expanded-nodes': [],
  657. 'selected-nodes': [[('generic attribute',
  658. loc('sources/ltc.py'),
  659. 'vid2')]],
  660. 'top-node': [('generic attribute',
  661. loc('sources/ltc.py'),
  662. 'API_URL')]},
  663. loc('sources/replay.py'): {'expanded-nodes': [],
  664. 'selected-nodes': [[('class def',
  665. loc('sources/replay.py'),
  666. 'Source')]],
  667. 'top-node': [('generic attribute',
  668. loc('sources/replay.py'),
  669. 'API_URL')]},
  670. loc('sources/tvdom.py'): {'expanded-nodes': [],
  671. 'selected-nodes': [],
  672. 'top-node': [('generic attribute',
  673. loc('sources/tvdom.py'),
  674. 'data')]},
  675. loc('test1.py'): {'expanded-nodes': [],
  676. 'selected-nodes': [],
  677. 'top-node': [('generic attribute',
  678. loc('test1.py'),
  679. 'conn')]},
  680. loc('test_sources.py'): {'expanded-nodes': [],
  681. 'selected-nodes': [],
  682. 'top-node': [('class def',
  683. loc('test_sources.py'),
  684. 'App')]},
  685. loc('test_sources2.py'): {'expanded-nodes': [],
  686. 'selected-nodes': [],
  687. 'top-node': [('generic attribute',
  688. loc('test_sources2.py'),
  689. 'data')]},
  690. loc('util.py'): {'expanded-nodes': [],
  691. 'selected-nodes': [[('function def',
  692. loc('util.py'),
  693. '_substitute_entity')]],
  694. 'top-node': [('generic attribute',
  695. loc('util.py'),
  696. 'CACHE_COOKIES')]},
  697. loc('utils.py'): {'expanded-nodes': [],
  698. 'selected-nodes': [],
  699. 'top-node': [('function def',
  700. loc('utils.py'),
  701. 'check_cpv')]},
  702. loc('../fakemap/fakemap.py'): {'column-widths': [1.0],
  703. 'expanded-nodes': [],
  704. 'selected-nodes': [],
  705. 'top-node': [('generic attribute',
  706. loc('../fakemap/fakemap.py'),
  707. 'dir')]},
  708. loc('../getpics/ggg2.py'): {'column-widths': [1.0],
  709. 'expanded-nodes': [],
  710. 'selected-nodes': [],
  711. 'top-node': [('generic attribute',
  712. loc('../getpics/ggg2.py'),
  713. 'con')]},
  714. loc('../ozi/ozi.py'): {'column-widths': [1.0],
  715. 'expanded-nodes': [],
  716. 'selected-nodes': [],
  717. 'top-node': [('generic attribute',
  718. loc('../ozi/ozi.py'),
  719. 'epilog')]},
  720. loc('../ozi/ozimap.py'): {'column-widths': [1.0],
  721. 'expanded-nodes': [],
  722. 'selected-nodes': [],
  723. 'top-node': [('generic attribute',
  724. loc('../ozi/ozimap.py'),
  725. 'epilog')]},
  726. loc('../theyr/ikite/ikite.py'): {'column-widths': [1.0],
  727. 'expanded-nodes': [],
  728. 'selected-nodes': [],
  729. 'top-node': [('generic attribute',
  730. loc('../theyr/ikite/ikite.py'),
  731. 'day')]},
  732. loc('../vietas/vietas.py'): {'column-widths': [1.0],
  733. 'expanded-nodes': [],
  734. 'selected-nodes': [],
  735. 'top-node': [('generic attribute',
  736. loc('../vietas/vietas.py'),
  737. 'count')]},
  738. loc('../vietas/vietas0.py'): {'column-widths': [1.0],
  739. 'expanded-nodes': [],
  740. 'selected-nodes': [],
  741. 'top-node': [('generic attribute',
  742. loc('../vietas/vietas0.py'),
  743. 'c')]},
  744. loc('../vietas/vietas2.py'): {'column-widths': [1.0],
  745. 'expanded-nodes': [],
  746. 'selected-nodes': [],
  747. 'top-node': [('generic attribute',
  748. loc('../vietas/vietas2.py'),
  749. 'd_lat')]},
  750. loc('../../SplashData/remdup.py'): {'column-widths': [1.0],
  751. 'expanded-nodes': [],
  752. 'selected-nodes': [],
  753. 'top-node': [('generic attribute',
  754. loc('../../SplashData/remdup.py'),
  755. 'f')]},
  756. loc('../../../../../Python27/lib/lib-tk/Tkinter.py'): {'expanded-nod'\
  757. 'es': [],
  758. 'selected-nodes': [],
  759. 'top-node': [('function def',
  760. loc('../../../../../Python27/lib/lib-tk/Tkinter.py'),
  761. 'At')]},
  762. loc('../../../../../Python27/lib/lib-tk/tkCommonDialog.py'): {'expan'\
  763. 'ded-nodes': [],
  764. 'selected-nodes': [],
  765. 'top-node': [('class def',
  766. loc('../../../../../Python27/lib/lib-tk/tkCommonDialog.py'),
  767. 'Dialog')]},
  768. loc('../../../../../Python27/lib/lib-tk/tkMessageBox.py'): {'expande'\
  769. 'd-nodes': [],
  770. 'selected-nodes': [],
  771. 'top-node': [('generic attribute',
  772. loc('../../../../../Python27/lib/lib-tk/tkMessageBox.py'),
  773. 'ABORT')]},
  774. loc('../../../../../Python27/lib/lib-tk/tkSimpleDialog.py'): {'expan'\
  775. 'ded-nodes': [],
  776. 'selected-nodes': [],
  777. 'top-node': [('function def',
  778. loc('../../../../../Python27/lib/lib-tk/tkSimpleDialog.py'),
  779. 'askfloat')]},
  780. loc('../../../../../Python27/lib/lib-tk/ttk.py'): {'expanded-nodes': [],
  781. 'selected-nodes': [],
  782. 'top-node': [('class def',
  783. loc('../../../../../Python27/lib/lib-tk/ttk.py'),
  784. 'Button')]},
  785. loc('../../../../../Python27/lib/site-packages/PIL/Image.py'): {'exp'\
  786. 'anded-nodes': [],
  787. 'selected-nodes': [],
  788. 'top-node': [('generic attribute',
  789. loc('../../../../../Python27/lib/site-packages/PIL/Image.py'),
  790. 'ADAPTIVE')]},
  791. loc('unknown:<untitled> #6'): {'expanded-nodes': [],
  792. 'selected-nodes': [],
  793. 'top-node': None},
  794. loc('unknown:<untitled> #4'): {'column-widths': [1.0],
  795. 'expanded-nodes': [],
  796. 'selected-nodes': [],
  797. 'top-node': None},
  798. loc('unknown:<untitled> #3'): {'column-widths': [1.0],
  799. 'expanded-nodes': [],
  800. 'selected-nodes': [],
  801. 'top-node': None},
  802. loc('unknown:<untitled> #5'): {'expanded-nodes': [],
  803. 'selected-nodes': [],
  804. 'top-node': None}},
  805. 'browse_mode': u'Current Module',
  806. 'follow-selection': False,
  807. 'sort_mode': 'Alphabetically',
  808. 'visibility_options': {u'Derived Classes': False,
  809. u'Imported': False,
  810. u'Modules': True}}),
  811. ('debug-stack',
  812. 'tall',
  813. 1,
  814. {'codeline-mode': 'below'}),
  815. ('indent',
  816. 'tall',
  817. 2,
  818. {}),
  819. ('source-assistant',
  820. 'tall',
  821. 1,
  822. {}),
  823. ('templating#02EFWRQK9X23',
  824. 'tall',
  825. 0,
  826. None)],
  827. 'primary_view_state': {'area': 'wide',
  828. 'constraint': None,
  829. 'current_pages': [2,
  830. 0],
  831. 'notebook_display': 'normal',
  832. 'notebook_percent': 0.4761133603238866,
  833. 'override_title': None,
  834. 'pagelist': [('debug-breakpoints',
  835. 'wide',
  836. 0,
  837. {'tree-state': []}),
  838. ('bookmarks',
  839. 'wide',
  840. 0,
  841. {}),
  842. ('debug-io',
  843. 'wide',
  844. 0,
  845. {}),
  846. ('debug-exceptions',
  847. 'wide',
  848. 0,
  849. {}),
  850. ('interactive-search',
  851. 'wide',
  852. 0,
  853. {'fScope': {'fFileSetName': 'All Source Files',
  854. 'fLocation': None,
  855. 'fRecursive': True,
  856. 'fType': 'project-files'},
  857. 'fSearchSpec': {'fEndPos': None,
  858. 'fIncludeLinenos': True,
  859. 'fInterpretBackslashes': False,
  860. 'fMatchCase': False,
  861. 'fOmitBinary': True,
  862. 'fRegexFlags': 46,
  863. 'fReplaceText': u'www.shortcut.lv',
  864. 'fReverse': False,
  865. 'fSearchText': u'raise',
  866. 'fStartPos': 0,
  867. 'fStyle': 'text',
  868. 'fWholeWords': False,
  869. 'fWrap': True},
  870. 'fUIOptions': {'fAutoBackground': True,
  871. 'fFilePrefix': 'short-file',
  872. 'fFindAfterReplace': True,
  873. 'fInSelection': False,
  874. 'fIncremental': True,
  875. 'fReplaceOnDisk': False,
  876. 'fShowFirstMatch': False,
  877. 'fShowLineno': True,
  878. 'fShowReplaceWidgets': False}}),
  879. ('batch-search',
  880. 'wide',
  881. 0,
  882. {'fScope': {'fFileSetName': 'All Source Files',
  883. 'fLocation': None,
  884. 'fRecursive': True,
  885. 'fType': 'documentation'},
  886. 'fSearchSpec': {'fEndPos': None,
  887. 'fIncludeLinenos': True,
  888. 'fInterpretBackslashes': False,
  889. 'fMatchCase': False,
  890. 'fOmitBinary': True,
  891. 'fRegexFlags': 46,
  892. 'fReplaceText': u'',
  893. 'fReverse': False,
  894. 'fSearchText': u'command',
  895. 'fStartPos': 0,
  896. 'fStyle': 'text',
  897. 'fWholeWords': False,
  898. 'fWrap': True},
  899. 'fUIOptions': {'fAutoBackground': True,
  900. 'fFilePrefix': 'short-file',
  901. 'fFindAfterReplace': True,
  902. 'fInSelection': False,
  903. 'fIncremental': True,
  904. 'fReplaceOnDisk': False,
  905. 'fShowFirstMatch': False,
  906. 'fShowLineno': True,
  907. 'fShowReplaceWidgets': False},
  908. 'replace-entry-expanded': False,
  909. 'search-entry-expanded': False}),
  910. ('debug-data',
  911. 'wide',
  912. 0,
  913. {}),
  914. ('testing',
  915. 'wide',
  916. 0,
  917. {'added-files': [],
  918. 'filter': u'',
  919. 'recent-filters': None,
  920. 'sort-order': 'alpha',
  921. 'tree-state': {'expanded-nodes': [],
  922. 'selected-nodes': [],
  923. 'top-node': (0,)}}),
  924. ('versioncontrol.git',
  925. 'wide',
  926. 0,
  927. {}),
  928. ('debug-modules',
  929. 'wide',
  930. 0,
  931. {}),
  932. ('debug-probe',
  933. 'wide',
  934. 2,
  935. {'active-range': (None,
  936. -1,
  937. -1),
  938. 'attrib-starts': [],
  939. 'first-line': 219L,
  940. 'folded-linenos': [],
  941. 'history': {u'file:C:/Data/Programming/enigma2/PlayStream2/content/run.py': ['p'\
  942. 'rint url\n',
  943. 'url\n',
  944. 'params\n'],
  945. u'file:C:/Data/Programming/enigma2/PlayStream2/content/sources/cinemalive.py': ['p'\
  946. 'rint p0\n',
  947. 'p\n',
  948. 'm2\n',
  949. 'dict(m2.groups())\n',
  950. 'm2.groups().dict()\n',
  951. 'm2.groups()\n',
  952. 'list(m2.groups())\n',
  953. 'l = list(m2.groups())\n',
  954. 'l.remove(2)\n',
  955. 'l.remove("video")\n',
  956. 'l\n'],
  957. u'file:C:/Data/Programming/enigma2/PlayStream2/content/sources/euronews.py': ['d'\
  958. 'ata\n',
  959. 'content\n',
  960. 'url\n',
  961. 'print url\n',
  962. 'r\n',
  963. 'article["text"]\n',
  964. 'cmd\n']},
  965. 'launch-id': None,
  966. 'sel-line': 231L,
  967. 'sel-line-start': 16224L,
  968. 'selection_end': 16245L,
  969. 'selection_start': 16224L,
  970. 'zoom': 0L}),
  971. ('debug-watch',
  972. 'wide',
  973. 1,
  974. {'node-states': [('eval',
  975. u'js'),
  976. ('eval',
  977. u'cur'),
  978. ('eval',
  979. u'article'),
  980. ('eval',
  981. u'item')],
  982. 'tree-state': {'expanded-nodes': [],
  983. 'selected-nodes': [(1,)],
  984. 'top-node': (0,)}}),
  985. ('messages',
  986. 'wide',
  987. 2,
  988. {'current-domain': 0}),
  989. ('os-command',
  990. 'wide',
  991. 1,
  992. {'last-percent': 0.8,
  993. 'toolbox-percent': 1.0,
  994. 'toolbox-tree-sel': ''}),
  995. ('uses',
  996. 'wide',
  997. 1,
  998. {}),
  999. ('python-shell',
  1000. 'wide',
  1001. 2,
  1002. {'active-range': (None,
  1003. -1,
  1004. -1),
  1005. 'attrib-starts': [],
  1006. 'first-line': 0L,
  1007. 'folded-linenos': [],
  1008. 'history': {},
  1009. 'launch-id': None,
  1010. 'sel-line': 2L,
  1011. 'sel-line-start': 174L,
  1012. 'selection_end': 174L,
  1013. 'selection_start': 174L,
  1014. 'zoom': 0L})],
  1015. 'primary_view_state': {'editor_states': ({'bookmarks': ([[loc('sources/cinemalive.py'),
  1016. {'attrib-starts': [('Source',
  1017. 29),
  1018. ('Source.get_streams',
  1019. 166)],
  1020. 'first-line': 176L,
  1021. 'folded-linenos': [],
  1022. 'sel-line': 184L,
  1023. 'sel-line-start': 9045L,
  1024. 'selection_end': 9087L,
  1025. 'selection_start': 9074L,
  1026. 'zoom': 0L},
  1027. 1513038881.367],
  1028. [loc('resolver.py'),
  1029. {'attrib-starts': [],
  1030. 'first-line': 0L,
  1031. 'folded-linenos': [],
  1032. 'sel-line': 0L,
  1033. 'sel-line-start': 0L,
  1034. 'selection_end': 0L,
  1035. 'selection_start': 0L,
  1036. 'zoom': 0L},
  1037. 1513038900.236],
  1038. [loc('resolvers/cloudsany.py'),
  1039. {'attrib-starts': [('resolve',
  1040. 30)],
  1041. 'first-line': 56L,
  1042. 'folded-linenos': [],
  1043. 'sel-line': 66L,
  1044. 'sel-line-start': 1937L,
  1045. 'selection_end': 1972L,
  1046. 'selection_start': 1972L,
  1047. 'zoom': 0L},
  1048. 1513038911.299],
  1049. [loc('resolvers/cloudsany.py'),
  1050. {'attrib-starts': [('resolve',
  1051. 30)],
  1052. 'first-line': 77L,
  1053. 'folded-linenos': [],
  1054. 'sel-line': 84L,
  1055. 'sel-line-start': 2550L,
  1056. 'selection_end': 2580L,
  1057. 'selection_start': 2580L,
  1058. 'zoom': 0L},
  1059. 1513038986.051],
  1060. [loc('sources/cinemalive.py'),
  1061. {'attrib-starts': [('Source',
  1062. 29),
  1063. ('Source.get_streams',
  1064. 166)],
  1065. 'first-line': 176L,
  1066. 'folded-linenos': [],
  1067. 'sel-line': 184L,
  1068. 'sel-line-start': 9045L,
  1069. 'selection_end': 9087L,
  1070. 'selection_start': 9074L,
  1071. 'zoom': 0L},
  1072. 1513039022.989],
  1073. [loc('resolvers/cloudsany.py'),
  1074. {'attrib-starts': [('resolve',
  1075. 30)],
  1076. 'first-line': 77L,
  1077. 'folded-linenos': [],
  1078. 'sel-line': 84L,
  1079. 'sel-line-start': 2550L,
  1080. 'selection_end': 2580L,
  1081. 'selection_start': 2580L,
  1082. 'zoom': 0L},
  1083. 1513039024.31],
  1084. [loc('resolvers/cloudsany.py'),
  1085. {'attrib-starts': [('resolve',
  1086. 30)],
  1087. 'first-line': 77L,
  1088. 'folded-linenos': [],
  1089. 'sel-line': 85L,
  1090. 'sel-line-start': 2581L,
  1091. 'selection_end': 2619L,
  1092. 'selection_start': 2606L,
  1093. 'zoom': 0L},
  1094. 1513039024.825],
  1095. [loc('resolvers/cloudsany.py'),
  1096. {'attrib-starts': [('resolve',
  1097. 30)],
  1098. 'first-line': 47L,
  1099. 'folded-linenos': [],
  1100. 'sel-line': 52L,
  1101. 'sel-line-start': 1489L,
  1102. 'selection_end': 1527L,
  1103. 'selection_start': 1514L,
  1104. 'zoom': 0L},
  1105. 1513039026.067],
  1106. [loc('resolvers/cloudsany.py'),
  1107. {'attrib-starts': [('resolve',
  1108. 30)],
  1109. 'first-line': 63L,
  1110. 'folded-linenos': [],
  1111. 'sel-line': 85L,
  1112. 'sel-line-start': 2581L,
  1113. 'selection_end': 2619L,
  1114. 'selection_start': 2606L,
  1115. 'zoom': 0L},
  1116. 1513039049.916],
  1117. [loc('resolvers/cloudsany.py'),
  1118. {'attrib-starts': [('resolve',
  1119. 30)],
  1120. 'first-line': 75L,
  1121. 'folded-linenos': [],
  1122. 'sel-line': 85L,
  1123. 'sel-line-start': 2581L,
  1124. 'selection_end': 2619L,
  1125. 'selection_start': 2606L,
  1126. 'zoom': 0L},
  1127. 1513039051.812],
  1128. [loc('resolvers/cloudsany.py'),
  1129. {'attrib-starts': [('resolve',
  1130. 30)],
  1131. 'first-line': 42L,
  1132. 'folded-linenos': [],
  1133. 'sel-line': 47L,
  1134. 'sel-line-start': 1343L,
  1135. 'selection_end': 1356L,
  1136. 'selection_start': 1351L,
  1137. 'zoom': 0L},
  1138. 1513039058.41],
  1139. [loc('resolvers/cloudsany.py'),
  1140. {'attrib-starts': [('resolve',
  1141. 30)],
  1142. 'first-line': 42L,
  1143. 'folded-linenos': [],
  1144. 'sel-line': 52L,
  1145. 'sel-line-start': 1489L,
  1146. 'selection_end': 1502L,
  1147. 'selection_start': 1497L,
  1148. 'zoom': 0L},
  1149. 1513039058.793],
  1150. [loc('resolvers/cloudsany.py'),
  1151. {'attrib-starts': [('resolve',
  1152. 30)],
  1153. 'first-line': 75L,
  1154. 'folded-linenos': [],
  1155. 'sel-line': 85L,
  1156. 'sel-line-start': 2581L,
  1157. 'selection_end': 2594L,
  1158. 'selection_start': 2589L,
  1159. 'zoom': 0L},
  1160. 1513039059.535],
  1161. [loc('resolvers/cloudsany.py'),
  1162. {'attrib-starts': [('resolve',
  1163. 30)],
  1164. 'first-line': 78L,
  1165. 'folded-linenos': [],
  1166. 'sel-line': 90L,
  1167. 'sel-line-start': 2795L,
  1168. 'selection_end': 2819L,
  1169. 'selection_start': 2819L,
  1170. 'zoom': 0L},
  1171. 1513039704.266],
  1172. [loc('sources/cinemalive.py'),
  1173. {'attrib-starts': [('Source',
  1174. 29),
  1175. ('Source.get_streams',
  1176. 166)],
  1177. 'first-line': 176L,
  1178. 'folded-linenos': [],
  1179. 'sel-line': 184L,
  1180. 'sel-line-start': 9045L,
  1181. 'selection_end': 9087L,
  1182. 'selection_start': 9074L,
  1183. 'zoom': 0L},
  1184. 1513039740.396],
  1185. [loc('resolvers/cloudsany.py'),
  1186. {'attrib-starts': [('resolve',
  1187. 30)],
  1188. 'first-line': 78L,
  1189. 'folded-linenos': [],
  1190. 'sel-line': 88L,
  1191. 'sel-line-start': 2726L,
  1192. 'selection_end': 2743L,
  1193. 'selection_start': 2743L,
  1194. 'zoom': 0L},
  1195. 1513039768.169],
  1196. [loc('sources/cinemalive.py'),
  1197. {'attrib-starts': [('Source',
  1198. 29),
  1199. ('Source.get_streams',
  1200. 166)],
  1201. 'first-line': 176L,
  1202. 'folded-linenos': [],
  1203. 'sel-line': 184L,
  1204. 'sel-line-start': 9045L,
  1205. 'selection_end': 9087L,
  1206. 'selection_start': 9074L,
  1207. 'zoom': 0L},
  1208. 1513039803.617],
  1209. [loc('resolvers/cloudsany.py'),
  1210. {'attrib-starts': [('resolve',
  1211. 30)],
  1212. 'first-line': 81L,
  1213. 'folded-linenos': [],
  1214. 'sel-line': 88L,
  1215. 'sel-line-start': 2726L,
  1216. 'selection_end': 2726L,
  1217. 'selection_start': 2726L,
  1218. 'zoom': 0L},
  1219. 1513039835.015],
  1220. [loc('sources/cinemalive.py'),
  1221. {'attrib-starts': [('Source',
  1222. 29),
  1223. ('Source.get_streams',
  1224. 166)],
  1225. 'first-line': 176L,
  1226. 'folded-linenos': [],
  1227. 'sel-line': 184L,
  1228. 'sel-line-start': 9045L,
  1229. 'selection_end': 9087L,
  1230. 'selection_start': 9074L,
  1231. 'zoom': 0L},
  1232. 1513039853.364],
  1233. [loc('resolvers/cloudsany.py'),
  1234. {'attrib-starts': [('resolve',
  1235. 30)],
  1236. 'first-line': 81L,
  1237. 'folded-linenos': [],
  1238. 'sel-line': 90L,
  1239. 'sel-line-start': 2808L,
  1240. 'selection_end': 2834L,
  1241. 'selection_start': 2834L,
  1242. 'zoom': 0L},
  1243. 1513039884.569]],
  1244. 20),
  1245. 'current-loc': loc('sources/cinemalive.py'),
  1246. 'editor-state-list': [(loc('ContentSources.py'),
  1247. {'attrib-starts': [('ContentSources',
  1248. 16),
  1249. ('ContentSources.get_content',
  1250. 64)],
  1251. 'first-line': 80L,
  1252. 'folded-linenos': [],
  1253. 'sel-line': 89L,
  1254. 'sel-line-start': 4016L,
  1255. 'selection_end': 4016L,
  1256. 'selection_start': 4016L,
  1257. 'zoom': 0L}),
  1258. (loc('sources/ltc.py'),
  1259. {'attrib-starts': [('Source',
  1260. 27),
  1261. ('Source.get_content',
  1262. 74)],
  1263. 'first-line': 78L,
  1264. 'folded-linenos': [],
  1265. 'sel-line': 83L,
  1266. 'sel-line-start': 3077L,
  1267. 'selection_end': 3168L,
  1268. 'selection_start': 3168L,
  1269. 'zoom': 0L}),
  1270. (loc('util.py'),
  1271. {'attrib-starts': [('unescape',
  1272. 538)],
  1273. 'first-line': 539L,
  1274. 'folded-linenos': [],
  1275. 'sel-line': 547L,
  1276. 'sel-line-start': 16779L,
  1277. 'selection_end': 16779L,
  1278. 'selection_start': 16779L,
  1279. 'zoom': 0L}),
  1280. (loc('sources/replay.py'),
  1281. {'attrib-starts': [('Source',
  1282. 30),
  1283. ('Source.get_content',
  1284. 41)],
  1285. 'first-line': 236L,
  1286. 'folded-linenos': [],
  1287. 'sel-line': 248L,
  1288. 'sel-line-start': 13008L,
  1289. 'selection_end': 13008L,
  1290. 'selection_start': 13008L,
  1291. 'zoom': 0L}),
  1292. (loc('sources/cinemalive.py'),
  1293. {'attrib-starts': [('Source',
  1294. 29),
  1295. ('Source.get_streams',
  1296. 166)],
  1297. 'first-line': 176L,
  1298. 'folded-linenos': [],
  1299. 'sel-line': 184L,
  1300. 'sel-line-start': 9045L,
  1301. 'selection_end': 9087L,
  1302. 'selection_start': 9074L,
  1303. 'zoom': 0L}),
  1304. (loc('sources/lmt.py'),
  1305. {'attrib-starts': [],
  1306. 'first-line': 199L,
  1307. 'folded-linenos': [],
  1308. 'sel-line': 210L,
  1309. 'sel-line-start': 8912L,
  1310. 'selection_end': 8920L,
  1311. 'selection_start': 8920L,
  1312. 'zoom': 0L}),
  1313. (loc('sources/filmas.py'),
  1314. {'attrib-starts': [('Source',
  1315. 36),
  1316. ('Source.__init__',
  1317. 38)],
  1318. 'first-line': 42L,
  1319. 'folded-linenos': [],
  1320. 'sel-line': 44L,
  1321. 'sel-line-start': 1330L,
  1322. 'selection_end': 1369L,
  1323. 'selection_start': 1369L,
  1324. 'zoom': 0L}),
  1325. (loc('kivy_test.py'),
  1326. {'attrib-starts': [],
  1327. 'first-line': 0L,
  1328. 'folded-linenos': [24L],
  1329. 'sel-line': 0L,
  1330. 'sel-line-start': 0L,
  1331. 'selection_end': 3L,
  1332. 'selection_start': 3L,
  1333. 'zoom': 0L}),
  1334. (loc('sources/filmix.py'),
  1335. {'attrib-starts': [('Source',
  1336. 31),
  1337. ('Source.get_content',
  1338. 56)],
  1339. 'first-line': 81L,
  1340. 'folded-linenos': [],
  1341. 'sel-line': 90L,
  1342. 'sel-line-start': 3299L,
  1343. 'selection_end': 3299L,
  1344. 'selection_start': 3299L,
  1345. 'zoom': 0L}),
  1346. (loc('Downloader.py'),
  1347. {'attrib-starts': [('get_header',
  1348. 195)],
  1349. 'first-line': 175L,
  1350. 'folded-linenos': [],
  1351. 'sel-line': 198L,
  1352. 'sel-line-start': 7992L,
  1353. 'selection_end': 8012L,
  1354. 'selection_start': 8012L,
  1355. 'zoom': 0L}),
  1356. (loc('run.py'),
  1357. {'attrib-starts': [('Main',
  1358. 22),
  1359. ('Main.play_video',
  1360. 242)],
  1361. 'first-line': 255L,
  1362. 'folded-linenos': [],
  1363. 'sel-line': 264L,
  1364. 'sel-line-start': 10415L,
  1365. 'selection_end': 10415L,
  1366. 'selection_start': 10415L,
  1367. 'zoom': 0L}),
  1368. (loc('sources/euronews.py'),
  1369. {'attrib-starts': [('Source',
  1370. 26),
  1371. ('Source.get_streams',
  1372. 150)],
  1373. 'first-line': 168L,
  1374. 'folded-linenos': [],
  1375. 'sel-line': 176L,
  1376. 'sel-line-start': 7974L,
  1377. 'selection_end': 7974L,
  1378. 'selection_start': 7974L,
  1379. 'zoom': 0L}),
  1380. (loc('sources/filmon.py'),
  1381. {'attrib-starts': [('Source',
  1382. 32),
  1383. ('Source.get_content',
  1384. 47)],
  1385. 'first-line': 113L,
  1386. 'folded-linenos': [],
  1387. 'sel-line': 122L,
  1388. 'sel-line-start': 4665L,
  1389. 'selection_end': 4665L,
  1390. 'selection_start': 4665L,
  1391. 'zoom': 0L}),
  1392. (loc('resolver.py'),
  1393. {'attrib-starts': [],
  1394. 'first-line': 0L,
  1395. 'folded-linenos': [],
  1396. 'sel-line': 0L,
  1397. 'sel-line-start': 0L,
  1398. 'selection_end': 0L,
  1399. 'selection_start': 0L,
  1400. 'zoom': 0L}),
  1401. (loc('resolvers/cloudsany.py'),
  1402. {'attrib-starts': [('resolve',
  1403. 30)],
  1404. 'first-line': 81L,
  1405. 'folded-linenos': [],
  1406. 'sel-line': 90L,
  1407. 'sel-line-start': 2808L,
  1408. 'selection_end': 2834L,
  1409. 'selection_start': 2834L,
  1410. 'zoom': 0L})],
  1411. 'has-focus': True,
  1412. 'locked': False},
  1413. [loc('ContentSources.py'),
  1414. loc('sources/ltc.py'),
  1415. loc('util.py'),
  1416. loc('sources/replay.py'),
  1417. loc('sources/cinemalive.py'),
  1418. loc('sources/lmt.py'),
  1419. loc('sources/filmas.py'),
  1420. loc('kivy_test.py'),
  1421. loc('sources/filmix.py'),
  1422. loc('Downloader.py'),
  1423. loc('run.py'),
  1424. loc('sources/euronews.py'),
  1425. loc('sources/filmon.py'),
  1426. loc('resolver.py'),
  1427. loc('resolvers/cloudsany.py')]),
  1428. 'open_files': [u'kivy_test.py',
  1429. u'sources/filmas.py',
  1430. u'sources/filmix.py',
  1431. u'sources/lmt.py',
  1432. u'sources/ltc.py',
  1433. u'sources/replay.py',
  1434. u'util.py',
  1435. u'Downloader.py',
  1436. u'sources/euronews.py',
  1437. u'ContentSources.py',
  1438. u'sources/filmon.py',
  1439. u'run.py',
  1440. u'resolver.py',
  1441. u'resolvers/cloudsany.py',
  1442. u'sources/cinemalive.py']},
  1443. 'saved_notebook_display': None,
  1444. 'split_percents': {0: 0.42670046472327844},
  1445. 'splits': 2,
  1446. 'tab_location': 'top',
  1447. 'user_data': {}},
  1448. 'saved_notebook_display': None,
  1449. 'split_percents': {0: 0.5},
  1450. 'splits': 2,
  1451. 'tab_location': 'left',
  1452. 'user_data': {}},
  1453. 'window-alloc': (306,
  1454. -1080,
  1455. 1858,
  1456. 1080)}]}
  1457. guimgr.recent-documents = [loc('sources/cinemalive.py'),
  1458. loc('resolvers/cloudsany.py'),
  1459. loc('resolver.py'),
  1460. loc('run.py'),
  1461. loc('sources/filmon.py'),
  1462. loc('ContentSources.py'),
  1463. loc('sources/euronews.py'),
  1464. loc('Downloader.py'),
  1465. loc('util.py'),
  1466. loc('sources/filmas.py'),
  1467. loc('kivy_test.py'),
  1468. loc('sources/ltc.py'),
  1469. loc('sources/filmix.py'),
  1470. loc('sources/lmt.py'),
  1471. loc('sources/replay.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.__init__',
  1762. 34)],
  1763. 'first-line': 26L,
  1764. 'folded-linenos': [],
  1765. 'sel-line': 38L,
  1766. 'sel-line-start': 1351L,
  1767. 'selection_end': 1381L,
  1768. 'selection_start': 1381L,
  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'raise',
  1989. u'can not find ',
  1990. u'img',
  1991. u'get_head',
  1992. u'base_url',
  1993. u'download',
  1994. u'order=',
  1995. u'API_URL',
  1996. u'thumbnail',
  1997. u'http:',
  1998. u'www.lattelecom.tv',
  1999. u'http://www',
  2000. u'lattelecom.tv',
  2001. u'crypt',
  2002. u'host',
  2003. u'url_stream',
  2004. u'url_sub',
  2005. u'.pack',
  2006. u'Text',
  2007. u'VideoInfo']
  2008. testing.stored-results = (1,
  2009. [],
  2010. {})