[magnolia-dev] [JIRA] (MGNLCACHE-43) Magnolia sends empty Pragma header for login page CSS

2014-07-09 Thread on behalf of Robert Šiška














































Robert Šiška
 updated  MGNLCACHE-43


Magnolia sends empty Pragma header for login page CSS
















Change By:


Robert Šiška
(09/Jul/14 9:13 AM)




Fix Version/s:


5.2.5





Fix Version/s:


5.2.x



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-64) Magnolia sends empty Pragma header for login page CSS

2014-07-09 Thread on behalf of Robert Šiška














































Robert Šiška
 created  MGNLCACHE-64


Magnolia sends empty Pragma header for login page CSS















Issue Type:


Bug



Assignee:


Robert Šiška



Created:


09/Jul/14 9:14 AM



Description:


http://redbot.org/?uri=http%3A%2F%2Fdemo.magnolia-cms.com%2F.resources%2FloginForm%2Flogin.css says "The Pragma header is being used in an undefined way".

The CSS for the login page is served with a Pragma header without a value, while the HTTP spec only defines 'Pragma: no-cache'.




Fix Versions:


5.2.5



Project:


Magnolia Cache Module



Labels:


vpro




Priority:


Neutral




Reporter:


Robert Šiška




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3041) Czech translations for ui-contentapp

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3041


Czech translations for ui-contentapp
















Change By:


Jaroslav Simak
(09/Jul/14 9:20 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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] Re: why TemplateExporter can't Registered templates

2014-07-09 Thread Young Lee (via Magnolia Forums)
sure,thanks a lot!
actually my project is quit simple.
this is module directory structure:
[img]http://conv.kuaipan.cn/getmedia/?f=27455093108530177&v=1&copts=pw:400,h:400&acc_params=entryid:27455093108530177,pickupCode:&t=140478[/img]
this is AcmeModule.java:
[code]package com.acme;

import info.magnolia.module.ModuleLifecycle;
import info.magnolia.module.ModuleLifecycleContext;
import info.magnolia.module.blossom.module.BlossomModuleSupport;

/**
 * This class manages the lifecycle of the acmeModule module. It starts and 
stops Spring when Magnolia starts up and
 * shuts down. The dispatcher servlet we create here is a servlet but its 
managed internally and never exposed to the
 * outside world. A request will never reach this servlet directly. It is only 
accessed by Magnolia to render the
 * templates, areas and components and display the dialogs managed by the 
servlet.
 */
public class AcmeModule extends BlossomModuleSupport implements ModuleLifecycle 
{

public void start(ModuleLifecycleContext moduleLifecycleContext) {
if (moduleLifecycleContext.getPhase() == 
ModuleLifecycleContext.PHASE_SYSTEM_STARTUP) {

super.initRootWebApplicationContext("classpath:/applicationContext.xml");
super.initBlossomDispatcherServlet("blossom", 
"classpath:/blossom-servlet.xml");
}
}

public void stop(ModuleLifecycleContext moduleLifecycleContext) {
if (moduleLifecycleContext.getPhase() == 
ModuleLifecycleContext.PHASE_SYSTEM_SHUTDOWN) {
super.destroyDispatcherServlets();
super.closeRootWebApplicationContext();
}
}
}
[/code]
this is MainTemplate.java:
[code]package com.acme;

import info.magnolia.module.blossom.annotation.Area;
import info.magnolia.module.blossom.annotation.AvailableComponentClasses;
import info.magnolia.module.blossom.annotation.DialogFactory;
import info.magnolia.module.blossom.annotation.Template;
import info.magnolia.module.xplan.TextComponent;
import info.magnolia.ui.dialog.config.DialogBuilder;
import info.magnolia.ui.framework.config.UiConfig;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Template(id = "acmeModule:components/main", title = "Main")
@Controller
public class MainTemplate {

@DialogFactory("frontpage-properties")
public void frontPageProperties(UiConfig cfg, DialogBuilder dialog) {
dialog.form().tabs(
cfg.forms.tab("Properties").fields(

cfg.fields.text("headline").label("Headline").description("The text to use as a 
headline")
)
);
}
 
@RequestMapping("/main")
public String render() {
return "pages/mainTemplate.ftl";
}
 
@Area("Content")
@AvailableComponentClasses({TextComponent.class})
public static class ContentArea {
 
@RequestMapping("/main/content")
public String render() {
return "areas/contentArea.jsp";
}
}

}
[/code]
this is AcmeModuleVersionHandler.java:
[code]package com.acme.setup;

import info.magnolia.module.DefaultModuleVersionHandler;

/**
 * This class is optional and lets you manager the versions of your module,
 * by registering "deltas" to maintain the module's configuration, or other 
type of content.
 * If you don't need this, simply remove the reference to this class in the 
module descriptor xml.
 */
public class AcmeModuleVersionHandler extends DefaultModuleVersionHandler {

}[/code]
this is acmeModule.xml:
[code]


