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

project.wpr 73KB

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