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

project.wpr 93KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  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('playstreamproxyX.py'): ('project',
  36. (u'manualstart',
  37. '')),
  38. loc('sources/lmt.py'): ('project',
  39. (u'home',
  40. ''))}
  41. [user attributes]
  42. debug.breakpoints = {loc('Downloader.py'): {94: (0,
  43. None,
  44. 1,
  45. 0),
  46. 102L: (0,
  47. None,
  48. 1,
  49. 0),
  50. 193L: (0,
  51. None,
  52. 1,
  53. 0)},
  54. loc('iub.py'): {102: (0,
  55. None,
  56. 1,
  57. 0),
  58. 146: (0,
  59. None,
  60. 1,
  61. 0)},
  62. loc('iub_db.py'): {209: (0,
  63. None,
  64. 1,
  65. 0),
  66. 376: (0,
  67. None,
  68. 1,
  69. 0)},
  70. loc('kivy_test.py'): {67L: (0,
  71. None,
  72. 1,
  73. 0),
  74. 118L: (0,
  75. None,
  76. 1,
  77. 0)},
  78. loc('playstreamproxy.py'): {340L: (0,
  79. None,
  80. 1,
  81. 0)},
  82. loc('playstreamproxyX.py'): {65: (0,
  83. None,
  84. 1,
  85. 0),
  86. 95L: (0,
  87. None,
  88. 1,
  89. 0)},
  90. loc('resolvers/cloudsany.py'): {48L: (0,
  91. None,
  92. 1,
  93. 0),
  94. 56L: (0,
  95. None,
  96. 1,
  97. 0),
  98. 89L: (0,
  99. None,
  100. 1,
  101. 0),
  102. 112L: (0,
  103. None,
  104. 1,
  105. 0),
  106. 120L: (0,
  107. None,
  108. 1,
  109. 0)},
  110. loc('run.py'): {277L: (0,
  111. None,
  112. 1,
  113. 0),
  114. 414: (0,
  115. None,
  116. 1,
  117. 0),
  118. 633L: (0,
  119. None,
  120. 1,
  121. 0)},
  122. loc('sources/config.py'): {56: (0,
  123. None,
  124. 1,
  125. 0),
  126. 107L: (0,
  127. None,
  128. 1,
  129. 0),
  130. 116L: (0,
  131. None,
  132. 1,
  133. 0)},
  134. loc('sources/euronews.py'): {161L: (0,
  135. None,
  136. 1,
  137. 0)},
  138. loc('sources/filmas.py'): {110L: (0,
  139. None,
  140. 1,
  141. 0)},
  142. loc('sources/filmon.py'): {49L: (0,
  143. None,
  144. 1,
  145. 0)},
  146. loc('sources/lmt.py'): {221L: (0,
  147. None,
  148. 1,
  149. 0)},
  150. loc('sources/ltc.py'): {568L: (0,
  151. None,
  152. 1,
  153. 0),
  154. 957L: (0,
  155. None,
  156. 1,
  157. 0)},
  158. loc('sources/replay.py'): {145L: (0,
  159. None,
  160. 1,
  161. 0),
  162. 366L: (0,
  163. None,
  164. 1,
  165. 0)},
  166. loc('sources/tmp/ltc.py'): {580L: (0,
  167. None,
  168. 1,
  169. 0)},
  170. loc('sources/tvdom.py'): {190L: (0,
  171. None,
  172. 1,
  173. 0)},
  174. loc('sources/tvplay.py'): {124L: (0,
  175. None,
  176. 1,
  177. 0)},
  178. loc('test_sources.py'): {7L: (0,
  179. None,
  180. 1,
  181. 0)},
  182. loc('untitled-1.py'): {10: (0,
  183. None,
  184. 1,
  185. 0)},
  186. loc('../untitled-1.py'): {1: (0,
  187. None,
  188. 1,
  189. 0),
  190. 2: (0,
  191. None,
  192. 1,
  193. 0),
  194. 3: (0,
  195. None,
  196. 1,
  197. 0)},
  198. loc('unknown:<untitled> #1'): {10: (0,
  199. None,
  200. 1,
  201. 0)},
  202. loc('unknown:<untitled> #2'): {2: (0,
  203. None,
  204. 1,
  205. 0)}}
  206. debug.err-values = {None: {},
  207. loc('ContentSources.py'): {},
  208. loc('Downloader.py'): {},
  209. loc('iub_db.py'): {},
  210. loc('iub_email.py'): {},
  211. loc('iubx.py'): {},
  212. loc('kivy_test2.py'): {},
  213. loc('run.py'): {},
  214. loc('sources/cinemalive.py'): {},
  215. loc('sources/euronews.py'): {},
  216. loc('sources/filmix.py'): {},
  217. loc('sources/ltc.py'): {},
  218. loc('sources/replay.py'): {},
  219. loc('sources/tvplay.py'): {},
  220. loc('test_sources2.py'): {}}
  221. debug.recent-run-args = {loc('ContentSources.py'): [u'config::home streams_bernu.cfg',
  222. u'ltc::home',
  223. u'config::home'],
  224. loc('Downloader.py'): [u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\ccc',
  225. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\bbb',
  226. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 aaa.mp4'],
  227. loc('iub_db.py'): [u'-d 90 -s -o',
  228. u'-d 40 -rg -o',
  229. u'-d 40 -s -o',
  230. u'-d 40 -r -o',
  231. u'-d 40 -g -o',
  232. u'-d 60 -s -o',
  233. u'-d 10 -r -o',
  234. u'-d 3 --slud -o',
  235. u'-d 10 --rez -o',
  236. u'-d 10 --rez',
  237. u'-d 10 --groz',
  238. u'-d 20 --groz',
  239. u'-d 20 --slud',
  240. u'-d 10 --slud',
  241. u'-d 3 --slud',
  242. u'-d 3'],
  243. loc('iub_db2.py'): [u'-p 1 2 --debug ',
  244. u'-d 1 --debug ',
  245. u'-p 51 53 --debug -o',
  246. u'-p 50 53 --debug -o',
  247. u'-d 3 --debug -o',
  248. u'-d 1 --debug -o',
  249. u'-d 1 --debug -o',
  250. u'-d 1 --debug',
  251. u'-d 1',
  252. u'-h'],
  253. loc('iub_email.py'): [u'-i --debug',
  254. u'-i ',
  255. u'-i',
  256. u'-p'],
  257. loc('iubx.py'): [u'-s -d30',
  258. u'-s -d10',
  259. u'-s -d3',
  260. u'-s -d40',
  261. '-s -d 10\n'],
  262. loc('iubx2.py'): [u'-sgr -d 10',
  263. u'-sgr',
  264. u'--sgr',
  265. u'--slud'],
  266. loc('kivy_test.py'): [u'https://walterebert.com/playground/video/hls/sintel-trailer.m3u8',
  267. u'https://dl4.sanii.co/files/2/60e13omc1cpph2/video.mp4'],
  268. loc('playstreamproxyX.py'): [u'manualstart'],
  269. loc('run.py'): [u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams.cfg',
  270. u'config::home sources\\cfg0\\streams_al.cfg',
  271. u'config::home ',
  272. u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg',
  273. u'config::home ftps://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg',
  274. u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg2',
  275. u'config::home ftp://home.blue.lv/hdd/streams_al.cfg',
  276. u'config::home ',
  277. u'config::home streams_bernu.cfg',
  278. u'ltc::home',
  279. u'ltc::videonoma',
  280. u'ltc::video ',
  281. u'config::home streams_bernu.cfg',
  282. u'config::home'],
  283. loc('sources/lmt.py'): [u'home',
  284. u'home cli'],
  285. loc('sources/ltc.py'): [u'ltc::videonoma'],
  286. loc('sources/replay.py'): [u'replay::ieraksts/ltv/132895/tiesa-runa-kas-kontrole-maksatnespejas-nozari']}
  287. debug.run-args = {}
  288. debug.var-col-widths = [0.37922403003754696,
  289. 0.6207759699624531]
  290. edit.bookmarks = {'list_action': (loc('run.py'),
  291. {'attrib-starts': [('Main',
  292. 17),
  293. ('Main.list_action',
  294. 95)],
  295. 'first-line': 98L,
  296. 'sel-line': 124L})}
  297. guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
  298. 'windows': [{'name': 'F8FpRDICw7YHXG3HV2rBc63asU'\
  299. 'LBT7JH',
  300. 'size-state': 'maximized',
  301. 'type': 'dock',
  302. 'view': {'area': 'tall',
  303. 'constraint': None,
  304. 'current_pages': [0,
  305. 0],
  306. 'full-screen': False,
  307. 'notebook_display': 'tabs only',
  308. 'notebook_percent': 0.17992831541218635,
  309. 'override_title': None,
  310. 'pagelist': [('project',
  311. 'tall',
  312. 0,
  313. {'tree-state': {'file-sort-method': 'by name',
  314. 'list-files-first': 0,
  315. 'tree-states': {'deep': {'expanded-nodes': [(6,)],
  316. 'selected-nodes': [(6,
  317. 22)],
  318. 'top-node': (6,
  319. 12)}},
  320. 'tree-style': 'deep'}}),
  321. ('snippets',
  322. 'tall',
  323. 0,
  324. {'tree-states': {u'c': [],
  325. u'html': [],
  326. u'py': [['class',
  327. 'all',
  328. '']]}}),
  329. ('browser',
  330. 'tall',
  331. 0,
  332. {'all_tree_states': {loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'): {'c'\
  333. 'olumn-widths': [1.0],
  334. 'expanded-nodes': [],
  335. 'selected-nodes': [],
  336. 'top-node': [('generic attribute',
  337. loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'),
  338. 'ft')]},
  339. 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'\
  340. 'olumn-widths': [1.0],
  341. 'expanded-nodes': [],
  342. 'selected-nodes': [],
  343. 'top-node': [('generic attribute',
  344. 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'),
  345. 'ANYTHING')]},
  346. loc('../../../Python25/Lib/BeautifulSoup.py'): {'column-widths': [1.0],
  347. 'expanded-nodes': [],
  348. 'selected-nodes': [],
  349. 'top-node': [('class def',
  350. loc('../../../Python25/Lib/BeautifulSoup.py'),
  351. 'BeautifulSOAP')]},
  352. loc('../../../Python25/Lib/ConfigParser.py'): {'column-widths': [1.0],
  353. 'expanded-nodes': [],
  354. 'selected-nodes': [],
  355. 'top-node': [('class def',
  356. loc('../../../Python25/Lib/ConfigParser.py'),
  357. 'ConfigParser')]},
  358. loc('../../../Python25/Lib/StringIO.py'): {'column-widths': [1.0],
  359. 'expanded-nodes': [],
  360. 'selected-nodes': [],
  361. 'top-node': [('class def',
  362. loc('../../../Python25/Lib/StringIO.py'),
  363. 'StringIO')]},
  364. loc('../../../Python25/Lib/dircache.py'): {'column-widths': [1.0],
  365. 'expanded-nodes': [],
  366. 'selected-nodes': [],
  367. 'top-node': [('function def',
  368. loc('../../../Python25/Lib/dircache.py'),
  369. 'annotate')]},
  370. loc('../../../Python25/Lib/encodings/cp1257.py'): {'column-widths': [1.0],
  371. 'expanded-nodes': [],
  372. 'selected-nodes': [],
  373. 'top-node': [('class def',
  374. loc('../../../Python25/Lib/encodings/cp1257.py'),
  375. 'Codec')]},
  376. loc('../../../Python25/Lib/encodings/utf_8.py'): {'column-widths': [1.0],
  377. 'expanded-nodes': [],
  378. 'selected-nodes': [],
  379. 'top-node': [('function def',
  380. loc('../../../Python25/Lib/encodings/utf_8.py'),
  381. 'decode')]},
  382. loc('../../../Python25/Lib/ntpath.py'): {'column-widths': [1.0],
  383. 'expanded-nodes': [],
  384. 'selected-nodes': [],
  385. 'top-node': [('function def',
  386. loc('../../../Python25/Lib/ntpath.py'),
  387. 'abspath')]},
  388. loc('../../../Python25/Lib/re.py'): {'column-widths': [1.0],
  389. 'expanded-nodes': [],
  390. 'selected-nodes': [],
  391. 'top-node': [('generic attribute',
  392. loc('../../../Python25/Lib/re.py'),
  393. 'c')]},
  394. loc('../../../Python25/Lib/sgmllib.py'): {'column-widths': [1.0],
  395. 'expanded-nodes': [],
  396. 'selected-nodes': [],
  397. 'top-node': [('generic attribute',
  398. loc('../../../Python25/Lib/sgmllib.py'),
  399. 'attrfind')]},
  400. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'): {'c'\
  401. 'olumn-widths': [1.0],
  402. 'expanded-nodes': [],
  403. 'selected-nodes': [],
  404. 'top-node': [('generic attribute',
  405. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'),
  406. 'BIT2MODE')]},
  407. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'): {'c'\
  408. 'olumn-widths': [1.0],
  409. 'expanded-nodes': [],
  410. 'selected-nodes': [],
  411. 'top-node': [('function def',
  412. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'),
  413. 'getdata')]},
  414. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'column-wi'\
  415. 'dths': [1.0],
  416. 'expanded-nodes': [],
  417. 'selected-nodes': [[('generic attribute',
  418. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  419. '_initialized')]],
  420. 'top-node': [('generic attribute',
  421. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  422. 'ADAPTIVE')]},
  423. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'): {'colum'\
  424. 'n-widths': [1.0],
  425. 'expanded-nodes': [],
  426. 'selected-nodes': [],
  427. 'top-node': [('generic attribute',
  428. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'),
  429. 'ERRORS')]},
  430. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'): {'co'\
  431. 'lumn-widths': [1.0],
  432. 'expanded-nodes': [],
  433. 'selected-nodes': [],
  434. 'top-node': [('class def',
  435. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'),
  436. 'ImagePalette')]},
  437. loc('../../../Python25/Lib/site-packages/argparse.py'): {'column-wid'\
  438. 'ths': [1.0],
  439. 'expanded-nodes': [],
  440. 'selected-nodes': [],
  441. 'top-node': [('class def',
  442. loc('../../../Python25/Lib/site-packages/argparse.py'),
  443. 'Action')]},
  444. loc('../../../Python25/Lib/site-packages/pdo.py'): {'column-widths': [1.0],
  445. 'expanded-nodes': [],
  446. 'selected-nodes': [],
  447. 'top-node': [('class def',
  448. loc('../../../Python25/Lib/site-packages/pdo.py'),
  449. 'connect')]},
  450. loc('../../../Python25/Lib/struct.py'): {'column-widths': [1.0],
  451. 'expanded-nodes': [],
  452. 'selected-nodes': [],
  453. 'top-node': [('function def',
  454. loc('../../../Python25/Lib/struct.py'),
  455. 'calcsize')]},
  456. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'): {'exp'\
  457. 'anded-nodes': [],
  458. 'selected-nodes': [],
  459. 'top-node': [('class def',
  460. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  461. 'CompositeCaster')]},
  462. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'): {'e'\
  463. 'xpanded-nodes': [],
  464. 'selected-nodes': [],
  465. 'top-node': [('generic attribute',
  466. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  467. 'ALL_INVOKE_TYPES')]},
  468. loc('../$test/test2.py'): {'column-widths': [1.0],
  469. 'expanded-nodes': [],
  470. 'selected-nodes': [],
  471. 'top-node': [('generic attribute',
  472. loc('../$test/test2.py'),
  473. 'con')]},
  474. loc('../$test/test3.py'): {'column-widths': [1.0],
  475. 'expanded-nodes': [],
  476. 'selected-nodes': [],
  477. 'top-node': [('generic attribute',
  478. loc('../$test/test3.py'),
  479. 'area')]},
  480. loc('../$test/test4.py'): {'column-widths': [1.0],
  481. 'expanded-nodes': [],
  482. 'selected-nodes': [],
  483. 'top-node': [('generic attribute',
  484. loc('../$test/test4.py'),
  485. 'con')]},
  486. loc('../5streets/5streets.py'): {'column-widths': [1.0],
  487. 'expanded-nodes': [],
  488. 'selected-nodes': [],
  489. 'top-node': [('generic attribute',
  490. loc('../5streets/5streets.py'),
  491. 'dlat')]},
  492. loc('../JS2/JSData.py'): {'column-widths': [1.0],
  493. 'expanded-nodes': [],
  494. 'selected-nodes': [],
  495. 'top-node': [('generic attribute',
  496. loc('../JS2/JSData.py'),
  497. 'db')]},
  498. loc('../JS2/const.py'): {'column-widths': [1.0],
  499. 'expanded-nodes': [],
  500. 'selected-nodes': [],
  501. 'top-node': [('generic attribute',
  502. loc('../JS2/const.py'),
  503. 'config')]},
  504. loc('../JS2/js2gif2.py'): {'column-widths': [1.0],
  505. 'expanded-nodes': [],
  506. 'selected-nodes': [],
  507. 'top-node': [('generic attribute',
  508. loc('../JS2/js2gif2.py'),
  509. 'argc')]},
  510. loc('../JS2/js3.py'): {'column-widths': [1.0],
  511. 'expanded-nodes': [],
  512. 'selected-nodes': [],
  513. 'top-node': [('function def',
  514. loc('../JS2/js3.py'),
  515. 'deg')]},
  516. loc('../JS2/js3s.py'): {'column-widths': [1.0],
  517. 'expanded-nodes': [],
  518. 'selected-nodes': [],
  519. 'top-node': [('function def',
  520. loc('../JS2/js3s.py'),
  521. 'deg')]},
  522. loc('../JS2/js_2gif.py'): {'column-widths': [1.0],
  523. 'expanded-nodes': [],
  524. 'selected-nodes': [],
  525. 'top-node': [('generic attribute',
  526. loc('../JS2/js_2gif.py'),
  527. 'argc')]},
  528. loc('../JS2/js_db.py'): {'column-widths': [1.0],
  529. 'expanded-nodes': [],
  530. 'selected-nodes': [],
  531. 'top-node': [('generic attribute',
  532. loc('../JS2/js_db.py'),
  533. 'bks93')]},
  534. loc('../JS2/js_map.py'): {'column-widths': [1.0],
  535. 'expanded-nodes': [],
  536. 'selected-nodes': [[('function def',
  537. loc('../JS2/js_map.py'),
  538. 'deg')]],
  539. 'top-node': [('function def',
  540. loc('../JS2/js_map.py'),
  541. 'deg')]},
  542. loc('../JS2/js_map2.py'): {'column-widths': [1.0],
  543. 'expanded-nodes': [],
  544. 'selected-nodes': [],
  545. 'top-node': [('function def',
  546. loc('../JS2/js_map2.py'),
  547. 'deg')]},
  548. loc('../JS2/js_map3.py'): {'column-widths': [1.0],
  549. 'expanded-nodes': [],
  550. 'selected-nodes': [],
  551. 'top-node': [('function def',
  552. loc('../JS2/js_map3.py'),
  553. 'deg')]},
  554. loc('../JS2/js_map4.py'): {'column-widths': [1.0],
  555. 'expanded-nodes': [],
  556. 'selected-nodes': [],
  557. 'top-node': [('function def',
  558. loc('../JS2/js_map4.py'),
  559. 'create_map')]},
  560. loc('../JS2/js_shp.py'): {'column-widths': [1.0],
  561. 'expanded-nodes': [],
  562. 'selected-nodes': [],
  563. 'top-node': [('generic attribute',
  564. loc('../JS2/js_shp.py'),
  565. 'cx')]},
  566. loc('../JS2/js_unpack.py'): {'column-widths': [1.0],
  567. 'expanded-nodes': [],
  568. 'selected-nodes': [],
  569. 'top-node': [('generic attribute',
  570. loc('../JS2/js_unpack.py'),
  571. 'argc')]},
  572. loc('../JS2/jsdb2.py'): {'column-widths': [1.0],
  573. 'expanded-nodes': [],
  574. 'selected-nodes': [],
  575. 'top-node': [('generic attribute',
  576. loc('../JS2/jsdb2.py'),
  577. 'bks93')]},
  578. loc('../JS2/jsunpack2.py'): {'column-widths': [1.0],
  579. 'expanded-nodes': [],
  580. 'selected-nodes': [],
  581. 'top-node': [('generic attribute',
  582. loc('../JS2/jsunpack2.py'),
  583. 'argc')]},
  584. loc('../JS2/ozimap.py'): {'column-widths': [1.0],
  585. 'expanded-nodes': [],
  586. 'selected-nodes': [],
  587. 'top-node': [('generic attribute',
  588. loc('../JS2/ozimap.py'),
  589. 'epilog')]},
  590. loc('../JS2/test PIL.py'): {'column-widths': [1.0],
  591. 'expanded-nodes': [],
  592. 'selected-nodes': [],
  593. 'top-node': [('function def',
  594. loc('../JS2/test PIL.py'),
  595. 'get_pp')]},
  596. loc('BeautifulSoup.py'): {'expanded-nodes': [],
  597. 'selected-nodes': [],
  598. 'top-node': [('class def',
  599. loc('BeautifulSoup.py'),
  600. 'BeautifulSOAP')]},
  601. loc('ContentSources.py'): {'expanded-nodes': [],
  602. 'selected-nodes': [],
  603. 'top-node': [('generic attribute',
  604. loc('ContentSources.py'),
  605. 'cfg_file')]},
  606. loc('config.py'): {'expanded-nodes': [],
  607. 'selected-nodes': [],
  608. 'top-node': [('generic attribute',
  609. loc('config.py'),
  610. 'config')]},
  611. loc('database.py'): {'expanded-nodes': [],
  612. 'selected-nodes': [],
  613. 'top-node': [('class def',
  614. loc('database.py'),
  615. 'Database')]},
  616. loc('excel3.py'): {'expanded-nodes': [],
  617. 'selected-nodes': [],
  618. 'top-node': [('class def',
  619. loc('excel3.py'),
  620. 'Excel')]},
  621. loc('iub_db.py'): {'expanded-nodes': [],
  622. 'selected-nodes': [],
  623. 'top-node': [('function def',
  624. loc('iub_db.py'),
  625. 'add_rec')]},
  626. loc('iub_db2.py'): {'expanded-nodes': [],
  627. 'selected-nodes': [[('generic attribute',
  628. loc('iub_db2.py'),
  629. 'version')]],
  630. 'top-node': [('generic attribute',
  631. loc('iub_db2.py'),
  632. 'config')]},
  633. loc('iubx.ini'): {'expanded-nodes': [],
  634. 'selected-nodes': [],
  635. 'top-node': None},
  636. loc('iubx.py'): {'column-widths': None,
  637. 'expanded-nodes': [],
  638. 'selected-nodes': [],
  639. 'top-node': [('function def',
  640. loc('iubx.py'),
  641. 'check_cpv')]},
  642. loc('iubx0.py'): {'column-widths': [1.0],
  643. 'expanded-nodes': [],
  644. 'selected-nodes': [[('generic attribute',
  645. loc('iubx0.py'),
  646. 'config')]],
  647. 'top-node': [('generic attribute',
  648. loc('iubx0.py'),
  649. 'config')]},
  650. loc('latvian.xml'): {'expanded-nodes': [],
  651. 'selected-nodes': [],
  652. 'top-node': None},
  653. loc('record.py'): {'expanded-nodes': [],
  654. 'selected-nodes': [],
  655. 'top-node': [('generic attribute',
  656. loc('record.py'),
  657. 'r1')]},
  658. loc('run.py'): {'expanded-nodes': [],
  659. 'selected-nodes': [[('class def',
  660. loc('run.py'),
  661. 'ChoiceBox')]],
  662. 'top-node': [('generic attribute',
  663. loc('run.py'),
  664. 'cfg_file')]},
  665. loc('sources/SourceBase.py'): {'expanded-nodes': [],
  666. 'selected-nodes': [],
  667. 'top-node': [('generic attribute',
  668. loc('sources/SourceBase.py'),
  669. 'headers2dict')]},
  670. loc('sources/euronews.py'): {'expanded-nodes': [],
  671. 'selected-nodes': [],
  672. 'top-node': [('generic attribute',
  673. loc('sources/euronews.py'),
  674. 'c')]},
  675. loc('sources/filmas.py'): {'expanded-nodes': [],
  676. 'selected-nodes': [],
  677. 'top-node': [('generic attribute',
  678. loc('sources/filmas.py'),
  679. 'data')]},
  680. loc('sources/filmix.py'): {'expanded-nodes': [],
  681. 'selected-nodes': [[('generic attribute',
  682. loc('sources/filmix.py'),
  683. 'data')]],
  684. 'top-node': [('generic attribute',
  685. loc('sources/filmix.py'),
  686. 'data')]},
  687. loc('sources/iplayer.py'): {'expanded-nodes': [],
  688. 'selected-nodes': [],
  689. 'top-node': [('generic attribute',
  690. loc('sources/iplayer.py'),
  691. 'API_URL')]},
  692. loc('sources/iub.py'): {'expanded-nodes': [],
  693. 'selected-nodes': [[('class def',
  694. loc('sources/iub.py'),
  695. 'Source')]],
  696. 'top-node': [('generic attribute',
  697. loc('sources/iub.py'),
  698. 'h')]},
  699. loc('sources/lmt.py'): {'expanded-nodes': [],
  700. 'selected-nodes': [],
  701. 'top-node': [('generic attribute',
  702. loc('sources/lmt.py'),
  703. 'data')]},
  704. loc('sources/ltc.py'): {'expanded-nodes': [],
  705. 'selected-nodes': [[('generic attribute',
  706. loc('sources/ltc.py'),
  707. 'vid2')]],
  708. 'top-node': [('generic attribute',
  709. loc('sources/ltc.py'),
  710. 'cmd')]},
  711. loc('sources/play24.py'): {'expanded-nodes': [],
  712. 'selected-nodes': [],
  713. 'top-node': [('generic attribute',
  714. loc('sources/play24.py'),
  715. 'API_URL')]},
  716. loc('sources/replay.py'): {'expanded-nodes': [],
  717. 'selected-nodes': [[('class def',
  718. loc('sources/replay.py'),
  719. 'Source')]],
  720. 'top-node': [('generic attribute',
  721. loc('sources/replay.py'),
  722. 'API_URL')]},
  723. loc('sources/serialguru.py'): {'expanded-nodes': [],
  724. 'selected-nodes': [],
  725. 'top-node': [('generic attribute',
  726. loc('sources/serialguru.py'),
  727. 'data')]},
  728. loc('sources/tmp/SourceBase.py'): {'expanded-nodes': [],
  729. 'selected-nodes': [],
  730. 'top-node': [('generic attribute',
  731. loc('sources/tmp/SourceBase.py'),
  732. 'headers2dict')]},
  733. loc('sources/tmp/ltc.py'): {'expanded-nodes': [],
  734. 'selected-nodes': [],
  735. 'top-node': [('generic attribute',
  736. loc('sources/tmp/ltc.py'),
  737. 'cmd')]},
  738. loc('sources/tvdom.py'): {'expanded-nodes': [],
  739. 'selected-nodes': [],
  740. 'top-node': [('generic attribute',
  741. loc('sources/tvdom.py'),
  742. 'data')]},
  743. loc('sources/tvplay.py'): {'expanded-nodes': [],
  744. 'selected-nodes': [[('generic attribute',
  745. loc('sources/tvplay.py'),
  746. 'data')]],
  747. 'top-node': [('generic attribute',
  748. loc('sources/tvplay.py'),
  749. 'data')]},
  750. loc('sources/xtv.py'): {'expanded-nodes': [],
  751. 'selected-nodes': [],
  752. 'top-node': [('generic attribute',
  753. loc('sources/xtv.py'),
  754. 'data')]},
  755. loc('test1.py'): {'expanded-nodes': [],
  756. 'selected-nodes': [],
  757. 'top-node': [('generic attribute',
  758. loc('test1.py'),
  759. 'conn')]},
  760. loc('test_sources.py'): {'expanded-nodes': [],
  761. 'selected-nodes': [],
  762. 'top-node': [('class def',
  763. loc('test_sources.py'),
  764. 'App')]},
  765. loc('test_sources2.py'): {'expanded-nodes': [],
  766. 'selected-nodes': [],
  767. 'top-node': [('generic attribute',
  768. loc('test_sources2.py'),
  769. 'data')]},
  770. loc('util.py'): {'expanded-nodes': [],
  771. 'selected-nodes': [[('function def',
  772. loc('util.py'),
  773. '_substitute_entity')]],
  774. 'top-node': [('generic attribute',
  775. loc('util.py'),
  776. 'CACHE_COOKIES')]},
  777. loc('utils.py'): {'expanded-nodes': [],
  778. 'selected-nodes': [],
  779. 'top-node': [('function def',
  780. loc('utils.py'),
  781. 'check_cpv')]},
  782. loc('../fakemap/fakemap.py'): {'column-widths': [1.0],
  783. 'expanded-nodes': [],
  784. 'selected-nodes': [],
  785. 'top-node': [('generic attribute',
  786. loc('../fakemap/fakemap.py'),
  787. 'dir')]},
  788. loc('../getpics/ggg2.py'): {'column-widths': [1.0],
  789. 'expanded-nodes': [],
  790. 'selected-nodes': [],
  791. 'top-node': [('generic attribute',
  792. loc('../getpics/ggg2.py'),
  793. 'con')]},
  794. loc('../ozi/ozi.py'): {'column-widths': [1.0],
  795. 'expanded-nodes': [],
  796. 'selected-nodes': [],
  797. 'top-node': [('generic attribute',
  798. loc('../ozi/ozi.py'),
  799. 'epilog')]},
  800. loc('../ozi/ozimap.py'): {'column-widths': [1.0],
  801. 'expanded-nodes': [],
  802. 'selected-nodes': [],
  803. 'top-node': [('generic attribute',
  804. loc('../ozi/ozimap.py'),
  805. 'epilog')]},
  806. loc('../theyr/ikite/ikite.py'): {'column-widths': [1.0],
  807. 'expanded-nodes': [],
  808. 'selected-nodes': [],
  809. 'top-node': [('generic attribute',
  810. loc('../theyr/ikite/ikite.py'),
  811. 'day')]},
  812. loc('../vietas/vietas.py'): {'column-widths': [1.0],
  813. 'expanded-nodes': [],
  814. 'selected-nodes': [],
  815. 'top-node': [('generic attribute',
  816. loc('../vietas/vietas.py'),
  817. 'count')]},
  818. loc('../vietas/vietas0.py'): {'column-widths': [1.0],
  819. 'expanded-nodes': [],
  820. 'selected-nodes': [],
  821. 'top-node': [('generic attribute',
  822. loc('../vietas/vietas0.py'),
  823. 'c')]},
  824. loc('../vietas/vietas2.py'): {'column-widths': [1.0],
  825. 'expanded-nodes': [],
  826. 'selected-nodes': [],
  827. 'top-node': [('generic attribute',
  828. loc('../vietas/vietas2.py'),
  829. 'd_lat')]},
  830. loc('../../SplashData/remdup.py'): {'column-widths': [1.0],
  831. 'expanded-nodes': [],
  832. 'selected-nodes': [],
  833. 'top-node': [('generic attribute',
  834. loc('../../SplashData/remdup.py'),
  835. 'f')]},
  836. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'): {'expanded-nod'\
  837. 'es': [],
  838. 'selected-nodes': [],
  839. 'top-node': [('function def',
  840. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'),
  841. 'At')]},
  842. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'): {'expan'\
  843. 'ded-nodes': [],
  844. 'selected-nodes': [],
  845. 'top-node': [('class def',
  846. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'),
  847. 'Dialog')]},
  848. loc('../../../../../Python27/Lib/lib-tk/tkMessageBox.py'): {'expande'\
  849. 'd-nodes': [],
  850. 'selected-nodes': [],
  851. 'top-node': [('generic attribute',
  852. loc('../../../../../Python27/Lib/lib-tk/tkMessageBox.py'),
  853. 'ABORT')]},
  854. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'): {'expan'\
  855. 'ded-nodes': [],
  856. 'selected-nodes': [],
  857. 'top-node': [('function def',
  858. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'),
  859. 'askfloat')]},
  860. loc('../../../../../Python27/Lib/lib-tk/ttk.py'): {'expanded-nodes': [],
  861. 'selected-nodes': [],
  862. 'top-node': [('class def',
  863. loc('../../../../../Python27/Lib/lib-tk/ttk.py'),
  864. 'Button')]},
  865. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'): {'exp'\
  866. 'anded-nodes': [],
  867. 'selected-nodes': [],
  868. 'top-node': [('generic attribute',
  869. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'),
  870. 'ADAPTIVE')]},
  871. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'): {'e'\
  872. 'xpanded-nodes': [],
  873. 'selected-nodes': [[('function def',
  874. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'),
  875. '_show')]],
  876. 'top-node': [('class def',
  877. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'),
  878. 'BitmapImage')]},
  879. loc('unknown:<untitled> #3'): {'expanded-nodes': [],
  880. 'selected-nodes': [],
  881. 'top-node': None},
  882. loc('unknown:<untitled> #6'): {'column-widths': [1.0],
  883. 'expanded-nodes': [],
  884. 'selected-nodes': [],
  885. 'top-node': None},
  886. loc('unknown:<untitled> #5'): {'column-widths': [1.0],
  887. 'expanded-nodes': [],
  888. 'selected-nodes': [],
  889. 'top-node': None},
  890. loc('unknown:<untitled> #4'): {'expanded-nodes': [],
  891. 'selected-nodes': [],
  892. 'top-node': None}},
  893. 'browse_mode': u'Current Module',
  894. 'follow-selection': False,
  895. 'sort_mode': 'Alphabetically',
  896. 'visibility_options': {u'Derived Classes': False,
  897. u'Imported': False,
  898. u'Modules': True}}),
  899. ('debug-stack',
  900. 'tall',
  901. 1,
  902. {'codeline-mode': 'below'}),
  903. ('indent',
  904. 'tall',
  905. 2,
  906. {}),
  907. ('source-assistant',
  908. 'tall',
  909. 1,
  910. {}),
  911. ('templating#02EFWRQK9X23',
  912. 'tall',
  913. 0,
  914. None)],
  915. 'primary_view_state': {'area': 'wide',
  916. 'constraint': None,
  917. 'current_pages': [2,
  918. 0],
  919. 'notebook_display': 'normal',
  920. 'notebook_percent': 0.5,
  921. 'override_title': None,
  922. 'pagelist': [('debug-breakpoints',
  923. 'wide',
  924. 0,
  925. {'tree-state': []}),
  926. ('bookmarks',
  927. 'wide',
  928. 0,
  929. {}),
  930. ('debug-io',
  931. 'wide',
  932. 0,
  933. {}),
  934. ('debug-exceptions',
  935. 'wide',
  936. 0,
  937. {}),
  938. ('interactive-search',
  939. 'wide',
  940. 0,
  941. {'fScope': {'fFileSetName': 'All Source Files',
  942. 'fLocation': None,
  943. 'fRecursive': True,
  944. 'fType': 'project-files'},
  945. 'fSearchSpec': {'fEndPos': None,
  946. 'fIncludeLinenos': True,
  947. 'fInterpretBackslashes': False,
  948. 'fMatchCase': False,
  949. 'fOmitBinary': True,
  950. 'fRegexFlags': 42,
  951. 'fReplaceText': u'xtv::',
  952. 'fReverse': False,
  953. 'fSearchText': u'DEBUG',
  954. 'fStartPos': 0,
  955. 'fStyle': 'text',
  956. 'fWholeWords': False,
  957. 'fWrap': True},
  958. 'fUIOptions': {'fAutoBackground': True,
  959. 'fFilePrefix': 'short-file',
  960. 'fFindAfterReplace': True,
  961. 'fInSelection': False,
  962. 'fIncremental': True,
  963. 'fReplaceOnDisk': False,
  964. 'fShowFirstMatch': False,
  965. 'fShowLineno': True,
  966. 'fShowReplaceWidgets': False}}),
  967. ('batch-search',
  968. 'wide',
  969. 0,
  970. {'fScope': {'fFileSetName': 'All Source Files',
  971. 'fLocation': None,
  972. 'fRecursive': True,
  973. 'fType': 'documentation'},
  974. 'fSearchSpec': {'fEndPos': None,
  975. 'fIncludeLinenos': True,
  976. 'fInterpretBackslashes': False,
  977. 'fMatchCase': False,
  978. 'fOmitBinary': True,
  979. 'fRegexFlags': 42,
  980. 'fReplaceText': u'',
  981. 'fReverse': False,
  982. 'fSearchText': u'command',
  983. 'fStartPos': 0,
  984. 'fStyle': 'text',
  985. 'fWholeWords': False,
  986. 'fWrap': True},
  987. 'fUIOptions': {'fAutoBackground': True,
  988. 'fFilePrefix': 'short-file',
  989. 'fFindAfterReplace': True,
  990. 'fInSelection': False,
  991. 'fIncremental': True,
  992. 'fReplaceOnDisk': False,
  993. 'fShowFirstMatch': False,
  994. 'fShowLineno': True,
  995. 'fShowReplaceWidgets': False},
  996. 'replace-entry-expanded': False,
  997. 'search-entry-expanded': False}),
  998. ('debug-data',
  999. 'wide',
  1000. 0,
  1001. {}),
  1002. ('testing',
  1003. 'wide',
  1004. 0,
  1005. {'added-files': [],
  1006. 'filter': u'',
  1007. 'recent-filters': None,
  1008. 'sort-order': 'alpha',
  1009. 'tree-state': {'expanded-nodes': [],
  1010. 'selected-nodes': [],
  1011. 'top-node': (0,)}}),
  1012. ('versioncontrol.git',
  1013. 'wide',
  1014. 0,
  1015. {}),
  1016. ('debug-modules',
  1017. 'wide',
  1018. 0,
  1019. {}),
  1020. ('debug-probe',
  1021. 'wide',
  1022. 2,
  1023. {'active-range': (None,
  1024. -1,
  1025. -1),
  1026. 'attrib-starts': [],
  1027. 'first-line': 389L,
  1028. 'folded-linenos': [],
  1029. 'history': {u'file:C:/Data/Programming/enigma2/PlayStream2/content/playstreamproxyX.py': ['S'\
  1030. 'PLIT_CHAR\n',
  1031. 'path\n',
  1032. 'qs[0]\n',
  1033. 'qs[1]\n',
  1034. 'h\n',
  1035. 'qs2\n',
  1036. 'cmd\n',
  1037. 'data\n',
  1038. 'qs\n',
  1039. 'cmd, data, headers, qs = streamproxy_decode3(self.path)\n',
  1040. 'self.path\n',
  1041. 'print txt\n',
  1042. '"/".join(url2.split("/")[0:-1])\n',
  1043. 'url2\n',
  1044. 'q\n',
  1045. 'stream.keys()\n',
  1046. 'streams[0].keys()\n',
  1047. 'streams[0].keys()["headers"]\n',
  1048. 'streams[0]["headers"]\n',
  1049. 'print url\n',
  1050. 'print track\n',
  1051. 'print chunk\n',
  1052. 'headers\n',
  1053. 'chunk\n',
  1054. 'len(r.content)\n',
  1055. 'r.headers["content-length"]\n',
  1056. 'r.content\n',
  1057. 'len(r.raw)\n',
  1058. 'r.raw\n',
  1059. 'len(r.raw.read())\n',
  1060. '"/".join(url2.split("/")[0:1])+ "/"\n',
  1061. '"/".join(url2.split("/")[0:2])+ "/"\n',
  1062. '"/".join(url2.split("/")[0:3])+ "/"\n',
  1063. 'slinks[base_data]["urlp"]\n',
  1064. 'slinks[base_data]\n',
  1065. 'slinks[base_data]["base_url"]\n',
  1066. 'r.headers\n',
  1067. 'path.split("/")[2]\n',
  1068. 'urlp\n',
  1069. 'self.headers\n',
  1070. 'self.headers.dict\n',
  1071. 'headers2\n',
  1072. 'e\n',
  1073. 'r2 =ses.get(url)\n',
  1074. 'r2.status_code\n',
  1075. 'r2.headers\n',
  1076. 'url\n',
  1077. 'r2 =ses.get(url, stream=stream, verify=False)\n',
  1078. 'r2 =ses.get(url, verify=False)\n',
  1079. 'r2 =ses.get(url, redirect=False)\n',
  1080. 'ses.headers\n'],
  1081. u'file:C:/Data/Programming/enigma2/PlayStream2/content/sources/tvdom.py': ['j'\
  1082. 's = json.load(r)\n',
  1083. 'js = json.loads(r)\n',
  1084. 'r\n',
  1085. 'json.load(m.group(1))\n',
  1086. 'txt = m.group(1)\n',
  1087. 'txt\n',
  1088. 'json.loads(txt)\n',
  1089. 'js json.loads(txt)\n',
  1090. 'json = json.loads(txt)\n',
  1091. 'js\n',
  1092. 'js[1]\n',
  1093. 'js["scr"]\n',
  1094. 'js.keys()\n',
  1095. 'js[0]\n',
  1096. 'js[0]["scr"]\n',
  1097. 'js[0]["src"]\n',
  1098. "re.search('title: \"([^\"]+)\"', r, re.DOTALL)\n",
  1099. "re.search('<div id=\"panel\">([^<]+)<', r, re.DOTALL)\n",
  1100. 'm.group(1)\n',
  1101. 'm\n',
  1102. 'm.group(0)\n',
  1103. 'fcache\n',
  1104. 'self.listbox.curselection()\n',
  1105. 'self.listbox.curselection()[0]\n',
  1106. 'cs\n',
  1107. 'data\n',
  1108. "re.search('materialIdentifier:\"(\\d+)', r, re.DOTALL)\n",
  1109. "vid=re.search('materialIdentifier\":\"(\\d+)', r, re.DOTALL).group("\
  1110. "1)\n",
  1111. 'vid\n',
  1112. 'print img\n',
  1113. 'item\n',
  1114. 'item[1]\n',
  1115. 'pname\n',
  1116. 'plist\n']},
  1117. 'launch-id': None,
  1118. 'sel-line': 397L,
  1119. 'sel-line-start': 825956L,
  1120. 'selection_end': 825956L,
  1121. 'selection_start': 825956L,
  1122. 'zoom': 0L}),
  1123. ('debug-watch',
  1124. 'wide',
  1125. 1,
  1126. {'node-states': [('eval',
  1127. u'js'),
  1128. ('eval',
  1129. u'data2'),
  1130. ('eval',
  1131. u'title'),
  1132. ('eval',
  1133. u'item'),
  1134. ('eval',
  1135. u'url')],
  1136. 'tree-state': {'expanded-nodes': [(0,)],
  1137. 'selected-nodes': [(0,)],
  1138. 'top-node': (0,)}}),
  1139. ('messages',
  1140. 'wide',
  1141. 2,
  1142. {'current-domain': 0}),
  1143. ('os-command',
  1144. 'wide',
  1145. 1,
  1146. {'last-percent': 0.8,
  1147. 'toolbox-percent': 1.0,
  1148. 'toolbox-tree-sel': ''}),
  1149. ('uses',
  1150. 'wide',
  1151. 1,
  1152. {}),
  1153. ('python-shell',
  1154. 'wide',
  1155. 2,
  1156. {'active-range': (None,
  1157. -1,
  1158. -1),
  1159. 'attrib-starts': [],
  1160. 'first-line': 0L,
  1161. 'folded-linenos': [],
  1162. 'history': {},
  1163. 'launch-id': None,
  1164. 'sel-line': 2L,
  1165. 'sel-line-start': 163L,
  1166. 'selection_end': 163L,
  1167. 'selection_start': 163L,
  1168. 'zoom': 0L})],
  1169. 'primary_view_state': {'editor_states': ({'bookmarks': ([[loc('playstreamproxyX.py'),
  1170. {'attrib-starts': [('StreamHandler',
  1171. 61),
  1172. ('StreamHandler.fetch_source',
  1173. 132)],
  1174. 'first-line': 141L,
  1175. 'folded-linenos': [63L,
  1176. 235L,
  1177. 238L,
  1178. 249L,
  1179. 373L,
  1180. 377L,
  1181. 404L],
  1182. 'sel-line': 133L,
  1183. 'sel-line-start': 4439L,
  1184. 'selection_end': 4439L,
  1185. 'selection_start': 4439L,
  1186. 'zoom': 0L},
  1187. 1551023119.075],
  1188. [loc('playstreamproxyX.py'),
  1189. {'attrib-starts': [('StreamHandler',
  1190. 61),
  1191. ('StreamHandler.fetch_source',
  1192. 132)],
  1193. 'first-line': 156L,
  1194. 'folded-linenos': [63L,
  1195. 235L,
  1196. 238L,
  1197. 249L,
  1198. 373L,
  1199. 377L,
  1200. 404L],
  1201. 'sel-line': 164L,
  1202. 'sel-line-start': 5856L,
  1203. 'selection_end': 5882L,
  1204. 'selection_start': 5880L,
  1205. 'zoom': 0L},
  1206. 1551023119.601],
  1207. [loc('playstreamproxyX.py'),
  1208. {'attrib-starts': [('StreamHandler',
  1209. 61),
  1210. ('StreamHandler.fetch_source',
  1211. 132)],
  1212. 'first-line': 149L,
  1213. 'folded-linenos': [63L,
  1214. 238L,
  1215. 241L,
  1216. 252L,
  1217. 376L,
  1218. 380L,
  1219. 407L],
  1220. 'sel-line': 163L,
  1221. 'sel-line-start': 5825L,
  1222. 'selection_end': 5886L,
  1223. 'selection_start': 5886L,
  1224. 'zoom': 0L},
  1225. 1551023767.345],
  1226. [loc('playstreamproxyX.py'),
  1227. {'attrib-starts': [],
  1228. 'first-line': 428L,
  1229. 'folded-linenos': [63L,
  1230. 238L,
  1231. 241L,
  1232. 252L,
  1233. 376L,
  1234. 380L,
  1235. 407L],
  1236. 'sel-line': 438L,
  1237. 'sel-line-start': 14874L,
  1238. 'selection_end': 14874L,
  1239. 'selection_start': 14874L,
  1240. 'zoom': 0L},
  1241. 1551023770.376],
  1242. [loc('playstreamproxyX.py'),
  1243. {'attrib-starts': [('StreamHandler',
  1244. 61),
  1245. ('StreamHandler.get_page_ses',
  1246. 205)],
  1247. 'first-line': 204L,
  1248. 'folded-linenos': [63L,
  1249. 238L,
  1250. 241L,
  1251. 252L,
  1252. 376L,
  1253. 380L,
  1254. 407L],
  1255. 'sel-line': 212L,
  1256. 'sel-line-start': 7584L,
  1257. 'selection_end': 7584L,
  1258. 'selection_start': 7584L,
  1259. 'zoom': 0L},
  1260. 1551023781.405],
  1261. [loc('playstreamproxyX.py'),
  1262. {'attrib-starts': [('StreamHandler',
  1263. 61),
  1264. ('StreamHandler.do_GET',
  1265. 78)],
  1266. 'first-line': 63L,
  1267. 'folded-linenos': [63L,
  1268. 238L,
  1269. 241L,
  1270. 252L,
  1271. 376L,
  1272. 380L,
  1273. 407L],
  1274. 'sel-line': 118L,
  1275. 'sel-line-start': 3991L,
  1276. 'selection_end': 3991L,
  1277. 'selection_start': 3991L,
  1278. 'zoom': 0L},
  1279. 1551024057.515],
  1280. [loc('playstreamproxyX.py'),
  1281. {'attrib-starts': [('StreamHandler',
  1282. 61),
  1283. ('StreamHandler.get_page_ses',
  1284. 205)],
  1285. 'first-line': 171L,
  1286. 'folded-linenos': [63L,
  1287. 238L,
  1288. 241L,
  1289. 252L,
  1290. 376L,
  1291. 380L,
  1292. 407L],
  1293. 'sel-line': 212L,
  1294. 'sel-line-start': 7584L,
  1295. 'selection_end': 7584L,
  1296. 'selection_start': 7584L,
  1297. 'zoom': 0L},
  1298. 1551024378.338],
  1299. [loc('playstreamproxyX.py'),
  1300. {'attrib-starts': [('StreamHandler',
  1301. 61),
  1302. ('StreamHandler.get_page_ses',
  1303. 205)],
  1304. 'first-line': 202L,
  1305. 'folded-linenos': [63L,
  1306. 238L,
  1307. 241L,
  1308. 252L,
  1309. 376L,
  1310. 380L,
  1311. 407L],
  1312. 'sel-line': 212L,
  1313. 'sel-line-start': 7584L,
  1314. 'selection_end': 7598L,
  1315. 'selection_start': 7596L,
  1316. 'zoom': 0L},
  1317. 1551024379.788],
  1318. [loc('playstreamproxyX.py'),
  1319. {'attrib-starts': [('StreamHandler',
  1320. 61),
  1321. ('StreamHandler.do_GET',
  1322. 78)],
  1323. 'first-line': 81L,
  1324. 'folded-linenos': [63L,
  1325. 238L,
  1326. 241L,
  1327. 252L,
  1328. 376L,
  1329. 380L,
  1330. 407L],
  1331. 'sel-line': 86L,
  1332. 'sel-line-start': 2571L,
  1333. 'selection_end': 2604L,
  1334. 'selection_start': 2597L,
  1335. 'zoom': 0L},
  1336. 1551024380.773],
  1337. [loc('playstreamproxyX.py'),
  1338. {'attrib-starts': [('StreamHandler',
  1339. 61),
  1340. ('StreamHandler.do_GET',
  1341. 78)],
  1342. 'first-line': 81L,
  1343. 'folded-linenos': [63L,
  1344. 238L,
  1345. 241L,
  1346. 252L,
  1347. 376L,
  1348. 380L,
  1349. 407L],
  1350. 'sel-line': 86L,
  1351. 'sel-line-start': 2571L,
  1352. 'selection_end': 2605L,
  1353. 'selection_start': 2597L,
  1354. 'zoom': 0L},
  1355. 1551024381.338],
  1356. [loc('playstreamproxyX.py'),
  1357. {'attrib-starts': [('StreamHandler',
  1358. 61),
  1359. ('StreamHandler.do_GET',
  1360. 78)],
  1361. 'first-line': 81L,
  1362. 'folded-linenos': [63L,
  1363. 238L,
  1364. 241L,
  1365. 252L,
  1366. 376L,
  1367. 380L,
  1368. 407L],
  1369. 'sel-line': 86L,
  1370. 'sel-line-start': 2571L,
  1371. 'selection_end': 2606L,
  1372. 'selection_start': 2597L,
  1373. 'zoom': 0L},
  1374. 1551024381.565],
  1375. [loc('playstreamproxyX.py'),
  1376. {'attrib-starts': [('StreamHandler',
  1377. 61),
  1378. ('StreamHandler.get_page_ses',
  1379. 206)],
  1380. 'first-line': 203L,
  1381. 'folded-linenos': [63L,
  1382. 239L,
  1383. 242L,
  1384. 253L,
  1385. 377L,
  1386. 381L,
  1387. 408L],
  1388. 'sel-line': 213L,
  1389. 'sel-line-start': 7636L,
  1390. 'selection_end': 7636L,
  1391. 'selection_start': 7636L,
  1392. 'zoom': 0L},
  1393. 1551024440.385],
  1394. [loc('../../../../../Python27/Lib/site-packages/requests/sessions.py'),
  1395. {'attrib-starts': [('Session',
  1396. 318),
  1397. ('Session.get',
  1398. 515)],
  1399. 'first-line': 511L,
  1400. 'folded-linenos': [],
  1401. 'sel-line': 523L,
  1402. 'sel-line-start': 20021L,
  1403. 'selection_end': 20021L,
  1404. 'selection_start': 20021L,
  1405. 'zoom': 0L},
  1406. 1551024442.859],
  1407. [loc('playstreamproxyX.py'),
  1408. {'attrib-starts': [('StreamHandler',
  1409. 61),
  1410. ('StreamHandler.get_page_ses',
  1411. 206)],
  1412. 'first-line': 0L,
  1413. 'folded-linenos': [63L,
  1414. 239L,
  1415. 242L,
  1416. 253L,
  1417. 377L,
  1418. 381L,
  1419. 408L],
  1420. 'sel-line': 208L,
  1421. 'sel-line-start': 7390L,
  1422. 'selection_end': 7425L,
  1423. 'selection_start': 7425L,
  1424. 'zoom': 0L},
  1425. 1551024672.652],
  1426. [loc('playstreamproxyX.py'),
  1427. {'attrib-starts': [('StreamHandler',
  1428. 61),
  1429. ('StreamHandler.get_page_ses',
  1430. 206)],
  1431. 'first-line': 199L,
  1432. 'folded-linenos': [63L,
  1433. 239L,
  1434. 242L,
  1435. 253L,
  1436. 377L,
  1437. 381L,
  1438. 408L],
  1439. 'sel-line': 209L,
  1440. 'sel-line-start': 7427L,
  1441. 'selection_end': 7440L,
  1442. 'selection_start': 7438L,
  1443. 'zoom': 0L},
  1444. 1551024673.399],
  1445. [loc('playstreamproxyX.py'),
  1446. {'attrib-starts': [('StreamHandler',
  1447. 61),
  1448. ('StreamHandler.get_page_ses',
  1449. 206)],
  1450. 'first-line': 199L,
  1451. 'folded-linenos': [63L,
  1452. 239L,
  1453. 242L,
  1454. 253L,
  1455. 377L,
  1456. 381L,
  1457. 408L],
  1458. 'sel-line': 209L,
  1459. 'sel-line-start': 7427L,
  1460. 'selection_end': 7442L,
  1461. 'selection_start': 7438L,
  1462. 'zoom': 0L},
  1463. 1551024674.468],
  1464. [loc('playstreamproxyX.py'),
  1465. {'attrib-starts': [('StreamHandler',
  1466. 61),
  1467. ('StreamHandler.get_page_ses',
  1468. 206)],
  1469. 'first-line': 199L,
  1470. 'folded-linenos': [63L,
  1471. 239L,
  1472. 242L,
  1473. 253L,
  1474. 377L,
  1475. 381L,
  1476. 408L],
  1477. 'sel-line': 209L,
  1478. 'sel-line-start': 7427L,
  1479. 'selection_end': 7443L,
  1480. 'selection_start': 7438L,
  1481. 'zoom': 0L},
  1482. 1551024675.449],
  1483. [loc('playstreamproxyX.py'),
  1484. {'attrib-starts': [],
  1485. 'first-line': 0L,
  1486. 'folded-linenos': [63L,
  1487. 239L,
  1488. 242L,
  1489. 253L,
  1490. 377L,
  1491. 381L,
  1492. 408L],
  1493. 'sel-line': 7L,
  1494. 'sel-line-start': 208L,
  1495. 'selection_end': 218L,
  1496. 'selection_start': 218L,
  1497. 'zoom': 0L},
  1498. 1551024678.091],
  1499. [loc('playstreamproxyX.py'),
  1500. {'attrib-starts': [],
  1501. 'first-line': 125L,
  1502. 'folded-linenos': [63L,
  1503. 239L,
  1504. 242L,
  1505. 253L,
  1506. 377L,
  1507. 381L,
  1508. 408L],
  1509. 'sel-line': 29L,
  1510. 'sel-line-start': 837L,
  1511. 'selection_end': 844L,
  1512. 'selection_start': 844L,
  1513. 'zoom': 0L},
  1514. 1551026100.093],
  1515. [loc('playstreamproxy.py'),
  1516. {'attrib-starts': [('StreamHandler',
  1517. 48),
  1518. ('StreamHandler.write_error',
  1519. 361)],
  1520. 'first-line': 353L,
  1521. 'folded-linenos': [],
  1522. 'sel-line': 363L,
  1523. 'sel-line-start': 14434L,
  1524. 'selection_end': 14533L,
  1525. 'selection_start': 14434L,
  1526. 'zoom': 0L},
  1527. 1551026101.864]],
  1528. 20),
  1529. 'current-loc': loc('playstreamproxyX.py'),
  1530. 'editor-state-list': [(loc('run.py'),
  1531. {'attrib-starts': [('VideoInfo',
  1532. 343),
  1533. ('VideoInfo.body',
  1534. 370)],
  1535. 'first-line': 397L,
  1536. 'folded-linenos': [],
  1537. 'sel-line': 408L,
  1538. 'sel-line-start': 16292L,
  1539. 'selection_end': 16316L,
  1540. 'selection_start': 16316L,
  1541. 'zoom': 0L}),
  1542. (loc('util.py'),
  1543. {'attrib-starts': [('streamproxy_decode3',
  1544. 260)],
  1545. 'first-line': 67L,
  1546. 'folded-linenos': [179L,
  1547. 196L,
  1548. 209L,
  1549. 224L,
  1550. 237L,
  1551. 284L,
  1552. 621L,
  1553. 624L,
  1554. 657L,
  1555. 679L],
  1556. 'sel-line': 264L,
  1557. 'sel-line-start': 9128L,
  1558. 'selection_end': 9128L,
  1559. 'selection_start': 9128L,
  1560. 'zoom': 0L}),
  1561. (loc('playstreamproxyX.py'),
  1562. {'attrib-starts': [],
  1563. 'first-line': 0L,
  1564. 'folded-linenos': [63L,
  1565. 239L,
  1566. 242L,
  1567. 253L,
  1568. 377L,
  1569. 381L,
  1570. 408L],
  1571. 'sel-line': 8L,
  1572. 'sel-line-start': 201L,
  1573. 'selection_end': 212L,
  1574. 'selection_start': 212L,
  1575. 'zoom': 0L}),
  1576. (loc('sources/ltc.py'),
  1577. {'attrib-starts': [('Source',
  1578. 26),
  1579. ('Source.get_streams',
  1580. 572)],
  1581. 'first-line': 574L,
  1582. 'folded-linenos': [132L,
  1583. 161L,
  1584. 221L,
  1585. 232L,
  1586. 258L,
  1587. 277L,
  1588. 296L,
  1589. 320L,
  1590. 350L,
  1591. 351L,
  1592. 399L,
  1593. 412L,
  1594. 532L],
  1595. 'sel-line': 579L,
  1596. 'sel-line-start': 34193L,
  1597. 'selection_end': 34201L,
  1598. 'selection_start': 34201L,
  1599. 'zoom': 0L}),
  1600. (loc('sources/replay.py'),
  1601. {'attrib-starts': [('Source',
  1602. 31),
  1603. ('Source.get_streams',
  1604. 220)],
  1605. 'first-line': 219L,
  1606. 'folded-linenos': [143L,
  1607. 166L,
  1608. 284L],
  1609. 'sel-line': 274L,
  1610. 'sel-line-start': 13890L,
  1611. 'selection_end': 13890L,
  1612. 'selection_start': 13890L,
  1613. 'zoom': 0L}),
  1614. (loc('sources/tvplay.py'),
  1615. {'attrib-starts': [('Source',
  1616. 32),
  1617. ('Source.get_content',
  1618. 62)],
  1619. 'first-line': 65L,
  1620. 'folded-linenos': [159L],
  1621. 'sel-line': 70L,
  1622. 'sel-line-start': 2616L,
  1623. 'selection_end': 2659L,
  1624. 'selection_start': 2653L,
  1625. 'zoom': 0L}),
  1626. (loc('sources/xtv.py'),
  1627. {'attrib-starts': [('Source',
  1628. 32),
  1629. ('Source.get_content',
  1630. 41)],
  1631. 'first-line': 36L,
  1632. 'folded-linenos': [],
  1633. 'sel-line': 55L,
  1634. 'sel-line-start': 2282L,
  1635. 'selection_end': 2282L,
  1636. 'selection_start': 2282L,
  1637. 'zoom': 0L}),
  1638. (loc('sources/config.py'),
  1639. {'attrib-starts': [('Source',
  1640. 12),
  1641. ('Source.write_streams',
  1642. 76)],
  1643. 'first-line': 107L,
  1644. 'folded-linenos': [],
  1645. 'sel-line': 116L,
  1646. 'sel-line-start': 4379L,
  1647. 'selection_end': 4379L,
  1648. 'selection_start': 4379L,
  1649. 'zoom': 0L}),
  1650. (loc('changelog.md'),
  1651. {'attrib-starts': [],
  1652. 'first-line': 0L,
  1653. 'folded-linenos': [],
  1654. 'sel-line': 1L,
  1655. 'sel-line-start': 17L,
  1656. 'selection_end': 59L,
  1657. 'selection_start': 59L,
  1658. 'zoom': 0L}),
  1659. (loc('sources/filmix.py'),
  1660. {'attrib-starts': [('Source',
  1661. 31),
  1662. ('Source.get_streams',
  1663. 270)],
  1664. 'first-line': 275L,
  1665. 'folded-linenos': [],
  1666. 'sel-line': 280L,
  1667. 'sel-line-start': 12065L,
  1668. 'selection_end': 12065L,
  1669. 'selection_start': 12065L,
  1670. 'zoom': 0L}),
  1671. (loc('sources/lmt.py'),
  1672. {'attrib-starts': [('Source',
  1673. 32),
  1674. ('Source.get_streams',
  1675. 134)],
  1676. 'first-line': 210L,
  1677. 'folded-linenos': [],
  1678. 'sel-line': 220L,
  1679. 'sel-line-start': 9851L,
  1680. 'selection_end': 9851L,
  1681. 'selection_start': 9851L,
  1682. 'zoom': 0L}),
  1683. (loc('ContentSources.py'),
  1684. {'attrib-starts': [('ContentSources',
  1685. 16),
  1686. ('ContentSources.options_write',
  1687. 171)],
  1688. 'first-line': 12L,
  1689. 'folded-linenos': [20L,
  1690. 64L,
  1691. 96L,
  1692. 128L,
  1693. 149L,
  1694. 152L,
  1695. 161L,
  1696. 171L],
  1697. 'sel-line': 171L,
  1698. 'sel-line-start': 6794L,
  1699. 'selection_end': 6844L,
  1700. 'selection_start': 6844L,
  1701. 'zoom': 0L}),
  1702. (loc('sources/tvdom.py'),
  1703. {'attrib-starts': [('Source',
  1704. 32),
  1705. ('Source.get_content',
  1706. 84)],
  1707. 'first-line': 0L,
  1708. 'folded-linenos': [],
  1709. 'sel-line': 196L,
  1710. 'sel-line-start': 8971L,
  1711. 'selection_end': 8971L,
  1712. 'selection_start': 8971L,
  1713. 'zoom': 0L})],
  1714. 'has-focus': True,
  1715. 'locked': False},
  1716. [loc('run.py'),
  1717. loc('util.py'),
  1718. loc('playstreamproxyX.py'),
  1719. loc('sources/ltc.py'),
  1720. loc('sources/replay.py'),
  1721. loc('sources/tvplay.py'),
  1722. loc('sources/xtv.py'),
  1723. loc('sources/config.py'),
  1724. loc('changelog.md'),
  1725. loc('sources/filmix.py'),
  1726. loc('sources/lmt.py'),
  1727. loc('ContentSources.py'),
  1728. loc('sources/tvdom.py')]),
  1729. 'open_files': [u'changelog.md',
  1730. u'sources/config.py',
  1731. u'sources/filmix.py',
  1732. u'sources/lmt.py',
  1733. u'sources/tvplay.py',
  1734. u'sources/xtv.py',
  1735. u'sources/tvdom.py',
  1736. u'ContentSources.py',
  1737. u'sources/ltc.py',
  1738. u'run.py',
  1739. u'sources/replay.py',
  1740. u'util.py',
  1741. u'playstreamproxyX.py']},
  1742. 'saved_notebook_display': None,
  1743. 'split_percents': {0: 0.5025380710659898},
  1744. 'splits': 2,
  1745. 'tab_location': 'top',
  1746. 'user_data': {}},
  1747. 'saved_notebook_display': None,
  1748. 'split_percents': {0: 0.5},
  1749. 'splits': 2,
  1750. 'tab_location': 'left',
  1751. 'user_data': {}},
  1752. 'window-alloc': (128,
  1753. 0,
  1754. 2432,
  1755. 1440)}]}
  1756. guimgr.recent-documents = [loc('playstreamproxyX.py'),
  1757. loc('util.py'),
  1758. loc('sources/replay.py'),
  1759. loc('run.py'),
  1760. loc('sources/ltc.py'),
  1761. loc('ContentSources.py'),
  1762. loc('sources/tvdom.py'),
  1763. loc('sources/xtv.py'),
  1764. loc('sources/tvplay.py'),
  1765. loc('sources/filmix.py'),
  1766. loc('sources/lmt.py'),
  1767. loc('changelog.md'),
  1768. loc('sources/config.py')]
  1769. guimgr.visual-state = {loc('../../../Python25/Lib/BeautifulSoup.py'): {'attr'\
  1770. 'ib-starts': [('NavigableString',
  1771. 354),
  1772. ('NavigableString.__getattr__',
  1773. 356)],
  1774. 'first-line': 337,
  1775. 'sel-line': 363,
  1776. 'sel-line-start': 13868,
  1777. 'selection_end': 13868,
  1778. 'selection_start': 13868},
  1779. loc('../../../Python25/Lib/HTMLParser.py'): {'attrib-'\
  1780. 'starts': [('HTMLParser',
  1781. 66),
  1782. ('HTMLParser.check_for_whole_start_tag',
  1783. 274)],
  1784. 'first-line': 284,
  1785. 'folded-linenos': [],
  1786. 'sel-line': 301,
  1787. 'sel-line-start': 10981,
  1788. 'selection_end': 11013,
  1789. 'selection_start': 11013},
  1790. loc('../../../Python25/Lib/VideoCapture.py'): {'attri'\
  1791. 'b-starts': [],
  1792. 'first-line': 0,
  1793. 'folded-linenos': [],
  1794. 'sel-line': 7,
  1795. 'sel-line-start': 85,
  1796. 'selection_end': 128,
  1797. 'selection_start': 85},
  1798. loc('../../../Python25/Lib/encodings/cp1257.py'): {'a'\
  1799. 'ttrib-starts': [('Codec',
  1800. 8),
  1801. ('Codec.encode',
  1802. 10)],
  1803. 'first-line': 0,
  1804. 'folded-linenos': [],
  1805. 'sel-line': 10,
  1806. 'sel-line-start': 197,
  1807. 'selection_end': 197,
  1808. 'selection_start': 197},
  1809. loc('../../../Python25/Lib/re.py'): {'attrib-starts': [],
  1810. 'first-line': 0,
  1811. 'folded-linenos': [],
  1812. 'sel-line': 0,
  1813. 'sel-line-start': 0,
  1814. 'selection_end': 0,
  1815. 'selection_start': 0},
  1816. loc('../../../Python25/Lib/site-packages/BeautifulSoup.py'): {'a'\
  1817. 'ttrib-starts': [('SoupStrainer',
  1818. 817),
  1819. ('SoupStrainer._matches',
  1820. 904)],
  1821. 'first-line': 907,
  1822. 'folded-linenos': [],
  1823. 'sel-line': 928,
  1824. 'sel-line-start': 35455,
  1825. 'selection_end': 35455,
  1826. 'selection_start': 35455},
  1827. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'a'\
  1828. 'ttrib-starts': [],
  1829. 'first-line': 26,
  1830. 'folded-linenos': [],
  1831. 'sel-line': 44,
  1832. 'sel-line-start': 1253,
  1833. 'selection_end': 1253,
  1834. 'selection_start': 1253},
  1835. loc('../../../Python25/Lib/site-packages/PIL/__init__.py'): {'a'\
  1836. 'ttrib-starts': [],
  1837. 'first-line': 0,
  1838. 'folded-linenos': [],
  1839. 'sel-line': 0,
  1840. 'sel-line-start': 0,
  1841. 'selection_end': 0,
  1842. 'selection_start': 0},
  1843. loc('../../../Python25/Lib/site-packages/argparse.py'): {'a'\
  1844. 'ttrib-starts': [('_ActionsContainer',
  1845. 926),
  1846. ('_ActionsContainer._handle_conflict_error',
  1847. 1132)],
  1848. 'first-line': 1106,
  1849. 'folded-linenos': [],
  1850. 'sel-line': 1137,
  1851. 'sel-line-start': 41374,
  1852. 'selection_end': 41374,
  1853. 'selection_start': 41374},
  1854. loc('../../../Python25/Lib/site-packages/win32com/client/__init__.py'): {'a'\
  1855. 'ttrib-starts': [('DispatchBaseClass',
  1856. 410),
  1857. ('DispatchBaseClass._ApplyTypes_',
  1858. 443)],
  1859. 'first-line': 425,
  1860. 'folded-linenos': [],
  1861. 'sel-line': 447,
  1862. 'sel-line-start': 19318,
  1863. 'selection_end': 19318,
  1864. 'selection_start': 19318},
  1865. loc('../../../Python25/Lib/site-packages/win32com/client/dynamic.py'): {'a'\
  1866. 'ttrib-starts': [('CDispatch',
  1867. 151),
  1868. ('CDispatch.__getattr__',
  1869. 421)],
  1870. 'first-line': 489,
  1871. 'folded-linenos': [],
  1872. 'sel-line': 494,
  1873. 'sel-line-start': 19030,
  1874. 'selection_end': 19030,
  1875. 'selection_start': 19030},
  1876. loc('../../../Python25/Lib/site-packages/win32com/gen_py/00020813-0000-0000-C000-000000000046x0x1x6.py'): {'a'\
  1877. 'ttrib-starts': [('Range',
  1878. 26378),
  1879. ('Range.__call__',
  1880. 27016)],
  1881. 'first-line': 26996,
  1882. 'folded-linenos': [],
  1883. 'sel-line': 27018,
  1884. 'sel-line-start': 1285165,
  1885. 'selection_end': 1285165,
  1886. 'selection_start': 1285165},
  1887. loc('../../../Python25/Lib/socket.py'): {'attrib-star'\
  1888. 'ts': [('_fileobject',
  1889. 195),
  1890. ('_fileobject.readline',
  1891. 320)],
  1892. 'first-line': 301,
  1893. 'sel-line': 330,
  1894. 'sel-line-start': 10707,
  1895. 'selection_end': 10707,
  1896. 'selection_start': 10707},
  1897. loc('../../../Python25/Lib/sre_parse.py'): {'attrib-s'\
  1898. 'tarts': [('_parse',
  1899. 384)],
  1900. 'first-line': 375,
  1901. 'folded-linenos': [],
  1902. 'sel-line': 406,
  1903. 'sel-line-start': 12403,
  1904. 'selection_end': 12403,
  1905. 'selection_start': 12403},
  1906. loc('ContentSources.py'): {'attrib-starts': [('Conten'\
  1907. 'tSources',
  1908. 16),
  1909. ('ContentSources.get_content',
  1910. 64)],
  1911. 'first-line': 71L,
  1912. 'folded-linenos': [],
  1913. 'sel-line': 81L,
  1914. 'sel-line-start': 3686L,
  1915. 'selection_end': 3686L,
  1916. 'selection_start': 3686L,
  1917. 'zoom': 0L},
  1918. loc('Downloader.py'): {'attrib-starts': [('print_prog'\
  1919. 'ress',
  1920. 237)],
  1921. 'first-line': 248L,
  1922. 'folded-linenos': [9L,
  1923. 47L,
  1924. 76L],
  1925. 'sel-line': 239L,
  1926. 'sel-line-start': 9698L,
  1927. 'selection_end': 9724L,
  1928. 'selection_start': 9724L,
  1929. 'zoom': 0L},
  1930. loc('config.py'): {'attrib-starts': [],
  1931. 'first-line': 0,
  1932. 'folded-linenos': [],
  1933. 'sel-line': 38,
  1934. 'sel-line-start': 1110,
  1935. 'selection_end': 1110,
  1936. 'selection_start': 1110},
  1937. loc('iub.py'): {'attrib-starts': [('get_table',
  1938. 51)],
  1939. 'first-line': 0,
  1940. 'folded-linenos': [],
  1941. 'sel-line': 101,
  1942. 'sel-line-start': 3652,
  1943. 'selection_end': 3685,
  1944. 'selection_start': 3669},
  1945. loc('iubx.py'): {'attrib-starts': [('parse_arguments',
  1946. 25)],
  1947. 'first-line': 0,
  1948. 'folded-linenos': [],
  1949. 'sel-line': 32,
  1950. 'sel-line-start': 1289,
  1951. 'selection_end': 1335,
  1952. 'selection_start': 1335},
  1953. loc('iubx0.py'): {'attrib-starts': [('main',
  1954. 40)],
  1955. 'first-line': 349,
  1956. 'folded-linenos': [],
  1957. 'sel-line': 84,
  1958. 'sel-line-start': 3404,
  1959. 'selection_end': 3450,
  1960. 'selection_start': 3449},
  1961. loc('kivy_test.py'): {'attrib-starts': [],
  1962. 'first-line': 0L,
  1963. 'folded-linenos': [24L],
  1964. 'sel-line': 0L,
  1965. 'sel-line-start': 0L,
  1966. 'selection_end': 3L,
  1967. 'selection_start': 3L,
  1968. 'zoom': 0L},
  1969. loc('kivy_test2.py'): {'attrib-starts': [],
  1970. 'first-line': 0L,
  1971. 'folded-linenos': [],
  1972. 'sel-line': 1L,
  1973. 'sel-line-start': 11L,
  1974. 'selection_end': 42L,
  1975. 'selection_start': 42L,
  1976. 'zoom': 0L},
  1977. loc('playstreamproxy.py'): {'attrib-starts': [('Strea'\
  1978. 'mHandler',
  1979. 48),
  1980. ('StreamHandler.write_error',
  1981. 361)],
  1982. 'first-line': 353L,
  1983. 'folded-linenos': [],
  1984. 'sel-line': 363L,
  1985. 'sel-line-start': 14434L,
  1986. 'selection_end': 14533L,
  1987. 'selection_start': 14434L,
  1988. 'zoom': 0L},
  1989. loc('resolver.py'): {'attrib-starts': [],
  1990. 'first-line': 0L,
  1991. 'folded-linenos': [],
  1992. 'sel-line': 0L,
  1993. 'sel-line-start': 0L,
  1994. 'selection_end': 0L,
  1995. 'selection_start': 0L,
  1996. 'zoom': 0L},
  1997. loc('resolvers/cloudsany.py'): {'attrib-starts': [('r'\
  1998. 'esolve',
  1999. 30)],
  2000. 'first-line': 32L,
  2001. 'folded-linenos': [],
  2002. 'sel-line': 39L,
  2003. 'sel-line-start': 1116L,
  2004. 'selection_end': 1158L,
  2005. 'selection_start': 1130L,
  2006. 'zoom': 0L},
  2007. loc('resolvers/hqqresolver.py'): {'attrib-starts': [('r'\
  2008. 'esolve',
  2009. 127)],
  2010. 'first-line': 155L,
  2011. 'folded-linenos': [],
  2012. 'sel-line': 166L,
  2013. 'sel-line-start': 6121L,
  2014. 'selection_end': 6141L,
  2015. 'selection_start': 6137L,
  2016. 'zoom': 0L},
  2017. loc('resolvers/openload3.py'): {'attrib-starts': [('r'\
  2018. 'esolve',
  2019. 49)],
  2020. 'first-line': 47L,
  2021. 'folded-linenos': [],
  2022. 'sel-line': 59L,
  2023. 'sel-line-start': 1909L,
  2024. 'selection_end': 1932L,
  2025. 'selection_start': 1928L,
  2026. 'zoom': 0L},
  2027. loc('run.py'): {'attrib-starts': [('Main',
  2028. 22),
  2029. ('Main.__init__',
  2030. 24)],
  2031. 'first-line': 30L,
  2032. 'folded-linenos': [],
  2033. 'sel-line': 38L,
  2034. 'sel-line-start': 1189L,
  2035. 'selection_end': 1272L,
  2036. 'selection_start': 1272L,
  2037. 'zoom': 0L},
  2038. loc('sources/SourceBase.py'): {'attrib-starts': [('So'\
  2039. 'urceBase',
  2040. 32),
  2041. ('SourceBase._http_request',
  2042. 118)],
  2043. 'first-line': 117L,
  2044. 'folded-linenos': [],
  2045. 'sel-line': 127L,
  2046. 'sel-line-start': 4774L,
  2047. 'selection_end': 4774L,
  2048. 'selection_start': 4774L,
  2049. 'zoom': 0L},
  2050. loc('sources/cinemalive.py'): {'attrib-starts': [('So'\
  2051. 'urce',
  2052. 29),
  2053. ('Source.get_streams',
  2054. 166)],
  2055. 'first-line': 176L,
  2056. 'folded-linenos': [],
  2057. 'sel-line': 184L,
  2058. 'sel-line-start': 9047L,
  2059. 'selection_end': 9087L,
  2060. 'selection_start': 9074L,
  2061. 'zoom': 0L},
  2062. loc('sources/config.py'): {'attrib-starts': [('Source',
  2063. 12),
  2064. ('Source.write_streams',
  2065. 73)],
  2066. 'first-line': 112L,
  2067. 'folded-linenos': [],
  2068. 'sel-line': 115L,
  2069. 'sel-line-start': 4309L,
  2070. 'selection_end': 4309L,
  2071. 'selection_start': 4309L,
  2072. 'zoom': 0L},
  2073. loc('sources/euronews.py'): {'attrib-starts': [('Sour'\
  2074. 'ce',
  2075. 26),
  2076. ('Source.get_content',
  2077. 54)],
  2078. 'first-line': 127L,
  2079. 'folded-linenos': [],
  2080. 'sel-line': 137L,
  2081. 'sel-line-start': 6524L,
  2082. 'selection_end': 6613L,
  2083. 'selection_start': 6540L,
  2084. 'zoom': 0L},
  2085. loc('sources/filmas.py'): {'attrib-starts': [('Source',
  2086. 36),
  2087. ('Source.get_streams',
  2088. 108)],
  2089. 'first-line': 159L,
  2090. 'folded-linenos': [],
  2091. 'sel-line': 168L,
  2092. 'sel-line-start': 7362L,
  2093. 'selection_end': 7404L,
  2094. 'selection_start': 7404L,
  2095. 'zoom': 0L},
  2096. loc('sources/filmix.py'): {'attrib-starts': [('Source',
  2097. 31),
  2098. ('Source.get_streams',
  2099. 263)],
  2100. 'first-line': 280L,
  2101. 'folded-linenos': [],
  2102. 'sel-line': 288L,
  2103. 'sel-line-start': 12733L,
  2104. 'selection_end': 12813L,
  2105. 'selection_start': 12813L,
  2106. 'zoom': 0L},
  2107. loc('sources/filmon.py'): {'attrib-starts': [('Source',
  2108. 32),
  2109. ('Source.get_content',
  2110. 47)],
  2111. 'first-line': 113L,
  2112. 'folded-linenos': [],
  2113. 'sel-line': 122L,
  2114. 'sel-line-start': 4665L,
  2115. 'selection_end': 4665L,
  2116. 'selection_start': 4665L,
  2117. 'zoom': 0L},
  2118. loc('sources/iplayer.py'): {'attrib-starts': [('Sourc'\
  2119. 'e',
  2120. 27),
  2121. ('Source.get_epg_video',
  2122. 370)],
  2123. 'first-line': 396L,
  2124. 'folded-linenos': [],
  2125. 'sel-line': 406L,
  2126. 'sel-line-start': 20357L,
  2127. 'selection_end': 20357L,
  2128. 'selection_start': 20357L,
  2129. 'zoom': 0L},
  2130. loc('sources/lmt.py'): {'attrib-starts': [('Source',
  2131. 32),
  2132. ('Source.get_content',
  2133. 52)],
  2134. 'first-line': 49L,
  2135. 'folded-linenos': [],
  2136. 'sel-line': 60L,
  2137. 'sel-line-start': 1987L,
  2138. 'selection_end': 2043L,
  2139. 'selection_start': 2043L,
  2140. 'zoom': 0L},
  2141. loc('sources/ltc.py'): {'attrib-starts': [('Source',
  2142. 27),
  2143. ('Source.__init__',
  2144. 29)],
  2145. 'first-line': 20L,
  2146. 'folded-linenos': [],
  2147. 'sel-line': 32L,
  2148. 'sel-line-start': 1211L,
  2149. 'selection_end': 1227L,
  2150. 'selection_start': 1219L,
  2151. 'zoom': 0L},
  2152. loc('sources/movieplace.py'): {'attrib-starts': [('So'\
  2153. 'urce',
  2154. 32),
  2155. ('Source.__init__',
  2156. 34)],
  2157. 'first-line': 26L,
  2158. 'folded-linenos': [],
  2159. 'sel-line': 38L,
  2160. 'sel-line-start': 1089L,
  2161. 'selection_end': 1119L,
  2162. 'selection_start': 1119L,
  2163. 'zoom': 0L},
  2164. loc('sources/mtgplay.py'): {'attrib-starts': [('Sourc'\
  2165. 'e',
  2166. 40),
  2167. ('Source.get_content',
  2168. 51)],
  2169. 'first-line': 155L,
  2170. 'folded-linenos': [],
  2171. 'sel-line': 162L,
  2172. 'sel-line-start': 8033L,
  2173. 'selection_end': 8077L,
  2174. 'selection_start': 8077L,
  2175. 'zoom': 0L},
  2176. loc('sources/play24.py'): {'attrib-starts': [('Source',
  2177. 28),
  2178. ('Source.__init__',
  2179. 30)],
  2180. 'first-line': 21L,
  2181. 'folded-linenos': [],
  2182. 'sel-line': 31L,
  2183. 'sel-line-start': 1014L,
  2184. 'selection_end': 1079L,
  2185. 'selection_start': 1079L,
  2186. 'zoom': 0L},
  2187. loc('sources/replay.py'): {'attrib-starts': [('Source',
  2188. 30),
  2189. ('Source.get_content',
  2190. 41)],
  2191. 'first-line': 109L,
  2192. 'folded-linenos': [],
  2193. 'sel-line': 114L,
  2194. 'sel-line-start': 5306L,
  2195. 'selection_end': 5306L,
  2196. 'selection_start': 5306L,
  2197. 'zoom': 0L},
  2198. loc('sources/serialguru.py'): {'attrib-starts': [('So'\
  2199. 'urce',
  2200. 25),
  2201. ('Source.__init__',
  2202. 27)],
  2203. 'first-line': 15L,
  2204. 'folded-linenos': [],
  2205. 'sel-line': 28L,
  2206. 'sel-line-start': 817L,
  2207. 'selection_end': 882L,
  2208. 'selection_start': 825L,
  2209. 'zoom': 0L},
  2210. loc('sources/tmp/SourceBase.py'): {'attrib-starts': [],
  2211. 'first-line': 11L,
  2212. 'folded-linenos': [],
  2213. 'sel-line': 28L,
  2214. 'sel-line-start': 906L,
  2215. 'selection_end': 906L,
  2216. 'selection_start': 906L,
  2217. 'zoom': 0L},
  2218. loc('sources/tmp/ltc.py'): {'attrib-starts': [('Sourc'\
  2219. 'e',
  2220. 26),
  2221. ('Source.get_streams',
  2222. 572)],
  2223. 'first-line': 574L,
  2224. 'folded-linenos': [],
  2225. 'sel-line': 572L,
  2226. 'sel-line-start': 33932L,
  2227. 'selection_end': 33951L,
  2228. 'selection_start': 33940L,
  2229. 'zoom': 0L},
  2230. loc('sources/tvdom.py'): {'attrib-starts': [('Source',
  2231. 32),
  2232. ('Source.get_streams',
  2233. 242)],
  2234. 'first-line': 0L,
  2235. 'folded-linenos': [],
  2236. 'sel-line': 291L,
  2237. 'sel-line-start': 13715L,
  2238. 'selection_end': 13715L,
  2239. 'selection_start': 13715L,
  2240. 'zoom': 0L},
  2241. loc('sources/ustvnow.py'): {'attrib-starts': [('Sourc'\
  2242. 'e',
  2243. 32),
  2244. ('Source.__init__',
  2245. 34)],
  2246. 'first-line': 26L,
  2247. 'folded-linenos': [],
  2248. 'sel-line': 38L,
  2249. 'sel-line-start': 1260L,
  2250. 'selection_end': 1287L,
  2251. 'selection_start': 1287L,
  2252. 'zoom': 0L},
  2253. loc('sources/viaplay.py'): {'attrib-starts': [('Sourc'\
  2254. 'e',
  2255. 36),
  2256. ('Source.__init__',
  2257. 38)],
  2258. 'first-line': 37L,
  2259. 'folded-linenos': [],
  2260. 'sel-line': 42L,
  2261. 'sel-line-start': 1308L,
  2262. 'selection_end': 1324L,
  2263. 'selection_start': 1316L,
  2264. 'zoom': 0L},
  2265. loc('test_sources.py'): {'attrib-starts': [('App',
  2266. 2),
  2267. ('App.__init__',
  2268. 4)],
  2269. 'first-line': 0L,
  2270. 'folded-linenos': [],
  2271. 'sel-line': 11L,
  2272. 'sel-line-start': 403L,
  2273. 'selection_end': 429L,
  2274. 'selection_start': 424L,
  2275. 'zoom': 0L},
  2276. loc('test_sources2.py'): {'attrib-starts': [('Main',
  2277. 12),
  2278. ('Main.initUI',
  2279. 30)],
  2280. 'first-line': 39L,
  2281. 'folded-linenos': [],
  2282. 'sel-line': 41L,
  2283. 'sel-line-start': 1171L,
  2284. 'selection_end': 1857L,
  2285. 'selection_start': 1171L,
  2286. 'zoom': 0L},
  2287. loc('../untitled-1.py'): {'attrib-starts': [],
  2288. 'first-line': 0,
  2289. 'folded-linenos': [],
  2290. 'sel-line': 0,
  2291. 'sel-line-start': 0,
  2292. 'selection_end': 1,
  2293. 'selection_start': 1},
  2294. loc('../../../../../Python27/Lib/ftplib.py'): {'attri'\
  2295. 'b-starts': [],
  2296. 'first-line': 0L,
  2297. 'folded-linenos': [],
  2298. 'sel-line': 0L,
  2299. 'sel-line-start': 0L,
  2300. 'selection_end': 0L,
  2301. 'selection_start': 0L,
  2302. 'zoom': 0L},
  2303. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'): {'a'\
  2304. 'ttrib-starts': [('CallWrapper',
  2305. 1528),
  2306. ('CallWrapper.__call__',
  2307. 1536)],
  2308. 'first-line': 1537L,
  2309. 'folded-linenos': [],
  2310. 'sel-line': 1542L,
  2311. 'sel-line-start': 60799L,
  2312. 'selection_end': 60799L,
  2313. 'selection_start': 60799L,
  2314. 'zoom': 0L},
  2315. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'): {'a'\
  2316. 'ttrib-starts': [('Dialog',
  2317. 12)],
  2318. 'first-line': 12L,
  2319. 'folded-linenos': [],
  2320. 'sel-line': 12L,
  2321. 'sel-line-start': 298L,
  2322. 'selection_end': 298L,
  2323. 'selection_start': 298L,
  2324. 'zoom': 0L},
  2325. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'): {'a'\
  2326. 'ttrib-starts': [('Dialog',
  2327. 29),
  2328. ('Dialog.__init__',
  2329. 36)],
  2330. 'first-line': 61L,
  2331. 'folded-linenos': [],
  2332. 'sel-line': 76L,
  2333. 'sel-line-start': 1627L,
  2334. 'selection_end': 1686L,
  2335. 'selection_start': 1686L,
  2336. 'zoom': 0L},
  2337. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'): {'a'\
  2338. 'ttrib-starts': [('DecompressionBombError',
  2339. 73)],
  2340. 'first-line': 40L,
  2341. 'folded-linenos': [],
  2342. 'sel-line': 73L,
  2343. 'sel-line-start': 1583L,
  2344. 'selection_end': 1583L,
  2345. 'selection_start': 1583L,
  2346. 'zoom': 0L},
  2347. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'): {'a'\
  2348. 'ttrib-starts': [('PhotoImage',
  2349. 69),
  2350. ('PhotoImage.paste',
  2351. 155)],
  2352. 'first-line': 167L,
  2353. 'folded-linenos': [],
  2354. 'sel-line': 184L,
  2355. 'sel-line-start': 5644L,
  2356. 'selection_end': 5668L,
  2357. 'selection_start': 5665L,
  2358. 'zoom': 0L},
  2359. loc('../../../../../Python27/Lib/site-packages/requests/adapters.py'): {'a'\
  2360. 'ttrib-starts': [('HTTPAdapter',
  2361. 80),
  2362. ('HTTPAdapter.send',
  2363. 387)],
  2364. 'first-line': 493L,
  2365. 'folded-linenos': [],
  2366. 'sel-line': 505L,
  2367. 'sel-line-start': 20166L,
  2368. 'selection_end': 20166L,
  2369. 'selection_start': 20166L,
  2370. 'zoom': 0L},
  2371. loc('../../../../../Python27/Lib/site-packages/requests/models.py'): {'a'\
  2372. 'ttrib-starts': [('Response',
  2373. 577),
  2374. ('Response.content',
  2375. 810)],
  2376. 'first-line': 819L,
  2377. 'folded-linenos': [],
  2378. 'sel-line': 827L,
  2379. 'sel-line-start': 29594L,
  2380. 'selection_end': 29594L,
  2381. 'selection_start': 29594L,
  2382. 'zoom': 0L},
  2383. loc('x-wingide-zip://C:/Python25/Lib/site-packages/argparse-1.1-py2.5.egg//argparse.py'): {'a'\
  2384. 'ttrib-starts': [('_ActionsContainer',
  2385. 1187),
  2386. ('_ActionsContainer.add_argument',
  2387. 1270)],
  2388. 'first-line': 1271,
  2389. 'folded-linenos': [],
  2390. 'sel-line': 1283,
  2391. 'sel-line-start': 45405,
  2392. 'selection_end': 45405,
  2393. 'selection_start': 45405},
  2394. loc('x-wingide-zip://C:/Python25/Lib/site-packages/beautifulsoup-3.1.0.1-py2.5.egg//BeautifulSoup.py'): {'a'\
  2395. 'ttrib-starts': [('BeautifulSoup',
  2396. 1446),
  2397. ('BeautifulSoup.__init__',
  2398. 1494)],
  2399. 'first-line': 1481,
  2400. 'folded-linenos': [],
  2401. 'sel-line': 1498,
  2402. 'sel-line-start': 57438,
  2403. 'selection_end': 57438,
  2404. 'selection_start': 57438}}
  2405. proj.build-cmd = {None: ('default',
  2406. None)}
  2407. proj.env-vars = {None: ('default',
  2408. [u''])}
  2409. proj.matplotlib-event-loop = False
  2410. proj.template-debugging = False
  2411. proj.vcs-system-config = ('prefs',
  2412. {'bzr': {'versioncontrol.bzr.active': 'active-if-p'\
  2413. 'roject-dir',
  2414. 'versioncontrol.bzr.executable': u'bzr'},
  2415. 'cvs': {'versioncontrol.cvs.active': 'active-if-p'\
  2416. 'roject-dir',
  2417. 'versioncontrol.cvs.executable': u'cvs',
  2418. 'versioncontrol.cvs.extra-global-args': '-'\
  2419. 'z3'},
  2420. 'git': {'versioncontrol.git.active': 'active-if-p'\
  2421. 'roject-dir',
  2422. 'versioncontrol.git.executable': u'git',
  2423. 'versioncontrol.git.use-porcelain': True},
  2424. 'hg': {'versioncontrol.hg.active': 'active-if-pro'\
  2425. 'ject-dir',
  2426. 'versioncontrol.hg.dont-find-unregistered': True,
  2427. 'versioncontrol.hg.executable': u'hg',
  2428. 'versioncontrol.hg.extra-global-args': '--'\
  2429. 'encoding=utf8'},
  2430. 'perforce': {'versioncontrol.perforce.active': 'n'\
  2431. 'ot-active',
  2432. 'versioncontrol.perforce.dont-find-unregistered': True,
  2433. 'versioncontrol.perforce.executable': u'p4',
  2434. 'versioncontrol.perforce.extra-global-args': ''},
  2435. 'svn': {'versioncontrol.svn.active': 'active-if-p'\
  2436. 'roject-dir',
  2437. 'versioncontrol.svn.executable': u'svn',
  2438. 'versioncontrol.svn.extra-global-args': '',
  2439. 'versioncontrol.svn.svnadmin-executable': u'svnadmin'}})
  2440. search.replace-history = [u'filmix.co',
  2441. u'https://replay.lsm.lv',
  2442. u'www.shortcut.lv',
  2443. u'shortcut.lv']
  2444. search.search-history = [u'DEBUG',
  2445. u'self.head',
  2446. u'def base',
  2447. u'content-len',
  2448. u'DEBUG2',
  2449. u'close',
  2450. u'get_contet',
  2451. u'headers',
  2452. u'headers2dict',
  2453. u'EQ_CODE',
  2454. u'streamproxy_encode',
  2455. u'encode',
  2456. u'util',
  2457. u'meklet',
  2458. u'lang',
  2459. u'page=',
  2460. u'unesa',
  2461. u'play24::',
  2462. u'categori',
  2463. u'sorted']
  2464. testing.stored-results = (1,
  2465. [],
  2466. {})