[magnolia-dev] [JIRA] (JSMODELS-13) Register custom formatters for JSObject type

2017-06-26 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-13  
 
 
  Register custom formatters for JSObject type   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 26/Jun/17 10:51 AM  
 
 
Fix Versions: 
 1.0  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 See MAGNOLIA-7077.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 
   

[magnolia-dev] [JIRA] (JSMODELS-5) Way to get the data structure of an object - JS and NON-JS objects

2017-06-16 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-5  
 
 
  Way to get the data structure of an object - JS and NON-JS objects   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Some way for a templater to output the structure and content of an object within a template for development purposes.Why:It can be hard to work with content objects in a template because you do not know the structure of the content. It can be especially hard to understand the actual structure of the objects returned from _javascript_ models. Ideally a simple method in cmsfn would give a templater a string representation of the object.It's difficult to work with the objects that are passed into the methods of a JS model from the templating script, because its hard to know the structure of the object. Its not possible to use something like JSON.stringify in a JS model.I tried using JSON.stringify, but it always returns undefined.http://codereview.stackexchange.com/questions/91184/java-json-stringifier-with-the-nashorn-apihttp://mail.openjdk.java.net/pipermail/nashorn-dev/2013-September/002012.html---Implementation:Example usage:{code}String result =  Dumper  Describer .newBuilder().withDepth(3).withUseHtml(true).dump(myObject);{code}Users can also provide custom  describers  formatters  for certain object types by implementing {{ AbstractDescriber AbstractFormatter }} class:{code}String result =  Dumper  Describer .newBuilder(). withAdditionalDescriber withAdditionalFormatter ( myCustomDescriber myCustomFormatter ).dump(object);{code}Describers for following types are provided out of the box:* Null* Scalars* Dates* Calendar* Arrays* Collections* Maps* ContentMaps* Nodes* Properties* Objects (this one describes only the object class to avoid generating huge hierarchies)* _javascript_ Objects (objects implementing JSObject interface)Node:{noformat}Node (/magnolia-travels/Vietnam--Tradition-and-Today)  author = "Magnolia Travels" (String)  body = "Vietnam is one of the worlds most exotic and culturally rich destinations. A gem..." (String)  body_de = "Vietnam ist eine der exotischsten und kulturreichsten Destinationen weltweit. Als Juwel unt..." (String)  description = "Discover the culture and everyday treasures of a rising phoenix" (String)  description_de = "Entdecken Sie die Kultur und die alltäglichen Schätze eines Phoenix aus der Asche" (String)  destination = Sequence (1)0 = "7ec72c48-c33f-418e-b2ff-44cfb4bbb1f2" (String)  duration = "14" (String)  image = "jcr:1044b3b8-30b1-48fe-8078-832b6cef8fb5" (String)  isFeatured = true (Boolean)  location = "Ho Chi Minh City, Vietnam" (String)  name = "Vietnam: Tradition and Today" (String)  name_de = "Vielfältiges Vietnam" (String)  tourTypes = Sequence (2)0 = "415025c6-e4b5-4506-9384-34f428a52104" (String)1 = "e007e401-1bf8-4658-8293-b9c743784264" (String)  mgnl:activationStatus = true (Boolean)  mgnl:comment = "" (String)  mgnl:created = Jan 29, 2015 07:57:18 AM (Date)  mgnl:createdBy = "superuser" (String)  mgnl:lastActivated = Jul 1, 2015 08:48:49 

[magnolia-dev] [JIRA] (JSMODELS-5) Way to get the data structure of an object - JS and NON-JS objects

2017-06-15 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-5  
 
 
  Way to get the data structure of an object - JS and NON-JS objects   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Comment: 
 Dumper can be used to describe objects (for example in FTLs). User can choose how deep it should go in the object hierarchy when describing objects (using depth parameter) and if the output should in plain text or HTML formatted.Example usage:{code}String result = Dumper.newBuilder().withDepth(3).withUseHtml(true).dump(myObject);{code}Users can also provide custom describers for certain object types by implementing {{AbstractDescriber}} class:{code}String result = Dumper.newBuilder().withAdditionalDescriber(myCustomDescriber).dump(object);{code}Describers for following types are provided out of the box:* Null* Scalars* Dates* Calendar* Arrays* Collections* Maps* ContentMaps* Nodes* Properties* Objects (this one describes only the object class to avoid generating huge hierarchies)* _javascript_ Objects (objects implementing JSObject interface)Node:{noformat}Node (/magnolia-travels/Vietnam--Tradition-and-Today)  author = "Magnolia Travels" (String)  body = "Vietnam is one of the worlds most exotic and culturally rich destinations. A gem..." (String)  body_de = "Vietnam ist eine der exotischsten und kulturreichsten Destinationen weltweit. Als Juwel unt..." (String)  description = "Discover the culture and everyday treasures of a rising phoenix" (String)  description_de = "Entdecken Sie die Kultur und die alltäglichen Schätze eines Phoenix aus der Asche" (String)  destination = Sequence (1)0 = "7ec72c48-c33f-418e-b2ff-44cfb4bbb1f2" (String)  duration = "14" (String)  image = "jcr:1044b3b8-30b1-48fe-8078-832b6cef8fb5" (String)  isFeatured = true (Boolean)  location = "Ho Chi Minh City, Vietnam" (String)  name = "Vietnam: Tradition and Today" (String)  name_de = "Vielfältiges Vietnam" (String)  tourTypes = Sequence (2)0 = "415025c6-e4b5-4506-9384-34f428a52104" (String)1 = "e007e401-1bf8-4658-8293-b9c743784264" (String)  mgnl:activationStatus = true (Boolean)  mgnl:comment = "" (String)  mgnl:created = Jan 29, 2015 07:57:18 AM (Date)  mgnl:createdBy = "superuser" (String)  mgnl:lastActivated = Jul 1, 2015 08:48:49 AM (Date)  mgnl:lastActivatedBy = "superuser" (String)  mgnl:lastModified = Jun 18, 2015 12:20:06 PM (Date)  mgnl:lastModifiedBy = "superuser" (String)  jcr:created = Jun 12, 2017 01:41:27 PM (Date)  jcr:createdBy = "admin" (String)  jcr:primaryType = "mgnl:content" (String)  jcr:uuid = "3d676477-eabc-4cbe-88b6-b77aa85a358a" (String){noformat}Property:{noformat}Magnolia Travels (Property){noformat}Multivalue Property:{noformat}Property (2)  0 = "415025c6-e4b5-4506-9384-34f428a52104" (String)  1 = "e007e401-1bf8-4658-8293-b9c743784264" (String){noformat}ContentMap:{noformat}ContentMap (/magnolia-travels/Vietnam--Tradition-and-Today)  author = "Magnolia Travels" (String)  body = "Vietnam is one of the worlds most exotic and culturally rich destinations. A gem..." (String)  body_de = "Vietnam ist eine der exotischsten und kulturreichsten Destinationen weltweit. Als Juwel unt..." (String)  depth = null (Null)  description = "Discover the culture and everyday treasures of a rising phoenix" (String)  