  acmeModule
  ${project.name}
  ${project.description}
  com.acme.AcmeModule
  com.acme.setup.AcmeModuleVersionHandler
  ${project.version}

  

  core
  5.2.3/*


  rendering
  5.2.3/*


  templating
  5.2.3/*


  templating-jsp
  5.2.3/*


  blossom
  3.0.2/*

  
[/code]
this is applicationContext.xml:
[code]
http://www.springframework.org/schema/beans";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:blossom="http://www.magnolia-cms.com/schema/blossom";
   xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd 
http://www.magnolia-cms.com/schema/blossom 
http://www.magnolia-cms.com/schema/blossom.xsd";>

[/code]
this is blossom-servlet.xml:
[code]
http://www.springframework.org/schema/beans";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
   xmlns:context="http://www.springframework.org/schema/context";
   xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd 
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context.xsd";>

  

  




  

  

  

  

  

  

  

  


  

  

  

  

  

  
  



[magnolia-dev] [JIRA] (MGNLUI-3043) Czech translations for ui-form

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3043


Czech translations for ui-form
















Change By:


Jaroslav Simak
(09/Jul/14 9:20 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3042) Czech translations for ui-dialog

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3042


Czech translations for ui-dialog
















Change By:


Jaroslav Simak
(09/Jul/14 9:20 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3039) Czech translation for ui-admincentral

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3039


Czech translation for ui-admincentral
















Change By:


Jaroslav Simak
(09/Jul/14 9:19 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3030) Display country code as well as selector in Language chooser in dialogs

2014-07-09 Thread JIRA (on behalf of Evzen Fochr)














































Evzen Fochr
 updated  MGNLUI-3030


Display country code as well as selector in Language chooser in dialogs
















Change By:


Evzen Fochr
(09/Jul/14 9:21 AM)




Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3044) Czech translations for ui-framework

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3044


Czech translations for ui-framework
















Change By:


Jaroslav Simak
(09/Jul/14 9:20 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3049) Czech translations for security-app

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3049


Czech translations for security-app
















Change By:


Jaroslav Simak
(09/Jul/14 9:21 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3047) Czech translations for pages

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3047


Czech translations for pages
















Change By:


Jaroslav Simak
(09/Jul/14 9:20 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3045) Czech translations for ui-mediaeditor

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3045


Czech translations for ui-mediaeditor
















Change By:


Jaroslav Simak
(09/Jul/14 9:20 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3030) Display country code as well as selector in Language chooser in dialogs

2014-07-09 Thread JIRA (on behalf of Evzen Fochr)














































Evzen Fochr
 updated  MGNLUI-3030


Display country code as well as selector in Language chooser in dialogs
















Change By:


Evzen Fochr
(09/Jul/14 9:21 AM)




Fix Version/s:


5.3.2



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3046) Czech translations for messages-app

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3046


Czech translations for messages-app
















Change By:


Jaroslav Simak
(09/Jul/14 9:20 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3048) Czech translations for sample-app

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3048


Czech translations for sample-app
















Change By:


Jaroslav Simak
(09/Jul/14 9:21 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3038) Czech translations for UI

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 updated  MGNLUI-3038


Czech translations for UI
















Change By:


Jaroslav Simak
(09/Jul/14 9:19 AM)




Fix Version/s:


5.3.2





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3036) Availability of duplicate action does not have writePermissionRequired flag

2014-07-09 Thread on behalf of Mikaël Geljic














































Mikaël Geljic
 updated  MGNLUI-3036


Availability of duplicate action does not have writePermissionRequired flag
















Change By:


Mikaël Geljic
(09/Jul/14 11:19 AM)




Fix Version/s:


5.2.7





Fix Version/s:


5.3.1



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-2057) Keyboard: Foundation for the DELETE keyboard shortcut (deleteAction)

2014-07-09 Thread JIRA (on behalf of Christopher Zimmermann)














































Christopher Zimmermann
 updated  MGNLUI-2057


Keyboard: Foundation for the DELETE keyboard shortcut (deleteAction)
















Change By:


Christopher Zimmermann
(09/Jul/14 1:52 PM)




Description:


NOTE: The foundation is layed - but the actual DELETE key functionality is disabled until we
 resolve the problem mentioned in linked ticket: http://jira.magnolia-cms.com/browse/MGNLUI-2106
 

Use the same technique as the ENTER key handling.* WorkbenchViewImpl adds a vaadin DELETE key shortcut handler.* The AbstractContentPresenter fires ItemShortcutKeyEvent event on eventBus.* BrowserPresenter handles event, and calls executeDeleteAction().Ive checked:PagesContactsProblem in Assets as there is a different command for deleting an asset and for deleting an assetfolder. So it would not really work here. Or id have to create an action that can handle both.markAssetFolderAsDeleted - works on Assets and on Folders - so we could just have this one action - if its ok to have the same text.*For now implement on Configuration App only.Created linked ticket for setting up for the other apps as well.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-2057) Keyboard: Foundation for the DELETE keyboard shortcut (deleteAction)

2014-07-09 Thread JIRA (on behalf of Christopher Zimmermann)














































Christopher Zimmermann
 updated  MGNLUI-2057


Keyboard: Foundation for the DELETE keyboard shortcut (deleteAction)
















Change By:


Christopher Zimmermann
(09/Jul/14 1:51 PM)




Description:


NOTE: The foundation is layed - but the actual DELETE key functionality is disabled until we 
Use the same technique as the ENTER key handling.* WorkbenchViewImpl adds a vaadin DELETE key shortcut handler.* The AbstractContentPresenter fires ItemShortcutKeyEvent event on eventBus.* BrowserPresenter handles event, and calls executeDeleteAction().Ive checked:PagesContactsProblem in Assets as there is a different command for deleting an asset and for deleting an assetfolder. So it would not really work here. Or id have to create an action that can handle both.markAssetFolderAsDeleted - works on Assets and on Folders - so we could just have this one action - if its ok to have the same text.*For now implement on Configuration App only.Created linked ticket for setting up for the other apps as well.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-88) When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation

2014-07-09 Thread JIRA (on behalf of Philip Mundt)














































Philip Mundt
 created  MGNLACTIVATION-88


When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation















Issue Type:


Bug



Assignee:


Unassigned


Created:


09/Jul/14 2:24 PM



Fix Versions:


5.2.6



Project:


Magnolia Activation Module



Priority:


Neutral




Reporter:


Philip Mundt




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-88) When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation

2014-07-09 Thread JIRA (on behalf of Philip Mundt)














































Philip Mundt
 updated  MGNLACTIVATION-88


When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation
















Change By:


Philip Mundt
(09/Jul/14 2:25 PM)




Description:


Upon activation the module will {{URLEncoder.encode(value, "UTF-8")}} all request parameters but doesn't decode them.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-88) When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation

2014-07-09 Thread JIRA (on behalf of Philip Mundt)














































Philip Mundt
 updated  MGNLACTIVATION-88


When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation
















Change By:


Philip Mundt
(09/Jul/14 2:26 PM)




Description:


Upon activation the module will {{URLEncoder.encode(value, "UTF-8")}} all request parameters but doesn't decode them.
Rather than expecting all request parameters to be readily decoded by {{UnicodeNormalizationRequestWrapper}} we should do the decoding in the module itself.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3052) CKEditor can be loaded before registering external plugins

2014-07-09 Thread on behalf of Mikaël Geljic














































Mikaël Geljic
 created  MGNLUI-3052


CKEditor can be loaded before registering external plugins















Issue Type:


Bug



Affects Versions:


5.3, 5.2



Assignee:


Mikaël Geljic



Components:


widgets



Created:


09/Jul/14 3:06 PM



Description:


CKEditor can be loaded before registering external plugins.

When this is the case, plugins are loaded from the default lookup path for CKEditor plugins, i.e. relative to ckeditor.js, while there is no such plugin there.

Hence this kind of warning in console


Jun 18, 2014 11:46:50 AM com.vaadin.server.VaadinServlet serveStaticResourcesInVAADIN
Information: Requested resource [/VAADIN/widgetsets/info.magnolia.ui.vaadin.gwt.MagnoliaWidgetSet/ckeditor/plugins/magnolialink/plugin.js] not found from filesystem or through class loader. Add widgetset and/or theme JAR to your classpath or add files to WebContent/VAADIN folder.


This typically does not happen at first load because by the time the CKEditor library is loaded, first updateFromUIDL has already completed, and populated the list of external plugins.

On subsequent occasions, it is not granted that external plugins are populated before loading the editor.




Fix Versions:


5.2.7, 5.3.1



Project:


Magnolia UI



Labels:


ckeditor




Priority:


Major




Reporter:


Mikaël Geljic



Security Level:


Public 




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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] (MGNLRSSAGG-181) Import settings Error when saving

2014-07-09 Thread JIRA (on behalf of Aleksandr Pchelintcev)














































Aleksandr Pchelintcev
 reopened  MGNLRSSAGG-181


Import settings Error when saving
















Change By:


Aleksandr Pchelintcev
(09/Jul/14 3:19 PM)




Resolution:


Fixed





Status:


In QA
Reopened



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-3052) CKEditor can be loaded before registering external plugins

2014-07-09 Thread on behalf of Mikaël Geljic














































Mikaël Geljic
 updated  MGNLUI-3052


CKEditor can be loaded before registering external plugins
















Change By:


Mikaël Geljic
(09/Jul/14 3:23 PM)




Labels:


ckeditor
 support



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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] (MGNLMAIL-60) Make mail module compatible with DAM 2.0

2014-07-09 Thread JIRA (on behalf of Eric Hechinger)














































Eric Hechinger
 created  MGNLMAIL-60


Make mail module compatible with DAM 2.0















Issue Type:


Bug



Affects Versions:


5.1.3



Assignee:


Eric Hechinger



Components:


Backend



Created:


09/Jul/14 3:29 PM



Description:


The current implementation of the mail module (5.1.3) used by Magnolia 5.3 is still depending of DAM 1.x. 
Update the code and dependencies in order to use DAM 2.0 provided by Magnolia 5.3




Fix Versions:


5.2



Project:


Magnolia Mail Module



Priority:


Critical




Reporter:


Eric Hechinger




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-88) When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation

2014-07-09 Thread JIRA (on behalf of Philip Mundt)














































Philip Mundt
 updated  MGNLACTIVATION-88


When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation
















Change By:


Philip Mundt
(09/Jul/14 3:37 PM)




Description:


Upon activation the module will {{URLEncoder.encode(value, "UTF-8")}} all request parameters but doesn't decode them.Rather than expecting all request parameters to be readily decoded by {{UnicodeNormalizationRequestWrapper}}
 (which was removed in MAGNOLIA-5717)
 we should do the decoding in the module itself.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-88) When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation

2014-07-09 Thread JIRA (on behalf of Philip Mundt)














































Philip Mundt
 updated  MGNLACTIVATION-88


When magnolia.utf8.enabled=true header parameters are not URL decoded anymore causing errors upon activation
















Change By:


Philip Mundt
(09/Jul/14 3:37 PM)




Priority:


Neutral
Critical



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-85) Reconfigure availability of de/activation and other actions

2014-07-09 Thread JIRA (on behalf of Daniel Lipp)














































Daniel Lipp
 reopened  MGNLGS-85


Reconfigure availability of de/activation and other actions
















Change By:


Daniel Lipp
(09/Jul/14 3:35 PM)




Resolution:


Fixed





Status:


In QA
Reopened



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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] (MGNLRSSAGG-177) Reconfigure availability of de/activation and other actions

2014-07-09 Thread JIRA (on behalf of Daniel Lipp)














































Daniel Lipp
 reopened  MGNLRSSAGG-177


Reconfigure availability of de/activation and other actions
















Change By:


Daniel Lipp
(09/Jul/14 3:41 PM)




Resolution:


Fixed





Status:


In QA
Reopened



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-88) Activation breaks when magnolia.utf8.enabled=true; header parameters are not URL decoded anymore

2014-07-09 Thread JIRA (on behalf of Philip Mundt)














































Philip Mundt
 updated  MGNLACTIVATION-88


Activation breaks when magnolia.utf8.enabled=true; header parameters are not URL decoded anymore
















Change By:


Philip Mundt
(09/Jul/14 3:38 PM)




Summary:


When
Activation breaks when
 magnolia.utf8.enabled=true
;
 header parameters are not URL decoded anymore
 causing errors upon activation



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-85) Reconfigure availability of de/activation and other actions

2014-07-09 Thread JIRA (on behalf of Daniel Lipp)














































Daniel Lipp
 updated  MGNLGS-85


Reconfigure availability of de/activation and other actions
















Change By:


Daniel Lipp
(09/Jul/14 3:37 PM)




Attachment:


Screen Shot 2014-07-09 at 15.12.50.jpg



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-261) Missing i18n key-value-pair for help text in edit thread dialog

2014-07-09 Thread JIRA (on behalf of Jaroslav Simak)














































Jaroslav Simak
 reopened  MGNLFORUM-261


Missing i18n key-value-pair for help text in edit thread dialog
















Change By:


Jaroslav Simak
(09/Jul/14 4:10 PM)




Resolution:


Fixed





Status:


Resolved
Reopened



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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] Re: why TemplateExporter can't Registered templates

2014-07-09 Thread Tobias Mattsson (via Magnolia Forums)
Would it be okay for you to zip the project and share it with me? Including the 
pom files. You don't need to include the xplan packages.

One thing that would cause this is if an older blossom jar is present in 
tomcat, possibly due to eclipse publishing issues. Versions prior to 3.0.2 
don't see handlers detected by RequestMappingHandlerMapping.

The logging you're seeing from BeanNameUrlHandlerMapping are expected, 
MainTemplate should be found by RequestMappingHandlerMapping.

// Tobias

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=f7b42663-0858-4430-b888-255a316c7fcb



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-3053) Reconfigure availability of de/activation actions

2014-07-09 Thread JIRA (on behalf of Peili Liang)














































Peili Liang
 updated  MGNLUI-3053


Reconfigure availability of de/activation actions
















Change By:


Peili Liang
(10/Jul/14 7:42 AM)




Component/s:


security app



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-59) Implementation improvements

2014-07-09 Thread JIRA (on behalf of Aleksandr Pchelintcev)














































Aleksandr Pchelintcev
 updated  MGNLGS-59


Implementation improvements 
















Change By:


Aleksandr Pchelintcev
(10/Jul/14 8:34 AM)




Description:


Improve site map code implementation.- Introduce a SiteMapNodeTypes class (same pattern as for NodeTypes)- Change the nodeType definition :-- Introduce mixIn for site map properties (Added to a page). Site map pages element should have a dedicated mixIn instead of 'dummy' property-- Add properties to the sitemap nodeType- Use a standard multivalue property to store the pages linked to a sitemap instead of a sub node with multiple properties.- Increase site map coverage.- Use
 a servlet instead a template+ftl to render xml.- Use
 pure
 vaadim
 Vaadin
 Item instead of JcrItems in the detail dialogs-- Use the siteMap bean in the detail dialog- Improve delete action-- Unregister site map-- Remove pages mixIn- Configure default values (change frequency and priority)-- default values have to be configured on siteMap level.http://wiki.magnolia-cms.com/display/DEV/Concept+Google+SiteMap+M5



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-90) Render Google Sitemaps via a dedicated servlet

2014-07-09 Thread JIRA (on behalf of Aleksandr Pchelintcev)














































Aleksandr Pchelintcev
 created  MGNLGS-90


Render Google Sitemaps via a dedicated servlet















Issue Type:


Task



Assignee:


Unassigned


Created:


10/Jul/14 8:37 AM



Description:


We should rather use a special servlet for rendering Google Sitemaps xml instead of template & ftl because all those are doing - just delegating the call to the service and delivering the string result.




Project:


Magnolia Google Sitemap Module



Priority:


Neutral




Reporter:


Aleksandr Pchelintcev




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-90) Render Google Sitemaps via a dedicated servlet

2014-07-09 Thread JIRA (on behalf of Eric Hechinger)














































Eric Hechinger
 updated  MGNLGS-90


Render Google Sitemaps via a dedicated servlet
















Change By:


Eric Hechinger
(10/Jul/14 8:41 AM)




Affects Version/s:


2.1





Affects Version/s:


2.0





Affects Version/s:


2.2



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-90) Render Google Sitemaps via a dedicated servlet

2014-07-09 Thread JIRA (on behalf of Aleksandr Pchelintcev)














































Aleksandr Pchelintcev
 updated  MGNLGS-90


Render Google Sitemaps via a dedicated servlet
















Change By:


Aleksandr Pchelintcev
(10/Jul/14 8:38 AM)




Fix Version/s:


2.2.x



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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-90) Render Google Sitemaps via a dedicated servlet

2014-07-09 Thread JIRA (on behalf of Aleksandr Pchelintcev)














































Aleksandr Pchelintcev
 updated  MGNLGS-90


Render Google Sitemaps via a dedicated servlet
















Change By:


Aleksandr Pchelintcev
(10/Jul/14 8:39 AM)




Labels:


sitemap



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira








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: