[magnolia-dev] Re: The future of the forum module

2014-03-24 Thread Christoph Meier (via Magnolia Forums)
Hi Chris Version 3 of the forum was introduced with Magnolia 5; version 3.3 now allows to really use the forum together with Magnolia 5. Version 3 cannot be used with Magnolia 4.5, amongst others its admin-UI is a „typical“ M5 app which will never run on M4.5. If you want to run a forum with

[magnolia-dev] Re: Magnolia Development Roadmap

2014-10-28 Thread Christoph Meier (via Magnolia Forums)
Hello It depends a little bit on what you want to do with Magnolia. Magnolia Academy might be a good starting poinf for you. See http://academy.magnolia-cms.com/ and http://academy.magnolia-cms.com/display/MA/My+role+is . To set up your development environment it is advantageous to know the

[magnolia-dev] Re: Getting and parsing JSON from server.

2014-12-11 Thread Christoph Meier (via Magnolia Forums)
Hello Magnolia's REST Web service allows you to manipulate content through a Web API. Have a look at [url=http://documentation.magnolia-cms.com/display/DOCS/REST+module and ]Rest Module[/url] and [url=http://documentation.magnolia-cms.com/display/DOCS/REST+API]REST API[/url]. i hope that

[magnolia-dev] Re: Getting and parsing JSON from server.

2014-12-11 Thread Christoph Meier (via Magnolia Forums)
sorry, the 1st link is broken (why ever), here it is again: http://documentation.magnolia-cms.com/display/DOCS/REST+module -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=85380c31-cbc8-4b5e-8d9c-11c485f20a69

[magnolia-dev] Re: Help in creating new app in Magnolia

2015-06-09 Thread Christoph Meier (via Magnolia Forums)
Hi I'm glad to hear that your subapp works now :-) Concerning the tutorials you have used ... to be honest, i don't know them very well. When it comes to AppController and location change management ... ... have a look at: —

[magnolia-dev] Re: Help in creating new app in Magnolia

2015-06-08 Thread Christoph Meier (via Magnolia Forums)
Hi Please have a also a look at https://documentation.magnolia-cms.com/display/DOCS/Subapp+descriptor It explains the details about how to configure a subapp. If this won't help ... ask again :-) ... and tell us on what specific point your subapp fails probably providing an error message or a

[magnolia-dev] Re: Help in creating new app in Magnolia

2015-06-08 Thread Christoph Meier (via Magnolia Forums)
Hi (again) :-) The java.lang.ClassNotFoundException indicates your missing a dependency on your project. info.magnolia.dam.app.ui.field.definition.DamUploadFieldDefinition belongs to DAM ... ... so ... make sure your project / bundle includes the artifact for magnolia dam-app dependency

[magnolia-dev] Re: Help in creating new app in Magnolia

2015-06-08 Thread Christoph Meier (via Magnolia Forums)
MgnlInstantiationException can have several reasons ... hard to just guess. Make sure you have an IoC configuration for the class HelloWorldMainSubApp somewhere (see https://goo.gl/ln4CJY). Also ensure that all (probably injected) params have public constructors ... and if these constructors

[magnolia-dev] Re: How to import sample data into JCR

2015-06-24 Thread Christoph Meier (via Magnolia Forums)
Hello Nguyen Long The XML import function is intented to import content (as XML) which once has been exported before from the app. You could create manually your XML to import ... but this would be cumbersome and very error-prone. First try out adding new product(s) by using the action Add

[magnolia-dev] Re: Help in creating new app in Magnolia

2015-06-12 Thread Christoph Meier (via Magnolia Forums)
Hello I'd like to recommend you reading some of the following topics: — https://documentation.magnolia-cms.com/display/DOCS/Parts+of+a+content+app — https://documentation.magnolia-cms.com/display/DOCS/My+first+content+app ... there especially Content views — prbly.

[magnolia-dev] Re: How to create Action link for Pages

2015-05-27 Thread Christoph Meier (via Magnolia Forums)
Hi Basically you have to implement 2 classes (an action and an action definition) and then you have to configure your subapp to enable the action / to get a link on the action bar. — action definition should implement info.magnolia.ui.api.action.ActionDefinition — action should implement

[magnolia-dev] Re: How to render a MultiValueField

2015-08-11 Thread Christoph Meier (via Magnolia Forums)
Sergio Once again: The key to figure out how to access content is to know the structure of the saved content. To figure out the structure of the saved content, please use the app named JCR browser and search the content node which stores the multi value field. = see

[magnolia-dev] Re: How to render a MultiValueField

2015-08-11 Thread Christoph Meier (via Magnolia Forums)
Add on for Sergio: Note that Magnolia provides different field transformer classes which lead to different content structure (when saving the field). Have a look at https://documentation.magnolia-cms.com/display/DOCS/Transforming+field+values cheers, chm -- Context is everything:

[magnolia-dev] Re: How to render a MultiValueField

2015-08-10 Thread Christoph Meier (via Magnolia Forums)
Hi Sergio I recommend using the JCR-Browser (https://your-host/your-context/.magnolia/admincentral#app:websiteJcrBrowser:;) to have a look at the content which stores the value(s) of this multifield. Usually when you understand how the content is stored, you also know how to fetch it.

[magnolia-dev] Re: Unable to find FTL files in a custom module

2015-07-27 Thread Christoph Meier (via Magnolia Forums)
Dear Atul Please do not post the same question on 2 different threads. That makes it hard to follow the discussion. Please go ahead there: = https://forum.magnolia-cms.com/forum/thread.html?threadId=02fb09cc-adf0-4d7f-8570-f98dd6a843c6page=1 -- Context is everything:

[magnolia-dev] Re: How to render fields from multi value containing a composite field

2015-07-27 Thread Christoph Meier (via Magnolia Forums)
Hi It usually helps to know the content structure and how it was saved to JCR. Use JCR app to browse JCR content of the workspace website. = https://your-host/context/.magnolia/admincentral#app:websiteJcrBrowser:; And then it works as usual :-) Within a template script you have a content node

[magnolia-dev] Re: How to repicant the total dialog form as a container and replicant the container

2015-07-22 Thread Christoph Meier (via Magnolia Forums)
Hi Your yaml file was valid :-). However, i think you won't get with it what you are looking for. Also repeating the tab with these 3 fields is not the solution for what you want - i if i understood you right. I recommend you reading more about dialogs, about the different kind of fields we

[magnolia-dev] Re: how footer designed in magnolia

2015-07-24 Thread Christoph Meier (via Magnolia Forums)
Hi The code of the new demo travel is public. Clone it from git = http://git.magnolia-cms.com/gitweb/?p=modules/demo-projects.git;a=summary and add it to your favorite IDE. To analyze the code to figure out how the footer was done is a good exercise for a beginner :-) -- Context is

[magnolia-dev] Re: how footer designed in magnolia

2015-07-24 Thread Christoph Meier (via Magnolia Forums)
Learn to read area definition. Use our documentation. https://documentation.magnolia-cms.com/display/DOCS/ Have a look at https://documentation.magnolia-cms.com/display/DOCS/Area+definition#Areadefinition-Areaproperties etc. -- Context is everything:

[magnolia-dev] Re: Multivalue containing a composite field not working

2015-07-23 Thread Christoph Meier (via Magnolia Forums)
By the way ... ... when using the [img]https://forum.magnolia-cms.com/.resources/forum/bbeditor/icons/page_white_code.png[/img] you can add YAML code in a way that it shows the indentation which makes it much more easier to read. example: [code] actions: cancel: class:

[magnolia-dev] Re: Multivalue containing a composite field not working

2015-07-23 Thread Christoph Meier (via Magnolia Forums)
The post above was just about nicely displaying YAML files. Now to your problem. [code] actions: cancel: class: info.magnolia.ui.admincentral.dialog.action.CancelDialogActionDefinition commit: class: info.magnolia.ui.admincentral.dialog.action.SaveDialogActionDefinition form:

[magnolia-dev] Re: Creation of Menu Header

2015-07-13 Thread Christoph Meier (via Magnolia Forums)
Dear Duddu Asrith Try to write down your questions as precise as possible. This makes it easier to respond. I'm not 100% sure what you are trying to achieve. -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=ca290423-0136-45e0-95db-697948deacb4

[magnolia-dev] Re: How to create a tab component in Magnolia 5.4

2015-07-13 Thread Christoph Meier (via Magnolia Forums)
Hello What exactly do you want to do? Is it about configuring a tab within a dialog? If yes, please have a look at https://documentation.magnolia-cms.com/display/DOCS/Dialog+definition and subpages and probably https://documentation.magnolia-cms.com/display/DOCS/Hello+Magnolia also helps you.

[magnolia-dev] Re: Help in creating new public instance

2015-07-13 Thread Christoph Meier (via Magnolia Forums)
Hi nguyenlong7888 What exactly have you downloaded from Maven. A complete bundle? Which version. Do you start tomcat from an IDE (e.g. Eclispe or IntelliJ), or do you start it from console? Are you sure that you have 2 instances (author and public) deployed within your container / app-server?

[magnolia-dev] Re: how to create layout in magnolia5.4

2015-07-14 Thread Christoph Meier (via Magnolia Forums)
Hello bhargav Do you want to know where to implement the layout of a page template? This hasn't changed with new Magnolia version. However, since Magnolia 5.4 we recommend using MTE instead of STK if you start a new project. See https://documentation.magnolia-cms.com/display/DOCS/MTE+and+STK

[magnolia-dev] Re: How to create multiple areas in magnolia 5.4

2015-07-14 Thread Christoph Meier (via Magnolia Forums)
Hello Have a look at https://documentation.magnolia-cms.com/display/DOCS/Area+definition If you are new to Magnolia, i recommend to start with https://documentation.magnolia-cms.com/display/DOCS/Hello+Magnolia Feel free to go ahead asking more question, but try to ask as specific as

[magnolia-dev] Re: How to create a tab component in Magnolia 5.4

2015-07-20 Thread Christoph Meier (via Magnolia Forums)
= Ok. Discussion goes on there: https://forum.magnolia-cms.com/forum/thread.html?threadId=38fa276b-3fcb-4179-86eb-77b59ffd0539 :-) -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=49d69c38-914e-4b30-90a4-484a7e45a618

[magnolia-dev] Re: How to repicant the total dialog form

2015-07-20 Thread Christoph Meier (via Magnolia Forums)
Hi I kindly ask you to write more precisely what exactly you want to do. You want to duplicate a dialog? If you want to use / reference the same dialog from several places, no problem. But to replicate it exactly probably doesn't really make sense. -- Context is everything:

[magnolia-dev] Re: How to repicant the total dialog form as a container and replicant the container

2015-07-20 Thread Christoph Meier (via Magnolia Forums)
Hi I still do not understand why you want to have the same tab definition twice within the same dialog. However ... ... this would be a very nice example of defining and re-using a variable within YAML or we could use the include mechanism. Please provide me your dialog definition YAML file -

[magnolia-dev] Re: Developing Menu Header

2015-07-13 Thread Christoph Meier (via Magnolia Forums)
Hello Please try to avoid to open 2 threads for the same topic. :-) Thanks. Which Magnolia version are you working with? 5.4 or 5.3? If you work with 5.3, have a look at https://documentation.magnolia-cms.com/display/DOCS53/Navigation We hope to provide documentation about creating navigations