[magnolia-dev] [JIRA] (JSMODELS-5) Way to get the data structure of an object - JS and NON-JS objects

2017-06-15 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-5  
 
 
  Way to get the data structure of an object - JS and NON-JS objects   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 It's difficult to work with the objects that are passed into the methods of a JS model from the templating script, because its hard to know the structure of the object.For example the object returned by cmsfn.children is an object of objects, so it cannot be iterated as a _javascript_ array.If you return an array from a model, then pass that array to another model function.* It cannot be iterated with for(var item in input) {* It cannot be iterated with or each (item in input){* it does not have a length.It would be useful if the developer could determine its structure.-Maybe there should be method which outputs a string representation of the data structure. I tried using JSON.stringify, but it always returns undefined.http://codereview.stackexchange.com/questions/91184/java-json-stringifier-with-the-nashorn-apihttp://mail.openjdk.java.net/pipermail/nashorn-dev/2013-September/002012.html-If there is an existing method in Java or JS that solves this problem, then we should simply document that. ---Dumper can be used to describe objects (for example in FTLs). User can choose how deep it should go in the object hierarchy when describing objects (using depth parameter) and if the output should in plain text or HTML formatted.Example usage:{code}String result = Dumper.newBuilder().withDepth(3).withUseHtml(true).dump(myObject);{code}Users can also provide custom describers for certain object types by implementing {{AbstractDescriber}} class:{code}String result = Dumper.newBuilder().withAdditionalDescriber(myCustomDescriber).dump(object);{code}Describers for following types are provided out of the box:* Null* Scalars* Dates* Calendar* Arrays* Collections* Maps* ContentMaps* Nodes* Properties* Objects (this one describes only the object class to avoid generating huge hierarchies)* _javascript_ Objects (objects implementing JSObject interface)Node:{noformat}Node (/magnolia-travels/Vietnam--Tradition-and-Today)  author = "Magnolia Travels" (String)  body = "Vietnam is one of the worlds most exotic and culturally rich destinations. A gem..." (String)  body_de = "Vietnam ist eine der exotischsten und kulturreichsten Destinationen weltweit. Als Juwel unt..." (String)  description = "Discover the culture and everyday treasures of a rising phoenix" (String)  description_de = "Entdecken Sie die Kultur und die alltäglichen Schätze eines Phoenix aus der Asche" (String)  destination = Sequence (1)0 = "7ec72c48-c33f-418e-b2ff-44cfb4bbb1f2" (String)  duration = "14" (String)  image = "jcr:1044b3b8-30b1-48fe-8078-832b6cef8fb5" (String)  isFeatured = true (Boolean)  location = "Ho Chi Minh City, Vietnam" (String)  name = "Vietnam: Tradition and Today" (String)  name_de = "Vielfältiges Vietnam" (String)  tourTypes = Sequence (2)0 = "415025c6-e4b5-4506-9384-34f428a52104" (String)1 = 

[magnolia-dev] [JIRA] (JSMODELS-12) Expose path to the model folder from which it's being executed

2017-06-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-12  
 
 
  Expose path to the model folder from which it's being executed   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Main reason why exposing  currently executed  script folder path is needed when using Nashorn's load function to load other scripts from the light module.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-9) Add support for javascript form processors

2017-06-08 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-9  
 
 
  Add support for _javascript_ form processors   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Sprint: 
 Kromeriz 99  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-12) Expose path to the model folder from which it's being executed

2017-06-08 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-12  
 
 
  Expose path to the model folder from which it's being executed   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Main reason why exposing script folder path is needed when using Nashorn's load function to load other scripts from the light module.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-10) Calls to model's execute method aren't working

2017-06-08 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-10  
 
 
  Calls to model's execute method aren't working   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 08/Jun/17 10:10 AM  
 
 
Fix Versions: 
 1.0  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For 

[magnolia-dev] [JIRA] (JSMODELS-11) Javascript "undefined" value should be treated as null value in freemarker

2017-06-08 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-11  
 
 
  _javascript_ "undefined" value should be treated as null value in freemarker   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 08/Jun/17 10:11 AM  
 
 
