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

project.wpr 78KB

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