Package org.w3c.cvs

Examples of org.w3c.cvs.CvsDirectory.commit()


  String u = (String)request.getState(AuthFilter.STATE_AUTHUSER);
  String env[] = {"USER="+u , "LOGNAME="+u };
  String comment = "("+u+") "+msg;
  CvsDirectory cvsdir = null;
  cvsdir = getCvsManager();
  cvsdir.commit(getFileResource().getFile().getName(), comment, env);
    }

    /**
     * @exception CvsException if the CVS process failed
     */
 
View Full Code Here


  String u = (String)request.getState(AuthFilter.STATE_AUTHUSER);
  String env[] = {"USER="+u , "LOGNAME="+u };
  String comment = "("+u+") "+msg;
  CvsDirectory cvsdir = null;
  cvsdir = getCvsManager();
  cvsdir.commit(getFileResource().getFile().getName(), comment, env);
    }

    /**
     * @exception CvsException if the CVS process failed
     */
 
View Full Code Here

  String u = (String)request.getState(AuthFilter.STATE_AUTHUSER);
  String env[] = {"USER="+u , "LOGNAME="+u };
  String comment = "("+u+") "+msg;
  CvsDirectory cvsdir = null;
  cvsdir = getCvsManager();
  cvsdir.commit(getFileResource().getFile().getName(), comment, env);
    }

    /**
     * @exception CvsException if the CVS process failed
     */
 
View Full Code Here

    String env [] = { "USER="+author ,
          "LOGNAME="+author };
    String msg    = ((author != null)
         ? "Published by "+author+" through Jigsaw"
         : "Published through Jigsaw");
    c.commit(file.getName(), msg, env);
      } else if ( debug ) {
    System.out.println("PutList: no commit needed on "+
           file.getAbsolutePath()+
           " st="+c.status(file.getName()));
      }
View Full Code Here

                "LOGNAME="+author };
          String msg    = ((author != null)
               ? "Merged by "+author+
               " through Jigsaw"
               : "Merged through Jigsaw");
          sc.commit(filename, msg, env);
          //done so delete backup file
          backup.delete();
          status = FILE_MG;
      } else if (cvs_status == CVS.FILE_C) {
          //merge failed
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.