Friday, June 27, 2008

Re: [ADMIN] Extended security/restriction to any role with login access

Ok  !

I could revoke privileges to postgres.pg_catalog from public but now new users can login but can't see anything, even when I grant access to then on one view I've created on a new database.

Can someone give a detailed stepe by step on how to achieve this:

- Probably change postgres and template1 to disallow access to public group by default.
- After changes new users without superuser privileges or owned objects can't see anything.
- Once granted access to a part of a database let's say a view, the granted user can see it.

Let's start with fresh default postgresql installation.
Make the necessary changes.
Create to users with login access only, user1 and user2.
Create a new database db1 with owner user1.
Right now user1 can login and access his database db1. And user2 can login but can't see anithing.
Now user1 create a table table1 in his public schema and a view  view1 on that table, he grants select privilege to user2.
Now user2 can connect and see only  db1.public.view1

That is wat I want to achive, and I think that  more people  will  need something like this too.
 
Thanks again in advance for any help on the matter !
On Fri, Jun 27, 2008 at 9:10 PM, Lennin Caro <lennin.caro@yahoo.com> wrote:
in pgadmin3:

Menu -> Display
check the option "System Object"

this show you the catalogs of postgresql "pg_xxxxxxxx"

change the grants to users  here


--- On Fri, 6/27/08, Domingo Alvarez Duarte <mingodad@gmail.com> wrote:
From: Domingo Alvarez Duarte <mingodad@gmail.com>
Subject: Re: [ADMIN] Extended security/restriction to any role with login access
To: lennin.caro@yahoo.com
Cc: "Carol Walter" <walterc@indiana.edu>, pgsql-admin@postgresql.org
Date: Friday, June 27, 2008, 6:31 PM


How can I change that ?
I mean make the catalog of tables, function and roles private and only accessible to granted users ?

Someon mentioned once to make changes in template1, wich changes will be nneded ? In case this is possible.

Thanks for any help/sugestion !

On Fri, Jun 27, 2008 at 5:12 PM, Lennin Caro <lennin.caro@yahoo.com> wrote:

Ok...

the catalog of tables, function and roles are public. Pgadmin use the catalog to create the tree of databases, function and roles. The user can see this but cant change this. In oracle the catalog of user, tables, function are public


--- On Fri, 6/27/08, Domingo Alvarez Duarte <mingodad@gmail.com> wrote:
From: Domingo Alvarez Duarte <mingodad@gmail.com>
Subject: Re: [ADMIN] Extended security/restriction to any role with login access
To: lennin.caro@yahoo.com
Cc: "Carol Walter" <walterc@indiana.edu>, pgsql-admin@postgresql.org
Date: Friday, June 27, 2008, 2:35 PM


Look this isn't the point I know what can be done with pg_hba.conf

The main point is:

