[Fwd: CVS update: MODIFIED: compilation, prj40_prototype ...]

Pavel Buzek <[email protected]> Mon, 13 Oct 2003 17:27:11 -0700
Newsgroups gmane.comp.java.netbeans.modules.projects.devel
Message-ID <[email protected]>
Honzo,

this integration caused an NPE in web module when you call Build Project 
(it's fixed now). I am using proj-comp-outputFolder in my template as 
AFAIK this is the only way to set the output folder for my build target 
declaratively. Is this attr recommended for use as an API? If so then 
any such change must be notified ahead.
It's also not clear where was the request for this change coming from. 
If it's not broken don't fix it :-)

-pavel

-------- Original Message --------
Subject: CVS update: MODIFIED: compilation, prj40_prototype ...
Date: Mon, 13 Oct 2003 12:54:53 +0000
From: [email protected]
Reply-To: [email protected]
To: [email protected]

   User: jpokorsky
   Date: 03/10/13 05:54:53

   Modified:    compilation/src/org/netbeans/modules/compilation Tag:
                         prj40_prototype OutputFolderContextSupport.java
   Log:
   fixed the outputfolder setting name

   Revision  Changes    Path
   No                   revision

 
http://projects.netbeans.org/source/browse/projects/compilation/src/org/netbeans/modules/compilation/Tag:
   No                   revision

 
http://projects.netbeans.org/source/browse/projects/compilation/src/org/netbeans/modules/compilation/prj40_prototype
   1.1.2.12  +2 -2 
projects/compilation/src/org/netbeans/modules/compilation/Attic/OutputFolderContextSupport.java

 
http://projects.netbeans.org/source/browse/projects/compilation/src/org/netbeans/modules/compilation/OutputFolderContextSupport.java.diff?r1=1.1.2.11&r2=1.1.2.12

   (In the diff below, changes in quantity of whitespace are not shown.)

   Index: OutputFolderContextSupport.java
   ===================================================================
   RCS file: 
/cvs/projects/compilation/src/org/netbeans/modules/compilation/Attic/OutputFolderContextSupport.java,v
   retrieving revision 1.1.2.11
   retrieving revision 1.1.2.12
   diff -u -b -r1.1.2.11 -r1.1.2.12
   --- OutputFolderContextSupport.java	2003/09/29 09:36:57	1.1.2.11
   +++ OutputFolderContextSupport.java	2003/10/13 12:54:51	1.1.2.12
   @@ -7,7 +7,7 @@
     * http://www.sun.com/
     *
     * The Original Code is NetBeans. The Initial Developer of the Original
   - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2002 Sun
   + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
     * Microsystems, Inc. All Rights Reserved.
     */
    package org.netbeans.modules.compilation;
   @@ -20,7 +20,7 @@
    import org.netbeans.spi.projects.settings.ContextSettings;

    public final class OutputFolderContextSupport extends ContextSettings {
   -    public static final String FOLDER = "outputFolder"; //NOI18N
   +    public static final String FOLDER = "outputfolder"; //NOI18N

        public OutputFolderContextSupport(ProjectMember buildTarget, 
Configuration cfg) {
            super(Contexts.createContext(buildTarget, new Configuration 
[] { cfg }), "proj-comp-");