branch develop updated (99f7738 -> 301ce86)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository scmwebeditor. See http://git.nuiton.org/scmwebeditor.git from 99f7738 Fix the commit form and the logout button new 301ce86 Make the refresh after the actions in the popups automatically display the browse tree on the browse page The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 301ce865594d9dc8430f9fd49c02b4b36b2f7e14 Author: Hugo PIGEON <hpigeon@codelutin.com> Date: Tue Jun 2 17:01:42 2015 +0200 Make the refresh after the actions in the popups automatically display the browse tree on the browse page Summary of changes: .../main/webapp/WEB-INF/content/popups/createBranchSuccess.jsp | 3 ++- .../main/webapp/WEB-INF/content/popups/createDirectorySuccess.jsp | 8 +++++++- .../src/main/webapp/WEB-INF/content/popups/moveFileSuccess.jsp | 8 +++++++- .../main/webapp/WEB-INF/content/popups/removeDirectorySuccess.jsp | 8 +++++++- .../src/main/webapp/WEB-INF/content/popups/removeFileSuccess.jsp | 8 +++++++- .../src/main/webapp/WEB-INF/content/popups/uploadFileSuccess.jsp | 8 +++++++- 6 files changed, 37 insertions(+), 6 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository scmwebeditor. See http://git.nuiton.org/scmwebeditor.git commit 301ce865594d9dc8430f9fd49c02b4b36b2f7e14 Author: Hugo PIGEON <hpigeon@codelutin.com> Date: Tue Jun 2 17:01:42 2015 +0200 Make the refresh after the actions in the popups automatically display the browse tree on the browse page --- .../main/webapp/WEB-INF/content/popups/createBranchSuccess.jsp | 3 ++- .../main/webapp/WEB-INF/content/popups/createDirectorySuccess.jsp | 8 +++++++- .../src/main/webapp/WEB-INF/content/popups/moveFileSuccess.jsp | 8 +++++++- .../main/webapp/WEB-INF/content/popups/removeDirectorySuccess.jsp | 8 +++++++- .../src/main/webapp/WEB-INF/content/popups/removeFileSuccess.jsp | 8 +++++++- .../src/main/webapp/WEB-INF/content/popups/uploadFileSuccess.jsp | 8 +++++++- 6 files changed, 37 insertions(+), 6 deletions(-) diff --git a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createBranchSuccess.jsp b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createBranchSuccess.jsp index f973b0d..8e47156 100644 --- a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createBranchSuccess.jsp +++ b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createBranchSuccess.jsp @@ -33,7 +33,8 @@ <title><s:text name="scm.titles.success"/></title> <script type="text/javascript"> - window.opener.document.location.reload(false); + var searchButton = window.opener.document.getElementById("ajaxSearchButton"); + searchButton.click(); </script> </head> diff --git a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createDirectorySuccess.jsp b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createDirectorySuccess.jsp index 9c8bef8..651b484 100644 --- a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createDirectorySuccess.jsp +++ b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/createDirectorySuccess.jsp @@ -43,7 +43,13 @@ + "&selectedBranch=" + selectedBranch + "&repositoryRoot=" + repositoryRoot; } else { - window.opener.document.location.reload(false); + var searchButton = window.opener.document.getElementById("ajaxSearchButton"); + + if (searchButton != null) { + searchButton.click(); + } else { + window.opener.document.location.reload(false); + } } </script> diff --git a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/moveFileSuccess.jsp b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/moveFileSuccess.jsp index 627c8c4..585db6d 100644 --- a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/moveFileSuccess.jsp +++ b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/moveFileSuccess.jsp @@ -43,7 +43,13 @@ + "&selectedBranch=" + selectedBranch + "&repositoryRoot=" + repositoryRoot; } else { - window.opener.document.location.reload(false); + var searchButton = window.opener.document.getElementById("ajaxSearchButton"); + + if (searchButton != null) { + searchButton.click(); + } else { + window.opener.document.location.reload(false); + } } </script> diff --git a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeDirectorySuccess.jsp b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeDirectorySuccess.jsp index 41e557b..d497c34 100644 --- a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeDirectorySuccess.jsp +++ b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeDirectorySuccess.jsp @@ -43,7 +43,13 @@ + "&selectedBranch=" + selectedBranch + "&repositoryRoot=" + repositoryRoot; } else { - window.opener.document.location.reload(false); + var searchButton = window.opener.document.getElementById("ajaxSearchButton"); + + if (searchButton != null) { + searchButton.click(); + } else { + window.opener.document.location.reload(false); + } } </script> diff --git a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeFileSuccess.jsp b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeFileSuccess.jsp index fb2b6ce..1decc6a 100644 --- a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeFileSuccess.jsp +++ b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/removeFileSuccess.jsp @@ -43,7 +43,13 @@ + "&selectedBranch=" + selectedBranch + "&repositoryRoot=" + repositoryRoot; } else { - window.opener.document.location.reload(false); + var searchButton = window.opener.document.getElementById("ajaxSearchButton"); + + if (searchButton != null) { + searchButton.click(); + } else { + window.opener.document.location.reload(false); + } } </script> diff --git a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/uploadFileSuccess.jsp b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/uploadFileSuccess.jsp index d4771e3..0168781 100644 --- a/swe-ui-web/src/main/webapp/WEB-INF/content/popups/uploadFileSuccess.jsp +++ b/swe-ui-web/src/main/webapp/WEB-INF/content/popups/uploadFileSuccess.jsp @@ -43,7 +43,13 @@ + "&selectedBranch=" + selectedBranch + "&repositoryRoot=" + repositoryRoot; } else { - window.opener.document.location.reload(false); + var searchButton = window.opener.document.getElementById("ajaxSearchButton"); + + if (searchButton != null) { + searchButton.click(); + } else { + window.opener.document.location.reload(false); + } } </script> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm