m3u8 proxy for shortcut.lv streams

project.wpr 90KB

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