Integration between svn and sqlpldoc

Hi team,
How I can integrate a couple of systems like SVN and plugin plsqldoc to my pl/sql developer, example : the version number that is generated with SVN is updated automatically go in the documentation generated with plsqldoc...?

Some idea...?
Someone it has achieved?

 
I haven't actually tried this, but if you put the $Rev$ keyword in your plsqldoc comments, the version number should be included by SVN.
 
Absolutely - we always include the following as a minimum at the top of every PL/SQL unit (package/type spec/body):

Code:
-- $Rev$
-- $HeadURL$

($Date$ and $Author$ can be pretty handy too, or just $Id$.)

svn advanced props special keywords

Perforce has the same thing (as do CVS/RCS/SCCS/PVCS, if it's the 1990s). ClearCase doesn't, because it doesn't seem to have occurred to them, and neither does Git because (my guess) it would need to identify the local repository somehow, which could be anywhere in the world; and also because most Git users are Java developers who don't need this feature it isn't important to them. I would say it is absolutely essential in database code, and I spend my life reminding developers to include version control headers and set the file properties properly.
 
Back
Top