Thread

  1. CVS Messages

    Rod Taylor <rbt@zort.ca> — 2002-08-16T21:44:50Z

    Is it possible for the cvs emails to include a URL to the appropriate
    entries in cvs web?
    
    The below is current:
    
    Modified files:
            src/backend/utils/adt: ruleutils.c
    
    
    Is this possible?
    Modified files:
    http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/utils/adt/ruleutils.c
    
    
    Or perhaps have a LINKS section at the very bottom below the current
    messages?
    
    
    
  2. Re: CVS Messages

    Joe Conway <mail@joeconway.com> — 2002-08-16T21:59:36Z

    Rod Taylor wrote:
    > Modified files:
    >         src/backend/utils/adt: ruleutils.c
    > 
    > 
    > Is this possible?
    > Modified files:
    > http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/utils/adt/ruleutils.c
    > 
    
    I'd second that request! Great idea.
    
    Joe
    
    
    
  3. Re: CVS Messages

    Barry Lind <barry@xythos.com> — 2002-08-16T23:25:34Z

    It is certainly possibly.  We have added that type of functionality to 
    our inhouse CVS system.  Below is an example.  We include at the bottom 
    of the checkin mail a link to the webcvs diff page so you can quickly 
    see what changed for a particular checkin.
    
    --Barry
    
    wfs checkin by barry       02/08/16 12:10:39
    
      Modified:    com/.../sql/postgres SessionManagerBaseSql.java
                   com/.../sql/mssql SessionManagerBaseSql.java
                   com/.../sql/oracle SessionManagerBaseSql.java
      Log:
      port fix for bug 1605 from 3.3 to 4.0
      
      https://foo.bar.com/cgi-bin/viewcvs.cgi/wfs/com/.../sql/postgres/SessionManagerBaseSql.java.diff?r1=40.1&r2=40.2&diff_format=h
      https://foo.bar.com/cgi-bin/viewcvs.cgi/wfs/com/.../sql/mssql/SessionManagerBaseSql.java.diff?r1=40.0&r2=40.1&diff_format=h
      https://foo.bar.com/cgi-bin/viewcvs.cgi/wfs/com/.../sql/oracle/SessionManagerBaseSql.java.diff?r1=40.0&r2=40.1&diff_format=h
    
    
    
    Rod Taylor wrote:
    
    >Is it possible for the cvs emails to include a URL to the appropriate
    >entries in cvs web?
    >
    >The below is current:
    >
    >Modified files:
    >        src/backend/utils/adt: ruleutils.c
    >
    >
    >Is this possible?
    >Modified files:
    >http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/utils/adt/ruleutils.c
    >
    >
    >Or perhaps have a LINKS section at the very bottom below the current
    >messages?
    >
    >
    >---------------------------(end of broadcast)---------------------------
    >TIP 4: Don't 'kill -9' the postmaster
    >
    >  
    >
    
    
    
    
  4. Re: CVS Messages

    Richard Poole <rp@guests.deus.net> — 2002-08-17T22:56:38Z

    On Fri, Aug 16, 2002 at 05:44:50PM -0400, Rod Taylor wrote:
    > Is it possible for the cvs emails to include a URL to the appropriate
    > entries in cvs web?
    > 
    > The below is current:
    > 
    > Modified files:
    >         src/backend/utils/adt: ruleutils.c
    
    If you're using a Web browser with support for smart bookmarks, nicknames,
    and javascript: URLs, then you can define a bookmark as something like:
    
    javascript:re=/(:.)/;window.location="http://developer.postgresql.org/cvsweb.cgi/pgsql-server/"+"%s".replace(re, "/")
    
    and then cut-and-paste the line from the email into your location field
    using a nickname:
    
    pgcvs src/backend/utils/adt: ruleutils.c
    
    and have it bring up the cvsweb page. Works with galeon; I guess other
    recent browsers (Konqueror, Moz, IE?) can do something very similar if
    not quite identical.
    
    Richard