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

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