public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [wwwdocs]
       [not found] <AANLkTinDZDXERp2sR8z_oOmhzyv=vxrGG9WgHg31ujgh@mail.gmail.com>
@ 2011-04-01  7:17 ` Devang S
  2011-04-01  7:28   ` [wwwdocs] Devang S
  2011-04-03 13:00   ` [wwwdocs] Gerald Pfeifer
  0 siblings, 2 replies; 8+ messages in thread
From: Devang S @ 2011-04-01  7:17 UTC (permalink / raw)
  To: gcc-cvs-wwwdocs, gcc-patches

Found a bug on the cvs.html web page. How to start the web page patching
I followed the instruction on the http://gcc.gnu.org/cvs.html page,
downloaded the wwwdocs via cvs, validated the web page to be updated.
Now I want to commit the changes to the repo. But for that I need
write access(obviously). Please let me know what I need to do to
commit the changes. Or please can someone do that on my behalf? I can
let you know the details to be made.


Changelog:

Index: wwwdocs/htdocs/cvs.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/cvs.html,v
retrieving revision 1.219
diff -u -3 -r1.219 cvs.html
--- wwwdocs/htdocs/cvs.html    8 Jan 2011 16:50:20 -0000    1.219
+++ wwwdocs/htdocs/cvs.html    1 Apr 2011 07:01:58 -0000
@@ -1,5 +1,6 @@
 <html>

+
 <head>
 <meta name="description" content="Access to the GCC web pages via CVS" />
 <meta name="keywords" content="CVS, version control, GCC, source,
public, repository" />
@@ -21,7 +22,7 @@

 <ol>
  <li>Set CVS_RSH in your environment to <code>ssh</code>.</li>
- <li><code>cvs -qz -d :ext:<i>username</i>@gcc.gnu.org:/cvs/gcc checkout
+ <li><code>cvs -qz 0 -d :ext:<i>username</i>@gcc.gnu.org:/cvs/gcc checkout
 -P wwwdocs</code> where <i>username</i> is your user name at gcc.gnu.org</li>
 </ol>

===================================================================



--
Cheers,
Devang S
http://celeritas9.wordpress.com

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [wwwdocs]
  2011-04-01  7:17 ` [wwwdocs] Devang S
@ 2011-04-01  7:28   ` Devang S
  2011-04-03 13:00   ` [wwwdocs] Gerald Pfeifer
  1 sibling, 0 replies; 8+ messages in thread
From: Devang S @ 2011-04-01  7:28 UTC (permalink / raw)
  To: gcc-patches

Background/Test:

The cvs command <cvs -qz -d :ext:username@gcc.gnu.org:/cvs/gcc
checkout -P wwwdocs> needs to know the compression level while using
the -z option. Hence we need to provide compression level for network
traffic ranging from 0 to 9. 0 for default. This value for -z command
is not mentioned in the 2nd step. Hence it gives error.

On Fri, Apr 1, 2011 at 12:47 PM, Devang S <devang221129@gmail.com> wrote:
>
> Found a bug on the cvs.html web page. How to start the web page patching
> I followed the instruction on the http://gcc.gnu.org/cvs.html page,
> downloaded the wwwdocs via cvs, validated the web page to be updated.
> Now I want to commit the changes to the repo. But for that I need
> write access(obviously). Please let me know what I need to do to
> commit the changes. Or please can someone do that on my behalf? I can
> let you know the details to be made.
>
>
> Changelog:
>
> Index: wwwdocs/htdocs/cvs.html
> ===================================================================
> RCS file: /cvs/gcc/wwwdocs/htdocs/cvs.html,v
> retrieving revision 1.219
> diff -u -3 -r1.219 cvs.html
> --- wwwdocs/htdocs/cvs.html    8 Jan 2011 16:50:20 -0000    1.219
> +++ wwwdocs/htdocs/cvs.html    1 Apr 2011 07:01:58 -0000
> @@ -1,5 +1,6 @@
>  <html>
>
> +
>  <head>
>  <meta name="description" content="Access to the GCC web pages via CVS" />
>  <meta name="keywords" content="CVS, version control, GCC, source,
> public, repository" />
> @@ -21,7 +22,7 @@
>
>  <ol>
>   <li>Set CVS_RSH in your environment to <code>ssh</code>.</li>
> - <li><code>cvs -qz -d :ext:<i>username</i>@gcc.gnu.org:/cvs/gcc checkout
> + <li><code>cvs -qz 0 -d :ext:<i>username</i>@gcc.gnu.org:/cvs/gcc checkout
>  -P wwwdocs</code> where <i>username</i> is your user name at gcc.gnu.org</li>
>  </ol>
>
> ===================================================================
>
>
>
> --
> Cheers,
> Devang S
> http://celeritas9.wordpress.com



--
Thanks,
Devang S
http://celeritas9.wordpress.com

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [wwwdocs]
  2011-04-01  7:17 ` [wwwdocs] Devang S
  2011-04-01  7:28   ` [wwwdocs] Devang S
@ 2011-04-03 13:00   ` Gerald Pfeifer
  1 sibling, 0 replies; 8+ messages in thread
From: Gerald Pfeifer @ 2011-04-03 13:00 UTC (permalink / raw)
  To: Devang S; +Cc: gcc-patches

On Fri, 1 Apr 2011, Devang S wrote:
> Found a bug on the cvs.html web page. How to start the web page patching
> I followed the instruction on the http://gcc.gnu.org/cvs.html page,
> downloaded the wwwdocs via cvs, validated the web page to be updated.
> Now I want to commit the changes to the repo. But for that I need
> write access(obviously). Please let me know what I need to do to
> commit the changes. Or please can someone do that on my behalf? I can
> let you know the details to be made.

Thanks for the report and suggested patch, Devang.

Looking into this a bit more, I noticed that -z actually only is
used for the classic protocol, whereas when tunnelled through SSH
as is the case here, SSH already should take care of compression,
plus the amount of data here is small, so we can just simplify and
remove this option altogether.  I went ahead and committed the patch
below

As for your other questions, just keep changes coming, and I, or
others depending on the area, will be happy to review and commit
them.

Gerald

Index: cvs.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/cvs.html,v
retrieving revision 1.219
diff -u -r1.219 cvs.html
--- cvs.html	8 Jan 2011 16:50:20 -0000	1.219
+++ cvs.html	3 Apr 2011 12:42:51 -0000
@@ -21,7 +21,7 @@
 
 <ol>
  <li>Set CVS_RSH in your environment to <code>ssh</code>.</li>
- <li><code>cvs -qz -d :ext:<i>username</i>@gcc.gnu.org:/cvs/gcc checkout
+ <li><code>cvs -q -d :ext:<i>username</i>@gcc.gnu.org:/cvs/gcc checkout
 -P wwwdocs</code> where <i>username</i> is your user name at gcc.gnu.org</li>
 </ol>
 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [wwwdocs]
  2009-03-23 13:11 [wwwdocs] Martin Jambor
@ 2009-03-23 13:44 ` Richard Guenther
  0 siblings, 0 replies; 8+ messages in thread
From: Richard Guenther @ 2009-03-23 13:44 UTC (permalink / raw)
  To: GCC Patches, Gerald Pfeifer

2009/3/23 Martin Jambor <mjambor@suse.cz>:
> Hi,
>
> as Steven pointed out, indirect inlining is not listed in changes.html
> for gcc  4.4.  Therefore I would  like to commit  the following simple
> paragraph.  Is it OK?

Ok.

Richard.

