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

project.wpr 77KB

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