vivo-basic wasn't rendering property. Now It is fixed.

This commit is contained in:
mb863 2010-11-18 18:50:52 +00:00
parent c64483785c
commit d4c96c6ba9
5 changed files with 9 additions and 26 deletions

View file

@ -38,6 +38,8 @@ public class FreemarkerComponentGenerator extends FreemarkerHttpServlet {
request.setAttribute("ftl_identity", get("identity", root, config, vreq)); request.setAttribute("ftl_identity", get("identity", root, config, vreq));
request.setAttribute("ftl_menu", get("menu", root, config, vreq)); request.setAttribute("ftl_menu", get("menu", root, config, vreq));
request.setAttribute("ftl_stylesheets", get("stylesheets", root, config, vreq));
request.setAttribute("ftl_headScripts", get("headScripts", root, config, vreq));
request.setAttribute("ftl_search", get("search", root, config, vreq)); request.setAttribute("ftl_search", get("search", root, config, vreq));
request.setAttribute("ftl_footer", get("footer", root, config, vreq)); request.setAttribute("ftl_footer", get("footer", root, config, vreq));
request.setAttribute("ftl_googleAnalytics", get("googleAnalytics", root, config, vreq)); request.setAttribute("ftl_googleAnalytics", get("googleAnalytics", root, config, vreq));

View file

@ -148,20 +148,4 @@ p.passwordNote {
.or { .or {
display:inline; display:inline;
vertical-align:middle; vertical-align:middle;
} }
/* WILMA THEME ------> */
#error-alert{
width:260px;
position:relative;
}
#error-alert img{
padding-left:38px;
}
#error-alert p.error-message{
position:absolute;
width:200px;
top:8px;
left:82px;
font-size:0.7em;
color:#b30d1c;
}

View file

@ -2,4 +2,7 @@
<#-- Template for scripts that must be loaded in the head --> <#-- Template for scripts that must be loaded in the head -->
<!-- script for enabling new HTML5 semantic markup in IE browsers-->
<script type="text/javascript" src="${urls.base}/js/html5.js"></script>
${headScripts.tags} ${headScripts.tags}

View file

@ -1,10 +1,6 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ --> <#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template for loading stylesheets in the head --> <#-- Template for loading stylesheets in the head -->
${stylesheets.add("/css/edit.css")} <#-- temporary until edit controller can include this when needed --> ${stylesheets.add("/css/edit.css")} <#-- temporary until edit controller can include this when needed -->
${stylesheets.add("/css/menupage/menupage.css")} <#-- we need to call it from the theme until freemarker controller and menupage.ftl are created --> ${stylesheets.add("/css/menupage/menupage.css")} <#-- we need to call it from the theme until freemarker controller and menupage.ftl are created -->
${stylesheets.add("/css/individual/individual.css")} <#-- we need to call it from the theme until freemarker controller and individual.ftl are created --> ${stylesheets.add("/css/individual/individual.css")} <#-- we need to call it from the theme until freemarker controller and individual.ftl are created -->
${stylesheets.tags} ${stylesheets.tags}

View file

@ -31,10 +31,8 @@
</#if> </#if>
<#if errorMessage??> <#if errorMessage??>
<section id="error-alert" role='region'> <section id="errorAlert"><img src="${urls.siteIcons}/iconAlert.png" alert="Error alert icon"/>
<img src="${urls.siteIcons}/iconAlert.png" alert="Error alert icon" /> <p>${errorMessage}</p>
<p class="error-message">${errorMessage}</p>
</section> </section>
</#if> </#if>
@ -54,7 +52,7 @@
</form> </form>
<p class="forgot-password"><a href="#">Forgot your password?</a></p> <p class="forgot-password"><a href="#">Forgot your password?</a></p>
<p class="request-account"><a class=" blue button" href="#">Request an account</a> </p> <p class="request-account"><a class="blue button" href="#">Request an account</a> </p>
</section> </section>
</section><!-- #log-in --> </section><!-- #log-in -->
</#macro> </#macro>