> Thanks,
>
> Martin
>
> Index: changes.html
> ===================================================================
> RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/changes.html,v
> retrieving revision 1.57
> diff -u -r1.57 changes.html
> --- changes.html        20 Mar 2009 16:10:51 -0000      1.57
> +++ changes.html        23 Mar 2009 12:47:20 -0000
> @@ -120,6 +120,11 @@
>  <h2>General Optimizer Improvements</h2>
>
>   <ul>
> +    <li>A new command-line switch <code>-findirect-inlining</code> has been
> +      added.  When turned on it allows the inliner to also inline indirect
> +      calls that are discovered to have known targets at compile time
> +      thanks to previous inlining.  </li>
> +
>     <li>A new command-line switch <code>-ftree-switch-conversion</code> has
>       been added.  This new pass turns simple initializations of scalar
>       variables in switch statements into initializations from a static array,
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [wwwdocs]
@ 2009-03-23 13:11 Martin Jambor
  2009-03-23 13:44 ` [wwwdocs] Richard Guenther
  0 siblings, 1 reply; 8+ messages in thread
From: Martin Jambor @ 2009-03-23 13:11 UTC (permalink / raw)
  To: GCC Patches; +Cc: Gerald Pfeifer

Hi,

as Steven pointed out, indirect inlining is not listed in changes.html
for gcc  4.4.  Therefore I would  like to commit  the following simple
paragraph.  Is it OK?

Thanks,

Martin

Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/changes.html,v
retrieving revision 1.57
diff -u -r1.57 changes.html
--- changes.html	20 Mar 2009 16:10:51 -0000	1.57
+++ changes.html	23 Mar 2009 12:47:20 -0000
@@ -120,6 +120,11 @@
 <h2>General Optimizer Improvements</h2>
 
   <ul>
+    <li>A new command-line switch <code>-findirect-inlining</code> has been
+      added.  When turned on it allows the inliner to also inline indirect
+      calls that are discovered to have known targets at compile time
+      thanks to previous inlining.  </li>
+
     <li>A new command-line switch <code>-ftree-switch-conversion</code> has
       been added.  This new pass turns simple initializations of scalar
       variables in switch statements into initializations from a static array,

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [wwwdocs]
  2005-05-24  0:33 ` [wwwdocs] Mark Mitchell
@ 2005-05-28  3:44   ` Gabriel Dos Reis
  0 siblings, 0 replies; 8+ messages in thread
From: Gabriel Dos Reis @ 2005-05-28  3:44 UTC (permalink / raw)
  To: Mark Mitchell; +Cc: Gerald Pfeifer, gcc-patches

Mark Mitchell <mark@codesourcery.com> writes:

| Gerald Pfeifer wrote:
| > Fix a typo in my PGP fingerprint.  Installed.
| > Gaby, Mark, would you mind adding your fingerprints as well?
| 
| I've added mine.

Me too.

-- Gaby

Index: mirrors.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/mirrors.html,v
retrieving revision 1.162
diff -u -r1.162 mirrors.html
--- mirrors.html	23 May 2005 23:42:58 -0000	1.162
+++ mirrors.html	28 May 2005 03:16:12 -0000
@@ -21,6 +21,8 @@
 Key fingerprint = B215 C163 3BCA 0477 615F  1B35 A5B3 A004 745C 015A
 1024D/B75C61B8 2003-04-10 Mark Mitchell &lt;mark@codesourcery.com&gt;
 Key fingerprint = B3C4 2148 A44E 6983 B3E4  CC07 93FA 9B1A B75C 61B8
+1024D/902C9419 2004-12-06 Gabriel Dos Reis &lt;gdr@acm.or&gt;
+Key fingerprint = 90AA 4704 69D3 965A 87A5  DCB4 94D0 3953 902C 9419
 </pre>
 
 <ul>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [wwwdocs]
  2005-05-21 23:00 [wwwdocs] Gerald Pfeifer
@ 2005-05-24  0:33 ` Mark Mitchell
  2005-05-28  3:44   ` [wwwdocs] Gabriel Dos Reis
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Mitchell @ 2005-05-24  0:33 UTC (permalink / raw)
  To: Gerald Pfeifer; +Cc: gcc-patches, Gabriel Dos Reis

[-- Attachment #1: Type: text/plain, Size: 237 bytes --]

Gerald Pfeifer wrote:
> Fix a typo in my PGP fingerprint.  Installed.
> 
> Gaby, Mark, would you mind adding your fingerprints as well?

I've added mine.

Thanks,

-- 
Mark Mitchell
CodeSourcery, LLC
mark@codesourcery.com
(916) 791-8304

[-- Attachment #2: diffs --]
[-- Type: text/plain, Size: 940 bytes --]

Index: mirrors.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/mirrors.html,v
retrieving revision 1.161
diff -c -5 -p -r1.161 mirrors.html
*** mirrors.html	21 May 2005 22:50:41 -0000	1.161
--- mirrors.html	23 May 2005 23:42:24 -0000
*************** sites</a>.  The archives there will be s
*** 17,26 ****
--- 17,28 ----
  GnuPG keys:</p>
  
  <pre>
  1024D/745C015A 1999-11-09 Gerald Pfeifer &lt;gerald@pfeifer.com&gt;
  Key fingerprint = B215 C163 3BCA 0477 615F  1B35 A5B3 A004 745C 015A
+ 1024D/B75C61B8 2003-04-10 Mark Mitchell &lt;mark@codesourcery.com&gt;
+ Key fingerprint = B3C4 2148 A44E 6983 B3E4  CC07 93FA 9B1A B75C 61B8
  </pre>
  
  <ul>
  <li>Australia: <a href="ftp://mirror.aarnet.edu.au/pub/gcc/">mirror.aarnet.edu.au</a></li>
  <li>Austria: <a href="ftp://gd.tuwien.ac.at/gnu/gcc/">gd.tuwien.ac.at</a>, thanks to Antonin dot Sprinzl at tuwien dot ac dot at</li>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [wwwdocs]
@ 2005-05-21 23:00 Gerald Pfeifer
  2005-05-24  0:33 ` [wwwdocs] Mark Mitchell
  0 siblings, 1 reply; 8+ messages in thread
From: Gerald Pfeifer @ 2005-05-21 23:00 UTC (permalink / raw)
  To: gcc-patches; +Cc: Mark Mitchell, Gabriel Dos Reis

Fix a typo in my PGP fingerprint.  Installed.

Gaby, Mark, would you mind adding your fingerprints as well?

Thanks,
Gerald

Index: mirrors.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/mirrors.html,v
retrieving revision 1.160
diff -u -3 -p -r1.160 mirrors.html
--- mirrors.html	17 Feb 2005 13:19:37 -0000	1.160
+++ mirrors.html	21 May 2005 22:49:17 -0000
@@ -17,7 +17,7 @@ sites</a>.  The archives there will be s
 GnuPG keys:</p>
 
 <pre>
-1024D/745C015A 1999-11-09 Gerald Pfeifer &lt;gerald@pfeifer.com;gt;
+1024D/745C015A 1999-11-09 Gerald Pfeifer &lt;gerald@pfeifer.com&gt;
 Key fingerprint = B215 C163 3BCA 0477 615F  1B35 A5B3 A004 745C 015A
 </pre>
 

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-04-03 13:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <AANLkTinDZDXERp2sR8z_oOmhzyv=vxrGG9WgHg31ujgh@mail.gmail.com>
2011-04-01  7:17 ` [wwwdocs] Devang S
2011-04-01  7:28   ` [wwwdocs] Devang S
2011-04-03 13:00   ` [wwwdocs] Gerald Pfeifer
2009-03-23 13:11 [wwwdocs] Martin Jambor
2009-03-23 13:44 ` [wwwdocs] Richard Guenther
  -- strict thread matches above, loose matches on Subject: below --
2005-05-21 23:00 [wwwdocs] Gerald Pfeifer
2005-05-24  0:33 ` [wwwdocs] Mark Mitchell
2005-05-28  3:44   ` [wwwdocs] Gabriel Dos Reis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).