From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/33899 Path: news.gmane.org!not-for-mail From: "Lutz Haseloff" Newsgroups: gmane.comp.tex.context Subject: Re: ConTeXt release 2007.03.19 Date: Tue, 20 Mar 2007 13:46:21 +0100 Message-ID: References: <45FFB845.4080603@elvenkind.com> <347B96F2-B6A6-4EFD-84E2-4F5D9B958CB5@jhnet.nl> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1550852288==" X-Trace: sea.gmane.org 1174394804 23485 80.91.229.12 (20 Mar 2007 12:46:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 20 Mar 2007 12:46:44 +0000 (UTC) To: "mailing list for ConTeXt users" Original-X-From: ntg-context-bounces@ntg.nl Tue Mar 20 13:46:36 2007 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by lo.gmane.org with esmtp (Exim 4.50) id 1HTdjY-0005Oy-QK for gctc-ntg-context-518@m.gmane.org; Tue, 20 Mar 2007 13:46:36 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 115D91FFE7; Tue, 20 Mar 2007 13:46:36 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 25418-01; Tue, 20 Mar 2007 13:46:29 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 907891FFE8; Tue, 20 Mar 2007 13:46:29 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id C0BE41FFE8 for ; Tue, 20 Mar 2007 13:46:27 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 25149-01-7 for ; Tue, 20 Mar 2007 13:46:23 +0100 (CET) Original-Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by ronja.ntg.nl (Postfix) with ESMTP id 439E01FFE7 for ; Tue, 20 Mar 2007 13:46:22 +0100 (CET) Original-Received: by py-out-1112.google.com with SMTP id a73so421569pye for ; Tue, 20 Mar 2007 05:46:21 -0700 (PDT) Original-Received: by 10.35.113.12 with SMTP id q12mr12701333pym.1174394781307; Tue, 20 Mar 2007 05:46:21 -0700 (PDT) Original-Received: by 10.35.46.9 with HTTP; Tue, 20 Mar 2007 05:46:21 -0700 (PDT) In-Reply-To: <347B96F2-B6A6-4EFD-84E2-4F5D9B958CB5@jhnet.nl> X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.9 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:33899 Archived-At: --===============1550852288== Content-Type: multipart/alternative; boundary="----=_Part_73136_10112807.1174394781252" ------=_Part_73136_10112807.1174394781252 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Jelle, do you have to use a Proxy? In my ctxtools.rb i changed the line: http = Net::HTTP.new(site) to: proxy_addr = 'my.proxy.de' proxy_port = 80 http = Net::HTTP::Proxy(proxy_addr, proxy_port).new(site) After that an update via ctxtools was possible. The bad thing is, that i have to change it everytime before an update :-) Since ruby treats tha call to Net::HTTP::Proxy(proxy_addr, proxy_port).new(site) without giving proxy_addr and proxy_port the same way as Net::HTTP.new (site), perhaps Hans can change ctxtools.rb in this way. I would like to have a command line like: ctxtools --updatecontext --proxy:my.proxy.de --proxyport:80 Greetings Lutz 2007/3/20, Jelle Huisman : > > > Op 20-mrt-2007, om 11:32 heeft Taco Hoekwater het volgende geschreven: > > > Hi all, > > > > I am pleased to announce that the new ConTeXt release from Hans Hagen > > can be downloaded as of now from the Pragma ADE website or one of its > > mirrors. > > Hello, > > I try to update ConTeXt using "ctxtools --updatecontext" but CtxTools > is "unable to fetch cont-tmf.zip" (even though I was able to download > that file from the Pargma website.) Is my Ctxtools broken? or is > there an alternative way to update ConTeXt (I use the MacTex > distribution)? > > Thanks, > > Jelle > > ------=_Part_73136_10112807.1174394781252 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Jelle,

do you have to use a Proxy?

In my ctxtools.rb i changed the line:
http = Net::HTTP.new(site)
to:
proxy_addr = 'my.proxy.de'
proxy_port = 80
http = Net::HTTP::Proxy(proxy_addr, proxy_port).new(site)

After that an update via ctxtools was possible.
The bad thing is, that i have to change it everytime before an update :-)

Since ruby treats tha call to Net::HTTP::Proxy(proxy_addr, proxy_port).new(site)
without giving proxy_addr and proxy_port the same way as Net::HTTP.new(site),
perhaps Hans can change ctxtools.rb in this way.

I would like to have a command line like:
ctxtools --updatecontext --proxy: my.proxy.de --proxyport:80

Greetings

Lutz

2007/3/20, Jelle Huisman <jelle@jhnet.nl>:

Op 20-mrt-2007, om 11:32 heeft Taco Hoekwater het volgende geschreven:

> Hi all,
>
> I am pleased to announce that the new ConTeXt release from Hans Hagen
> can be downloaded as of now from the Pragma ADE website or one of its
> mirrors.

Hello,

I try to update ConTeXt using "ctxtools --updatecontext" but CtxTools
is "unable to fetch cont-tmf.zip" (even though I was able to download
that file from the Pargma website.) Is my Ctxtools broken? or is
there an alternative way to update ConTeXt (I use the MacTex
distribution)?

Thanks,

Jelle


------=_Part_73136_10112807.1174394781252-- --===============1550852288== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context --===============1550852288==--