[magnolia-dev] Re: Developing Menu Header

2015-07-13 Thread Christoph Meier (via Magnolia Forums)
Test ... -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=0dce148a-1b3b-48f0-bc2f-a279531243d7 For list details, see: http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use

[magnolia-dev] Re: How to repicant the total dialog form

2015-07-21 Thread Christoph Meier (via Magnolia Forums)
Dear forum user Please avoid asking the same question twice. It makes it harder to follow the discussion. Thanks for your comprehension. regards, Christoph -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=b62ded49-38d6-4d36-b129-4d20f7801268

[magnolia-dev] Re: How to repicant the total dialog form as a container and replicant the container

2015-07-21 Thread Christoph Meier (via Magnolia Forums)
Dear asrith It would really make sense if you could paste a complete and valid YAML file with one complete tab. With such a file i could show you how to reuse a field, or a complete tab or something else within the same dialog (or even reusing a YAML snippet from many other YAML files). It

[magnolia-dev] Re: Status of move to Stash?

2015-10-26 Thread Christoph Meier (via Magnolia Forums)
Hi Edgar f.y.i. The git repos have been moved; we are using bitbucket now. See https://git.magnolia-cms.com More details will be announced soon. -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=efab369b-f956-4cb5-a5c9-b1b852540b3d

[magnolia-dev] Re: Unknown templete in public instance

2015-11-13 Thread Christoph Meier (via Magnolia Forums)
So ... it seems you have published "content" (nodes form the JCR workspace "website") but you miss the templates to render the content on the public instance. Make sure that your templates are available on the public instance as well. How have you done your templates. With YAML files or as JCR

[magnolia-dev] Re: Bugfixes in Imaging-Moule 2.2.6

