Questions tagged [hippocms]

Bloomreach Experience Manager (formerly known as Hippo CMS) is a Java-based, Open Source CMS. It's targeted at medium to large organizations managing large sets of content for multi-channel distribution.

Bloomreach Experience Manager (formerly known as Hippo CMS) is a Java-based open source web content management platform. It uses modern web architectures, open standards and open source components throughout. In all layers of the architecture, open and extensible APIs are available for integrating Bloomreach into your existing application architecture. It's targeted at medium to large organizations managing large sets of content for multi-channel distribution.

Architecture

The Bloomreach architecture is highly modular. This modular and clean architecture has several technical benefits such as ease of integration and great scalability, and also functional benefits such as content reuse. In the next sections, details are provided on each module in the Bloomreach stack. We highlight the three modules listed in the diagram below; Content Repository, CMS and Delivery Tier (also known as HST).

High Level Component Overview:

  • Delivery tier ("HST")

    The Hippo Site Toolkit is Bloomreach's default Java-based presentation framework, providing caching and page diagnostics. As a developer, you have a choice between JSP or Freemarker templates, alternatively, one can use any delivery platform and hook up to Bloomreach's REST APIs.

  • Authoring application ("Bloomreach Experience Manager")

    The CMS is a web application, essentially providing the user interface through which the content management and administrative functionality can be used. It's based on Apache Wicket and ExtJS.

  • Content repository ("Bloomreach Repository")

    The core of Bloomreach Experience Manager is the Repository. All content, metadata and configuration is stored in this central component. The base of the Repository is Apache JackRabbit, the reference implementation of JSR-170 and JSR-283 (Java Content Repository). All content and CMS functionality are exposed through a standard set of API interfaces.

More info can be found on Bloomreach's two websites:

Corporate - bloomreach.com

Developer - developers.bloomreach.com

168 questions
0
votes
1 answer

How to add RichText editor to a page as component in HippoCMS?

I'm creating some project using HippoCMS 10 and I need to add RichText editor as part of the page, so that customer can use it and fill something there. This editor must act exactly the same way as in Document Editor (customer can click Image button…
Nur4I
  • 183
  • 4
  • 19
0
votes
1 answer

Showing logged in user as the author in Hippo CMS

I have configured Hippo CMS and I am using content (simpleDocument i guess) to show content on my site. I want to get the logged in user as the content author and show it in the website with the content. Currently I am using content blocks and added…
Keshan
  • 14,251
  • 10
  • 48
  • 72
0
votes
1 answer

configure virtual hosts in hippo cms

I am new in Hippo cms, need your help! I create my hippo project and started using Cargo, URL is: http://localhost:8080/site/. All works good. But me need access to this site from another IP, I am using virtual hosts and this is not works. Please…
Orion
  • 59
  • 2
  • 10
0
votes
1 answer

Hippo CMS resets the mapped domain configuration data after rebuild

I have installed an instance of Hippo CMS (version 7) and I already mapped a domain to a website. I also have an external repository for Hippo. The problem is, Hippo will reset all of my domain mapping data if I clean the project by maven. Any…
0
votes
1 answer

Incremental Update for HIPPO CMS

I am using Hippos CMS 7.9.3 community addition.I am using eclipse as an IDE.Currently we create template on DEV environment and move all repository to test environment , But this will vanish the existing content in Testing environment.Do we have any…
Niraj Dave
  • 117
  • 2
  • 10
0
votes
1 answer

HippoCMS Rest service does not return image links

I'm a new bee to Hippo CMS. I'm working on version 10 and I'm using angularJS service to consume the rest url for "banners" I created through HippoCms. This is my Rest URL for Banners created via Hippo's Rest Api…
Nomesh DeSilva
  • 1,649
  • 4
  • 25
  • 43
0
votes
1 answer

Concurrent sessions per user in HIPPO CMS

I am new to Hippo CMS. I am using Hippos CMS 7.9.3 community addition.I am using eclipse as an IDE. We are currently using the default Editor,Author and Admin User.My issue is when the same user name and password being used by two different systems…
Niraj Dave
  • 117
  • 2
  • 10
0
votes
1 answer

How to add custom request preprocessing to hippo?

It is need to add custom request preprocessing logic to hippo application. If we look at java ee - there is a filter which can be used to grab information from request. Does hippo offers something similar? Or is it possible to register custom java…
Cherry
  • 31,309
  • 66
  • 224
  • 364
0
votes
1 answer

Html form encoding on hippo cms not working with utf-8

I am using freemarker as the templating engine for hippo cms. I pretty much followed http://www.onehippo.org/library/concepts/web-application/enabling-freemarker-template-support.html Unfortunately all forms are having encoding problems. On How to…
cloudnaut
  • 982
  • 3
  • 13
  • 35
0
votes
1 answer

Hippo CMS 10, interface HstSiteMapItemHandler

In Hippo CMS 10, there is a interface called HstSiteMapItemHandler two methods are now not using any more in Hippo 10. public interface HstSiteMapItemHandler { void init(ServletContext var1, SiteMapItemHandlerConfiguration var2) throws…
user3360123
  • 99
  • 10
0
votes
2 answers

HippoCMS Spring managed components no logging

I manage my Components via the SpringBridgeHstComponent. If a Bean can not be initialized I don't see any errors in the log or console. Only the SpringBridgeHstComponent throws an Exception that the delegated bean couldn t be found. Component…
cloudnaut
  • 982
  • 3
  • 13
  • 35
0
votes
2 answers

Hippo CMS Deployment to tomcat (Blank page shown in Browser, page source available in curl)

I pretty much followed the instructions on http://www.onehippo.org/library/enterprise/installation-and-configuration/linux-installation-manual.html for configuring a hippo cms instance on tomcat8. I got it up and running without any ERRORs in the…
cloudnaut
  • 982
  • 3
  • 13
  • 35
0
votes
1 answer

HippoCMS translated documents with shared fields

I am evaluating HippoCMS and am trying to model a schema of Venues. I want to model a document that has non-translatable features such as telephoneNumber and emailAddress, plus translatable features such as description. How do I model this in…
Rich
  • 15,602
  • 15
  • 79
  • 126
0
votes
2 answers

How to generate back link for document lists in Hippo CMS?

I have created a news list page in Hippo CMS. The news documents are listed properly, paginated (10 articles per page), with a detail page where the full news document is displayed. I'd like to put a "back" link to the bottom of the detail page…
fono
  • 135
  • 1
  • 8
0
votes
1 answer

How to fill out Dynamic Dropdown in Hippo CMS with dynamic values?

I have document type which contains "Dynamic Dropdown" field, and I want to fill it with some dynamic data. I couldn't figure out how to do it (couldn't find any adequate information, documentation, example about this). From links that I found I was…