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

project.wpr 79KB

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