2015-09-03 Thread Christoph Meier (via Magnolia Forums)
Hi Benjamin 4.5.25 is the latest version on 4.5.x branch. It uses imaging 2.6, true. If you encounter bugs in imaging 2.6, please let us know. It is also possible that "your bug" (?) was already gathered in JIRA (https://jira.magnolia-cms.com/browse/MGNLIMG). 4.5 branch is still supported and

[magnolia-dev] Re: Status of move to Stash?

2015-09-09 Thread Christoph Meier (via Magnolia Forums)
Hi Edgar The process of moving to stash is ongoing - looks promising. Unfortunately we can not give you a precise time schedule at the moment. Bu we will definitely announce it once the "move" is completed. cheers, Christoph -- Context is everything:

[magnolia-dev] Re: Build tutorial project failed due to not able to fetch magnolia-setproperty-maven-plugin

2015-12-17 Thread Christoph Meier (via Magnolia Forums)
And before trying anything else: Make sure your maven is setup correctly! See https://documentation.magnolia-cms.com/display/DEV/Maven+setup -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=499a6b13-c968-48cd-a610-6df6e3da7831

[magnolia-dev] Re: Any plans on upgrading to Freemarker 2.3.23?

2015-12-18 Thread Christoph Meier (via Magnolia Forums)
Hi Simon We agree that freemarker 2.3.23 contains a bunch of interesting improvements and it is planned to integrate it into Magnolia. See - https://jira.magnolia-cms.com/browse/SUPPORT-5181 - https://jira.magnolia-cms.com/browse/MAGNOLIA-6373 There is a certain chance that it will be part of

[magnolia-dev] Re: Download PDF from content app

2015-12-16 Thread Christoph Meier (via Magnolia Forums)
Hi Miguel Generally, [i][b]i[/b][/i] usually prefer storing "assets" in DAM over storing them in another workspace (e.g. website). DAM makes it easier to reuse the asset for different purposes. A DAM asset also provides already a bunch of fields ... which you may not need them all, but since

[magnolia-dev] Re: Light Module App/SubApp template

2016-06-15 Thread Christoph Meier (via Magnolia Forums)
You are adressing a bunch of topics :-) Which documentation have you read but were confusing you? Here are some links which i would propose to have a look at: (1) This one contains an example about accessing content from a content app via angular from the client side:

[magnolia-dev] Re: Light Module App/SubApp template

2016-06-21 Thread Christoph Meier (via Magnolia Forums)
Dear Mikael [quote] The easiest way to describe what I want to do is How do I make a AppLauncher for the Hello Magnolia light module example without any Java? https://documentation.magnolia-cms.com/display/DOCS/Hello+Magnolia [/quote] (1) You want to make an App Launcher ... or i guess you want

[magnolia-dev] Re: Forum doesn't work properly - please use the mailing lists meanwhile

2016-02-01 Thread Christoph Meier (via Magnolia Forums)
Hi There The forum is back. It works again. :-) Once again we apologize for this inconvenience! We are aware that the Magnolia community forum is not really what you expect from a present-day forum. We are evaluating a better solution and hope to come with a more suitable solution in the

[magnolia-dev] Re: Multiple availableComponents in area

2016-02-26 Thread Christoph Meier (via Magnolia Forums)
Hi Vitaliy [i]availableComponents[/i] of your example gets converted into a (Java) map by Map2BeanConverter - so [i]availableComponents[/i] must be already a proper YAML "map" too. btw.: There is no need to repeat the renderType on the area definition if it is the same as on top / on the page

[magnolia-dev] Re: How to stop uploading infected/virus images in magnolia cms?

2016-04-04 Thread Christoph Meier (via Magnolia Forums)
This is a duplicate. Please see https://forum.magnolia-cms.com/forum/thread.html?threadId=7dc06050-600d-4b3a-9d86-6060b2c7b847=1 -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=9cf5d1c8-2436-48b7-ba55-bb449fa6601d

[magnolia-dev] Re: Protecting public Site via authentication and Authorization

2016-03-29 Thread Christoph Meier (via Magnolia Forums)
Hello Shanaka Please have a look at https://documentation.magnolia-cms.com/display/DOCS/Public+User+Registration+module The public user registration module is actually thought to do these kind of things which you are looking for. kind regards, Christoph -- Context is everything:

[magnolia-dev] Re: Protecting public Site via authentication and Authorization

2016-03-29 Thread Christoph Meier (via Magnolia Forums)
add-on: https://documentation.magnolia-cms.com/display/DOCS/Public+User+Registration+module will not give you a complete tutorial about how to create and use content restricted to a specific group of users. However - you will need the above mentioned module and it is worth to understand it.

[magnolia-dev] Re: EE - Magnolia CMS workflow is possible for resources-app

2016-04-19 Thread Christoph Meier (via Magnolia Forums)
This should be possible - yes. However, you need to customize some things. See https://documentation.magnolia-cms.com/display/DOCS/Enabling+workflow+in+content+apps -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=c9eb5939-b2a9-4a9a-99d7-4e737032b06b

[magnolia-dev] Re: How to prevent Main Sub App to be always opened

2016-04-19 Thread Christoph Meier (via Magnolia Forums)
Hi Jennylyn What "kind" of app do you have? A content app which is build by configuration only? If my assumption is true: Create a custom class which extends info.magnolia.ui.contentapp.ContentApp In your class, override the method public void start(Location location) (and other thins if

[magnolia-dev] Re: content search not works at component level

2016-07-07 Thread Christoph Meier (via Magnolia Forums)
Hello Please provide more details about: - What exactly you want to achieve / to search. - How you have tried to do it so far. -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=d98b83c0-7e7a-41f5-9f15-e51e35dde76c

[magnolia-dev] Re: Autodeployment

2016-08-22 Thread Christoph Meier (via Magnolia Forums)
Hi Daniel As far as i know whether you can do (or not) WAR hot deployment first depends on your Servlet container, not all servlet containers have this ability. Besides that, re-deploying Magnolia Maven modules "usually" requires a Magnolia instance restart. However, here it depends on what

[magnolia-dev] Re: Autodeployment

2016-08-24 Thread Christoph Meier (via Magnolia Forums)
Dan You address a typical Java webapp "issue" - this actually is not specific for Magnolia. The WAR file (Web application ARchive) *is* your webapp. If you redeploy the WAR file, the webapp is "down" for a certain time. Since a Magnolia instance is a webapplication - e.g. deployed as WAR file

[magnolia-dev] Re: Autodeployment

2016-08-23 Thread Christoph Meier (via Magnolia Forums)
Hi Daniel Once again: What do you want to achieve with the update? What has changed in the modules which you want to redeploy? And: Which servlet container / app-server are you suing? Tomcat? JBoss? WebLogic? Websphere? ... -- Context is everything:

[magnolia-dev] Re: Deep Link to asset

2016-10-27 Thread Christoph Meier (via Magnolia Forums)
Hi Philipp I think it would be (much) easier to use DAM app and store the PDF as an asset. I just have seen the post from Tom. I'm really curious whether it works :-) This would have been my answer before i have seen Toms solution: When it comes to images, it is kind of easy to have them on

[magnolia-dev] Re: fileupload into magnolia-tmp-dir

2016-10-18 Thread Christoph Meier (via Magnolia Forums)
Thanks a lot Benjamin for providing the infos. We will investigate the issue. -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=0c7666f1-0a4b-439b-8efb-dbe287fecd0d For list details, see:

[magnolia-dev] Re: inserting data into database

2016-10-25 Thread Christoph Meier (via Magnolia Forums)
Hi Vishnu In the context of Magnolia, why would you want to add data "directly" into the DB? Oracle can be the persistence layer of jackrabbit, which is the JCR implementation used by Magnolia. So ... if you add content to the JCR repo, this will add some data to the oracle DB "under the

[magnolia-dev] Re: fileupload into magnolia-tmp-dir

2016-10-17 Thread Christoph Meier (via Magnolia Forums)
Hello Benjamin Which version of Magnolia are you using? -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=0c7666f1-0a4b-439b-8efb-dbe287fecd0d For list details, see:

[magnolia-dev] Re: Angular 2

2016-12-05 Thread Christoph Meier (via Magnolia Forums)
Typically, on the one hand you use magnolia as a JSON "provider" (with REST endpoint(s), with jsonfn or prbly. even with pure freemarker) and on the other hand use angular (or something similar) e.g. to render data. The code for the latter you also can add to a template or to a file loaded by

[magnolia-dev] Re: Using Inheritance for TWO Templates

2017-05-08 Thread Christoph Meier (via Magnolia Forums)
Hello Giancarlo What is a "TWO template"? Note that you also can use a prototype with the community edition (CE). On CE you have only one site - but on this site, you can define a prototype. Depending on the bundle or webapp you are using, the site on a CE bundle maybe optimized for travel

[magnolia-dev] Re: magnolia cms run from only one browser

2017-06-12 Thread Christoph Meier (via Magnolia Forums)
>> I want clients to access my website from only machine at a time << On the public context or on the author context? Per default the session-ID is bound to a cookie. (default Java webapp session handling). If you want / need to access more than one session from the same machine, you can must

[magnolia-dev] Re: magnolia cms run from only one browser

2017-06-12 Thread Christoph Meier (via Magnolia Forums)
Unfortunately you cannot edit your question. But you can repeat it in a new posting. -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=c8a6b965-0931-49b3-b132-9b65387b2560 For list details, see:

[magnolia-dev] Re: magnolia cms run from only one browser

2017-06-12 Thread Christoph Meier (via Magnolia Forums)
Hello nirjon To be honest, i do not really understand your question. The website never will be run by a browser. You can ACCESS the website WITH the browser. But it is run by a server. So ... what was your question? -- Context is everything: