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: 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 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> 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: 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 On Thu, 28 Nov 2013 08:11:30 -0800 (PST), Eamonn Rea 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 = to break the long line into shorter segments. Clients would remove the = and unwrap the longer line. GG /appears/ to be replacing new-lines with HTTP

markers for received messages. The problem is that on output back to the net, it seems to then replace the

with TWO new-lines (ie; puts in a blank line between every original line). And since it treats everything one enters as an HTML

, 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/