Fix Versions: 
 1.0  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




[magnolia-dev] [JIRA] (JSMODELS-12) Expose path to the model folder from which it's being executed

2017-06-08 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-12  
 
 
  Expose path to the model folder from which it's being executed   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 08/Jun/17 10:13 AM  
 
 
Fix Versions: 
 1.0  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




[magnolia-dev] [JIRA] (JSMODELS-9) Add support for javascript form processors

2017-06-08 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-9  
 
 
  Add support for _javascript_ form processors   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 08/Jun/17 10:07 AM  
 
 
Fix Versions: 
 1.0  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   





[magnolia-dev] [JIRA] (JSMODELS-6) Bad type when passing a returned js object to another js function

2017-06-07 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-6  
 
 
  Bad type when passing a returned js object to another js function   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 If you pass returned _javascript_ object (array, json) to the model, it's type gets changed and it does not behave as it should if you pass it again to another model function.To reproduce:# Return an JS array from a model function.# Pass the returned array to another model function.(Problem is not just with arrays though.)Result:* It cannot be iterated with for(var item in input) {* It cannot be iterated with  or  for  each (item in input){* it does not have a length.From Jaroslav:It's something related to freemarker template object wrapping, so fixing it might be a little bit tricky.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our 

[magnolia-dev] [JIRA] (JSMODELS-5) Way to get the JS data structure of an argument

2017-06-05 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-5  
 
 
  Way to get the JS data structure of an argument   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Labels: 
 blocked  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-4) Provide samples of how to use JS models

2017-06-05 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-4  
 
 
  Provide samples of how to use JS models   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Assignee: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-7) Change script caching to be based on last modified date

2017-05-26 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-7  
 
 
  Change script caching to be based on last modified date   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Sprint: 
 Kromeriz 97  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-5) Way to get the JS data structure of an argument

2017-05-26 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-5  
 
 
  Way to get the JS data structure of an argument   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 1.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-6) Bad type when passing a returned js object to another js function

2017-05-26 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-6  
 
 
  Bad type when passing a returned js object to another js function   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 1.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-7) Change script caching to be based on last modified date

2017-05-24 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-7  
 
 
  Change script caching to be based on last modified date   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Caching of the compiled scripts is now hardcoded to expire after 10 minutes after write.That means that scripts aren't updated once  they are  changed.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-7) Change script caching to be based on last modified date

2017-05-24 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-7  
 
 
  Change script caching to be based on last modified date   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 24/May/17 11:53 AM  
 
 
Fix Versions: 
 1.0  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Caching of the compiled scripts is now hardcoded to expire after 10 minutes after write. That means that scripts aren't updated once they are changed.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA 

[magnolia-dev] [JIRA] (MGNLUI-4172) Add getter for the related item in FormDialogPresenter

2017-03-29 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4172  
 
 
  Add getter for the related item in FormDialogPresenter   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 5.4.12  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4172) Add getter for the related item in FormDialogPresenter

2017-03-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4172  
 
 
  Add getter for the related item in FormDialogPresenter   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 in In  MGNLPN-373 we need to be able to get item that is being edited. Only way to get that item is by adding a getter to the FormDialogPresenter and thus making it available.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4172) Add getter for the related item in FormDialogPresenter

2017-03-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4172  
 
 
  Add getter for the related item in FormDialogPresenter   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 in MGNLPN-373 we need to be able to get item that is being edited. Only way to get that item is by adding a getter to the FormDialogPresenter and thus making it available.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4172) Add getter for the related item in FormDialogPresenter

2017-03-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4172  
 
 
  Add getter for the related item in FormDialogPresenter   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 22/Mar/17 7:11 PM  
 
 
Fix Versions: 
 5.5.3  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For 

[magnolia-dev] [JIRA] (PAGES-121) Pages App: when editing 2 pages simultanoulsy, edit dialog content can overwrite each other

2017-03-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia pages module /  PAGES-121  
 
 
  Pages App: when editing 2 pages simultanoulsy, edit dialog content can overwrite each other   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Assignee: 
 Roman Kovařík Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-121) Pages App: when editing 2 pages simultanoulsy, edit dialog content can overwrite each other

2017-03-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia pages module /  PAGES-121  
 
 
  Pages App: when editing 2 pages simultanoulsy, edit dialog content can overwrite each other   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 5.5.3  
 
 
Fix Version/s: 
 5.4.11  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4131) Prevent triggering actionbar actions twice by doubleclick

2017-02-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4131  
 
 
  Prevent triggering actionbar actions twice by doubleclick   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Story Points: 
 8 5  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-125) Improve solution for preventing of opening dialog multiple times

2017-02-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia pages module /  PAGES-125  
 
 
  Improve solution for preventing of opening dialog multiple times   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Story Points: 
 3  
 
 
Sprint: 
 Kromeriz 84  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-125) Improve solution for preventing of opening dialog multiple times

2017-02-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia pages module /  PAGES-125  
 
 
  Improve solution for preventing of opening dialog multiple times   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 22/Feb/17 9:39 AM  
 
 
Fix Versions: 
 5.5.3  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




[magnolia-dev] [JIRA] (MGNLUI-4131) Prevent triggering actionbar actions twice by doubleclick

2017-02-21 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4131  
 
 
  Prevent triggering actionbar actions twice by doubleclick   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 5.4.12  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4131) Prevent triggering actionbar actions twice by doubleclick

2017-02-20 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4131  
 
 
  Prevent triggering actionbar actions twice by doubleclick   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 5.5.3  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4131) Prevent triggering actionbar actions twice by doubleclick

