CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 18 Jul 2025 01:42:58 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20110813114318
location: https://web.archive.org/web/20110813114318/https://wiki.python.org/moin/MacPython/Firefox
server-timing: captures_list;dur=1.543822, exclusion.robots;dur=0.045849, exclusion.robots.policy;dur=0.029115, esindex;dur=0.017606, cdx.remote;dur=12.643538, LoadShardBlock;dur=75.852601, PetaboxLoader3.datanode;dur=60.963139
x-app-server: wwwb-app200
x-ts: 302
x-tr: 118
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: SERVER=wwwb-app200; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 18 Jul 2025 01:42:58 GMT
content-type: text/html; charset=utf-8
x-archive-orig-date: Sat, 13 Aug 2011 11:43:18 GMT
x-archive-orig-server: Apache/2.2.16 (Debian)
x-archive-orig-vary: Cookie,User-Agent,Accept-Language
x-archive-orig-set-cookie: MOIN_SESSION_80_ROOT_moin=21be80c199d8d939fcb692c3912c843abdc57966; expires=Sat, 13-Aug-2011 12:43:00 GMT; Max-Age=3600; Path=/
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sat, 13 Aug 2011 11:43:18 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 13 Aug 2011 11:43:18 GMT", ; rel="memento"; datetime="Sat, 13 Aug 2011 11:43:18 GMT", ; rel="next memento"; datetime="Tue, 18 Jun 2013 02:00:46 GMT", ; rel="last memento"; datetime="Tue, 25 Jun 2024 20:59:19 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: WPO-20110813094801-crawl438/WPO-20110813113606-01869.warc.gz
server-timing: captures_list;dur=0.567329, exclusion.robots;dur=0.026060, exclusion.robots.policy;dur=0.015475, esindex;dur=0.010976, cdx.remote;dur=5.618092, LoadShardBlock;dur=119.705110, PetaboxLoader3.datanode;dur=113.027684, load_resource;dur=172.918959, PetaboxLoader3.resolve;dur=119.323193
x-app-server: wwwb-app200
x-ts: 200
x-tr: 349
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
MacPython/Firefox - PythonInfo Wiki
User
Firefox doesn't really play in the Applescripting world. See this bug filed against it, and vote for that bug if you'd like to make it Applescriptable.
However, there are some workarounds for Firefox 2. Adium uses this:
if ((application processes whose (name is equal to "firefox-bin")) count) is greater than 0 then tell application "Firefox" if (count of every window) is greater than 0 then set the end of candidateURLs to «class curl» of window 1 end if end tell end if
Hengist says this might be written in appscript like this:
from appscript import * ff = app('Firefox') appscriptref = ff.windows[1] aemref = appscriptref.AS_aemreference aemref = aemref.property('curl') appscriptref = ff.AS_newreference(aemref) print appscriptref.get()
Unfortunately, Firefox 3 broke this workaround.
MacPython/Firefox (last edited 2008-11-15 14:00:41 by localhost)