From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/69963 Path: news.gmane.org!not-for-mail From: asjo@koldfront.dk (Adam =?iso-8859-1?Q?Sj=F8gren?=) Newsgroups: gmane.emacs.gnus.general Subject: Re: Async pre-treatment of articles Date: Sat, 28 Aug 2010 22:55:55 +0200 Organization: koldfront - analysis & revolution, Copenhagen, Denmark Message-ID: <878w3q319g.fsf@topper.koldfront.dk> References: <87k4na79y9.fsf@topper.koldfront.dk> <87fwxy79po.fsf@topper.koldfront.dk> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1283028978 421 80.91.229.12 (28 Aug 2010 20:56:18 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 28 Aug 2010 20:56:18 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M18349@lists.math.uh.edu Sat Aug 28 22:56:17 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OpSRi-0006HE-2F for ding-account@gmane.org; Sat, 28 Aug 2010 22:56:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1OpSRc-00015Z-Bw; Sat, 28 Aug 2010 15:56:08 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1OpSRa-00015D-BR for ding@lists.math.uh.edu; Sat, 28 Aug 2010 15:56:06 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1OpSRZ-0005No-5s for ding@lists.math.uh.edu; Sat, 28 Aug 2010 15:56:06 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1OpSRY-0006Zb-00 for ; Sat, 28 Aug 2010 22:56:04 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OpSRX-00069O-SY for ding@gnus.org; Sat, 28 Aug 2010 22:56:03 +0200 Original-Received: from rain.gmane.org ([80.91.229.7]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 28 Aug 2010 22:56:03 +0200 Original-Received: from asjo by rain.gmane.org with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 28 Aug 2010 22:56:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 57 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: rain.gmane.org Mail-Copies-To: never X-Face: )qY&CseJ?.:=8F#^~GcSA?F=9eu'{KAFfL1C3/A&:nE?PW\i65"ba0NS)97,Q(^@xk}n4Ou rPuR#V8I(J_@~H($[ym:`K_+]*kjvW>xH5jbgLBVFGXY:(#4P>zVBklLbdL&XxL\M)%T}3S/IS9lMJ ^St'=VZBR Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:69963 Archived-At: On Sat, 28 Aug 2010 22:44:59 +0200, Lars wrote: > asjo@koldfront.dk (Adam Sjøgren) writes: >> Looking at the http port with ngrep seems to confirm this. The article >> is displayed, and a number of seconds (3-10) later, requests start going >> out for the images. > Oh, right. Yeah, w3m does seem ridiculously slow in fetching pictures. > Perhaps I should peek at the w3m code instead. It is just sitting there, doing nothing for ~10s. Then it looks like it then runs w3m-idle-images-show() - I used toggle-debug-on-quit and C-g'ed once in a while (XEmacs doing nothing), and then when I saw requests going out in the ngrep-window, I C-g'ed and got this: Debugger entered--Lisp error: (quit) ("next_event_internal()" "[internal]") sit-for(0.1 t) w3m-idle-images-show() apply(w3m-idle-images-show nil) byte-code("..." [this-command inhibit-quit quit-flag match-data itimer current-itimer match-data ((store-match-data match-data)) nil itimer-uses-arguments apply itimer-function itimer-function-arguments last-event-time next-wakeup itimers time-elapsed] 5) itimer-run-expired-timers(13.331835) itimer-timer-driver(nil) ("execute_internal_event()" "[internal]") (dispatch-event "[internal]") > Meanwhile, has anybody written a handy "how to use git from within Emacs > if you're used to cvs-update and vc-mode... FOR DUMMIES"? I think Magit is usually recommended, but it doesn't work in XEmacs, so I haven't used it, and can't give any directions... > I managed to check out the Gnus repository with password and stuff, but > I'm not able to find out what magical keys to push to check stuff in > again. (Yeah, I know, it's probably "push" in git parlance. But I'm > covering my ears. LA LA LA LA LA. I can't hear you. LA LA LA.) The really short command-line version: git status ; lists the changes (shows hints on how to change status of things as well) git add [file] ; add to list of things to commit git commit -v ; commits the files you have added for commiting, locally git push origin master ; push the commits you have made locally, out to the repository Also: git log ; to see the local commit log git show [sha1] ; to see what a commit consists of Best regards, Adam -- "Angels can fly because they take themselves lightly." Adam Sjøgren asjo@koldfront.dk