2017-02-20 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4131  
 
 
  Prevent triggering actionbar actions twice by doubleclick   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Assignee: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4131) Prevent triggering actionbar actions twice by doubleclick

2017-02-20 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4131  
 
 
  Prevent triggering actionbar actions twice by doubleclick   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 5.4.12  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLACTIVATION-143) Create maven submodules

2017-02-03 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Activation Module /  MGNLACTIVATION-143  
 
 
  Create maven submodules   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Summary: 
 Split activation into Create maven  submodules  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLACTIVATION-143) Split activation into submodules

2017-02-03 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Activation Module /  MGNLACTIVATION-143  
 
 
  Split activation into submodules   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Split activation into maven submodules:*  activation  publishing - ui app *  activation  publishing -sender*  activation  publishing -receiver*  activation  publishing -compatibility  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-3) Research for performance optimizations for the javascript models (nashorn)

2017-01-26 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-3  
 
 
  Research for performance optimizations for the _javascript_ models (nashorn)   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Project: 
 Product Development Related tasks Magnolia _javascript_ Models  
 
 
Key: 
 DEV JSMODELS - 371 3  
 
 
Issue Type: 
 Task Improvement  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-3) Research for performance optimizations for the javascript models (nashorn)

2017-01-26 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-3  
 
 
  Research for performance optimizations for the _javascript_ models (nashorn)   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 1.0  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLGS-120) Unable to create pages with some names in website root (e.g.: /sitemaps)

2017-01-24 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Google Sitemap Module /  MGNLGS-120  
 
 
  Unable to create pages with some names in website root (e.g.: /sitemaps)   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Fix Version/s: 
 2.4.2  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLACTIVATION-144) Implement activation according to the concept

2017-01-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Activation Module /  MGNLACTIVATION-144  
 
 
  Implement activation according to the concept   
 

  
 
 
 
 

 
Issue Type: 
  Task  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 23/Jan/17 9:46 AM  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 

[magnolia-dev] [JIRA] (MGNLACTIVATION-142) Activation split and refactoring

2017-01-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Activation Module /  MGNLACTIVATION-142  
 
 
  Activation split and refactoring   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 - split into submodules (UI vs rest)- get rid of old Content API- implement the concept [link  pls |https://wiki.magnolia-cms.com/pages/viewpage.action?pageId=130056822 ]  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLACTIVATION-144) Implement activation according to the concept

2017-01-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Activation Module /  MGNLACTIVATION-144  
 
 
  Implement activation according to the concept   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 https://wiki.magnolia-cms.com/pages/viewpage.action?pageId=130056822  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLACTIVATION-143) Split activation into submodules

2017-01-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Activation Module /  MGNLACTIVATION-143  
 
 
  Split activation into submodules   
 

  
 
 
 
 

 
Issue Type: 
  Task  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 23/Jan/17 9:44 AM  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 

[magnolia-dev] [JIRA] (MGNLACTIVATION-143) Split activation into submodules

2017-01-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Activation Module /  MGNLACTIVATION-143  
 
 
  Split activation into submodules   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Split activation into maven submodules:* activation-ui* activation-sender* activation-receiver* activation-compatibility  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLCACHE-163) Implement JSON Web Token for authentication for the rest communication

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-163  
 
 
  Implement JSON Web Token for authentication for the rest communication   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 13/Jan/17 9:36 AM  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 

[magnolia-dev] [JIRA] (MGNLCACHE-162) Add filtering options to the cache browser app

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-162  
 
 
  Add filtering options to the cache browser app   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 13/Jan/17 9:35 AM  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 To be specified.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

 

[magnolia-dev] [JIRA] (MGNLCACHE-163) Implement JSON Web Token for authentication for the rest communication

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-163  
 
 
  Implement JSON Web Token for authentication for the rest communication   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Priority: 
 Neutral Critical  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLCACHE-161) Fix scrolling in the cache browser app

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-161  
 
 
  Fix scrolling in the cache browser app   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Issue Type: 
 New Feature Bug  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLCACHE-160) Add search capability to the cache browser app

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-160  
 
 
  Add search capability to the cache browser app   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 13/Jan/17 9:30 AM  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 

[magnolia-dev] [JIRA] (MGNLCACHE-161) Fix scrolling in the cache browser app

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-161  
 
 
  Fix scrolling in the cache browser app   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 13/Jan/17 9:31 AM  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 When having a lot of items in the cache, scrolling often breaks and throws a lot of errors.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 
   

[magnolia-dev] [JIRA] (MGNLCACHE-160) Add search capability to the cache browser app

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-160  
 
 
  Add search capability to the cache browser app   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Issue Type: 
 New Feature Bug  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLCACHE-160) Add search capability to the cache browser app

2017-01-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia Cache Module /  MGNLCACHE-160  
 
 
  Add search capability to the cache browser app   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Issue Type: 
 Bug New Feature  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4111) Add possibility to mark a field that should be skipped when saving the dialog

2017-01-02 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia UI /  MGNLUI-4111  
 
 
  Add possibility to mark a field that should be skipped when saving the dialog   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Unassigned  
 
 
Created: 
 03/Jan/17 8:01 AM  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 Currently, all fields in the dialogs are always saved as properties or nodes. It would be nice to have some flag that would allow to mark fields that should not be saved by the dialog.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

   

[magnolia-dev] [JIRA] (JSMODELS-2) Components in Global scope are not passed to the scripting engine

2016-12-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-2  
 
 
  Components in Global scope are not passed to the scripting engine   
 

  
 
 
 
 

 