When I create a postgresql user and grant to it only access to part of a database (let's say one view). I'm expecting that the server will honor it. But right now postgresql server isn't.

This is the reason I'm writing here and tried too hackers list but no one seems to understand the importance of this point.

Maybe it's my fault of knowledge but till now no one showed me how to get the expected result, people try to tell me how to use firewall, change the way of build my application, they don't understand the point. I'll repeat it again:


When I create a postgresql user and grant to it only access to part of a database (let's say one view). I'm expecting that the server will honor it. But right now postgresql server isn't.

Actually any user with login access can see all databases/roles/functions/table-definitions/triggers. What I thinks isn't correct.

I'll apreciate any solution to this problem.

On Fri, Jun 27, 2008 at 3:44 PM, Lennin Caro <lennin.caro@yahoo.com> wrote:
ok, let try this .....

open the pg_hba.conf and check the line

host    all         all         127.0.0.1/32          trust

and change to

host    all         all         127.0.0.1/32          password



--- On Thu, 6/26/08, Domingo Alvarez Duarte <mingodad@gmail.com> wrote:
From: Domingo Alvarez Duarte <mingodad@gmail.com>

Subject: Re: [ADMIN] Extended security/restriction to any role with login access
To: lennin.caro@yahoo.com
Cc: "Carol Walter" <walterc@indiana.edu>, pgsql-admin@postgresql.org
Date: Thursday, June 26, 2008, 9:45 PM


I did the following:
-Connect as superuser postgres with pgadmin and create a user -> noaccess
CREATE ROLE noaccess LOGIN
  NOSUPERUSER NOINHERIT NOCREATEDB NOCREATEROLE;

-Disconnect from the server
-Connect to the server with user 'noaccess' through pgadmin3, and I can see all databases/functions/schemas/roles.

What am I missing ?

On Thu, Jun 26, 2008 at 8:44 PM, Lennin Caro <lennin.caro@yahoo.com> wrote:
hello...

you can restric acces from all the databases in your cluster. When you use pgadmin3 this show all the databases but if you dont have access to the databases you cant see the struct of this.

check waht user use pgadmin3 for connect to databases

create groups and add privileges to the group later add the users to the group









[GENERAL] Advice Wanted on Selecting Multi-row Data Requests in 10-Row Blocks

What I want to do is present the results of a query in a web page, but
only 10 rows at a time. My PostgreSQL table has millions of records and
if I don't add a LIMIT 10 to the SQL selection, the request can take too
long. The worst case scenario is when the user requests all records
without adding filtering conditions (e.g. SELECT * FROM MyTable;) That
can take 10-15 minutes, which won't work on a web application.

What I'm wondering is how in PostgreSQL do you select only the first 10
records from a selection, then the next 10, then the next, and possibly
go back to a previous 10? Or do you do the full selection into a
temporary table once, adding a row number to the columns and then
performing sub-selects on that temporary table using the row id? Or do
you run the query with Limit 10 set and then run another copy with no
limit into a temporary table while you let the user gaze thoughtfully at
the first ten records?

I know how to get records form the database into a web page, and I know
how to sense user actions (PageDown, PageUp, etc.) so I'm basically
looking for techniques to extract the data quickly.

Also, if this isn't the best forum to ask this sort of question, I'd
appreciate being pointed to a more appropriate one.

TIA,

- Bill Thoen

--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

RE: [pgsql-es-ayuda] llamadas dinamicas

Si tienes razon, lo que sucede es que la funcion esta comprimida no te envío todo lo que hace, en la función real
la variable si esta definida y es del tipo money.

> Date: Fri, 27 Jun 2008 15:56:59 -0400
> From: calalinux@gmail.com
> To: pgsql-es-ayuda@postgresql.org
> Subject: Re: [pgsql-es-ayuda] llamadas dinamicas
>
> El día 27 de junio de 2008 15:21, Gerardo Gonzalez
> escribió:
>> seria;
>>
>> CREATE OR REPLACE FUNCTION "public"."p_gen_cargakihgo" ( inp_age_id varchar
>> , inp_cli_folio integer
>> , inp_usu_id varchar
>> , inp_cam_id varchar)
>> $body$
>>
>> declare
>> c_par_cobro refcursor;
>> r_par_cobro record;
>> vquery varchar(100);
>> inp_age_id char(05);
>> inp_cli_folio int;
>> inp_usu_id varchar(10);
>> Begin
>> ....
>> ....
>> fetch c_par_cobro into r_par_cobro;
>> while found loop
>>
>> v_query:= r_par_cobro.cob_prc_almacenado || '(' || quote_literal(inp_age_id) ||
>> ','||inp_cli_folio||','||quote_literal(inp_usu_id)||')';
>>
>> raise notice '%', v_query;
>> execute v_query into v_par_cobro;
>
> Aqui dice que devolverá el primer resultado a la variable v_par_cobro
> pero esta no esta definida al comienzo de la funcion... chequealo por
> favor..
>
>> end loop;
>> close c_par_cobro;
>> ....
>> ....
>> END;
>> $body$
>> LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
>>
>> y esta funcion la invoco de la sigte manera:
>>
>> select * from p_gen_cargakihgo('CL001', 1, 'gerardo', 'METFULL');
>>
>> y es ahi cuando me sale el error:
>>
>> ERROR: error de sintaxis en o cerca de «p_gen_interes» at character 1
>> QUERY: p_gen_interes('CL001',1,'gerardo')
>> CONTEXT: PL/pgSQL function "p_gen_cargakihgo" line 110 at EXECUTE statement
>>
>> Atte.,
>> Gerardo
>
> Amigo, por favor, NO hagas TOPPosting
> (debes escribir debajo de los mail que respondes o entre lineas, pero
> no arriba...)
> Gracias.
> --
> §~^Calabaza^~§ from Villa Elisa, Paraguay
> ----------------
> A hendu hína: Anorexia Nervosa - le portail de la vierge
> http://foxytunes.com/artist/anorexia+nervosa/track/le+portail+de+la+vierge
> --
> TIP 5: ¿Has leído nuestro extenso FAQ?
> http://www.postgresql.org/docs/faqs.FAQ.html

_________________________________________________________________
Descarga ya gratis y vive la experiencia Windows Live.
http://www.descubrewindowslive.com/latam/index.html--
TIP 1: para suscribirte y desuscribirte, visita http://archives.postgresql.org/pgsql-es-ayuda

Re: [pgsql-es-ayuda] llamadas dinamicas

El día 27 de junio de 2008 15:21, Gerardo Gonzalez
<gergonvel@hotmail.com> escribió:
> seria;
>
> CREATE OR REPLACE FUNCTION "public"."p_gen_cargakihgo" ( inp_age_id varchar
> , inp_cli_folio integer
> , inp_usu_id varchar
> , inp_cam_id varchar)
> $body$
>
> declare
> c_par_cobro refcursor;
> r_par_cobro record;
> vquery varchar(100);
> inp_age_id char(05);
> inp_cli_folio int;
> inp_usu_id varchar(10);
> Begin
> ....
> ....
> fetch c_par_cobro into r_par_cobro;
> while found loop
>
> v_query:= r_par_cobro.cob_prc_almacenado || '(' || quote_literal(inp_age_id) ||
> ','||inp_cli_folio||','||quote_literal(inp_usu_id)||')';
>
> raise notice '%', v_query;
> execute v_query into v_par_cobro;

Aqui dice que devolverá el primer resultado a la variable v_par_cobro
pero esta no esta definida al comienzo de la funcion... chequealo por
favor..

> end loop;
> close c_par_cobro;
> ....
> ....
> END;
> $body$
> LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;
>
> y esta funcion la invoco de la sigte manera:
>
> select * from p_gen_cargakihgo('CL001', 1, 'gerardo', 'METFULL');
>
> y es ahi cuando me sale el error:
>
> ERROR: error de sintaxis en o cerca de «p_gen_interes» at character 1
> QUERY: p_gen_interes('CL001',1,'gerardo')
> CONTEXT: PL/pgSQL function "p_gen_cargakihgo" line 110 at EXECUTE statement
>
> Atte.,
> Gerardo

Amigo, por favor, NO hagas TOPPosting
(debes escribir debajo de los mail que respondes o entre lineas, pero
no arriba...)
Gracias.
--
§~^Calabaza^~§ from Villa Elisa, Paraguay
----------------
A hendu hína: Anorexia Nervosa - le portail de la vierge
http://foxytunes.com/artist/anorexia+nervosa/track/le+portail+de+la+vierge
--
TIP 5: ¿Has leído nuestro extenso FAQ?

http://www.postgresql.org/docs/faqs.FAQ.html

Re: [pgsql-es-ayuda] Postgres y jdbc

disculpa no debi usar la palabra desifra o desencriptar era comparar, ya que md5 no se desifra

--- On Sat, 6/28/08, Neil Peter Braggio <pbraggio@gmail.com> wrote:
From: Neil Peter Braggio <pbraggio@gmail.com>
Subject: Re: [pgsql-es-ayuda] Postgres y jdbc
To: lennin.caro@yahoo.com
Cc: "lista postgres" <pgsql-es-ayuda@postgresql.org>, "Edgar Enriquez" <edgarpostgres@yahoo.es>
Date: Saturday, June 28, 2008, 11:28 AM

Me gustaría saber como haces para _desencriptar_ (descifrar es la
palabra correcta) una cadena de caracteres obtenida de la salida de
una función MD5.

Me explico mejor: quisiera saber como obtienes la cadena original a
partir de una cadena MD5 obtenida por una función MD5.

----
Neil Peter Braggio
pbraggio@gmail.com


On Sat, Jun 28, 2008 at 9:58 AM, Lennin Caro <lennin.caro@yahoo.com>
wrote:
> puedes hacer que el password exista en un archivo de texto, este password
lo
> puedes encriptar con md5 y desencriptar en tu aplicacion al momento de
> pasarlo al getConnection.
>
> La otra opcion es que lo introduzcan desde una ventana o directamente como
> parametro al llamar la aplicacion..
>
> --- On Fri, 6/27/08, Edgar Enriquez <edgarpostgres@yahoo.es> wrote:
>
> From: Edgar Enriquez <edgarpostgres@yahoo.es>
> Subject: [pgsql-es-ayuda] Postgres y jdbc
> To: "lista postgres" <pgsql-es-ayuda@postgresql.org>
> Date: Friday, June 27, 2008, 1:37 PM
>
> Saludos amigos de la lista, yo tengo un problema y es que no se como hacer
> para conectar una aplicacion java a posgres utilizando jdbc,
> postgresql-8.2-508.jdbc4, sin tener nececidad de guardar el pasword del
> usuario, yo utilizo este codigo
>
> try{
> Class.forName("org.postgresql.Driver");
> con =
>
DriverManager.getConnection("jdbc:postgresql://192.168..100.126:5432/Migration","migration","swing");
>
> System.out.println("PostgreSQL OK");
> }
> catch(Exception e){
> System.out.println(URL+" "+utilisateur+"
"+motDePass);
> System.out.println("No se ha podido cargar el Driver
> PostgreSQL");
> erreur = 1;
> }
>
> el problema es que estoy obligado de guardar el nombre de usuario
> "migration" y el password "swing" en la aplicacion,
alguien tiene una
> sugerencia?
>
> Nota: esta es una aplicacion para poder migrar ciertos datos de una base a
> otra pero necesito que sea transparente al usuario, la base de datos
> migracion me sirve de control, osea yo no quiero que el usuario sepa que
se
> está conectando a una base de datos donde estoy controlando lo que hace
ya
> que trabajo con gente que quiere mostrar que pasar de multiples bases de
> datos access(una por cliente) a una sola base en posgres no es factible
>
>
> Gracias
>
> ________________________________
> Enviado desde Correo Yahoo!
> La bandeja de entrada más inteligente.
>
>
--
TIP 5: ¿Has leído nuestro extenso FAQ?
http://www.postgresql.org/docs/faqs.FAQ.html

RE: [pgsql-es-ayuda] llamadas dinamicas

La funcion desde consola me funciona si la llamo

select * from p_gen_interes('CL001',1,'gerardo');

y en duro dentro la funcion p_gen_cargakihgo:

a:= p_gen_interes('CL001',1,'gerardo');

me funciona tb.
Pero la idea es generarla en forma dinamica:
por poder ejecutar una variedad de funciones
Ojo la funcion tb retorna un dato que es Money.

Atte.,
Gerardo.

________________________________
Date: Fri, 27 Jun 2008 12:37:08 -0700
From: lennin.caro@yahoo.com
Subject: RE: [pgsql-es-ayuda] llamadas dinamicas
To: jurasec@gmail.com; gergonvel@hotmail.com
CC: pgsql-es-ayuda@postgresql.org

si usas p_gen_interes('CL001',1,'gerardo') desde una consola te funciona perfectamente?


--- On Fri, 6/27/08, Gerardo Gonzalez wrote:
From: Gerardo Gonzalez
Subject: RE: [pgsql-es-ayuda] llamadas dinamicas
To: "Julio Cesar Rodriguez Dominguez"
Cc: "Ayuda Postgres"
Date: Friday, June 27, 2008, 5:36 PM


Señores me pueden ayudar?:

Lo que estoy haciendo es:

declare
c_par_cobro refcursor;
r_par_cobro record;
vquery varchar(100);
inp_age_id char(05);
inp_cli_folio int;
inp_usu_id varchar(10);
Begin
....
....
fetch
c_par_cobro into r_par_cobro;
while found loop

v_query:= r_par_cobro.cob_prc_almacenado || '(' ||
quote_literal(inp_age_id) ||

','||inp_cli_folio||','||quote_literal(inp_usu_id)||')';

raise notice '%', v_query;
execute v_query into v_par_cobro;
end loop;
close c_par_cobro;
.....
....
end

con esto obtengo la siguiente cadena:

p_gen_interes('CL001',1,'gerardo')

la cual la executo con:
execute v_query into v_par_cobro;

pero lo que sucede es que me arroja el siguiente error:

ERROR: error de sintaxis en o cerca de «p_gen_interes» at character 1
QUERY: p_gen_interes('CL001',1,'gerardo')
CONTEXT: PL/pgSQL function "p_gen_cargakihgo" line 110 at EXECUTE
statement

PD Utilizo el postgres 8.3

Muchas Gracias de antemano....
Gerardo

> From:
gergonvel@hotmail.com
> To: jurasec@gmail.com
> CC: pgsql-es-ayuda@postgresql.org
> Subject: RE: [pgsql-es-ayuda] llamadas dinamicas
> Date: Wed, 11 Jun 2008 23:14:50 -0400
>
>
> Te agradezco Julio;
>
> Me surge otra duda y como sería la formacion de l execute si la funcion a
la que
> se llama devuelve un valor.
>
> Atte.,
> Gerardo
>
> ----------------------------------------
>> Date: Wed, 11 Jun 2008 20:38:24 -0500
>> From: jurasec@gmail.com
>> To: gergonvel@hotmail.com
>> Subject: Re: [pgsql-es-ayuda] llamadas dinamicas
>> CC: pgsql-es-ayuda@postgresql.org
>>
>> 2008/6/11 Gerardo Gonzalez :
>>> hola lista.. me pueden ayudar. como se puede hacer una funcion que
llame a
>>> otra funcion pero de forma dinamica., es decir, tengo una tabla q
tiene la
>>> sigte
estructura: create table funciones ( orden int , funcion
varchar(25) )
>>> con los siguientes datos orden | Funcion --------------------- 1 |
funcion1
>>> 2 | funcion2 y lo que necesito es crear una funcion q pueda
ejecutar las
>>> funciones que se indican en la tabla en el ordenque se indican.
Les
>>> agredezco su ayuda. gracias. atte., Gerardo.
>>
>> Puedes usar execute dentro de un pl/pgSql, con esta puedes ir armando
>> tu llamada con la cadena que consultes de la tabla de funciones.
>>
>> Por ejemplo:
>>
>> select into cadena_funcion funcion from funciones where .... ;
>>
>> execute cadena_funcion||'('||parametro||')';
>>
>>> ________________________________
>>> Ingresa ya a MSN en Concierto y disfruta los recitales en vivo de
tus
>>> artistas favoritos. MSN en
Concierto
>>
>>
>>
>> --
>> :: God bless you, every day and every night ::
>> --
>> TIP 5: ¿Has leído nuestro extenso FAQ?
>> http://www.postgresql.org/docs/faqs.FAQ.html
>
> _________________________________________________________________
> ¿Aburrido? Ingresa ya y diviertete como nunca en MSN Juegos.
> http://juegos.cl.msn.com/--
> TIP 10: no uses HTML en tu pregunta, seguro que quien responda no podrá
leerlo

_________________________________________________________________
Ingresa ya a MSN en Concierto y disfruta los recitales en vivo de tus artistas
favoritos.
http://msninconcert.msn.com/music/archive/es-la/archive.aspx--
TIP 7: no olvides aumentar la configuración del "free space map"

_________________________________________________________________
Ingresa ya a MSN Deportes y entérate de las últimas novedades del mundo deportivo.
http://msn.foxsports.com/fslasc/--
TIP 6: ¿Has buscado en los archivos de nuestra lista de correo?

http://archives.postgresql.org/pgsql-es-ayuda

RE: [pgsql-es-ayuda] llamadas dinamicas

si usas p_gen_interes('CL001',1,'gerardo') desde una consola te funciona perfectamente?


--- On Fri, 6/27/08, Gerardo Gonzalez <gergonvel@hotmail.com> wrote:
From: Gerardo Gonzalez <gergonvel@hotmail.com>
Subject: RE: [pgsql-es-ayuda] llamadas dinamicas
To: "Julio Cesar Rodriguez Dominguez" <jurasec@gmail.com>
Cc: "Ayuda Postgres" <pgsql-es-ayuda@postgresql.org>
Date: Friday, June 27, 2008, 5:36 PM

Señores me pueden ayudar?:

Lo que estoy haciendo es:

declare
c_par_cobro refcursor;
r_par_cobro record;
vquery varchar(100);
inp_age_id char(05);
inp_cli_folio int;
inp_usu_id varchar(10);
Begin
....
....
fetch c_par_cobro into r_par_cobro;
while found loop

v_query:= r_par_cobro.cob_prc_almacenado || '(' ||
quote_literal(inp_age_id) ||

','||inp_cli_folio||','||quote_literal(inp_usu_id)||')';

raise notice '%', v_query;
execute v_query into v_par_cobro;
end loop;
close c_par_cobro;
.....
....
end

con esto obtengo la siguiente cadena:

p_gen_interes('CL001',1,'gerardo')

la cual la executo con:
execute v_query into v_par_cobro;

pero lo que sucede es que me arroja el siguiente error:

ERROR: error de sintaxis en o cerca de «p_gen_interes» at character 1
QUERY: p_gen_interes('CL001',1,'gerardo')
CONTEXT: PL/pgSQL function "p_gen_cargakihgo" line 110 at EXECUTE
statement

PD Utilizo el postgres 8.3

Muchas Gracias de antemano....
Gerardo



> From: gergonvel@hotmail.com
> To: jurasec@gmail.com
> CC: pgsql-es-ayuda@postgresql.org
> Subject: RE: [pgsql-es-ayuda] llamadas dinamicas
> Date: Wed, 11 Jun 2008 23:14:50 -0400
>
>
> Te agradezco Julio;
>
> Me surge otra duda y como sería la formacion de l execute si la funcion a
la que
> se llama devuelve un valor.
>
> Atte.,
> Gerardo
>
> ----------------------------------------
>> Date: Wed, 11 Jun 2008 20:38:24 -0500
>> From: jurasec@gmail.com
>> To: gergonvel@hotmail.com
>> Subject: Re: [pgsql-es-ayuda] llamadas dinamicas
>> CC: pgsql-es-ayuda@postgresql.org
>>
>> 2008/6/11 Gerardo Gonzalez :
>>> hola lista.. me pueden ayudar. como se puede hacer una funcion que
llame a
>>> otra funcion pero de forma dinamica., es decir, tengo una tabla q
tiene la
>>> sigte estructura: create table funciones ( orden int , funcion
varchar(25) )
>>> con los siguientes datos orden | Funcion --------------------- 1 |
funcion1
>>> 2 | funcion2 y lo que necesito es crear una funcion q pueda
ejecutar las
>>> funciones que se indican en la tabla en el ordenque se indican.
Les
>>> agredezco su ayuda. gracias. atte., Gerardo.
>>
>> Puedes usar execute dentro de un pl/pgSql, con esta puedes ir armando
>> tu llamada con la cadena que consultes de la tabla de funciones.
>>
>> Por ejemplo:
>>
>> select into cadena_funcion funcion from funciones where .... ;
>>
>> execute cadena_funcion||'('||parametro||')';
>>
>>> ________________________________
>>> Ingresa ya a MSN en Concierto y disfruta los recitales en vivo de
tus
>>> artistas favoritos. MSN en Concierto
>>
>>
>>
>> --
>> :: God bless you, every day and every night ::
>> --
>> TIP 5: ¿Has leído nuestro extenso FAQ?
>> http://www.postgresql.org/docs/faqs.FAQ.html
>
> _________________________________________________________________
> ¿Aburrido? Ingresa ya y diviertete como nunca en MSN Juegos.
> http://juegos.cl.msn.com/--
> TIP 10: no uses HTML en tu pregunta, seguro que quien responda no podrá
leerlo

_________________________________________________________________
Ingresa ya a MSN en Concierto y disfruta los recitales en vivo de tus artistas
favoritos.
http://msninconcert.msn.com/music/archive/es-la/archive.aspx--
TIP 7: no olvides aumentar la configuración del "free space map"

Re: [pgsql-es-ayuda] Postgres y jdbc

Me gustaría saber como haces para _desencriptar_ (descifrar es la
palabra correcta) una cadena de caracteres obtenida de la salida de
una función MD5.

Me explico mejor: quisiera saber como obtienes la cadena original a
partir de una cadena MD5 obtenida por una función MD5.

----
Neil Peter Braggio
pbraggio@gmail.com


On Sat, Jun 28, 2008 at 9:58 AM, Lennin Caro <lennin.caro@yahoo.com> wrote:
> puedes hacer que el password exista en un archivo de texto, este password lo
> puedes encriptar con md5 y desencriptar en tu aplicacion al momento de
> pasarlo al getConnection.
>
> La otra opcion es que lo introduzcan desde una ventana o directamente como
> parametro al llamar la aplicacion..
>
> --- On Fri, 6/27/08, Edgar Enriquez <edgarpostgres@yahoo.es> wrote:
>
> From: Edgar Enriquez <edgarpostgres@yahoo.es>
> Subject: [pgsql-es-ayuda] Postgres y jdbc
> To: "lista postgres" <pgsql-es-ayuda@postgresql.org>
> Date: Friday, June 27, 2008, 1:37 PM
>
> Saludos amigos de la lista, yo tengo un problema y es que no se como hacer
> para conectar una aplicacion java a posgres utilizando jdbc,
> postgresql-8.2-508.jdbc4, sin tener nececidad de guardar el pasword del
> usuario, yo utilizo este codigo
>
> try{
> Class.forName("org.postgresql.Driver");
> con =
> DriverManager.getConnection("jdbc:postgresql://192.168..100.126:5432/Migration","migration","swing");
>
> System.out.println("PostgreSQL OK");
> }
> catch(Exception e){
> System.out.println(URL+" "+utilisateur+" "+motDePass);
> System.out.println("No se ha podido cargar el Driver
> PostgreSQL");
> erreur = 1;
> }
>
> el problema es que estoy obligado de guardar el nombre de usuario
> "migration" y el password "swing" en la aplicacion, alguien tiene una
> sugerencia?
>
> Nota: esta es una aplicacion para poder migrar ciertos datos de una base a
> otra pero necesito que sea transparente al usuario, la base de datos
> migracion me sirve de control, osea yo no quiero que el usuario sepa que se
> está conectando a una base de datos donde estoy controlando lo que hace ya
> que trabajo con gente que quiere mostrar que pasar de multiples bases de
> datos access(una por cliente) a una sola base en posgres no es factible
>
>
> Gracias
>
> ________________________________
> Enviado desde Correo Yahoo!
> La bandeja de entrada más inteligente.
>
>
--
TIP 5: ¿Has leído nuestro extenso FAQ?

http://www.postgresql.org/docs/faqs.FAQ.html

RE: [pgsql-es-ayuda] llamadas dinamicas

Disculpen, no explique bien el trozo de codigo,
este trozo esta dentro de una funcion de nombre p_gen_cargakihgo
y al ejecutarla es que me arroja el mensaje:

seria;

CREATE OR REPLACE FUNCTION "public"."p_gen_cargakihgo" ( inp_age_id varchar
, inp_cli_folio integer
, inp_usu_id varchar
, inp_cam_id varchar)
$body$

declare
c_par_cobro refcursor;
r_par_cobro record;
vquery varchar(100);
inp_age_id char(05);
inp_cli_folio int;
inp_usu_id varchar(10);
Begin
....
....
fetch c_par_cobro into r_par_cobro;
while found loop

v_query:= r_par_cobro.cob_prc_almacenado || '(' || quote_literal(inp_age_id) ||
','||inp_cli_folio||','||quote_literal(inp_usu_id)||')';

raise notice '%', v_query;
execute v_query into v_par_cobro;
end loop;
close c_par_cobro;
....
....
END;
$body$
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

y esta funcion la invoco de la sigte manera:

select * from p_gen_cargakihgo('CL001', 1, 'gerardo', 'METFULL');

y es ahi cuando me sale el error:

ERROR: error de sintaxis en o cerca de «p_gen_interes» at character 1
QUERY: p_gen_interes('CL001',1,'gerardo')
CONTEXT: PL/pgSQL function "p_gen_cargakihgo" line 110 at EXECUTE statement

Atte.,
Gerardo

----------------------------------------
> Date: Fri, 27 Jun 2008 14:20:37 -0400
> From: calalinux@gmail.com
> To: pgsql-es-ayuda@postgresql.org
> Subject: Re: [pgsql-es-ayuda] llamadas dinamicas
>
> El día 27 de junio de 2008 13:36, Gerardo Gonzalez
> escribió:
>
>> con esto obtengo la siguiente cadena:
>>
>> p_gen_interes('CL001',1,'gerardo')
>>
>> la cual la executo con:
>> execute v_query into v_par_cobro;
>>
>> pero lo que sucede es que me arroja el siguiente error:
>>
>> ERROR: error de sintaxis en o cerca de «p_gen_interes» at character 1
>> QUERY: p_gen_interes('CL001',1,'gerardo')
>> CONTEXT: PL/pgSQL function "p_gen_cargakihgo" line 110 at EXECUTE statement
>
> Yo creo que tu error esta en la funcion "p_gen_cargakihgo" esta
> función desde donde es llamada?
> lo pregunto porque tu indicas que debe devolver p_gen_interes() y aqui
> muestra que devuelve otra cosa...
>
>
> --
> §~^Calabaza^~§ from Villa Elisa, Paraguay
> ----------------
> A hendu hína: Anorexia Nervosa - Anamorphic Effect: The Revival
> http://foxytunes.com/artist/anorexia+nervosa/track/anamorphic+effect%3a+the+revival
> --
> TIP 1: para suscribirte y desuscribirte, visita http://archives.postgresql.org/pgsql-es-ayuda

_________________________________________________________________
¿Aburrido? Ingresa ya y diviertete como nunca en MSN Juegos.
http://juegos.cl.msn.com/--
TIP 9: visita nuestro canal de IRC #postgresql-es en irc.freenode.net

Re: [ADMIN] Extended security/restriction to any role with login access

in pgadmin3:

Menu -> Display
check the option "System Object"

this show you the catalogs of postgresql "pg_xxxxxxxx"

change the grants to users  here

--- On Fri, 6/27/08, Domingo Alvarez Duarte <mingodad@gmail.com> wrote:
From: Domingo Alvarez Duarte <mingodad@gmail.com>
Subject: Re: [ADMIN] Extended security/restriction to any role with login access
To: lennin.caro@yahoo.com
Cc: "Carol Walter" <walterc@indiana.edu>, pgsql-admin@postgresql.org
Date: Friday, June 27, 2008, 6:31 PM

How can I change that ?
I mean make the catalog of tables, function and roles private and only accessible to granted users ?

Someon mentioned once to make changes in template1, wich changes will be nneded ? In case this is possible.

Thanks for any help/sugestion !

On Fri, Jun 27, 2008 at 5:12 PM, Lennin Caro <lennin.caro@yahoo.com> wrote:

Ok...

the catalog of tables, function and roles are public. Pgadmin use the catalog to create the tree of databases, function and roles. The user can see this but cant change this. In oracle the catalog of user, tables, function are public


--- On Fri, 6/27/08, Domingo Alvarez Duarte <mingodad@gmail.com> wrote:
From: Domingo Alvarez Duarte <mingodad@gmail.com>
Subject: Re: [ADMIN] Extended security/restriction to any role with login access
To: lennin.caro@yahoo.com
Cc: "Carol Walter" <walterc@indiana.edu>, pgsql-admin@postgresql.org
Date: Friday, June 27, 2008, 2:35 PM


Look this isn't the point I know what can be done with pg_hba.conf

The main point is:

When I create a postgresql user and grant to it only access to part of a database (let's say one view). I'm expecting that the server will honor it. But right now postgresql server isn't.

This is the reason I'm writing here and tried too hackers list but no one seems to understand the importance of this point.

Maybe it's my fault of knowledge but till now no one showed me how to get the expected result, people try to tell me how to use firewall, change the way of build my application, they don't understand the point. I'll repeat it again:


When I create a postgresql user and grant to it only access to part of a database (let's say one view). I'm expecting that the server will honor it. But right now postgresql server isn't.

Actually any user with login access can see all databases/roles/functions/table-definitions/triggers. What I thinks isn't correct.

I'll apreciate any solution to this problem.

On Fri, Jun 27, 2008 at 3:44 PM, Lennin Caro <lennin.caro@yahoo.com> wrote:
ok, let try this .....

open the pg_hba.conf and check the line

host    all         all         127.0.0.1/32          trust

and change to

host    all         all         127.0.0.1/32          password



--- On Thu, 6/26/08, Domingo Alvarez Duarte <mingodad@gmail.com> wrote:
From: Domingo Alvarez Duarte <mingodad@gmail.com>

Subject: Re: [ADMIN] Extended security/restriction to any role with login access
To: lennin.caro@yahoo.com
Cc: "Carol Walter" <walterc@indiana.edu>, pgsql-admin@postgresql.org
Date: Thursday, June 26, 2008, 9:45 PM


I did the following:
-Connect as superuser postgres with pgadmin and create a user -> noaccess
CREATE ROLE noaccess LOGIN
  NOSUPERUSER NOINHERIT NOCREATEDB NOCREATEROLE;

-Disconnect from the server
-Connect to the server with user 'noaccess' through pgadmin3, and I can see all databases/functions/schemas/roles.

What am I missing ?

On Thu, Jun 26, 2008 at 8:44 PM, Lennin Caro <lennin.caro@yahoo.com> wrote:
hello...

you can restric acces from all the databases in your cluster. When you use pgadmin3 this show all the databases but if you dont have access to the databases you cant see the struct of this.

check waht user use pgadmin3 for connect to databases

create groups and add privileges to the group later add the users to the group








Re: [PATCHES] win32mak of libpq patch

Hiroshi Saito wrote:
> Hi.
>
> It seems that this is required in order to return the righter message.
> Please take into consideration. Thanks!

Thanks, applied.

//Magnus


--
Sent via pgsql-patches mailing list (pgsql-patches@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-patches

[COMMITTERS] pgsql: Fix standalone libpq build on win32.

Log Message:
-----------
Fix standalone libpq build on win32.

Hiroshi Saito

Modified Files:
--------------
pgsql/src/interfaces/libpq:
win32.mak (r1.52 -> r1.53)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/win32.mak?r1=1.52&r2=1.53)

--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Fix standalone libpq build on win32.

Log Message:
-----------
Fix standalone libpq build on win32.

Hiroshi Saito

Tags:
----
REL8_3_STABLE

Modified Files:
--------------
pgsql/src/interfaces/libpq:
win32.mak (r1.50.2.1 -> r1.50.2.2)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/win32.mak?r1=1.50.2.1&r2=1.50.2.2)

--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

Re: [pgsql-es-ayuda] llamadas dinamicas

El día 27 de junio de 2008 13:36, Gerardo Gonzalez
<gergonvel@hotmail.com> escribió:

> con esto obtengo la siguiente cadena:
>
> p_gen_interes('CL001',1,'gerardo')
>
> la cual la executo con:
> execute v_query into v_par_cobro;
>
> pero lo que sucede es que me arroja el siguiente error:
>
> ERROR: error de sintaxis en o cerca de «p_gen_interes» at character 1
> QUERY: p_gen_interes('CL001',1,'gerardo')
> CONTEXT: PL/pgSQL function "p_gen_cargakihgo" line 110 at EXECUTE statement

Yo creo que tu error esta en la funcion "p_gen_cargakihgo" esta
función desde donde es llamada?
lo pregunto porque tu indicas que debe devolver p_gen_interes() y aqui
muestra que devuelve otra cosa...


--
§~^Calabaza^~§ from Villa Elisa, Paraguay
----------------
A hendu hína: Anorexia Nervosa - Anamorphic Effect: The Revival
http://foxytunes.com/artist/anorexia+nervosa/track/anamorphic+effect%3a+the+revival
--
TIP 1: para suscribirte y desuscribirte, visita http://archives.postgresql.org/pgsql-es-ayuda

[COMMITTERS] pgscript - pgScript: Initial version

Log Message:
-----------
Initial version

Added Files:
-----------
pgScript/lib/pgscript/utilities/m_apm:
mapm_flr.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_flr.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmsqrt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmsqrt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_fft.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_fft.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_log.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_log.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_sin.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_sin.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_lg2.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_lg2.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmrsin.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmrsin.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmhasn.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmhasn.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmpwr2.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmpwr2.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_rcp.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_rcp.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_exp.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_exp.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_gcd.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_gcd.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_mul.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_mul.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmcbrt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmcbrt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_add.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_add.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_lg3.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_lg3.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_rnd.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_rnd.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_cpi.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_cpi.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmutl1.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmutl1.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_lg4.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_lg4.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmcnst.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmcnst.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmistr.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmistr.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmgues.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmgues.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmstck.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmstck.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_fpf.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_fpf.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmasin.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmasin.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmutil.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmutil.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm5sin.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm5sin.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmfmul.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmfmul.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmhsin.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmhsin.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmfact.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmfact.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_fam.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_fam.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_pow.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_pow.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmutl2.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmutl2.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_div.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_div.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
mapmasn0.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmasn0.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapm_set.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapm_set.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
mapmipwr.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/m_apm/mapmipwr.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/files/tests/dictionaries:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/dictionaries/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
dict_utf8.txt (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/dictionaries/dict_utf8.txt?rev=1.1&content-type=text/x-cvsweb-markup)
dict_iso8859.txt (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/dictionaries/dict_iso8859.txt?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/dictionaries/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/pgscript/exceptions:
pgsBreakException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsBreakException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsContinueException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsContinueException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsArithmeticException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsArithmeticException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsParameterException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsParameterException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsInterruptException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsInterruptException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssertException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsAssertException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsCastException.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/pgsCastException.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/exceptions/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/test:
pgsTestObjectGenerator.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestObjectGenerator.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestExpressionExecute.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestExpressionExecute.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorTime.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorTime.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
config.h.in (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/config.h.in?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorReal.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorReal.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestUtilityMapm.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestUtilityMapm.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorInt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorInt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestUtilityUtilities.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestUtilityUtilities.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestSuite.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestSuite.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorReference.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorReference.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestExpressionOperation.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestExpressionOperation.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestUtilityContext.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestUtilityContext.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestExpressionCast.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestExpressionCast.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorRegex.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorRegex.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestObjectRecord.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestObjectRecord.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestOperatorGenerator.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestOperatorGenerator.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
configure.ac (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/configure.ac?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorDictionary.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorDictionary.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestSuite.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestSuite.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestOperatorString.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestOperatorString.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorDate.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorDate.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestOperatorRecord.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestOperatorRecord.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestOperatorNumber.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestOperatorNumber.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestExpressionIdent.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestExpressionIdent.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorDateTime.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorDateTime.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestObjectVariable.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestObjectVariable.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestStatements.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestStatements.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestExpressionRecord.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestExpressionRecord.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTestGeneratorString.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/test/pgsTestGeneratorString.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript:
AUTHORS (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/AUTHORS?rev=1.1&content-type=text/x-cvsweb-markup)
.project (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/.project?rev=1.1&content-type=text/x-cvsweb-markup)
wxwin.m4 (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/wxwin.m4?rev=1.1&content-type=text/x-cvsweb-markup)
autogen.sh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/autogen.sh?rev=1.1&content-type=text/x-cvsweb-markup)
.cproject (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/.cproject?rev=1.1&content-type=text/x-cvsweb-markup)
README (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/README?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
TODO (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/TODO?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
COPYING (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/COPYING?rev=1.1&content-type=text/x-cvsweb-markup)
configure.ac (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/configure.ac?rev=1.1&content-type=text/x-cvsweb-markup)
NEWS (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/NEWS?rev=1.1&content-type=text/x-cvsweb-markup)
autofind.sh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/autofind.sh?rev=1.1&content-type=text/x-cvsweb-markup)
autoclean.sh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/autoclean.sh?rev=1.1&content-type=text/x-cvsweb-markup)
postgresql.m4 (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/postgresql.m4?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include:
pgAdmin3.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgAdmin3.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript/exceptions:
pgsContinueException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsContinueException.h?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsInterruptException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsInterruptException.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsParameterException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsParameterException.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsCastException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsCastException.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssertException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsAssertException.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsBreakException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsBreakException.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsArithmeticException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsArithmeticException.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsException.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/exceptions/pgsException.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript/statements:
pgsLogStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsLogStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDeclareRecordStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsDeclareRecordStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsStmtList.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsStmtList.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsPrintStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsPrintStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsStatements.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsStatements.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsContinueStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsContinueStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssertStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsAssertStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsWhileStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsWhileStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIfStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsIfStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsExpressionStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsExpressionStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsProgram.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsProgram.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsBreakStmt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/statements/pgsBreakStmt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/utils:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/utils/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgfeatures.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/utils/pgfeatures.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/utils/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
md5.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/utils/md5.h?rev=1.1&content-type=text/x-cvsweb-markup)
misc.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/utils/misc.h?rev=1.1&content-type=text/x-cvsweb-markup)
sysLogger.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/utils/sysLogger.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgDefs.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/utils/pgDefs.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/pgscript/expressions:
pgsGenDictionary.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenDictionary.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenRegex.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenRegex.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIdent.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsIdent.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsExecute.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsExecute.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsLower.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsLower.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsRemoveLine.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsRemoveLine.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssignToRecord.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsAssignToRecord.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsLines.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsLines.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenInt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenInt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsColumns.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsColumns.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGreaterEqual.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGreaterEqual.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsParenthesis.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsParenthesis.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsModulo.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsModulo.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAnd.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsAnd.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGreater.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGreater.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssign.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsAssign.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenDateTime.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenDateTime.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsPlus.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsPlus.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsEqual.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsEqual.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsMinus.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsMinus.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenString.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenString.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsOperation.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsOperation.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNot.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsNot.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsOver.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsOver.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenReference.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenReference.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTimes.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsTimes.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsLowerEqual.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsLowerEqual.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsCast.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsCast.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNegate.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsNegate.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsExpression.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsExpression.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenReal.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenReal.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenTime.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenTime.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDifferent.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsDifferent.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTrim.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsTrim.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenDate.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsGenDate.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsOr.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsOr.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIdentRecord.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/expressions/pgsIdentRecord.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript/objects:
pgsString.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/pgsString.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsObjects.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/pgsObjects.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenerator.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/pgsGenerator.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNumber.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/pgsNumber.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsVariable.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/pgsVariable.h?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsRecord.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/objects/pgsRecord.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/db:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/db/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/db/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgSet.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/db/pgSet.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgConn.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/db/pgConn.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgQueryThread.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/db/pgQueryThread.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript/generators:
pgsRegexGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsRegexGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsRealGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsRealGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsObjectGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsObjectGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNumberGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsNumberGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsReferenceGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsReferenceGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDateTimeGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsDateTimeGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIntegerGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsIntegerGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsStringGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsStringGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTimeGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsTimeGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDictionaryGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsDictionaryGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDateGen.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/generators/pgsDateGen.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/pgscript/utilities:
pgsAlloc.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/pgsAlloc.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsThread.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/pgsThread.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsUtilities.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/pgsUtilities.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDriver.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/pgsDriver.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsMapm.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/pgsMapm.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsContext.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/pgsContext.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/utilities/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/files/tests/sources:
generators.sql.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/generators.sql.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
functions.sql.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/functions.sql.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
randdata.sql.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/randdata.sql.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
procedures.sql.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/procedures.sql.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
records.sql.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/records.sql.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
controls.sql.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/controls.sql.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
calculations.sql.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/sources/calculations.sql.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/pgscript/generators:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTimeGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsTimeGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDictionaryGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsDictionaryGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDateGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsDateGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsRegexGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsRegexGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsObjectGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsObjectGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDateTimeGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsDateTimeGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsStringGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsStringGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNumberGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsNumberGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIntegerGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsIntegerGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsReferenceGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsReferenceGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsRealGen.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/generators/pgsRealGen.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript/expressions:
pgsGenTime.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenTime.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAnd.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsAnd.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenDate.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenDate.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsExecute.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsExecute.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTimes.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsTimes.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsExpressions.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsExpressions.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsParenthesis.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsParenthesis.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNegate.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsNegate.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsExpression.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsExpression.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenString.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenString.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsLines.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsLines.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGreater.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGreater.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNot.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsNot.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenReference.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenReference.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenRegex.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenRegex.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsColumns.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsColumns.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsLowerEqual.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsLowerEqual.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsEqual.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsEqual.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsPlus.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsPlus.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGreaterEqual.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGreaterEqual.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsCast.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsCast.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDifferent.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsDifferent.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenDictionary.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenDictionary.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsMinus.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsMinus.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsModulo.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsModulo.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsOr.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsOr.h?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIdent.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsIdent.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsOperation.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsOperation.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsOver.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsOver.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssign.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsAssign.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenInt.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenInt.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsLower.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsLower.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsRemoveLine.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsRemoveLine.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssignToRecord.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsAssignToRecord.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIdentRecord.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsIdentRecord.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenDateTime.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenDateTime.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsTrim.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsTrim.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenReal.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/expressions/pgsGenReal.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/src:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/src/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/src/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsMain.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/src/pgsMain.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
config.h.in (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/src/config.h.in?rev=1.1&content-type=text/x-cvsweb-markup)
configure.ac (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/src/configure.ac?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/pgscript/statements:
pgsExpressionStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsExpressionStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDeclareRecordStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsDeclareRecordStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsPrintStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsPrintStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsIfStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsIfStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsContinueStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsContinueStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAssertStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsAssertStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsBreakStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsBreakStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsProgram.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsProgram.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsWhileStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsWhileStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsLogStmt.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsLogStmt.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsStmtList.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/statements/pgsStmtList.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/files:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript/utilities:
pgsCopiedPtr.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsCopiedPtr.h?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsUtilities.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsUtilities.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsThread.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsThread.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgsSharedPtr.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsSharedPtr.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsContext.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsContext.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsAlloc.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsAlloc.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsMapm.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsMapm.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsScanner.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsScanner.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgsDriver.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/pgsDriver.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/files/inputs:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/inputs/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/inputs/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
test.pgs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/inputs/test.pgs?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript/utilities/mapm-lib:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/mapm-lib/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
license.txt (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/mapm-lib/license.txt?rev=1.1&content-type=text/x-cvsweb-markup)
m_apm.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/mapm-lib/m_apm.h?rev=1.1&content-type=text/x-cvsweb-markup)
m_apm_lc.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/mapm-lib/m_apm_lc.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/utilities/mapm-lib/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/pgscript:
parser.tab.hh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/parser.tab.hh?rev=1.1&content-type=text/x-cvsweb-markup)
location.hh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/location.hh?rev=1.1&content-type=text/x-cvsweb-markup)
pgsApplication.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/pgsApplication.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/pgScript.h?rev=1.1&content-type=text/x-cvsweb-markup)
FlexLexer.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/FlexLexer.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
position.hh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/position.hh?rev=1.1&content-type=text/x-cvsweb-markup)
config.h.in (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/config.h.in?rev=1.1&content-type=text/x-cvsweb-markup)
stack.hh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/pgscript/stack.hh?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/pgscript/objects:
pgsRecord.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/objects/pgsRecord.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/objects/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/objects/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgsVariable.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/objects/pgsVariable.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsGenerator.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/objects/pgsGenerator.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsString.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/objects/pgsString.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgsNumber.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/objects/pgsNumber.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib:
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
configure.ac (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/configure.ac?rev=1.1&content-type=text/x-cvsweb-markup)
pgadmin.sh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgadmin.sh?rev=1.1&content-type=text/x-cvsweb-markup)
parser.sh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/parser.sh?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
parser.bat (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/parser.bat?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/pgscript:
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
lex.pgs.cc (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/lex.pgs.cc?rev=1.1&content-type=text/x-cvsweb-markup)
pgsScanner.ll (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/pgsScanner.ll?rev=1.1&content-type=text/x-cvsweb-markup)
pgsParser.yy (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/pgsParser.yy?rev=1.1&content-type=text/x-cvsweb-markup)
parser.tab.cc (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/parser.tab.cc?rev=1.1&content-type=text/x-cvsweb-markup)
pgsApplication.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/pgscript/pgsApplication.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/include/db:
pgSet.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/db/pgSet.h?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/db/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
pgConn.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/db/pgConn.h?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/db/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgQueryThread.h (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/include/db/pgQueryThread.h?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/lib/utils:
misc.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/utils/misc.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/utils/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
md5.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/utils/md5.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/utils/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
sysLogger.cpp (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/lib/utils/sysLogger.cpp?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/files/tests:
execute.sh (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/execute.sh?rev=1.1&content-type=text/x-cvsweb-markup)
Makefile.am (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/Makefile.am?rev=1.1&content-type=text/x-cvsweb-markup)
.cvsignore (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/files/tests/.cvsignore?rev=1.1&content-type=text/x-cvsweb-markup)
pgScript/.settings:
org.eclipse.cdt.core.prefs (r1.1)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgscript/pgScript/.settings/org.eclipse.cdt.core.prefs?rev=1.1&content-type=text/x-cvsweb-markup)

--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers