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

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