Change By: 
 Jaroslav Simak  
 
 
Story Points: 
 0.5  
 
 
Sprint: 
 Kromeriz 75  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.2.6#72008-sha1:26175bf)  
 
 

 
   
 

  
 

  
 

   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-2) Components in Global scope are not passed to the scripting engine

2016-12-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jaroslav Simak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Magnolia _javascript_ Models /  JSMODELS-2  
 
 
  Components in Global scope are not passed to the scripting engine   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Jaroslav Simak  
 
 
Created: 
 22/Dec/16 2:37 PM  
 
 
Fix Versions: 
 1.0  
 
 
Priority: 
  Neutral  
 
 
Reporter: 
 Jaroslav Simak  
 

  
 
 
 
 

 
 How to reproduce: Configure some exposedComponent (for example cmsfn) Use it in _javascript_ model -> Exception occurs that cmsfn is not available  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA 

[magnolia-dev] [JIRA] (MGNLUI-4100) Old properties are still present in bootstrap files

2016-12-15 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-4100 
 
 
 
  Old properties are still present in bootstrap files  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Fix Version/s:
 
 5.5.1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLFORUM-294) Old and unnecessary properties are present in bootstrap files

2016-12-14 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Forum Module /  MGNLFORUM-294 
 
 
 
  Old and unnecessary properties are present in bootstrap files  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Fix Version/s:
 
 3.6.1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLFORUM-294) Old and unnecessary properties are present in bootstrap files

2016-12-13 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Forum Module /  MGNLFORUM-294 
 
 
 
  Old and unnecessary properties are present in bootstrap files  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Sprint:
 
 Kromeriz 74 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLRESTCL-23) Change jackson implementation from codehaus to fasterxml one

2016-11-28 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 REST Client /  MGNLRESTCL-23 
 
 
 
  Change jackson implementation from codehaus to fasterxml one  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Evzen Fochr Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLRESTCL-23) Change jackson implementation from codehaus to fasterxml one

2016-11-28 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak reopened an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 REST Client /  MGNLRESTCL-23 
 
 
 
  Change jackson implementation from codehaus to fasterxml one  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Status:
 
 Reviewed Reopened 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-1) Implementation of Javascript models using Nashorn

2016-11-18 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia _javascript_ Models /  JSMODELS-1 
 
 
 
  Implementation of _javascript_ models using Nashorn  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  New Feature 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 18/Nov/16 10:42 AM 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (JSMODELS-1) Implementation of Javascript models using Nashorn

2016-11-18 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia _javascript_ Models /  JSMODELS-1 
 
 
 
  Implementation of _javascript_ models using Nashorn  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Fix Version/s:
 
 1.0 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-96) Magnolia saves the "position" attribute to newly added component

2016-11-17 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-96 
 
 
 
  Magnolia saves the "position" attribute to newly added component  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Fix Version/s:
 
 5.4.9 
 
 
 

Fix Version/s:
 
 5.5.1 
 
 
 

Fix Version/s:
 
 5.4.9 5.5.1 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-107) CLONE - Magnolia saves the "position" attribute to newly added component

2016-11-15 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Tom Wespi created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-107 
 
 
 
  CLONE - Magnolia saves the "position" attribute to newly added component  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 5.4.9 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 15/Nov/16 1:46 PM 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Tom Wespi 
 
 
 
 
 
 
 
 
 
 
When adding a new component, magnolia asks if the component should added at top or at bottom of the area. 
If the dialog has a field (e.g. Text Field) with the name «position», it gets filled with either «top» or «bottom».  
If the field is a select field with the values 
 

left (selected)
 

right no value is selected when creating a new component, due the value of «position» is already set to «top» or «bottom». This behaviour leaded to many problems in our projects.
 
 
This value get also stored to the component, which makes absolutely no sense, due the component may be moved afterward.  
Tested on demoauthor 
 
 
 
 
 
 
 
 
   

[magnolia-dev] [JIRA] (PAGES-100) Remove unnecessary activation status update from duplicate actions

2016-10-24 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-100 
 
 
 
  Remove unnecessary activation status update from duplicate actions  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Project:
 
 Magnolia  UI  pages module 
 
 
 

Key:
 
 MGNLUI PAGES - 4054 100 
 
 
 

Security:
 
 Public 
 
 
 

Fix Version/s:
 
 5.5 
 
 
 

Fix Version/s:
 
 5.5 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: 

[magnolia-dev] [JIRA] (MGNLUI-4054) Remove unnecessary activation status update from duplicate actions

2016-10-24 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-4054 
 
 
 
  Remove unnecessary activation status update from duplicate actions  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 24/Oct/16 4:13 PM 
 
 
 

Fix Versions:
 

 5.5 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 

Security Level:
 

 Public 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
   

[magnolia-dev] [JIRA] (MGNLUI-4053) Remove unnecessary activation status update from duplicate actions

2016-10-24 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-4053 
 
 
 
  Remove unnecessary activation status update from duplicate actions  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 24/Oct/16 4:03 PM 
 
 
 

Fix Versions:
 

 5.5 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 

Security Level:
 

 Public 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
   

[magnolia-dev] [JIRA] (PAGES-97) Copy & paste action copied node is incorrectly shown as activated

2016-10-24 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-97 
 
 
 
  Copy & paste action copied node is incorrectly shown as activated  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-99) Temp node removal is not persisted when checking availability in clipboard

2016-10-19 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-99 
 
 
 
  Temp node removal is not persisted when checking availability in clipboard  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Summary:
 
 Temp node  removal  is not  removed  persisted  when checking availability in clipboard 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-99) Temp node is not removed when checking availability in clipboard

