Re: [pgadmin-hackers] How to install pgAgent

2006-11-27 Thread Ezequias Rodrigues da Rocha

I was more confident when the openssl was installed ok but the problem still
be having.

See my work:

[EMAIL PROTECTED] bin]# yum install openssl
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Resolving Dependencies
-- Populating transaction set with selected packages. Please wait.
--- Downloading header for openssl to pack into transaction set.
openssl-0.9.7a-43.14.i686 100% |=|  28 kB00:00
--- Package openssl.i686 0:0.9.7a-43.14 set to be updated
-- Running transaction check
-- Processing Dependency: openssl = 0.9.7a-43.8 for package: openssl-devel
-- Restarting Dependency Resolution with new changes.
-- Populating transaction set with selected packages. Please wait.
--- Downloading header for openssl-devel to pack into transaction set.
openssl-devel-0.9.7a-43.1 100% |=| 126 kB00:01
--- Package openssl-devel.i586 0:0.9.7a-43.14 set to be updated
-- Running transaction check

Dependencies Resolved

=
Package Arch   Version  RepositorySize
=
Updating:
openssl i686   0.9.7a-43.14 update1.1 M
Updating for dependencies:
openssl-devel   i586   0.9.7a-43.14 update1.6 M

Transaction Summary
=
Install  0 Package(s)
Update   2 Package(s)
Remove   0 Package(s)
Total download size: 2.6 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): openssl-0.9.7a-43. 100% |=| 1.1 MB00:13
(2/2): openssl-devel-0.9. 100% |=| 1.6 MB00:20
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
 Updating  : openssl  # [1/4]
 Updating  : openssl-devel# [2/4]
 Cleanup   : openssl  # [3/4]
 Cleanup   : openssl-devel# [4/4]

Updated: openssl.i686 0:0.9.7a-43.14
Dependency Updated: openssl-devel.i586 0:0.9.7a-43.14
Complete!
[EMAIL PROTECTED] bin]# ./pgagent
./pgagent: error while loading shared libraries: libssl.so.0: cannot open
shared object file: No such file or directory

Should I reboot my system ? (it is a windows feature don't is ? hehehehehe)


Regards
Ezequias

2006/11/27, Dave Page [EMAIL PROTECTED]:


Ezequias Rodrigues da Rocha wrote:
 I just copied it to /usr/bin

 here what I did:

 [EMAIL PROTECTED] bin]# chmod 755 pgagent
 [EMAIL PROTECTED] bin]# ./pgagent
 ./pgagent: error while loading shared libraries: libssl.so.0: cannot
 open shared object file: No such file or directory
 [EMAIL PROTECTED] bin]#

 Did I something wrong ?

You need to install that library from whatever RPM on your OS includes
it. As it's part of OpenSSL, it shouldn't be hard to find.

Regards, Dave





--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Atenciosamente (Sincerely)
   Ezequias Rodrigues da Rocha
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
A pior das democracias ainda é melhor do que a melhor das ditaduras
The worst of democracies is still better than the better of dictatorships
http://ezequiasrocha.blogspot.com/


[pgadmin-hackers] How to install pgAgent

2006-11-26 Thread Ezequias Rodrigues da Rocha

Hi Dave and hackers,

I would like to install pgagent on my linux machine (I have a Server
on linux and my administration is on windows).

I looked for pgAgent and found it on linux installation
http://developer.pgadmin.org/snapshots/linux/slackware/

I just put it on my linux machine and try to see if it's ok but notthing done.

[EMAIL PROTECTED] bin]# ./pgagent
./pgagent: error while loading shared libraries: libwx_baseu-2.8.so.0:
cannot open shared object file: No such file or directory
[EMAIL PROTECTED] bin]#

My postgresql must be installed without this contrib (does it is a contrib ?)

I hope you could help me becouse I am very anxious to put some jobs to
work. I need it as fas as possible so I count with you.

Regards ...


