Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #60732

Re: Getting the Appdata Directory with Python and PEP?

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.007
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'messages.': 0.05; 'output': 0.05; 'subject:Python': 0.06; 'puts': 0.07; 'subject:Getting': 0.07; 'subject:PEP': 0.07; 'http': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'works.': 0.09; 'line).': 0.16; 'message-id:@4ax.com': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'simplified': 0.16; 'usenet': 0.16; 'replacing': 0.19; 'thu,': 0.19; 'seems': 0.21; 'replace': 0.24; 'sorry,': 0.24; 'text.': 0.24; 'url:home': 0.24; 'handling': 0.26; 'header:X-Complaints- To:1': 0.27; 'rest': 0.29; 'wonder': 0.29; "i'm": 0.30; 'lines': 0.31; 'that.': 0.31; 'quotes': 0.31; 'lists': 0.32; 'standards': 0.33; 'subject:the': 0.34; 'problem': 0.35; 'subject:with': 0.35; 'google': 0.35; 'format.': 0.36; 'shorter': 0.36; 'charset:us- ascii': 0.36; 'subject:?': 0.36; 'two': 0.37; 'received:76': 0.38; 'nov': 0.38; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'mailing': 0.39; 'received:org': 0.40; 'how': 0.40; 'remove': 0.60; 'blank': 0.60; 'problems.': 0.60; 'break': 0.61; 'new': 0.61; 'back': 0.62; 'show': 0.63; 'world': 0.66; 'between': 0.67; 'transfer': 0.82; 'does?': 0.84; 'lays': 0.84; 'phpbb': 0.84; 'segments.': 0.84; 'treats': 0.84; '2013': 0.98
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Dennis Lee Bieber <wlfraed@ix.netcom.com>
Subject Re: Getting the Appdata Directory with Python and PEP?
Date Thu, 28 Nov 2013 16:29:37 -0500
Organization IISS Elusive Unicorn
References <50402350-c9cb-47be-b513-ad2fb7170187@googlegroups.com> <27870dae-87ff-4435-a2ff-a42f95c21d48@googlegroups.com> <5294f942$0$16012$e4fe514c@news.xs4all.nl> <2b6c4be1-e23f-488b-b64d-191d625dee46@googlegroups.com> <mailman.3262.1385508034.18130.python-list@python.org> <b69e5ab0-9871-47b5-95d6-d59724289313@googlegroups.com>
Mime-Version 1.0
Content-Type text/plain; charset=us-ascii
Content-Transfer-Encoding 7bit
X-Gmane-NNTP-Posting-Host adsl-76-249-30-131.dsl.klmzmi.sbcglobal.net
X-Newsreader Forte Agent 6.00/32.1186
X-No-Archive YES
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.3378.1385674170.18130.python-list@python.org> (permalink)
Lines 33
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1385674170 news.xs4all.nl 15989 [2001:888:2000:d::a6]:58200
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:60732

Show key headers only | View raw


On Thu, 28 Nov 2013 08:11:30 -0800 (PST), Eamonn Rea <eamonnrea@gmail.com>
declaimed the following:

>Oh, sorry, I'm new to how Google Groups works. I wonder why it lays it out like that. Can it not just show quotes like the way that PHPbb does?
>

	Google Groups works well as long as the messages stay on GG...

	It's what it does when translating between GG's HTML and the rest of
the world using NNTP/SMTP standards that causes the problems.

	SMTP/NNTP standards recommend lines of <80 characters (Hollerith punch
card/old teletype/terminal physical limit). MIME Quoted-Printable permits
virtual long lines by 1) message header identifying QP format, 2) using an
=<newline> to break the long line into shorter segments. Clients would
remove the =<newline> and unwrap the longer line.

	GG /appears/ to be replacing new-lines with HTTP <P> markers for
received messages. The problem is that on output back to the net, it seems
to then replace the <P> with TWO new-lines (ie; puts in a blank line
between every original line). And since it treats everything one enters as
an HTML <P>, it is sending paragraphs as one line of text.

	PHPbb would have to go through hoops too, to transfer messages from its
internal format (HTML) to non-HTML NNTP/SMTP format.

	GG's change (sometime last year as I recall) simplified the web-based
handling of its messages -- at the cost of trashing classical Usenet and
Mailing lists that it cross-links.
-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
    wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Getting the Appdata Directory with Python and PEP? Eamonn Rea <eamonnrea@gmail.com> - 2013-11-25 12:48 -0800
  Re: Getting the Appdata Directory with Python and PEP? Andrew Berg <robotsondrugs@gmail.com> - 2013-11-25 15:10 -0600
  Re: Getting the Appdata Directory with Python and PEP? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-25 21:20 +0000
  Re: Getting the Appdata Directory with Python and PEP? Eamonn Rea <eamonnrea@gmail.com> - 2013-11-26 10:09 -0800
    Re: Getting the Appdata Directory with Python and PEP? Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2013-11-26 13:52 -0500
    Re: Getting the Appdata Directory with Python and PEP? Irmen de Jong <irmen.NOSPAM@xs4all.nl> - 2013-11-26 20:40 +0100
      Re: Getting the Appdata Directory with Python and PEP? Eamonn Rea <eamonnrea@gmail.com> - 2013-11-26 14:49 -0800
        Re: Getting the Appdata Directory with Python and PEP? Chris Angelico <rosuav@gmail.com> - 2013-11-27 10:20 +1100
          Re: Getting the Appdata Directory with Python and PEP? Eamonn Rea <eamonnrea@gmail.com> - 2013-11-28 08:11 -0800
            Re: Getting the Appdata Directory with Python and PEP? Chris Angelico <rosuav@gmail.com> - 2013-11-29 04:28 +1100
            Re: Getting the Appdata Directory with Python and PEP? rusi <rustompmody@gmail.com> - 2013-11-28 10:32 -0800
            Re: Getting the Appdata Directory with Python and PEP? Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2013-11-28 16:29 -0500
        Re: Getting the Appdata Directory with Python and PEP? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-26 23:21 +0000
        Re: Getting the Appdata Directory with Python and PEP? Kevin Walzer <kw@codebykevin.com> - 2013-12-02 09:39 -0500

csiph-web