2016-10-19 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-99 
 
 
 
  Temp node is not removed when checking availability in clipboard  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 19/Oct/16 12:59 PM 
 
 
 

Fix Versions:
 

 5.5 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




[magnolia-dev] [JIRA] (PAGES-95) Add copy & paste actions into pages-app

2016-10-11 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-95 
 
 
 
  Add copy & paste actions into pages-app  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak Robert Šiška 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (PAGES-95) Add copy & paste actions into pages-app

2016-10-11 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia pages module /  PAGES-95 
 
 
 
  Add copy & paste actions into pages-app  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Robert Šiška Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3972) Avoid excessive access to the version store while browsing content

2016-10-05 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3972 
 
 
 
  Avoid excessive access to the version store while browsing content  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Fix Version/s:
 
 5.5 
 
 
 

Fix Version/s:
 
 5.3.x 
 
 
 

Fix Version/s:
 
 5.4.x 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-4019) CLONE - Avoid excessive access to the version store while browsing content

2016-09-16 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Philipp Bärfuss created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-4019 
 
 
 
  CLONE - Avoid excessive access to the version store while browsing content  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Components:
 

 content app 
 
 
 

Created:
 

 16/Sep/16 1:09 PM 
 
 
 

Fix Versions:
 

 5.3.x, 5.4.x 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Philipp Bärfuss 
 
 
 

Security Level:
 

 Public 
 
 
 
 
 
 
 
 
 
 
Each click on an elements in content apps leads to requests to the version store. This can be expensive especially for big installations. I have not tracked it down but my guess would be that it is a availability test for an action which checks wether the node has versions or not. 
To verify this one can enable derby logging like described here: http://magnolia-experts.com/monitoring-queries-to-the-derby-database/ 
Attention: jackrabbit caches nodes in memory (16MB bei default) so with a small installation like the demo project the queries will be only executed during the first access and not by follow up browsing. 
   

[magnolia-dev] [JIRA] (MGNLUI-4003) CKEditor errors

2016-08-29 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-4003 
 
 
 
  CKEditor errors  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Project:
 
 CKEditor module Magnolia UI 
 
 
 

Key:
 
 MGNLCKEDIT MGNLUI - 24 4003 
 
 
 

Security:
 
 Public 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3988) After "Publish deletion" the view jump at the beginning of the pages tree and don't stay at the selected item

2016-08-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3988 
 
 
 
  After "Publish deletion" the view jump at the beginning of the pages tree and don't stay at the selected item  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Labels:
 
 blocked  usability 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3968) resource subnode not reflecting published changes

2016-08-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3968 
 
 
 
  resource subnode not reflecting published changes  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3988) After "Publish deletion" the view jump at the beginning of the pages tree and don't stay at the selected item

2016-08-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3988 
 
 
 
  After "Publish deletion" the view jump at the beginning of the pages tree and don't stay at the selected item  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Labels:
 
 blocked usability 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3988) After "Publish deletion" the view jump at the beginning of the pages tree and don't stay at the selected item

2016-08-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3988 
 
 
 
  After "Publish deletion" the view jump at the beginning of the pages tree and don't stay at the selected item  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.13#64028-sha1:b7939e9) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLRESTCL-19) Allow to register custom parameter converters

2016-06-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 REST Client /  MGNLRESTCL-19 
 
 
 
  Allow to register custom parameter converters  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 22/Jun/16 2:19 PM 
 
 
 

Fix Versions:
 

 1.0.8 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





[magnolia-dev] [JIRA] (MGNLWORKFLOW-333) ConcurrentModificationException occurred when item was published

2016-06-06 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Workflow Module /  MGNLWORKFLOW-333 
 
 
 
  ConcurrentModificationException occurred when item was published  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 06/Jun/16 7:57 AM 
 
 
 

Environment:
 

 5.5 EE Pro demo webapp 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
Unfortunately i can't give any more info that the stacktrace. 

 
2016-06-06 07:51:12,418 WARN  info.magnolia.event.SimpleEventBus: Exception caught when dispatching a class info.magnolia.task.event.TaskEvent event with class info.magnolia.module.workflow.jbpm.humantask.ProcessTaskEventHandler eventHandler.
org.jbpm.workflow.instance.WorkflowRuntimeException: [info.magnolia.workflow.ReviewForPublication:1,465,192,038,189 - Publication:4] -- null
	at org.jbpm.workflow.instance.impl.NodeInstanceImpl.trigger(NodeInstanceImpl.java:177)
	at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerNodeInstance(NodeInstanceImpl.java:364)
	at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerConnection(NodeInstanceImpl.java:379)
	at org.jbpm.workflow.instance.node.SplitInstance.executeStrategy(SplitInstance.java:117)
	at org.jbpm.workflow.instance.node.SplitInstance.internalTrigger(SplitInstance.java:63)
	at org.jbpm.workflow.instance.impl.NodeInstanceImpl.trigger(NodeInstanceImpl.java:171)
	at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerNodeInstance(NodeInstanceImpl.java:364)
	at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerCompleted(NodeInstanceImpl.java:323)
	at 

[magnolia-dev] [JIRA] (MGNLWORKFLOW-333) ConcurrentModificationException occurred when item was published

