posteditpagelet.pgl
来自「Anthill是一个确保受控建造过程和促进在组织内部共享知识的工具。Anthil」· PGL 代码 · 共 56 行
PGL
56 行
<%@ import="com.urbancode.anthill.adapter.*" %><%@ import="com.urbancode.anthill.ProjectProperties" %><%@ import="com.urbancode.anthill.util.FileUtils" %><%ProfileRepositoryAdapter ra = (ProfileRepositoryAdapter)context.get("Adapter");ProjectProperties pp = (ProjectProperties)context.get("Properties");String msg = (String)context.get("msg");String file = (String)context.get("File");String connectString = pp.getProperty(StarTeamRepositoryAdapter.CONNECT_KEY);String passwdFile = pp.getProperty(StarTeamRepositoryAdapter.PASSWD_FILE_KEY);String workDir = pp.getProperty(StarTeamRepositoryAdapter.WORK_DIR_KEY);String workDirectory = System.getProperty(ProfileRepositoryAdapter.ANTHILL_ROOT_DIR_KEY) + File.separator + workDir;workDirectory = FileUtils.getOSDependentPath(workDirectory);String pageletDir = System.getProperty(ProfileRepositoryAdapter.ANTHILL_ROOT_DIR_KEY) + File.separator + "conf" + File.separator + "profiles"+ File.separator + "Unix" + File.separator + "unix_starteam" + File.separator;String userOS = System.getProperty("os.name");String fileSeparator = "";if (userOS.indexOf("Windows") != -1) {fileSeparator = "\\";}else {fileSeparator = "/";}String fileFolder = file.substring(0, file.lastIndexOf(fileSeparator));String fileName = file.substring(file.lastIndexOf(fileSeparator)+1, file.length());String starTeamPath = "";if (userOS.indexOf("Windows") != -1) {starTeamPath = fileFolder.replace('\\', '/');}else {starTeamPath = fileFolder;}if ((passwdFile != null) && (!passwdFile.trim().equals(""))) {%>sh <%=pageletDir%>postEditCheckinUnlock.sh <%=connectString%> <%=starTeamPath%> <%=workDirectory%> <%=msg%> <%=fileName%> <%=passwdFile%><%}else {%>sh <%=pageletDir%>postEditCheckinUnlock.sh <%=connectString%> <%=starTeamPath%> <%=workDirectory%> <%=msg%> <%=fileName%><%}%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?