--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
 Atenciosamente (Sincerely)
   Ezequias Rodrigues da Rocha
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
A pior das democracias ainda é melhor do que a melhor das ditaduras
The worst of democracies is still better than the better of dictatorships
http://ezequiasrocha.blogspot.com/

---(end of broadcast)---
TIP 7: You can help support the PostgreSQL project by donating at

   http://www.postgresql.org/about/donate


Re: [pgadmin-hackers] Report stylesheet bug (was: [pgadmin-support] Insert the SQL

2006-11-23 Thread Ezequias Rodrigues da Rocha

Dave, I really needs a css different from default. Do you have any ? I
don't know notthing about css neither xls but a little of xml.

I only want a nice documentation and a way to put some images to
personalize my document too.

Any help will be welcomed.

Regards
Ezequias

2006/11/23, Dave Page [EMAIL PROTECTED]:

Ezequias Rodrigues da Rocha wrote:
 I say comments not Report Notes.

 Source and Comment are definetly not ok.

 See my attached image.

Ahh, sorry - misread your message. After spending an hour or so trying
to figure it out with one of the guys here, I've come to the conclusion
that we simply don't know why it's broken (I'm far from an expert in
XSL). If anyone has an idea, I'm all ears...

The stylesheet can be found at
http://www.pgadmin.org/docs/1.6/default-xsl.html - the problem appears
to be in the last two template, the first of which should call the
second but apparently does not. The second is used for the notes and SQL
at the bottom of the reports so is obviously not totally broken:

xsl:template match=* mode=cells
   xsl:param name=row /
 td class=ReportTableValueCell
 xsl:choose
   xsl:when test=$row/@*[name() = current()/@id]|$row/*[name() =
current()/@id] != ''
 xsl:call-template name=substitute
   xsl:with-param name=string select=$row/@*[name() =
current()/@id]|$row/*[name() = current()/@id] /
 /xsl:call-template
   /xsl:when
   xsl:otherwise
 xsl:text /xsl:text
   /xsl:otherwise
 /xsl:choose
   /td
/xsl:template

xsl:template name=substitute
xsl:param name=string /
xsl:param name=from select='#xA;' /
xsl:param name=to
   br /
/xsl:param
xsl:choose
   xsl:when test=contains($string, $from)
  xsl:value-of select=substring-before($string, $from) /
  xsl:copy-of select=$to /
  xsl:call-template name=substitute
 xsl:with-param name=string
select=substring-after($string, $from) /
 xsl:with-param name=from select=$from /
 xsl:with-param name=to select=$to /
  /xsl:call-template
   /xsl:when
   xsl:otherwise
  xsl:value-of select=$string /
   /xsl:otherwise
/xsl:choose
/xsl:template

Regards, Dave.

---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster




--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
 Atenciosamente (Sincerely)
   Ezequias Rodrigues da Rocha
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
A pior das democracias ainda é melhor do que a melhor das ditaduras
The worst of democracies is still better than the better of dictatorships
http://ezequiasrocha.blogspot.com/

---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
  choose an index scan if your joining column's datatypes do not
  match


Re: [pgadmin-hackers] [pgadmin-support] Bug report on insert with pgadmin

2006-10-05 Thread Ezequias Rodrigues da Rocha
I expected this Japanese Kanji means Delete :)Who implemented it you ? Why not integrate it to pgAdmin ?RegardsEzequias2006/10/5, Hiroshi Saito 
[EMAIL PROTECTED]:Hi Ezequias.From: Ezequias Rodrigues da Rocha
(snip) Now I think a popup menu to delete a selected row is very important now.Does this realize your hope?:-)http://inet.winpg.jp/~saito/pgAdmin/pgAdmin3_EditGrid_popup.png
(Sorry it is japanese)There is not whose objection, and either I will apply it.Regards,Hiroshi Saito--  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Atenciosamente (Sincerely)Ezequias Rodrigues da Rocha =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-A pior das democracias ainda é melhor do que a melhor das ditaduras
The worst of democracies is still better than the better of dictatorships http://ezequiasrocha.blogspot.com/