2016-06-06 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Workflow Module /  MGNLWORKFLOW-333 
 
 
 
  ConcurrentModificationException occurred when item was published  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Account:
 
 null (null) 
 
 
 
 
 
 
 
 
 
 Unfortunately i can't give any more info that the stacktrace. (activation wen't through without any problems) {noformat}2016-06-06 07:51:12,418 WARN  info.magnolia.event.SimpleEventBus: Exception caught when dispatching a class info.magnolia.task.event.TaskEvent event with class info.magnolia.module.workflow.jbpm.humantask.ProcessTaskEventHandler eventHandler.org.jbpm.workflow.instance.WorkflowRuntimeException: [info.magnolia.workflow.ReviewForPublication:1,465,192,038,189 - Publication:4] -- null at org.jbpm.workflow.instance.impl.NodeInstanceImpl.trigger(NodeInstanceImpl.java:177) at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerNodeInstance(NodeInstanceImpl.java:364) at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerConnection(NodeInstanceImpl.java:379) at org.jbpm.workflow.instance.node.SplitInstance.executeStrategy(SplitInstance.java:117) at org.jbpm.workflow.instance.node.SplitInstance.internalTrigger(SplitInstance.java:63) at org.jbpm.workflow.instance.impl.NodeInstanceImpl.trigger(NodeInstanceImpl.java:171) at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerNodeInstance(NodeInstanceImpl.java:364) at org.jbpm.workflow.instance.impl.NodeInstanceImpl.triggerCompleted(NodeInstanceImpl.java:323) at org.jbpm.workflow.instance.impl.ExtendedNodeInstanceImpl.triggerCompleted(ExtendedNodeInstanceImpl.java:44) at org.jbpm.workflow.instance.node.StateBasedNodeInstance.triggerCompleted(StateBasedNodeInstance.java:341) at org.jbpm.workflow.instance.node.StateBasedNodeInstance.triggerCompleted(StateBasedNodeInstance.java:318) at org.jbpm.workflow.instance.node.WorkItemNodeInstance.triggerCompleted(WorkItemNodeInstance.java:316) at org.jbpm.workflow.instance.node.HumanTaskNodeInstance.triggerCompleted(HumanTaskNodeInstance.java:93) at org.jbpm.workflow.instance.node.WorkItemNodeInstance.workItemCompleted(WorkItemNodeInstance.java:378) at org.jbpm.workflow.instance.node.WorkItemNodeInstance.signalEvent(WorkItemNodeInstance.java:354) at org.jbpm.workflow.instance.impl.WorkflowProcessInstanceImpl.signalEvent(WorkflowProcessInstanceImpl.java:434) at org.drools.persistence.jcr.processinstance.JcrWorkItemManager.completeWorkItem(JcrWorkItemManager.java:168) at org.drools.core.command.runtime.process.CompleteWorkItemCommand.execute(CompleteWorkItemCommand.java:75) at org.drools.core.command.runtime.process.CompleteWorkItemCommand.execute(CompleteWorkItemCommand.java:35) at org.drools.core.command.impl.DefaultCommandService.execute(DefaultCommandService.java:36) at org.drools.core.command.impl.AbstractInterceptor.executeNext(AbstractInterceptor.java:41) at org.drools.persistence.SimpleSessionCommandService$TransactionInterceptor.execute(SimpleSessionCommandService.java:334) at 

[magnolia-dev] [JIRA] (MGNLUI-3904) cannot restore a page version if it has a variant

2016-06-02 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3904 
 
 
 
  cannot restore a page version if it has a variant  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Project:
 
 Magnolia  UI 
 
 
 

Key:
 
 MAGNOLIA MGNLUI - 6668 3904 
 
 
 

Component/s:
 
 page editor 
 
 
 

Component/s:
 
 page editor 
 
 
 

Affects Version/s:
 
 5.4 
 
 
 

Affects Version/s:
 
 5.3.8 
 
 
 

Affects Version/s:
 
 5.4 
 
 
 

Affects Version/s:
 
 5.3.8 
 
 
 

Fix Version/s:
 
 5.3.15 
 
 
 

Fix Version/s:
 
 5.4.8 
 
 
 

Fix Version/s:
 
 5.3.15 
 
 

[magnolia-dev] [JIRA] (MTE-87) Up imaging version to 3.3 to implement new api of CachingStrategy

2016-05-31 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Templating Essentials /  MTE-87 
 
 
 
  Up imaging version to 3.3 to implement new api of CachingStrategy   
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 31/May/16 9:10 AM 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MTE-87) Up imaging version to 3.3 to implement new api of CachingStrategy

2016-05-31 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Templating Essentials /  MTE-87 
 
 
 
  Up imaging version to 3.3 to implement new api of CachingStrategy   
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 See MGNLIMG-151. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3889) ExpandNodeAction is flooding log with WARN messages

2016-05-25 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3889 
 
 
 
  ExpandNodeAction is flooding log with WARN messages  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 5.4.6 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 25/May/16 9:53 AM 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 

Security Level:
 

 Public 
 
 
 
 
 
 
 
 
 
 
Steps to reproduce: 
 

setup delegate action with expand node action
 

doubleclick on a folder (i tried it in security app)
 

result: log is flooded with WARN messages
 
 

 
2016-05-25 09:42:42,990 WARN  agnolia.ui.workbench.tree.HierarchicalJcrContainer: Cannot determine parent for itemId: info.magnolia.ui.vaadin.integration.jcr.JcrNodeItemId@d3a13629: javax.jcr.ItemNotFoundException: Root 

[magnolia-dev] [JIRA] (MGNLUI-3888) It is possible to spoil actionbar availability when using defaultAction and dialog

