I think I misunderstood your earlier question. You want to display the user who committed the code on the webpage for that particular build?
Hudson currently doesn't do that. However, Hudson must know the name of the user who did the commit because Hudson will send that person an email when they break the build. ------------- I can think of a way around the issue. Hudson does retrieve the SVN_REVISION environment variable. You can use this in your Ant script to create a file via the <touch> task that contains the user name who committed the change. This could be placed in a particular directory. In Hudson job, you tell Hudson to archive any files in that directory. The result is that the name of one of your archive files will contain the name of the user who did the commit. -- David Weintraub [email protected]
