branch develop updated (dc06ade -> 72d7523)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git from dc06ade refs #7894 add links on hierarchy graph nodes new b96ed25 make question hierarchy graph popup bigger new 72d7523 fixes #7899 Fix public projects listing The 2 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 72d752322a3451e1bf1f6f9354342b743c7f6578 Author: Yannick Martel <martel@©odelutin.com> Date: Wed Jan 13 11:24:39 2016 +0100 fixes #7899 Fix public projects listing commit b96ed25d11d9ace4896a4df64309c26ce849c4f2 Author: Yannick Martel <martel@©odelutin.com> Date: Wed Jan 13 11:23:41 2016 +0100 make question hierarchy graph popup bigger Summary of changes: .../java/fr/ifremer/coselmar/services/v1/QuestionsWebService.java | 7 +++++-- coselmar-ui/src/main/webapp/js/d3-2waytree-graph.js | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git commit b96ed25d11d9ace4896a4df64309c26ce849c4f2 Author: Yannick Martel <martel@©odelutin.com> Date: Wed Jan 13 11:23:41 2016 +0100 make question hierarchy graph popup bigger --- coselmar-ui/src/main/webapp/js/d3-2waytree-graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coselmar-ui/src/main/webapp/js/d3-2waytree-graph.js b/coselmar-ui/src/main/webapp/js/d3-2waytree-graph.js index ea2d66b..93008fc 100644 --- a/coselmar-ui/src/main/webapp/js/d3-2waytree-graph.js +++ b/coselmar-ui/src/main/webapp/js/d3-2waytree-graph.js @@ -5,7 +5,7 @@ var CollapsibleTree = function(elt) { var m = [20, 120, 20, 120], w = 1280 - m[1] - m[3], - h = 580 - m[0] - m[2], + h = 980 - m[0] - m[2], i = 0, root, root2; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git commit 72d752322a3451e1bf1f6f9354342b743c7f6578 Author: Yannick Martel <martel@©odelutin.com> Date: Wed Jan 13 11:24:39 2016 +0100 fixes #7899 Fix public projects listing --- .../java/fr/ifremer/coselmar/services/v1/QuestionsWebService.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/coselmar-rest/src/main/java/fr/ifremer/coselmar/services/v1/QuestionsWebService.java b/coselmar-rest/src/main/java/fr/ifremer/coselmar/services/v1/QuestionsWebService.java index ab44a86..c63afb7 100644 --- a/coselmar-rest/src/main/java/fr/ifremer/coselmar/services/v1/QuestionsWebService.java +++ b/coselmar-rest/src/main/java/fr/ifremer/coselmar/services/v1/QuestionsWebService.java @@ -57,6 +57,7 @@ import fr.ifremer.coselmar.persistence.entity.Link; import fr.ifremer.coselmar.persistence.entity.LinkImpl; import fr.ifremer.coselmar.persistence.entity.Privacy; import fr.ifremer.coselmar.persistence.entity.Question; +import fr.ifremer.coselmar.persistence.entity.QuestionImpl; import fr.ifremer.coselmar.persistence.entity.Status; import fr.ifremer.coselmar.services.CoselmarWebServiceSupport; import fr.ifremer.coselmar.services.errors.InvalidCredentialException; @@ -290,8 +291,10 @@ public class QuestionsWebService extends CoselmarWebServiceSupport { // No authentication needed, just filter to get last 5 public questions QuestionSearchExample searchOption = QuestionSearchExample.newDefaultSearchExample(); - searchOption.getExample().setPrivacy(Privacy.PUBLIC); - searchOption.getExample().setStatus(Status.OPEN); + QuestionImpl example = new QuestionImpl(); + example.setPrivacy(Privacy.PUBLIC); + example.setStatus(Status.OPEN); + searchOption.setExample(example); searchOption.setLimit(5); searchOption.setPage(1); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm