Re: [HACKERS] source code indexer

2002-09-03 Thread Laurette Cisneros

Thanks to everyone who made suggestions.
 
I have found Source Navigator to be very close and useful for what I was 
looking for!
 
Thanks again,
 
L.
On Fri, 30 Aug 2002, Manfred Koizar wrote:

 On Fri, 30 Aug 2002 11:57:17 -0700 (PDT), Laurette Cisneros
 [EMAIL PROTECTED] wrote:
 I was wondering if you could recomend a good source code db/indexer that
 could be used to search through the postgresql code?
 
 I use Source Navigator v5.1 http://sourceforge.net/projects/sourcenav/
 
 Servus
  Manfred
 

-- 
Laurette Cisneros
The Database Group
(510) 420-3137
NextBus Information Systems, Inc.
www.nextbus.com
--
A wiki we will go...


---(end of broadcast)---
TIP 6: Have you searched our list archives?

http://archives.postgresql.org



Re: [HACKERS] source code indexer

2002-09-01 Thread Curt Sampson

On Fri, 30 Aug 2002, Nigel J. Andrews wrote:

 I think I must be one of those 'old school' types. I use

   find somedir some spec. | xargs grep

 often followed by tags in Emacs.

You might find that Gnu id-tools is a much faster way of
doing this, especially for large amounts of source code.

cjs
-- 
Curt Sampson  [EMAIL PROTECTED]   +81 90 7737 2974   http://www.netbsd.org
Don't you know, in this new Dark Age, we're all light.  --XTC


---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send unregister YourEmailAddressHere to [EMAIL PROTECTED])



Re: [HACKERS] source code indexer

2002-08-31 Thread Bruce Momjian

Nigel J. Andrews wrote:
 On Fri, 30 Aug 2002, Laurette Cisneros wrote:
 
  
  HI all,
  
  Sorry to interrupt your busy list.
  
  I was wondering if you could recommend a good source code db/indexer that
  could be used to search through the postgresql code?
 
 I think I must be one of those 'old school' types. I use
 
   find somedir some spec. | xargs grep
 
 often followed by tags in Emacs.
 
 It isn't perfect but then I'm not either.

I use a commercial editor called Crisp, which is unfortunately a
commercial product.  It runs on almost any platform:

ftp://207.106.42.251/pub/crisp.gif

I have found several editor features a great help in PostgreSQL
development:

programmable macro language
keyboard record/playback
colorization
list of functions in the file
tags jump to function definition
cross-reference listings

They are not a big deal when you are making localized changes.  In fact,
I just used a character-mode editor for those, but when I have to
analyze the code or make massive changes, those features make it easier.

The screenshot I listed has the functions listed on the left, the
cross-reference information at the bottom, and a colorized main editor
window.

-- 
  Bruce Momjian|  http://candle.pha.pa.us
  [EMAIL PROTECTED]   |  (610) 359-1001
  +  If your life is a hard drive, |  13 Roberts Road
  +  Christ can be your backup.|  Newtown Square, Pennsylvania 19073

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]



[HACKERS] source code indexer

2002-08-30 Thread Laurette Cisneros


HI all,

Sorry to interrupt your busy list.

I was wondering if you could recomend a good source code db/indexer that
could be used to search through the postgresql code?

Thanks,

-- 
Laurette Cisneros
The Database Group
(510) 420-3137
NextBus Information Systems, Inc.
www.nextbus.com
--
A wiki we will go...


---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly



Re: [HACKERS] source code indexer

2002-08-30 Thread Joe Conway

Laurette Cisneros wrote:
 HI all,
 
 Sorry to interrupt your busy list.
 
 I was wondering if you could recomend a good source code db/indexer that
 could be used to search through the postgresql code?

I think the real pros use grep and emacs ;-)

But for us mere mortals, I find LXR very useful. I have set one up for 
my own use -- it gets rebuilt from cvs nightly. If you are interested see:

   https://www.joeconway.com/lxr.pgsql/

use login name lxr and password pglxr (without the quotes)

HTH,

Joe


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



Re: [HACKERS] source code indexer

2002-08-30 Thread Laurette Cisneros

Ah.  Great!  I had download lxr and was starting to dig in to insatall it
and thought I would check with the pgers to see what they recommended.
Glad to see someone has done this.

Thanks,

L.
On Fri, 30 Aug 2002, Joe Conway wrote:

 Laurette Cisneros wrote:
  HI all,
  
  Sorry to interrupt your busy list.
  
  I was wondering if you could recomend a good source code db/indexer that
  could be used to search through the postgresql code?
 
 I think the real pros use grep and emacs ;-)
 
 But for us mere mortals, I find LXR very useful. I have set one up for 
 my own use -- it gets rebuilt from cvs nightly. If you are interested see:
 
https://www.joeconway.com/lxr.pgsql/
 
 use login name lxr and password pglxr (without the quotes)
 
 HTH,
 
 Joe
 

-- 
Laurette Cisneros
The Database Group
(510) 420-3137
NextBus Information Systems, Inc.
www.nextbus.com
--
A wiki we will go...


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



Re: [HACKERS] source code indexer

2002-08-30 Thread Manfred Koizar

On Fri, 30 Aug 2002 11:57:17 -0700 (PDT), Laurette Cisneros
[EMAIL PROTECTED] wrote:
I was wondering if you could recomend a good source code db/indexer that
could be used to search through the postgresql code?

I use Source Navigator v5.1 http://sourceforge.net/projects/sourcenav/

Servus
 Manfred

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]



Re: [HACKERS] source code indexer

2002-08-30 Thread Nigel J. Andrews

On Fri, 30 Aug 2002, Laurette Cisneros wrote:

 
 HI all,
 
 Sorry to interrupt your busy list.
 
 I was wondering if you could recomend a good source code db/indexer that
 could be used to search through the postgresql code?

I think I must be one of those 'old school' types. I use

find somedir some spec. | xargs grep

often followed by tags in Emacs.

It isn't perfect but then I'm not either.


-- 
Nigel J. Andrews
Director

---
Logictree Systems Limited
Computer Consultants


---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/users-lounge/docs/faq.html