This document is useful for customizing akc inner master page. I will document later all the details. For now this is just a reference.

satya - Wed Dec 19 2012 15:31:03 GMT-0500 (Eastern Standard Time)

Here is the file content


<html>
<head>
<style>

table#content-table-id
{
border-collapse:collapse;
border-spacing:0;
height:100%;
width:100%;
}

#main-content-td-id
{
height:100%;
}
.main-content-title
{
margin-top:0;
font-style:italic;
}

#main-content-body-div-id
{
}

/*
background:#F5DEB3;
background:pink;
*/
td#pagemenu-td-id
{
width:150px;
}

div.pagemenu-div
{
font-size:10;
width:150px;
text-align:right;
border-left:1px dotted blue;
height:100%;
}

div.pagemenu-div div
{
text-align:right;
}

div.loggedin-box
{
        text-decoration:underline;
}
div.loggedin-box p
{
}

div.pagemenu1
{
margin-right:2px;
align:right;
}
div.pagemenu1 p.header
{
        color:black;
        font-weight:bold;
        margin-top:1.25em;
}

div.pagemenu1 p
{
        color:orange;
        font-size:10;
        margin-top:0;
        margin-bottom:0.25em;
}
div#datamenu-div-id form
{
margin-right:1em;
margin-top:0;
}

div.pagemenu1 select
{
margin-right:0;
text-align:right;
}

div.pagemenu1 p a:hover
{
background-color:green;
color:orange;
}

/*
**************************
* support for widgets
**************************
*/
.akc_expand
{
    display:none;
}
.akc_orangeBorder
{
    border:orange solid 2px;
}
</style>

{{doc-title}}

<script type="text/javascript" src="/akc/js/jquery.js">
</script>
<script type="text/javascript" src="/akc/js/json2.js">
</script>
<script type="text/javascript" src="/akc/js/jsrender.js">
</script>
<script type="text/javascript" src="/akc/js/akc-xmltojson.js">
</script>
<script type="text/javascript" src="/akc/js/akc-widget.js">
</script>

{{doc-head}}
{{aspire_masterpage_header}}
</head>
<!--
**************************************************************
* End Head: Begin Body
**************************************************************
-->
<body onload="executeConditionalOnLoad()">
{{aspire_masterpage_tophalf}}

<!--
**************************************************************
* Begin Inner Master Page
**************************************************************
-->
<table id="content-table-id">
<tr>

<!--
**************************************************************
* Content : main-content-td-id
**************************************************************
-->
<td id="main-content-td-id" valign="top">
<h2 class="main-content-title">{{doc-display-title}}</h2>
<div id="main-content-body-div-id">
{{doc-content}}
</div>
</td>

<!--
**************************************************************
* Right Gutter: pagemenu-td-id, rightGutterDivId
* A table with three rows
*   annotationDivId
*   loggedinStatusDivId
*   documentMenuDivId
*   globalMenuDivId
*   datamenu-div-id
**************************************************************
-->
<td id="pagemenu-td-id" valign="top" width="150px">

<div id="rightGutterDivId" class="pagemenu-div">

<!-- begin  of pagemenu_table_id -->
<table id="pagemenu_table_id">
<tr><td>
<div id="annotationDivId" style="margin:5px">
{{aspire_annotation}}
</div>
</td></tr>

<tr><td>
<div id="loggedinStatusDivId">
{{substitute(loggedInStatus)}}
</div>
</td></tr>

<tr><td>
<div id="documentMenuDivId">
{{doc-menu}}
</div>
</td></tr>

<tr><td>
<div id="globalMenuDivId">
{{substitute(globalMenu)}}
</div>
</td></tr>

<tr><td>
<div id="datamenu-div-id">
{{substitute(dataMenu)}}
</div>
</td></tr>

</table>
<!-- end of pagemenu_table_id -->
</div>
</td>

</tr>
</table>
<!--
**************************************************************
* End Inner Master Page
**************************************************************
-->
{{aspire_masterpage_bottomhalf}}
<div id="AKCURLDetailsDivID" style="display:none">
    <urlname>{{url}}</urlname>
    <ownerUserId>{{ownerUserId}}</ownerUserId>
    <downerUserId>{{downerUserId}}</downerUserId>
    <loggedInStatus>{{profile_aspire_loggedin_status}}</loggedInStatus>
    <loggedInUserId>{{profile_user}}</loggedInUserId>
</div>
</body>
</html>

satya - Wed Dec 19 2012 15:46:51 GMT-0500 (Eastern Standard Time)

Here is the simpler inner print master page


<html>
<head>
<!--default inner print master page -->
{{doc-title}}
{{doc-head}}
{{aspire_masterpage_header}}
</head>
<body>
{{aspire_masterpage_tophalf}}

<div class="print-titlediv">
<h2>{{doc-display-title}}</h2>
{{original-url}}
</div>
{{doc-content}}

{{aspire_masterpage_bottomhalf}}
</body>
</html>

satya - Wed Dec 19 2012 15:48:10 GMT-0500 (Eastern Standard Time)

The database document names for each of the files


inner_master_page
inner_print_master_page