Minor pager corrections in print.c and help.c (psql)

Поиск
Список
Период
Сортировка
От Greg Sabino Mullane
Тема Minor pager corrections in print.c and help.c (psql)
Дата
Msg-id c051ea6285ab06eb67a228f52ece713f@biglumber.com
обсуждение исходный текст
Ответы Re: Minor pager corrections in print.c and help.c (psql)  (Bruce Momjian <pgman@candle.pha.pa.us>)
Re: Minor pager corrections in print.c and help.c (psql)  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-patches
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
NotDashEscaped: You need GnuPG to verify this message


Update copyrights to 2003.

print.c: Add one more line to pager calculation to account for the prompt.
help.c: Call PageOutput with correct number of lines within slashUsage
        Add one to line count in helpSQL to account for "Available help:" line.
        Make copyright match COPYRIGHT file. (Just "1994")


Index: print.c

===================================================================
RCS file: /projects/cvsroot/pgsql-server/src/bin/psql/print.c,v
retrieving revision 1.39
diff -c -r1.39 print.c
*** print.c    12 Jun 2003 08:15:28 -0000    1.39
--- print.c    27 Jun 2003 21:51:04 -0000
***************
*** 1,7 ****
  /*
   * psql - the PostgreSQL interactive terminal
   *
!  * Copyright 2000 by PostgreSQL Global Development Group
   *
   * $Header: /projects/cvsroot/pgsql-server/src/bin/psql/print.c,v 1.39 2003/06/12 08:15:28 momjian Exp $
   */
--- 1,7 ----
  /*
   * psql - the PostgreSQL interactive terminal
   *
!  * Copyright 2000-2003 by PostgreSQL Global Development Group
   *
   * $Header: /projects/cvsroot/pgsql-server/src/bin/psql/print.c,v 1.39 2003/06/12 08:15:28 momjian Exp $
   */
***************
*** 1004,1010 ****
          struct winsize screen_size;

          result = ioctl(fileno(stdout), TIOCGWINSZ, &screen_size);
!         if (result == -1 || lines > screen_size.ws_row || pager > 1)
          {
  #endif
              pagerprog = getenv("PAGER");
--- 1004,1012 ----
          struct winsize screen_size;

          result = ioctl(fileno(stdout), TIOCGWINSZ, &screen_size);
!
!         /* >= accounts for a one-line prompt */
!         if (result == -1 || lines >= screen_size.ws_row || pager > 1)
          {
  #endif
              pagerprog = getenv("PAGER");
Index: help.c
===================================================================
RCS file: /projects/cvsroot/pgsql-server/src/bin/psql/help.c,v
retrieving revision 1.73
diff -c -r1.73 help.c
*** help.c    11 Jun 2003 05:13:11 -0000    1.73
--- help.c    27 Jun 2003 21:51:04 -0000
***************
*** 1,7 ****
  /*
   * psql - the PostgreSQL interactive terminal
   *
!  * Copyright 2000 by PostgreSQL Global Development Group
   *
   * $Header: /projects/cvsroot/pgsql-server/src/bin/psql/help.c,v 1.73 2003/06/11 05:13:11 momjian Exp $
   */
--- 1,7 ----
  /*
   * psql - the PostgreSQL interactive terminal
   *
!  * Copyright 2000-2003 by PostgreSQL Global Development Group
   *
   * $Header: /projects/cvsroot/pgsql-server/src/bin/psql/help.c,v 1.73 2003/06/11 05:13:11 momjian Exp $
   */
***************
*** 163,169 ****
  {
      FILE       *output;

!     output = PageOutput(50, pager);

      /* if you add/remove a line here, change the row count above */

--- 163,169 ----
  {
      FILE       *output;

!     output = PageOutput(64, pager);

      /* if you add/remove a line here, change the row count above */

***************
*** 272,278 ****
          int            items_per_column = (QL_HELP_COUNT + 2) / 3;
          FILE        *output;

!         output = PageOutput(items_per_column, pager);

          fputs(_("Available help:\n"), output);

--- 272,278 ----
          int            items_per_column = (QL_HELP_COUNT + 2) / 3;
          FILE        *output;

!         output = PageOutput(items_per_column + 1, pager);

          fputs(_("Available help:\n"), output);

***************
*** 334,343 ****
  {
      puts(
           "PostgreSQL Data Base Management System\n\n"
!          "Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group\n\n"
           "This software is based on Postgres95, formerly known as Postgres, which\n"
           "contains the following notice:\n\n"
!          "Portions Copyright(c) 1994 - 7 Regents of the University of California\n\n"
           "Permission to use, copy, modify, and distribute this software and its\n"
           "documentation for any purpose, without fee, and without a written agreement\n"
           "is hereby granted, provided that the above copyright notice and this paragraph\n"
--- 334,343 ----
  {
      puts(
           "PostgreSQL Data Base Management System\n\n"
!          "Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group\n\n"
           "This software is based on Postgres95, formerly known as Postgres, which\n"
           "contains the following notice:\n\n"
!          "Portions Copyright(c) 1994, Regents of the University of California\n\n"
           "Permission to use, copy, modify, and distribute this software and its\n"
           "documentation for any purpose, without fee, and without a written agreement\n"
           "is hereby granted, provided that the above copyright notice and this paragraph\n"





--
Greg Sabino Mullane greg@turnstep.com
PGP Key: 0x14964AC8 200306271750





-----BEGIN PGP SIGNATURE-----
Comment: http://www.turnstep.com/pgp.html

iD8DBQE+/L1EvJuQZxSWSsgRAjvdAKDbwE5KoR8mNa8mA63CeYwO1OySGACdGErc
HKYkVhGBAr7x1PpRtErjt9s=
=buDA
-----END PGP SIGNATURE-----



В списке pgsql-patches по дате отправления:

Предыдущее
От: Böjthe Zoltán
Дата:
Сообщение: timetravel.c
Следующее
От: Joe Conway
Дата:
Сообщение: Re: array support patch phase 1 patch