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

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