2016-05-25 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3888 
 
 
 
  It is possible to spoil actionbar availability when using defaultAction and dialog  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 For example, it's possible to create folders under user/role nodes.Steps to reproduce:* open Security app* doubleclick on any user or role** user will lost focus and dialog will open* close the dialog with cancel button* click on Add folder action* result - folder is created under user/role. Can be reproduced in any app that uses dialogs for editing. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3888) It is possible to spoil actionbar availability when using defaultAction and dialog

2016-05-25 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3888 
 
 
 
  It is possible to spoil actionbar availability when using defaultAction and dialog  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Attachments:
 

 Screen Shot 2016-05-25 at 09.31.42.png 
 
 
 

Created:
 

 25/May/16 9:32 AM 
 
 
 

Priority:
 
  Major 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 

Security Level:
 

 Public 
 
 
 
 
 
 
 
 
 
 
For example, it's possible to create folders under user/role nodes. 
Steps to reproduce: 
 

open Security app
 

doubleclick on any user or role 
 

user will lost focus and dialog will open
 
 
 

close the dialog with cancel button

[magnolia-dev] [JIRA] (MGNLUI-3888) It is possible to spoil actionbar availability when using defaultAction and dialog

2016-05-25 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3888 
 
 
 
  It is possible to spoil actionbar availability when using defaultAction and dialog  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Affects Version/s:
 
 5.4 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLSITE-58) Site module duplicates workspace listener on every restart

2016-05-17 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Site Module /  MGNLSITE-58 
 
 
 
  Site module duplicates workspace listener on every restart  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3881) Asset App: i18n enabled will force "save changes" button to next line

2016-05-17 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3881 
 
 
 
  Asset App: i18n enabled will force "save changes" button to next line  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLDEMO-140) Wrong dialog property for tourSportstation page

2016-05-16 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Demo Projects /  MGNLDEMO-140 
 
 
 
  Wrong dialog property for tourSportstation page  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3880) Allow to define own implementation of SubAppContext for sub apps

2016-05-11 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3880 
 
 
 
  Allow to define own implementation of SubAppContext for sub apps  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Improvement 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 11/May/16 3:47 PM 
 
 
 

Fix Versions:
 

 5.4.7 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 

Security Level:
 

 Public 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 

[magnolia-dev] [JIRA] (MGNLUI-3853) If the last subapp tab title is too long it is unclickable

2016-05-09 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3853 
 
 
 
  If the last subapp tab title is too long it is unclickable  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (LANG-47) Script for finding duplicate,missing & obsolete translations

2016-04-15 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Language Bundles /  LANG-47 
 
 
 
  Script for finding duplicate,missing & obsolete translations  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Story Points:
 
 0 5 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3836) Spamming shift+tab in configuration app while inline editing leads sometimes to NPE

2016-03-31 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3836 
 
 
 
  Spamming shift+tab in configuration app while inline editing leads sometimes to NPE  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 5.4 
 
 
 

Assignee:
 

 Unassigned 
 
 
 

Created:
 

 31/Mar/16 2:17 PM 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 

Security Level:
 

 Public 
 
 
 
 
 
 
 
 
 
 

 

ERROR .magnolia.ui.admincentral.AdmincentralErrorHandler: AdmincentralUI has encountered an unhandled exception.
java.lang.NullPointerException
at info.magnolia.ui.workbench.tree.TreeViewImpl$EditingKeyboardHandler.handleAction(TreeViewImpl.java:334)
at com.vaadin.event.ActionManager.handleAction(ActionManager.java:233)
at com.vaadin.event.ActionManager.handleActions(ActionManager.java:216)
at com.vaadin.ui.Panel.changeVariables(Panel.java:164)
 

 
 
 
 
 
 
 
 
 
 
 
 
  

[magnolia-dev] [JIRA] (MGNLCE-32) Add UI tests to cover correct item/row selections using keyboard (MGNLUI-3819)

2016-03-23 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Community Edition /  MGNLCE-32 
 
 
 
  Add UI tests to cover correct item/row selections using keyboard (MGNLUI-3819)  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Task 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 

Created:
 

 23/Mar/16 10:28 AM 
 
 
 

Fix Versions:
 

 5.4.6 
 
 
 

Priority:
 
  Neutral 
 
 
 

Reporter:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




[magnolia-dev] [JIRA] (MGNLUI-3819) Newly-created and duplicated item is selected, but not instantly editable

2016-03-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3819 
 
 
 
  Newly-created and duplicated item is selected, but not instantly editable  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Story Points:
 
 3 
 
 
 

Account:
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3819) Newly-created and duplicated item is selected, but not instantly editable

2016-03-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3819 
 
 
 
  Newly-created and duplicated item is selected, but not instantly editable  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Fix Version/s:
 
 5.4.6 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3819) Newly-created and duplicated item is selected, but not instantly editable

2016-03-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3819 
 
 
 
  Newly-created and duplicated item is selected, but not instantly editable  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Sprint:
 
 Kromeriz 36 
 
 
 

Account:
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLUI-3819) Newly-created and duplicated item is selected, but not instantly editable

2016-03-22 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak updated an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia UI /  MGNLUI-3819 
 
 
 
  Newly-created and duplicated item is selected, but not instantly editable  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Assignee:
 
 Jaroslav Simak 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





[magnolia-dev] [JIRA] (MGNLDEMO-114) Use i18n "best practices" on the travel-demo

2016-03-19 Thread JIRA (on behalf of Jaroslav Simak)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jaroslav Simak reopened an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Magnolia Demo Projects /  MGNLDEMO-114 
 
 
 
  Use i18n "best practices" on the travel-demo  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jaroslav Simak 
 
 
 

Status:
 
 Reviewed Reopened 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   




For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: 





  1   2   3   4   5   6   7   8   >