Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Ove_Lindström
Ove_Lindström
Offline

Badges

Badges
24

Accepted Solutions

Accepted Solutions
66

Likes Received

Likes Received
43

Posts

Posts
159

Discussions

Discussions
8

Questions

Questions
151

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Ove_Lindström
Customize the badges you want to showcase on your profile
Re: Accessing older versions of web-pages in Publish instance - Adobe Experience Manager 15-10-2015
Easiest in this case would actually be to create a rudimentary version handling system using the content system. What you can do is that you create a workflow that whenever a new version of a page is created, it also creates a subpage with the same content and numbering it according to some schedule like incrementaly increasing integer or timestamp. What you then should do is to have the node internally go for the "current" version when you access the page.As I see it, the requirement is not cor...

Views

803

Likes

0

Replies

0
Re: Import page in AEM - Adobe Experience Manager 15-10-2015
Hi,when you say "to the same location", have you unpacked the zip, edited, and then re-packed it? Some text editors automatically add .txt when you save so make sure that you have the correct suffix on your files.One thing I have notices is that it perfectly ok to unpack the files and edit it, but if you are on a Windows based system, you need to drop the __MACOSX folder before you repack the zip and I had to touch all the files so that they get "windowsified"./Ove

Views

1.0K

Likes

0

Replies

0
Re: Import page in AEM - Adobe Experience Manager 15-10-2015
What that error tells you is quite clear. The file index.html or index.htm needs to be in the root of the zip file. It can't be named anything else and it can't be in a substructure.What does your zip look like?/Ove

Views

998

Likes

0

Replies

0
Re: Which one is best to query the jcr ? Is SQL or JCRSQL2 or JQOM ? - Adobe Experience Manager 15-10-2015
SQL is the one that most developers knows and is most likely to get correct. But, some things are not doable.JCR-SQL2 has a lot of power an the ability to do whatever you want in the JCR tree.JQOM is just a Java representation of the JCR-SQL2 and eventually boils down to a SQL2 query. I actually like this one, since I don't have mess around with a lot or String concatenation.Just my $0.02. /Ove

Views

943

Likes

0

Replies

0
Re: Best Approach to get all the pages and their metadata, page properties information into a DB - Adobe Experience Manager 15-10-2015
Is this for analysis tool like Coremetrix?The best approach, IMHO, would be to create a workflow that is triggerd on modify (create, update and delete) of a node, check if the change is on a node of the type Page and then write it to the database according to specification. Of course, you need to have a second workflow or service that sends all the pages to the workflow initially as a workflow payload.The question I instantly have to ask is "what is a page"? Is "A page node in AEM" or is it "A U...

Views

795

Likes

0

Replies

0
Re: Change Quickstart Name in CQ5.5 - Adobe Experience Manager 15-10-2015
What we do is that we have a tag that we quard with the WCM and check if the runmode is a test environment.This tag displays information about the bundles we have deployed on the site, what runmodes that are enabled on the site, if it is an author or publish. All the build information is generated and inserted in the bundles. Then you will see it on the pages and not in the quickstart toggler. Even if the server is started as a service.If I get any spare time, I will add this feature to the ACS ...

Views

795

Likes

0

Replies

0
Re: How journal observation works and where the log got persist ? - Adobe Experience Manager 15-10-2015
Jörg Hoh wrote... Why do you want to process the journal data? There is no API to access this data from outside of Jackrabbit/CRX, it's an implementation detail. Jörg I ask the same question as Jörg. Why do you want to analyze the journal? Data masturbation?Ove

Views

836

Likes

0

Replies

0
Re: retrieve random images from JCR - Adobe Experience Manager 15-10-2015
Hi,no, the JCR query language does not have any randomizer, but the result set is a collection and you can always use the Java Collections.shuffle(List).A better solution, if you are going to collect from a named path, is to use the http://dev.day.com/docs/en/cq/current/javadoc/org/apache/sling/api/resource/ResourceWrapper.html#getChildren%28%29./Ove

Views

1.0K

Likes

0

Replies

0
Re: How to save the host in the link during url mapping? - Adobe Experience Manager 15-10-2015
You should, as much as possible, use relative linking and relative resolving. It should not matter if it is on admin.mysite.com, acc-admin.mysite.com or www.mysite.com or acc-www.mysite.com. Everyone should resolve to the same node. So IMHO, you are doing it the right way. /Ove

Views

748

Likes

0

Replies

0
Re: Inline editing of page tags - Adobe Experience Manager 15-10-2015
Hi Scott,no, I am just trying to make the life easier for my authors. We have ended up in creating two components instead of one and inlineing the dialogue that holds the tags so that when you double click on the "tag defining" component, it replaces the text that represents it. So instead of my "card" having the properties of both tags and values, we split it so that the card now consists of card-tag and card-value components./O

Views

1.2K

Likes

0

Replies

0