Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a6f01d1a
Commit
a6f01d1a
authored
May 27, 2003
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Internationalize interactive yes/no responses.
parent
aea0270c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
8 deletions
+32
-8
src/bin/scripts/common.c
src/bin/scripts/common.c
+22
-1
src/bin/scripts/common.h
src/bin/scripts/common.h
+3
-0
src/bin/scripts/createuser.c
src/bin/scripts/createuser.c
+3
-3
src/bin/scripts/dropdb.c
src/bin/scripts/dropdb.c
+2
-2
src/bin/scripts/dropuser.c
src/bin/scripts/dropuser.c
+2
-2
No files found.
src/bin/scripts/common.c
View file @
a6f01d1a
...
...
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgsql/src/bin/scripts/common.c,v 1.
2 2003/04/04 20:42:13 momjian
Exp $
* $Header: /cvsroot/pgsql/src/bin/scripts/common.c,v 1.
3 2003/05/27 19:36:54 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -153,3 +153,24 @@ executeQuery(PGconn *conn, const char *query, const char *progname, bool echo)
return
res
;
}
/*
* Check yes/no answer in a localized way. 1=yes, 0=no, -1=neither.
*/
/* translator: Make sure the (y/n) prompts match the translation of this. */
#define PG_YESLETTER gettext_noop("y")
/* translator: Make sure the (y/n) prompts match the translation of this. */
#define PG_NOLETTER gettext_noop("n")
int
check_yesno_response
(
const
char
*
string
)
{
if
(
strcmp
(
string
,
gettext
(
PG_YESLETTER
))
==
0
)
return
1
;
else
if
(
strcmp
(
string
,
gettext
(
PG_NOLETTER
))
==
0
)
return
0
;
else
return
-
1
;
}
src/bin/scripts/common.h
View file @
a6f01d1a
...
...
@@ -32,3 +32,6 @@ connectDatabase(const char *dbname, const char *pghost, const char *pgport,
PGresult
*
executeQuery
(
PGconn
*
conn
,
const
char
*
command
,
const
char
*
progname
,
bool
echo
);
int
check_yesno_response
(
const
char
*
string
);
src/bin/scripts/createuser.c
View file @
a6f01d1a
...
...
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgsql/src/bin/scripts/createuser.c,v 1.
2 2003/05/14 03:26:03 tgl
Exp $
* $Header: /cvsroot/pgsql/src/bin/scripts/createuser.c,v 1.
3 2003/05/27 19:36:54 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -166,7 +166,7 @@ main(int argc, char *argv[])
char
*
reply
;
reply
=
simple_prompt
(
"Shall the new user be allowed to create databases? (y/n) "
,
1
,
true
);
if
(
reply
[
0
]
==
'y'
||
reply
[
0
]
==
'Y'
)
if
(
check_yesno_response
(
reply
)
==
1
)
createdb
=
+
1
;
else
createdb
=
-
1
;
...
...
@@ -177,7 +177,7 @@ main(int argc, char *argv[])
char
*
reply
;
reply
=
simple_prompt
(
"Shall the new user be allowed to create more new users? (y/n) "
,
1
,
true
);
if
(
reply
[
0
]
==
'y'
||
reply
[
0
]
==
'Y'
)
if
(
check_yesno_response
(
reply
)
==
1
)
adduser
=
+
1
;
else
adduser
=
-
1
;
...
...
src/bin/scripts/dropdb.c
View file @
a6f01d1a
...
...
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgsql/src/bin/scripts/dropdb.c,v 1.
2 2003/05/14 03:26:03 tgl
Exp $
* $Header: /cvsroot/pgsql/src/bin/scripts/dropdb.c,v 1.
3 2003/05/27 19:36:54 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -107,7 +107,7 @@ main(int argc, char *argv[])
printf
(
_
(
"Database
\"
%s
\"
will be permanently deleted.
\n
"
),
dbname
);
reply
=
simple_prompt
(
"Are you sure? (y/n) "
,
1
,
true
);
if
(
reply
[
0
]
!=
'y'
&&
reply
[
0
]
!=
'Y'
)
if
(
check_yesno_response
(
reply
)
!=
1
)
exit
(
0
);
}
...
...
src/bin/scripts/dropuser.c
View file @
a6f01d1a
...
...
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgsql/src/bin/scripts/dropuser.c,v 1.
2 2003/05/14 03:26:03 tgl
Exp $
* $Header: /cvsroot/pgsql/src/bin/scripts/dropuser.c,v 1.
3 2003/05/27 19:36:55 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -108,7 +108,7 @@ main(int argc, char *argv[])
printf
(
_
(
"User
\"
%s
\"
will be permanently deleted.
\n
"
),
dropuser
);
reply
=
simple_prompt
(
"Are you sure? (y/n) "
,
1
,
true
);
if
(
reply
[
0
]
!=
'y'
&&
reply
[
0
]
!=
'Y'
)
if
(
check_yesno_response
(
reply
)
!=
1
)
exit
(
0
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment