Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #71912
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <ian.g.kelly@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.083 |
| X-Spam-Evidence | '*H*': 0.84; '*S*': 0.00; 'offline': 0.03; '22,': 0.09; 'filesystem,': 0.16; 'wrote:': 0.18; 'do.': 0.18; 'subject:project': 0.19; 'thu,': 0.19; 'saying': 0.22; 'browsers': 0.24; 'fine': 0.24; 'this:': 0.26; 'subject:/': 0.26; 'header:In- Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'writes:': 0.31; 'file': 0.32; 'open': 0.33; 'problem': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'browser': 0.61; 'john': 0.61; 'course': 0.61; 'such': 0.63; 'today': 0.64; 'online': 0.71; 'hyperlinks': 0.91; 'refuse': 0.93 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=uxtl+TTR6vOCMLaANAJAJEDXV8BclJeYZGW6JFfrf0A=; b=NmSfUfcGcwcm1Wgfw64rmC/VhgSOJAn6RlyY0lnDh3qzlwsbzzxQuEG4HgaSw+Jvns amrZOpcIhIOD/d31NCGpgeALkGKgpZJQ4//ng3aQY1x5ny9uY1k55/n5PFSljLYV+0E6 YBNdvW0mf9DbTIGm5/F+ihJSa+/iuXOt92tqDI3NU/v7QyleUTZtX7c1MCfednfNVtjp Om35ILwCsF6CrQzqiude5Fjd5XJXNnEn53KyFnsbK08kAVmo+aqm/kiEjLXWjz5KWwsp 3nG+bTbAn0KqiTqc/zQKrAfSkTe3Ww6ZVtV/dAVpKNaecdN4QBTtzFneHICMz5skN4oZ EMcw== |
| X-Received | by 10.69.17.230 with SMTP id gh6mr62212pbd.0.1400788550106; Thu, 22 May 2014 12:55:50 -0700 (PDT) |
| MIME-Version | 1.0 |
| In-Reply-To | <lllj5m$7rh$1@reader1.panix.com> |
| References | <6a3c5b20-bce5-4c95-b27f-3840e9cc7df0@googlegroups.com> <lllj5m$7rh$1@reader1.panix.com> |
| From | Ian Kelly <ian.g.kelly@gmail.com> |
| Date | Thu, 22 May 2014 13:55:09 -0600 |
| Subject | Re: Advice for choosing correct architecture/tech for a hobby project |
| To | Python <python-list@python.org> |
| Content-Type | text/plain; charset=UTF-8 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.10231.1400789042.18130.python-list@python.org> (permalink) |
| Lines | 17 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1400789042 news.xs4all.nl 2906 [2001:888:2000:d::a6]:47862 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:71912 |
Show key headers only | View raw
On Thu, May 22, 2014 at 1:28 PM, John Gordon <gordon@panix.com> wrote: > In <6a3c5b20-bce5-4c95-b27f-3840e9cc7df0@googlegroups.com> Aseem Bansal <asmbansal2@gmail.com> writes: > >> But I hit a snag today that webbrowser's won't allow client to open >> hyperlinks with file protocol. I have both offline and online bookmarks >> so that was a problem for me. > > What do you mean by saying "webbrowser's won't allow client to open > hyperlinks with file protocol"? Of course they do. > > My web browser works just fine with links such as this: > > <a href="file:///C:/Users/gordonj/Documents/foo.html">foo.html</a> It works if the document that contains the link is also opened from the local filesystem, but browsers will refuse to follow the link if it was served over http.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Advice for choosing correct architecture/tech for a hobby project Aseem Bansal <asmbansal2@gmail.com> - 2014-05-22 11:54 -0700
Re: Advice for choosing correct architecture/tech for a hobby project John Gordon <gordon@panix.com> - 2014-05-22 19:28 +0000
Re: Advice for choosing correct architecture/tech for a hobby project Ian Kelly <ian.g.kelly@gmail.com> - 2014-05-22 13:55 -0600
Re: Advice for choosing correct architecture/tech for a hobby project John Gordon <gordon@panix.com> - 2014-05-22 20:38 +0000
Re: Advice for choosing correct architecture/tech for a hobby project Mark H Harris <harrismh777@gmail.com> - 2014-05-22 14:49 -0500
Re: Advice for choosing correct architecture/tech for a hobby project Ian Kelly <ian.g.kelly@gmail.com> - 2014-05-23 01:07 -0600
Re: Advice for choosing correct architecture/tech for a hobby project Aseem Bansal <asmbansal2@gmail.com> - 2014-05-23 22:03 -0700
Re: Advice for choosing correct architecture/tech for a hobby project Ethan Furman <ethan@stoneleaf.us> - 2014-05-22 14:28 -0700
Re: Advice for choosing correct architecture/tech for a hobby project Aseem Bansal <asmbansal2@gmail.com> - 2014-05-23 22:07 -0700
csiph-web