forked from extern/egroupware
Delete old files
This commit is contained in:
parent
9858417a99
commit
18995cf6a8
@ -1,33 +0,0 @@
|
||||
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
||||
<!-- <tr>
|
||||
<td align="left">
|
||||
<a href="http://www.eGroupWare.org" target="_new"><img src="{phpgw_logo}" border="0" alt="eGroupWare"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">{phpgw_version}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">{phpgw_message}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="3"><img src="phpgwapi/templates/default/images/spacer.gif" alt="spacer" height="3" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><div class="greyLine"></div></td>
|
||||
</tr>
|
||||
-->
|
||||
<tr>
|
||||
<td height="3"><img src="phpgwapi/templates/default/images/spacer.gif" alt="spacer" height="3" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">
|
||||
|
||||
{phpgw_app_about}
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
@ -1,9 +0,0 @@
|
||||
<style type="text/css">
|
||||
<!--
|
||||
.row_on { color: {row_text}; background-color: {row_on}; }
|
||||
.row_off { color: {row_text}; background-color: {row_off}; }
|
||||
.th { color: {th_text}; background-color: {th_bg}; }
|
||||
{app_css}
|
||||
-->
|
||||
</style>
|
||||
{css_file}
|
@ -1,400 +0,0 @@
|
||||
/*
|
||||
StyleSheet coding standards:
|
||||
|
||||
1. use lowercase if possible
|
||||
|
||||
2. format styles like this:
|
||||
|
||||
body
|
||||
{
|
||||
font-size: 12px;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif
|
||||
}
|
||||
|
||||
3. existing html elements on top of the document, then all self defined .classes and at last all self defined #id's.
|
||||
|
||||
4. close every property with ; also the last one.
|
||||
*/
|
||||
|
||||
body
|
||||
{
|
||||
background-image:url(../images/body-background.png);
|
||||
font-size: 11px;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
padding:3px;
|
||||
}
|
||||
|
||||
img
|
||||
{
|
||||
border-width:0px;
|
||||
border-style:none;
|
||||
/*filter:progid:DXImageTransform.Microsoft.AlphaImageLoader;
|
||||
*/
|
||||
}
|
||||
|
||||
a:link,a:visited
|
||||
{
|
||||
cursor:pointer;
|
||||
color: #006699;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*
|
||||
a:visited
|
||||
{
|
||||
color: #006699;
|
||||
text-decoration: none;
|
||||
}
|
||||
*/
|
||||
a:hover,a:active
|
||||
{
|
||||
cursor:pointer;
|
||||
color: #ff9933;
|
||||
text-decoration: underline;
|
||||
}
|
||||
/*
|
||||
a:active
|
||||
{
|
||||
color: #006699;
|
||||
text-decoration: underline;
|
||||
}
|
||||
*/
|
||||
input,button
|
||||
{
|
||||
font-size: 11px;
|
||||
color: #006699;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
border: 1px #bbbbbb solid;
|
||||
}
|
||||
|
||||
input[type=submit],input[type=button],button
|
||||
{
|
||||
margin:1px;
|
||||
padding:1px;
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
input[type=image]
|
||||
{
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
border: 0px #bbbbbb none;
|
||||
}
|
||||
select
|
||||
{
|
||||
font-size: 11px;
|
||||
color: #006699;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
border: 1px #bbbbbb solid;
|
||||
}
|
||||
|
||||
td
|
||||
{
|
||||
|
||||
/* global tags should never be defined here [ndee]*/
|
||||
font-size: 11px;
|
||||
/* removed text-align:left; [ndee]*/
|
||||
/* padding-top:1px;
|
||||
padding-bottom:1px;*/
|
||||
}
|
||||
|
||||
.divLoginbox
|
||||
{
|
||||
position:relative;
|
||||
width: 300px;
|
||||
border-right: #9c9c9c 1px solid;
|
||||
border-top: #9c9c9c 1px solid;
|
||||
border-left: #9c9c9c 1px solid;
|
||||
border-bottom: #9c9c9c 1px solid
|
||||
}
|
||||
|
||||
.divLoginboxHeader
|
||||
{
|
||||
text-align:center;
|
||||
background-color:#dddddd;
|
||||
padding-top:2px;
|
||||
font-size:10px;
|
||||
color:#666666;
|
||||
}
|
||||
.divSidebox
|
||||
{
|
||||
position:relative;
|
||||
width: 147px;
|
||||
border-right: #9c9c9c 1px solid;
|
||||
border-top: #9c9c9c 1px solid;
|
||||
border-left: #9c9c9c 1px solid;
|
||||
border-bottom: #9c9c9c 1px solid
|
||||
}
|
||||
|
||||
.divSideboxHeader
|
||||
{
|
||||
text-align:center;
|
||||
background-color:#dddddd;
|
||||
padding-top:2px;
|
||||
font-size:10px;
|
||||
color:#666666;
|
||||
}
|
||||
|
||||
a.divSideboxEntry, .divSideboxEntry
|
||||
{
|
||||
text-align:left;
|
||||
height:16px;
|
||||
background-color:#eeeeee;
|
||||
}
|
||||
|
||||
a.appTitles,.appTitles
|
||||
{
|
||||
font-size: 10px;
|
||||
height:18px;
|
||||
padding-top:2px;
|
||||
padding-bottom:2px;
|
||||
}
|
||||
|
||||
a.textSidebox
|
||||
{
|
||||
font-size: 10px;
|
||||
border-top: #aaaaaa 0px none;
|
||||
}
|
||||
|
||||
.textSidebox
|
||||
{
|
||||
font-size: 10px;
|
||||
height:18px;
|
||||
padding-top:2px;
|
||||
padding-bottom:2px;
|
||||
border-top: #aaaaaa 1px solid;
|
||||
|
||||
}
|
||||
|
||||
.sideboxSpace
|
||||
{
|
||||
height:9px;
|
||||
}
|
||||
|
||||
.greyLine
|
||||
{
|
||||
margin:1px;
|
||||
border-top-color:#7e7e7e;
|
||||
border-top-width:1px;
|
||||
border-top-style:solid;
|
||||
height:1px;
|
||||
}
|
||||
|
||||
.prefSection
|
||||
{
|
||||
font-weight:bold;
|
||||
font-size:16px;
|
||||
line-height:40px;
|
||||
}
|
||||
|
||||
#extraIcons
|
||||
{
|
||||
/* position:absolute;
|
||||
z-index:13;
|
||||
right:10px;
|
||||
top:113px;
|
||||
visibility:hidden;*/
|
||||
/* background-image:url(../images/alpha-white.png);*/
|
||||
background-color:#eeeeee;
|
||||
border-width:1px;
|
||||
border-color:#7e7e7e;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
.extraIconsRow
|
||||
{
|
||||
border-top-color:#dddddd;
|
||||
border-top-width:1px;
|
||||
border-top-style:solid;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
#divMain
|
||||
{
|
||||
background-color:white;
|
||||
margin-top: 5px;
|
||||
padding:9px;
|
||||
border-color:#7e7e7e;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
#divLogo
|
||||
{
|
||||
position:absolute;
|
||||
left:20px;
|
||||
top:5px;
|
||||
z-index:51;
|
||||
}
|
||||
|
||||
#divAppIconBar
|
||||
{
|
||||
background-color:white;
|
||||
border-top-color:#9c9c9c;
|
||||
border-top-width:1px;
|
||||
border-top-style:solid;
|
||||
background-image: url(../images/background-icon-bar.png);
|
||||
background-repeat: repeat-x
|
||||
}
|
||||
|
||||
#divAppTextBar
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
#divStatusBar
|
||||
{
|
||||
background-color:white;
|
||||
height:15px;
|
||||
padding-left:10px;
|
||||
margin-top: 13px;
|
||||
/* margin-bottom: 2px;*/
|
||||
}
|
||||
|
||||
/*#divSubContainer
|
||||
{
|
||||
}
|
||||
*/
|
||||
#tdSidebox
|
||||
{
|
||||
width:170px;
|
||||
background-color:white;
|
||||
overflow:visible;
|
||||
}
|
||||
|
||||
|
||||
#tdAppbox
|
||||
{
|
||||
background-color:white;
|
||||
padding-left:5px;
|
||||
width: 100%;
|
||||
}
|
||||
#divSideboxContainer
|
||||
{
|
||||
position:relative;
|
||||
width:150px;
|
||||
top:0px;
|
||||
left:0px;
|
||||
background-color:white;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
z-index:40;
|
||||
}
|
||||
|
||||
#divAppboxHeader
|
||||
{
|
||||
/*width:100%;*/
|
||||
background-image:url(../images/appbox-header-background.png);
|
||||
background-repeat: repeat-x;
|
||||
height:36px;
|
||||
line-height:28px;
|
||||
text-align:center;
|
||||
/* padding-top:7px;*/
|
||||
padding-bottom:0px;
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
color:#666666;
|
||||
border-top-color:#9c9c9c;
|
||||
border-top-width:1px;
|
||||
border-top-style:solid;
|
||||
border-left-color:#9c9c9c;
|
||||
border-left-width:1px;
|
||||
border-left-style:solid;
|
||||
border-right-color:#9c9c9c;
|
||||
border-right-width:1px;
|
||||
border-right-style:solid;
|
||||
}
|
||||
|
||||
#divAppbox
|
||||
{
|
||||
/* width:100%;*/
|
||||
background-color:#f7f7f7;
|
||||
padding:5px;
|
||||
border-bottom-color:#9c9c9c;
|
||||
border-bottom-width:1px;
|
||||
border-bottom-style:solid;
|
||||
border-left-color:#9c9c9c;
|
||||
border-left-width:1px;
|
||||
border-left-style:solid;
|
||||
border-right-color:#9c9c9c;
|
||||
border-right-width:1px;
|
||||
border-right-style:solid;
|
||||
}
|
||||
|
||||
#fmStatusBar
|
||||
{
|
||||
margin-left:4px;
|
||||
margin-bottom:3px;
|
||||
font-size: 10px;
|
||||
/* font-family: Verdana, Arial, Helvetica, sans-serif;*/
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
.fmButton
|
||||
{
|
||||
background-image:url(../images/buttonbackground.png);
|
||||
width:28px;
|
||||
height:28px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#fmLocation
|
||||
{
|
||||
position:relative;
|
||||
/*background-image:url(../images/buttonbackgroundscaled.png);
|
||||
background-repeat: repeat-x;*/
|
||||
/*margin-left:4px;*/
|
||||
margin-bottom:3px;
|
||||
height:27px;
|
||||
|
||||
}
|
||||
|
||||
#fmMenu
|
||||
{
|
||||
position:relative;
|
||||
}
|
||||
#fmFileWindow
|
||||
{
|
||||
background-color:#ffffff;
|
||||
margin-left:4px;
|
||||
padding:5px;
|
||||
position:relative;
|
||||
border-right: #cccccc 1px solid;
|
||||
border-top: #9c9c9c 2px solid;
|
||||
border-left: #9c9c9c 2px solid;
|
||||
border-bottom: #cccccc 1px solid
|
||||
}
|
||||
|
||||
#user_info
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
#admin_info
|
||||
{
|
||||
position:relative;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#divGenTime
|
||||
{
|
||||
bottom:14px;
|
||||
font-size: 9px;
|
||||
color: #ff0000;
|
||||
text-align:center;
|
||||
width:99%;
|
||||
}
|
||||
|
||||
#divPoweredBy
|
||||
{
|
||||
bottom:14px;
|
||||
font-size: 9px;
|
||||
color: #000000;
|
||||
text-align:center;
|
||||
width:99%;
|
||||
}
|
||||
|
@ -1,390 +0,0 @@
|
||||
/*
|
||||
StyleSheet coding standards:
|
||||
|
||||
1. use lowercase if possible
|
||||
|
||||
2. format styles like this:
|
||||
|
||||
body
|
||||
{
|
||||
font-size: 12px;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif
|
||||
}
|
||||
|
||||
3. existing html elements on top of the document, then all self defined .classes and at last all self defined #id's.
|
||||
|
||||
4. close every property with ; also the last one.
|
||||
*/
|
||||
|
||||
body
|
||||
{
|
||||
background-image:url(../images/body-background.png);
|
||||
font-size: 11px;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
padding:14px;
|
||||
}
|
||||
|
||||
img
|
||||
{
|
||||
border-width:0px;
|
||||
border-style:none;
|
||||
/*filter:progid:DXImageTransform.Microsoft.AlphaImageLoader;
|
||||
*/
|
||||
}
|
||||
|
||||
a:link,a:visited
|
||||
{
|
||||
cursor:pointer;
|
||||
color: #006699;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*
|
||||
a:visited
|
||||
{
|
||||
color: #006699;
|
||||
text-decoration: none;
|
||||
}
|
||||
*/
|
||||
a:hover,a:active
|
||||
{
|
||||
cursor:pointer;
|
||||
color: #ff9933;
|
||||
text-decoration: underline;
|
||||
}
|
||||
/*
|
||||
a:active
|
||||
{
|
||||
color: #006699;
|
||||
text-decoration: underline;
|
||||
}
|
||||
*/
|
||||
input,button
|
||||
{
|
||||
font-size: 11px;
|
||||
color: #006699;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
border: 1px #bbbbbb solid;
|
||||
}
|
||||
|
||||
input[type=submit],input[type=button],button
|
||||
{
|
||||
margin:1px;
|
||||
padding:1px;
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
input[type=image]
|
||||
{
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
border: 0px #bbbbbb none;
|
||||
}
|
||||
select
|
||||
{
|
||||
font-size: 11px;
|
||||
color: #006699;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
border: 1px #bbbbbb solid;
|
||||
}
|
||||
|
||||
td
|
||||
{
|
||||
font-size: 11px;
|
||||
/* padding-top:1px;
|
||||
padding-bottom:1px;*/
|
||||
}
|
||||
|
||||
.divLoginbox
|
||||
{
|
||||
position:relative;
|
||||
width: 300px;
|
||||
border-right: #9c9c9c 1px solid;
|
||||
border-top: #9c9c9c 1px solid;
|
||||
border-left: #9c9c9c 1px solid;
|
||||
border-bottom: #9c9c9c 1px solid
|
||||
}
|
||||
|
||||
.divLoginboxHeader
|
||||
{
|
||||
text-align:center;
|
||||
background-color:#dddddd;
|
||||
padding-top:2px;
|
||||
font-size:10px;
|
||||
color:#666666;
|
||||
}
|
||||
.divSidebox
|
||||
{
|
||||
position:relative;
|
||||
width: 147px;
|
||||
border-right: #9c9c9c 1px solid;
|
||||
border-top: #9c9c9c 1px solid;
|
||||
border-left: #9c9c9c 1px solid;
|
||||
border-bottom: #9c9c9c 1px solid
|
||||
}
|
||||
|
||||
.divSideboxHeader
|
||||
{
|
||||
text-align:center;
|
||||
background-color:#dddddd;
|
||||
padding-top:2px;
|
||||
font-size:10px;
|
||||
color:#666666;
|
||||
}
|
||||
|
||||
a.divSideboxEntry, .divSideboxEntry
|
||||
{
|
||||
text-align:left;
|
||||
height:16px;
|
||||
background-color:#eeeeee;
|
||||
}
|
||||
|
||||
a.appTitles,.appTitles
|
||||
{
|
||||
font-size: 10px;
|
||||
height:18px;
|
||||
padding-top:2px;
|
||||
padding-bottom:2px;
|
||||
}
|
||||
|
||||
a.textSidebox
|
||||
{
|
||||
font-size: 10px;
|
||||
border-top: #aaaaaa 0px none;
|
||||
}
|
||||
|
||||
.textSidebox
|
||||
{
|
||||
font-size: 10px;
|
||||
height:18px;
|
||||
padding-top:2px;
|
||||
padding-bottom:2px;
|
||||
border-top: #aaaaaa 1px solid;
|
||||
|
||||
}
|
||||
|
||||
.sideboxSpace
|
||||
{
|
||||
height:9px;
|
||||
}
|
||||
|
||||
.greyLine
|
||||
{
|
||||
margin:1px;
|
||||
border-top-color:#7e7e7e;
|
||||
border-top-width:1px;
|
||||
border-top-style:solid;
|
||||
height:1px;
|
||||
}
|
||||
|
||||
.prefSection
|
||||
{
|
||||
font-weight:bold;
|
||||
font-size:16px;
|
||||
line-height:40px;
|
||||
}
|
||||
|
||||
#extraIcons
|
||||
{
|
||||
/* position:absolute;
|
||||
z-index:13;
|
||||
right:10px;
|
||||
top:113px;
|
||||
visibility:hidden;*/
|
||||
background-image:url(../images/alpha-white.png);
|
||||
border-width:1px;
|
||||
border-color:#7e7e7e;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#divMain
|
||||
{
|
||||
background-color:white;
|
||||
margin-top: 5px;
|
||||
padding:9px;
|
||||
border-color:#7e7e7e;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
}
|
||||
|
||||
#divLogo
|
||||
{
|
||||
position:absolute;
|
||||
left:20px;
|
||||
top:14px;
|
||||
z-index:51;
|
||||
}
|
||||
|
||||
#divAppIconBar
|
||||
{
|
||||
background-color:white;
|
||||
border-top-color:#9c9c9c;
|
||||
border-top-width:1px;
|
||||
border-top-style:solid;
|
||||
background-image: url(../images/background-icon-bar.png);
|
||||
background-repeat: repeat-x
|
||||
}
|
||||
|
||||
#divAppTextBar
|
||||
{
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
#divStatusBar
|
||||
{
|
||||
background-color:white;
|
||||
height:15px;
|
||||
padding-left:170px;
|
||||
margin-top: 13px;
|
||||
/* margin-bottom: 2px;*/
|
||||
}
|
||||
|
||||
/*#divSubContainer
|
||||
{
|
||||
}
|
||||
*/
|
||||
#tdSidebox
|
||||
{
|
||||
width:170px;
|
||||
background-color:white;
|
||||
overflow:visible;
|
||||
}
|
||||
|
||||
|
||||
#tdAppbox
|
||||
{
|
||||
background-color:white;
|
||||
padding-left:5px;
|
||||
width: 100%;
|
||||
}
|
||||
#divSideboxContainer
|
||||
{
|
||||
position:relative;
|
||||
width:150px;
|
||||
top:0px;
|
||||
left:0px;
|
||||
background-color:white;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
z-index:40;
|
||||
}
|
||||
|
||||
#divAppboxHeader
|
||||
{
|
||||
/*width:100%;*/
|
||||
background-image:url(../images/appbox-header-background.png);
|
||||
background-repeat: repeat-x;
|
||||
height:36px;
|
||||
line-height:28px;
|
||||
text-align:center;
|
||||
/* padding-top:7px;*/
|
||||
padding-bottom:0px;
|
||||
font-size:14px;
|
||||
font-weight:bold;
|
||||
color:#666666;
|
||||
border-top-color:#9c9c9c;
|
||||
border-top-width:1px;
|
||||
border-top-style:solid;
|
||||
border-left-color:#9c9c9c;
|
||||
border-left-width:1px;
|
||||
border-left-style:solid;
|
||||
border-right-color:#9c9c9c;
|
||||
border-right-width:1px;
|
||||
border-right-style:solid;
|
||||
}
|
||||
|
||||
#divAppbox
|
||||
{
|
||||
/* width:100%;*/
|
||||
background-color:#f7f7f7;
|
||||
padding:5px;
|
||||
border-bottom-color:#9c9c9c;
|
||||
border-bottom-width:1px;
|
||||
border-bottom-style:solid;
|
||||
border-left-color:#9c9c9c;
|
||||
border-left-width:1px;
|
||||
border-left-style:solid;
|
||||
border-right-color:#9c9c9c;
|
||||
border-right-width:1px;
|
||||
border-right-style:solid;
|
||||
}
|
||||
|
||||
#fmStatusBar
|
||||
{
|
||||
margin-left:4px;
|
||||
margin-bottom:3px;
|
||||
font-size: 10px;
|
||||
/* font-family: Verdana, Arial, Helvetica, sans-serif;*/
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
.fmButton
|
||||
{
|
||||
background-image:url(../images/buttonbackground.png);
|
||||
width:28px;
|
||||
height:28px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#fmLocation
|
||||
{
|
||||
position:relative;
|
||||
/*background-image:url(../images/buttonbackgroundscaled.png);
|
||||
background-repeat: repeat-x;*/
|
||||
/*margin-left:4px;*/
|
||||
margin-bottom:3px;
|
||||
height:27px;
|
||||
|
||||
}
|
||||
|
||||
#fmMenu
|
||||
{
|
||||
position:relative;
|
||||
}
|
||||
#fmFileWindow
|
||||
{
|
||||
background-color:#ffffff;
|
||||
margin-left:4px;
|
||||
padding:5px;
|
||||
position:relative;
|
||||
border-right: #cccccc 1px solid;
|
||||
border-top: #9c9c9c 2px solid;
|
||||
border-left: #9c9c9c 2px solid;
|
||||
border-bottom: #cccccc 1px solid
|
||||
}
|
||||
|
||||
#user_info
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
#admin_info
|
||||
{
|
||||
position:relative;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#divGenTime
|
||||
{
|
||||
bottom:14px;
|
||||
font-size: 9px;
|
||||
color: #ff0000;
|
||||
text-align:center;
|
||||
width:99%;
|
||||
}
|
||||
|
||||
#divPoweredBy
|
||||
{
|
||||
bottom:14px;
|
||||
font-size: 9px;
|
||||
color: #000000;
|
||||
text-align:center;
|
||||
width:99%;
|
||||
}
|
||||
|
@ -1,13 +0,0 @@
|
||||
</td></tr></table>
|
||||
</div>
|
||||
<!-- Applicationbox Column -->
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{page_generation_time}
|
||||
<div id="divPoweredBy"><br/><span>{powered_by}</span></div>
|
||||
</body>
|
||||
</html>
|
||||
<!-- END footer.tpl -->
|
@ -1,97 +0,0 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['show_generation_time'])
|
||||
{
|
||||
$mtime = microtime();
|
||||
$mtime = explode(' ',$mtime);
|
||||
$mtime = $mtime[1] + $mtime[0];
|
||||
$GLOBALS['page_start_time'] = $mtime;
|
||||
}
|
||||
|
||||
// get used language code
|
||||
$lang_code = $GLOBALS['phpgw_info']['user']['preferences']['common']['lang'];
|
||||
|
||||
$bodyheader = ' bgcolor="' . $GLOBALS['phpgw_info']['theme']['bg_color'] . '" alink="'
|
||||
. $GLOBALS['phpgw_info']['theme']['alink'] . '" link="' . $GLOBALS['phpgw_info']['theme']['link'] . '" vlink="'
|
||||
. $GLOBALS['phpgw_info']['theme']['vlink'] . '"';
|
||||
|
||||
if(!$GLOBALS['phpgw_info']['server']['htmlcompliant'])
|
||||
{
|
||||
$bodyheader .= '';
|
||||
}
|
||||
|
||||
#_debug_array($GLOBALS['phpgw_info']['user']['preferences']['common']);
|
||||
$theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css';
|
||||
if(!file_exists($theme_css))
|
||||
{
|
||||
$theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css';
|
||||
}
|
||||
|
||||
//pngfix defaults to yes
|
||||
if(!$GLOBALS['phpgw_info']['user']['preferences']['common']['disable_pngfix'])
|
||||
{
|
||||
$pngfix_src = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/js/pngfix.js';
|
||||
$pngfix ='<!-- This solves the Internet Explorer PNG-transparency bug, but only for IE 5.5 and higher -->
|
||||
<!--[if gte IE 5.5000]>
|
||||
<script src="'.$pngfix_src.'" type="text/javascript">
|
||||
</script>
|
||||
<![endif]-->';
|
||||
}
|
||||
|
||||
if(!$GLOBALS['phpgw_info']['user']['preferences']['common']['disable_slider_effects'])
|
||||
{
|
||||
$slider_effects_src = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/js/slidereffects.js';
|
||||
$slider_effects = '<script src="'.$slider_effects_src.'" type="text/javascript">
|
||||
</script>';
|
||||
}
|
||||
else
|
||||
{
|
||||
$simple_show_hide_src = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/js/simple_show_hide.js';
|
||||
$simple_show_hide = '<script src="'.$simple_show_hide_src.'" type="text/javascript">
|
||||
</script>';
|
||||
}
|
||||
|
||||
$tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
|
||||
$tpl->set_unknowns('remove');
|
||||
$tpl->set_file(array('_head' => 'head.tpl'));
|
||||
$tpl->set_block('_head','head');
|
||||
|
||||
if ($GLOBALS['phpgw_info']['flags']['app_header'])
|
||||
{
|
||||
$app = $GLOBALS['phpgw_info']['flags']['app_header'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$app = $GLOBALS['phpgw_info']['flags']['currentapp'];
|
||||
$app = isset($GLOBALS['phpgw_info']['apps'][$app]) ? $GLOBALS['phpgw_info']['apps'][$app]['title'] : lang($app);
|
||||
}
|
||||
$var = Array(
|
||||
'img_icon' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'img_shortcut' => PHPGW_IMAGES_DIR . '/favicon.ico',
|
||||
'pngfix' => $pngfix,
|
||||
'slider_effects'=> $slider_effects,
|
||||
'simple_show_hide'=> $simple_show_hide,
|
||||
'lang_code'=> $lang_code,
|
||||
'charset' => $GLOBALS['phpgw']->translation->charset(),
|
||||
'font_family' => $GLOBALS['phpgw_info']['theme']['font'],
|
||||
'website_title' => $GLOBALS['phpgw_info']['server']['site_title'] . ($app ? " [$app]" : ''),
|
||||
'body_tags' => $bodyheader .' '. $GLOBALS['phpgw']->common->get_body_attribs(),
|
||||
'theme_css' => $theme_css,
|
||||
'css' => $GLOBALS['phpgw']->common->get_css(),
|
||||
'java_script' => $GLOBALS['phpgw']->common->get_java_script(),
|
||||
);
|
||||
$tpl->set_var($var);
|
||||
$tpl->pfp('out','head');
|
||||
unset($tpl);
|
||||
?>
|
@ -1,25 +0,0 @@
|
||||
<!-- BEGIN head --><?xml version="1.0" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "XHTML1-f.dtd" >
|
||||
<html xmlns="http://www.w3.org/TR/1999/REC-html-in-xml" xml:lang="{lang_code}" lang="{lang_code}" >
|
||||
<head>
|
||||
<title>{website_title}</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset={charset}" />
|
||||
<meta name="keywords" content="eGroupWare" />
|
||||
<meta name="description" content="eGroupware" />
|
||||
<meta name="keywords" content="eGroupWare" />
|
||||
<meta name="copyright" content="eGroupWare http://www.egroupware.org (c) 2003" />
|
||||
<meta name="language" content="{lang_code}" />
|
||||
<meta name="author" content="eGroupWare http://www.egroupware.org" />
|
||||
<meta name="robots" content="none" />
|
||||
<link rel="icon" href="{img_icon}" type="image/x-ico" />
|
||||
<link rel="shortcut icon" href="{img_shortcut}" />
|
||||
<link href="{theme_css}" type="text/css" rel="StyleSheet" />
|
||||
{slider_effects}
|
||||
{simple_show_hide}
|
||||
{pngfix}
|
||||
{css}
|
||||
{java_script}
|
||||
</head>
|
||||
<!-- we don't need body tags anymore, do we?) we do!!! onload!! LK -->
|
||||
<body {body_tags}>
|
||||
<!-- END head -->
|
@ -1,67 +0,0 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* eGroupWare - Preferences *
|
||||
* http://www.eGroupWare.org *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
create_section('Preferences for the idots template set');
|
||||
|
||||
$start_and_logout_icons = array(
|
||||
'yes' => lang('yes'),
|
||||
'no' => lang('no')
|
||||
);
|
||||
|
||||
create_select_box(
|
||||
'Show home and logout button in main application bar?',
|
||||
'start_and_logout_icons',
|
||||
$start_and_logout_icons,
|
||||
'When you say yes the home and logout buttons are presented as applications in the main top applcation bar.'
|
||||
);
|
||||
|
||||
create_input_box(
|
||||
'Max number of icons in navbar',
|
||||
'max_icons',
|
||||
'How many icons should be shown in the navbar (top of the page). Additional icons go into a kind of pulldown menu, callable by the icon on the far right side of the navbar.','',3
|
||||
);
|
||||
|
||||
create_check_box(
|
||||
'Autohide Sidebox menu\'s',
|
||||
'auto_hide_sidebox',
|
||||
'Automatically hide the Sidebox menu\'s?'
|
||||
);
|
||||
|
||||
$click_or_onmouseover = array(
|
||||
'click' => lang('Click'),
|
||||
'onmouseover' => lang('On Mouse Over')
|
||||
);
|
||||
|
||||
create_select_box(
|
||||
'Click or Mouse Over to show menus',
|
||||
'click_or_onmouseover',
|
||||
$click_or_onmouseover,
|
||||
'Click or Mouse Over to show menus?'
|
||||
);
|
||||
|
||||
create_check_box(
|
||||
'Disable slider effects',
|
||||
'disable_slider_effects',
|
||||
'Disable the animated slider effects when showing or hiding menus in the page? Opera and Konqueror users will probably must want this.'
|
||||
);
|
||||
|
||||
create_check_box(
|
||||
'Disable Internet Explorer png-image-bugfix',
|
||||
'disable_pngfix',
|
||||
'Disable the execution a bugfixscript for Internet Explorer 5.5 and higher to show transparency in PNG-images?'
|
||||
);
|
||||
|
||||
create_check_box(
|
||||
'Show page generation time',
|
||||
'show_generation_time',
|
||||
'Show page generation time on the bottom of the page?'
|
||||
);
|
@ -1,33 +0,0 @@
|
||||
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 or higher.
|
||||
{
|
||||
for(var i=0; i<document.images.length; i++)
|
||||
{
|
||||
var img = document.images[i]
|
||||
var imgName = img.src.toUpperCase()
|
||||
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
|
||||
{
|
||||
var imgID = (img.id) ? "id='" + img.id + "' " : ""
|
||||
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
|
||||
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
|
||||
var imgStyle = "display:inline-block;" + img.style.cssText
|
||||
var imgAttribs = img.attributes;
|
||||
for (var j=0; j<imgAttribs.length; j++)
|
||||
{
|
||||
var imgAttrib = imgAttribs[j];
|
||||
if (imgAttrib.nodeName == "align")
|
||||
{
|
||||
if (imgAttrib.nodeValue == "left") imgStyle = "float:left;" + imgStyle
|
||||
if (imgAttrib.nodeValue == "right") imgStyle = "float:right;" + imgStyle
|
||||
break
|
||||
}
|
||||
}
|
||||
var strNewHTML = "<span " + imgID + imgClass + imgTitle
|
||||
strNewHTML += " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
|
||||
strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
|
||||
strNewHTML += "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"
|
||||
img.outerHTML = strNewHTML
|
||||
i = i-1
|
||||
}
|
||||
}
|
||||
}
|
||||
window.attachEvent("onload", correctPNG);
|
@ -1,183 +0,0 @@
|
||||
/*****************************************************
|
||||
* ypSlideOutMenu
|
||||
* 3/04/2001
|
||||
*
|
||||
* a nice little script to create exclusive, slide-out
|
||||
* menus for ns4, ns6, mozilla, opera, ie4, ie5 on
|
||||
* mac and win32. I've got no linux or unix to test on but
|
||||
* it should(?) work...
|
||||
*
|
||||
* --youngpup--
|
||||
*****************************************************/
|
||||
|
||||
//var isIE = false;
|
||||
//var isOther = false;
|
||||
//var isNS4 = false;
|
||||
//var isNS6 = false;
|
||||
// constructor
|
||||
function ypSlideOutMenu(id, dir, left, top, width, height,pos)
|
||||
{
|
||||
|
||||
this.ie = document.all ? 1 : 0
|
||||
this.ns4 = document.layers ? 1 : 0
|
||||
this.dom = document.getElementById ? 1 : 0
|
||||
|
||||
if (this.ie || this.ns4 || this.dom) {
|
||||
this.id = id
|
||||
this.dir = dir
|
||||
this.orientation = dir == "left" || dir == "right" ? "h" : "v"
|
||||
this.dirType = dir == "right" || dir == "down" ? "-" : "+"
|
||||
this.dim = this.orientation == "h" ? width : height
|
||||
//this.hideTimer = false
|
||||
//this.aniTimer = false
|
||||
this.open = false
|
||||
this.over = false
|
||||
//this.startTime = 0
|
||||
|
||||
// global reference to this object
|
||||
//this.gRef = "ypSlideOutMenu_"+id
|
||||
//eval(this.gRef+"=this")
|
||||
|
||||
// add this menu object to an internal list of all menus
|
||||
//ypSlideOutMenu.Registry[id] = this
|
||||
|
||||
var d = document
|
||||
|
||||
var strCSS = '<style type="text/css">';
|
||||
strCSS += '#' + this.id + 'Container { visibility:hidden; '
|
||||
if(pos)
|
||||
{
|
||||
strCSS += pos+':' + left + 'px; '
|
||||
}
|
||||
else
|
||||
{
|
||||
strCSS += 'left:' + left + 'px; '
|
||||
}
|
||||
strCSS += 'top:' + top + 'px; '
|
||||
strCSS += 'overflow:visible; z-index:10000; }'
|
||||
strCSS += '#' + this.id + 'Container, #' + this.id + 'Content { position:absolute; '
|
||||
strCSS += 'width:' + width + 'px; '
|
||||
// strCSS += 'height:' + height + 'px; '
|
||||
// strCSS += 'clip:rect(0 ' + width + ' ' + height + ' 0); '
|
||||
strCSS += '}'
|
||||
strCSS += '</style>';
|
||||
|
||||
d.write(strCSS);
|
||||
// alert(strCSS);
|
||||
// this.load()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
ypSlideOutMenu.aLs = function(layerID)
|
||||
{
|
||||
|
||||
this.isIE = false;
|
||||
this.isOther = false;
|
||||
this.isNS4 = false;
|
||||
this.isNS6 = false;
|
||||
if(document.getElementById)
|
||||
{
|
||||
if(!document.all)
|
||||
{
|
||||
this.isNS6=true;
|
||||
}
|
||||
if(document.all)
|
||||
{
|
||||
this.isIE=true;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if(document.layers)
|
||||
{
|
||||
this.isNS4=true;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.isOther=true;
|
||||
}
|
||||
}
|
||||
|
||||
var returnLayer;
|
||||
if(this.isIE)
|
||||
{
|
||||
returnLayer = eval("document.all." + layerID + ".style");
|
||||
}
|
||||
if(this.isNS6)
|
||||
{
|
||||
returnLayer = eval("document.getElementById('" + layerID + "').style");
|
||||
}
|
||||
if(this.isNS4)
|
||||
{
|
||||
returnLayer = eval("document." + layerID);
|
||||
}
|
||||
if(this.isOther)
|
||||
{
|
||||
returnLayer = "null";
|
||||
alert("Error:\nDue to your browser you will probably not\nbe able to view all of the following page\nas it was designed to be viewed. We regret\nthis error sincerely.");
|
||||
}
|
||||
return returnLayer;
|
||||
}
|
||||
// HideShow 1.0 Jim Cummins - http://www.conxiondesigns.com
|
||||
|
||||
ypSlideOutMenu.ShowL = function(ID)
|
||||
{
|
||||
ypSlideOutMenu.aLs(ID).visibility = "visible";
|
||||
}
|
||||
|
||||
ypSlideOutMenu.HideL =function(ID)
|
||||
{
|
||||
ypSlideOutMenu.aLs(ID).visibility = "hidden";
|
||||
}
|
||||
|
||||
ypSlideOutMenu.HideShow = function(ID)
|
||||
{
|
||||
|
||||
if((ypSlideOutMenu.aLs(ID).visibility == "visible") || (ypSlideOutMenu.aLs(ID).visibility == ""))
|
||||
{
|
||||
ypSlideOutMenu.aLs(ID).visibility = "hidden";
|
||||
}
|
||||
else if(ypSlideOutMenu.aLs(ID).visibility == "hidden")
|
||||
{
|
||||
ypSlideOutMenu.aLs(ID).visibility = "visible";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
ypSlideOutMenu.showMenu = function(id)
|
||||
{
|
||||
//temporarly hide all selectboxes to fix IE bug with z-index
|
||||
if(document.all)
|
||||
{
|
||||
for (var i=0; i<document.all.length; i++) {
|
||||
o = document.all(i)
|
||||
if (o.type == 'select-one' || o.type == 'select-multiple') {
|
||||
// todo: add check for select in div?
|
||||
if (o.style) o.style.display = 'none';
|
||||
}
|
||||
}
|
||||
}
|
||||
ypSlideOutMenu.ShowL(id+'Container');
|
||||
|
||||
}
|
||||
|
||||
ypSlideOutMenu.hide = function(id)
|
||||
{
|
||||
ypSlideOutMenu.HideL(id+'Container');
|
||||
//show all selectboxes again to fix IE bug with z-index
|
||||
if(document.all)
|
||||
{
|
||||
for (var i=0; i<document.all.length; i++) {
|
||||
o = document.all(i)
|
||||
if (o.type == 'select-one' || o.type == 'select-multiple') {
|
||||
// todo: add check for select in div?
|
||||
if (o.style) o.style.display = 'inline';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,217 +0,0 @@
|
||||
/*****************************************************
|
||||
* ypSlideOutMenu
|
||||
* 3/04/2001
|
||||
*
|
||||
* a nice little script to create exclusive, slide-out
|
||||
* menus for ns4, ns6, mozilla, opera, ie4, ie5 on
|
||||
* mac and win32. I've got no linux or unix to test on but
|
||||
* it should(?) work...
|
||||
*
|
||||
* --youngpup--
|
||||
*****************************************************/
|
||||
|
||||
ypSlideOutMenu.Registry = []
|
||||
ypSlideOutMenu.aniLen = 250
|
||||
ypSlideOutMenu.hideDelay = 1000
|
||||
ypSlideOutMenu.minCPUResolution = 10
|
||||
|
||||
// constructor
|
||||
function ypSlideOutMenu(id, dir, left, top, width, height,pos)
|
||||
{
|
||||
this.ie = document.all ? 1 : 0
|
||||
this.ns4 = document.layers ? 1 : 0
|
||||
this.dom = document.getElementById ? 1 : 0
|
||||
|
||||
if (this.ie || this.ns4 || this.dom) {
|
||||
this.id = id
|
||||
this.dir = dir
|
||||
this.orientation = dir == "left" || dir == "right" ? "h" : "v"
|
||||
this.dirType = dir == "right" || dir == "down" ? "-" : "+"
|
||||
this.dim = this.orientation == "h" ? width : height
|
||||
this.hideTimer = false
|
||||
this.aniTimer = false
|
||||
this.open = false
|
||||
this.over = false
|
||||
this.startTime = 0
|
||||
|
||||
// global reference to this object
|
||||
this.gRef = "ypSlideOutMenu_"+id
|
||||
eval(this.gRef+"=this")
|
||||
|
||||
// add this menu object to an internal list of all menus
|
||||
ypSlideOutMenu.Registry[id] = this
|
||||
|
||||
var d = document
|
||||
|
||||
var strCSS = '<style type="text/css">';
|
||||
strCSS += '#' + this.id + 'Container { visibility:hidden; '
|
||||
if(pos)
|
||||
{
|
||||
strCSS += pos+':' + left + 'px; '
|
||||
}
|
||||
else
|
||||
{
|
||||
strCSS += 'left:' + left + 'px; '
|
||||
}
|
||||
strCSS += 'top:' + top + 'px; '
|
||||
strCSS += 'overflow:visible; z-index:10000; }'
|
||||
strCSS += '#' + this.id + 'Container, #' + this.id + 'Content { position:absolute; '
|
||||
strCSS += 'width:' + width + 'px; '
|
||||
// strCSS += 'height:' + height + 'px; '
|
||||
// strCSS += 'clip:rect(0 ' + width + ' ' + height + ' 0); '
|
||||
strCSS += '}'
|
||||
strCSS += '</style>';
|
||||
|
||||
d.write(strCSS)
|
||||
|
||||
this.load()
|
||||
}
|
||||
}
|
||||
|
||||
ypSlideOutMenu.prototype.load = function() {
|
||||
var d = document
|
||||
var lyrId1 = this.id + "Container"
|
||||
var lyrId2 = this.id + "Content"
|
||||
var obj1 = this.dom ? d.getElementById(lyrId1) : this.ie ? d.all[lyrId1] : d.layers[lyrId1]
|
||||
if (obj1) var obj2 = this.ns4 ? obj1.layers[lyrId2] : this.ie ? d.all[lyrId2] : d.getElementById(lyrId2)
|
||||
var temp
|
||||
|
||||
if (!obj1 || !obj2) window.setTimeout(this.gRef + ".load()", 100)
|
||||
else {
|
||||
this.container = obj1
|
||||
this.menu = obj2
|
||||
this.style = this.ns4 ? this.menu : this.menu.style
|
||||
this.homePos = eval("0" + this.dirType + this.dim)
|
||||
this.outPos = 0
|
||||
this.accelConst = (this.outPos - this.homePos) / ypSlideOutMenu.aniLen / ypSlideOutMenu.aniLen
|
||||
|
||||
// set event handlers.
|
||||
if (this.ns4) this.menu.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
|
||||
this.menu.onmouseover = new Function("ypSlideOutMenu.showMenu('" + this.id + "')")
|
||||
this.menu.onmouseout = new Function("ypSlideOutMenu.hideMenu('" + this.id + "')")
|
||||
|
||||
//set initial state
|
||||
this.endSlide()
|
||||
}
|
||||
}
|
||||
|
||||
ypSlideOutMenu.showMenu = function(id)
|
||||
{
|
||||
var reg = ypSlideOutMenu.Registry
|
||||
var obj = ypSlideOutMenu.Registry[id]
|
||||
|
||||
//document.all.select.style="visibily:hidden";
|
||||
|
||||
|
||||
//temporarly hide all selectboxes to fix IE bug with z-index
|
||||
if(document.all)
|
||||
{
|
||||
for (var i=0; i<document.all.length; i++) {
|
||||
o = document.all(i)
|
||||
if (o.type == 'select-one' || o.type == 'select-multiple') {
|
||||
// todo: add check for select in div?
|
||||
if (o.style) o.style.display = 'none';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (obj.container) {
|
||||
obj.over = true
|
||||
|
||||
// close other menus.
|
||||
for (menu in reg) if (id != menu) ypSlideOutMenu.hide(menu)
|
||||
|
||||
// if this menu is scheduled to close, cancel it.
|
||||
if (obj.hideTimer) { reg[id].hideTimer = window.clearTimeout(reg[id].hideTimer) }
|
||||
|
||||
// if this menu is closed, open it.
|
||||
if (!obj.open && !obj.aniTimer) reg[id].startSlide(true)
|
||||
}
|
||||
}
|
||||
|
||||
ypSlideOutMenu.hideMenu = function(id)
|
||||
{
|
||||
// schedules the menu to close after <hideDelay> ms, which
|
||||
// gives the user time to cancel the action if they accidentally moused out
|
||||
var obj = ypSlideOutMenu.Registry[id]
|
||||
if (obj.container) {
|
||||
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
|
||||
obj.hideTimer = window.setTimeout("ypSlideOutMenu.hide('" + id + "')", ypSlideOutMenu.hideDelay);
|
||||
}
|
||||
}
|
||||
|
||||
ypSlideOutMenu.hide = function(id)
|
||||
{
|
||||
var obj = ypSlideOutMenu.Registry[id]
|
||||
obj.over = false
|
||||
|
||||
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
|
||||
|
||||
// flag that this scheduled event has occured.
|
||||
obj.hideTimer = 0
|
||||
|
||||
// if this menu is open, close it.
|
||||
if (obj.open && !obj.aniTimer) obj.startSlide(false)
|
||||
|
||||
//show all selectboxes again to fix IE bug with z-index
|
||||
if(document.all)
|
||||
{
|
||||
for (var i=0; i<document.all.length; i++) {
|
||||
o = document.all(i)
|
||||
if (o.type == 'select-one' || o.type == 'select-multiple') {
|
||||
// todo: add check for select in div?
|
||||
if (o.style) o.style.display = 'inline';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
ypSlideOutMenu.prototype.startSlide = function(open) {
|
||||
this[open ? "onactivate" : "ondeactivate"]()
|
||||
this.open = open
|
||||
if (open) this.setVisibility(true)
|
||||
this.startTime = (new Date()).getTime()
|
||||
this.aniTimer = window.setInterval(this.gRef + ".slide()", ypSlideOutMenu.minCPUResolution)
|
||||
}
|
||||
|
||||
ypSlideOutMenu.prototype.slide = function() {
|
||||
var elapsed = (new Date()).getTime() - this.startTime
|
||||
if (elapsed > ypSlideOutMenu.aniLen) this.endSlide()
|
||||
else {
|
||||
var d = Math.round(Math.pow(ypSlideOutMenu.aniLen-elapsed, 2) * this.accelConst)
|
||||
if (this.open && this.dirType == "-") d = -d
|
||||
else if (this.open && this.dirType == "+") d = -d
|
||||
else if (!this.open && this.dirType == "-") d = -this.dim + d
|
||||
else d = this.dim + d
|
||||
|
||||
this.moveTo(d)
|
||||
}
|
||||
}
|
||||
|
||||
ypSlideOutMenu.prototype.endSlide = function() {
|
||||
this.aniTimer = window.clearTimeout(this.aniTimer)
|
||||
this.moveTo(this.open ? this.outPos : this.homePos)
|
||||
if (!this.open) this.setVisibility(false)
|
||||
if ((this.open && !this.over) || (!this.open && this.over)) {
|
||||
this.startSlide(this.over)
|
||||
}
|
||||
}
|
||||
|
||||
ypSlideOutMenu.prototype.setVisibility = function(bShow) {
|
||||
var s = this.ns4 ? this.container : this.container.style
|
||||
s.visibility = bShow ? "visible" : "hidden"
|
||||
}
|
||||
ypSlideOutMenu.prototype.moveTo = function(p) {
|
||||
this.style[this.orientation == "h" ? "left" : "top"] = this.ns4 ? p : p + "px"
|
||||
}
|
||||
ypSlideOutMenu.prototype.getPos = function(c) {
|
||||
return parseInt(this.style[c])
|
||||
}
|
||||
|
||||
// events
|
||||
ypSlideOutMenu.prototype.onactivate = function() { }
|
||||
ypSlideOutMenu.prototype.ondeactivate = function() { }
|
@ -1,150 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset={charset}">
|
||||
<meta name="author" content="eGroupWare http://www.phpgroupware.org">
|
||||
<meta name="description" content="eGroupWare login screen">
|
||||
<meta name="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
|
||||
<meta name="keywords" content="eGroupWare login screen">
|
||||
<link rel="stylesheet" href="phpgwapi/templates/{template_set}/css/idots.css" type="text/css">
|
||||
<link rel="icon" href="phpgwapi/templates/idots/images/favicon.ico" type="image/x-ico">
|
||||
<link rel="shortcut icon" href="phpgwapi/templates/idots/images/favicon.ico">
|
||||
<title>{website_title} - Login</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*body
|
||||
{
|
||||
height:100%;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
#divMain
|
||||
{
|
||||
height:85%;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<!-- this solves the internet explorer png-transparency bug, but only for ie 5.5 and higher -->
|
||||
<!--[if gte ie 5.5000]>
|
||||
<script src="./phpgwapi/templates/idots/js/pngfix.js" type=text/javascript>
|
||||
</script>
|
||||
<![endif]-->
|
||||
|
||||
</head>
|
||||
<body bgcolor="#ffffff">
|
||||
<div id="divLogo"><a href="{logo_url}" target="_blank"><img src="{logo_file}" border="0" alt="{logo_title}" title="{logo_title}"/></a></div>
|
||||
|
||||
<div id="divMain"style= "background-repeat:no-repeat;background-position: center center;background-image:url(./phpgwapi/templates/idots/images/login-background.jpg)">
|
||||
<div id="divAppIconBar">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="180" valign="top" align="left"><img src="./phpgwapi/templates/idots/images/grey-pixel.png" width="1" height="69" alt="spacer" /></td>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="100%"><img src="./phpgwapi/templates/idots/images/spacer.gif" width="1" height="68" alt="spacer" /></td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
<td width="100%"> </td>
|
||||
</tr>-->
|
||||
</table>
|
||||
|
||||
</td>
|
||||
<td width="1" valign="top" align="right"><img src="./phpgwapi/templates/idots/images/grey-pixel.png" width="1" height="68" alt="spacer" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<br/>
|
||||
<!--</div>-->
|
||||
<div id="containerDiv" >
|
||||
<div id="centerBox">
|
||||
<div align="center">{lang_message}</div>
|
||||
<div align="center">{cd}</div>
|
||||
<p> </p>
|
||||
<form name="login_form" method="post" action="{login_url}">
|
||||
<!-- <table class=sidebox cellspacing=1 cellpadding=0 border=1 align=center> -->
|
||||
|
||||
|
||||
<table class="divLoginbox" cellspacing="0" cellpadding="0" border="0" align="center">
|
||||
<tr>
|
||||
<td colspan="2" class="divLoginboxHeader" style="border-bottom: #9c9c9c 1px solid;" align="center">{website_title}</td>
|
||||
</tr>
|
||||
<tr >
|
||||
<td class="divSideboxEntry">
|
||||
|
||||
<table cellspacing=0 cellpadding=0 width="100%" border="0">
|
||||
<tr>
|
||||
<td colspan="3" align="left">
|
||||
{register_link}<br/>
|
||||
<img width="200" height="1" src="phpgwapi/templates/{template_set}/images/spacer.gif" alt="spacer" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
<input type="hidden" name="passwd_type" value="text">
|
||||
<input type="hidden" name="account_type" value="u">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">{lang_username}: </td>
|
||||
<td align="left"><input name="login" value="{cookie}" style="width: 100px; border: 1px solid silver;"></td>
|
||||
<td align="left">{select_domain}</td>
|
||||
</tr>
|
||||
<!-- BEGIN language_select -->
|
||||
<tr>
|
||||
<td align="right">{lang_language}: </td>
|
||||
<td align="left" colspan="2">{select_language}</td>
|
||||
</tr>
|
||||
<!-- END language_select -->
|
||||
<tr>
|
||||
<td align="right">{lang_password}: </td>
|
||||
<td align="left"><input name="passwd" type="password" onChange="this.form.submit()" style="width: 100px; border: 1px solid silver;"></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="center">
|
||||
<input type="submit" value="{lang_login}" name="submitit" style="border: 1px solid silver;">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="center">
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</td>
|
||||
<td class="divSideboxEntry">
|
||||
<img src="phpgwapi/templates/{template_set}/images/password.png" alt="keys" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
</form>
|
||||
<script language="javascript1.2" type="text/javascript">
|
||||
<!--
|
||||
// position cursor in top form field
|
||||
document.login_form.login.focus();
|
||||
//-->
|
||||
</script>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="bottom:10px;left:10px;position:absolute;visibility:hidden;">
|
||||
<img src="phpgwapi/templates/{template_set}/images/valid-html401.png" border="0" alt="Valid HTML 4.01">
|
||||
<img src="phpgwapi/templates/{template_set}/images/vcss.png" border="0" alt="Valid CSS">
|
||||
</div>
|
||||
<div id="divPoweredBy" align="center">
|
||||
<br/>
|
||||
<a href="http://www.egroupware.org" target="_blank">eGroupWare</a> {version}</div>
|
||||
</body>
|
||||
</html>
|
@ -1,14 +0,0 @@
|
||||
|
||||
<!-- BEGIN form -->
|
||||
<body bgcolor="#ffffff">
|
||||
<a href="http://www.egroupware.org"><img src="phpgwapi/templates/idots/images/logo.png" alt="eGroupWare" border="0"></a>
|
||||
|
||||
<table border="0" width="100%">
|
||||
<tr>
|
||||
<td align="center">
|
||||
{deny_msg}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- END form -->
|
@ -1,405 +0,0 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
function parse_navbar($force = False)
|
||||
{
|
||||
$GLOBALS['idots_tpl'] = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
|
||||
|
||||
$GLOBALS['idots_tpl']->set_file(
|
||||
array(
|
||||
'navbar' => 'navbar.tpl'
|
||||
)
|
||||
);
|
||||
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','navbar_header','navbar_header');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','extra_blocks_header','extra_block_header');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','extra_block_row','extra_block_row');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','extra_block_spacer','extra_block_spacer');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','extra_blocks_footer','extra_blocks_footer');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','sidebox_hide_header','sidebox_hide_header');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','sidebox_hide_footer','sidebox_hide_footer');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','appbox','appbox');
|
||||
$GLOBALS['idots_tpl']->set_block('navbar','navbar_footer','navbar_footer');
|
||||
|
||||
$var['img_root'] = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/images';
|
||||
$var['table_bg_color'] = $GLOBALS['phpgw_info']['theme']['navbar_bg'];
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['click_or_onmouseover']=='onmouseover')
|
||||
{
|
||||
$show_menu_event = 'onMouseOver';
|
||||
}
|
||||
else
|
||||
{
|
||||
$show_menu_event = 'onClick';
|
||||
}
|
||||
|
||||
|
||||
$applications = '';
|
||||
|
||||
// == 'icons_and_text')
|
||||
|
||||
$max_icons=$GLOBALS['phpgw_info']['user']['preferences']['common']['max_icons'];
|
||||
if(!$max_icons)
|
||||
{
|
||||
$max_icons=200;
|
||||
}
|
||||
|
||||
foreach($GLOBALS['phpgw_info']['navbar'] as $app => $app_data)
|
||||
{
|
||||
//if($app != 'home' && $app != 'preferences' && $app != 'about' && $app != 'logout')
|
||||
if($app != 'preferences' && $app != 'about' && $app != 'logout')
|
||||
{
|
||||
$title = $GLOBALS['phpgw_info']['apps'][$app]['title'];
|
||||
$icon = '<img src="' . $app_data['icon'] . '" alt="' . $title . '" title="'. $title . '" border="0" />';
|
||||
|
||||
// 020204 ndee
|
||||
if($app == 'home') $title = lang('Home');
|
||||
|
||||
if($app=='home')
|
||||
{
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['start_and_logout_icons']=='no')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
if($i<$max_icons)
|
||||
{
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['start_and_logout_icons']=='no')
|
||||
{
|
||||
$tdwidth = 100/($max_icons);
|
||||
}
|
||||
else
|
||||
{
|
||||
$tdwidth = 100/($max_icons+2);
|
||||
}
|
||||
|
||||
$app_icons .= '<td width="'.$tdwidth.'%" height="66" valign="bottom" align="center" style="text-align:center"><a href="' . $app_data['url'] . '"';
|
||||
|
||||
if(isset($GLOBALS['phpgw_info']['flags']['navbar_target']) && $GLOBALS['phpgw_info']['flags']['navbar_target'])
|
||||
{
|
||||
$app_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||
}
|
||||
|
||||
$app_icons .= $app_data['target'] . '>' . $icon . '</a></td>';
|
||||
|
||||
$app_titles .= '<td align="center" valign="top" class="appTitles" style="text-align:center"><a href="'.$app_data['url'] . '"';
|
||||
|
||||
if(isset($GLOBALS['phpgw_info']['flags']['navbar_target']) && $GLOBALS['phpgw_info']['flags']['navbar_target'])
|
||||
{
|
||||
$app_titles .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||
}
|
||||
|
||||
$app_titles .= $app_data['target'] . '>' . $title . '</a></td>';
|
||||
}
|
||||
// else // generate extra icon layer | always shows icons and text
|
||||
else // generate extra icon layer shows icons and/or text
|
||||
{
|
||||
// check for small icon version else use default and let the browser resize
|
||||
$icon = '<img src="' . $app_data['icon'] . '" alt="' . $title . '" width="16" title="'. $title . '" border="0" />';
|
||||
|
||||
$app_extra_icons .= '<tr>';
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format']!='text')
|
||||
{
|
||||
$app_extra_icons .= '<td class="extraIconsRow"><a href="' . $app_data['url'] . '"';
|
||||
|
||||
if(isset($GLOBALS['phpgw_info']['flags']['navbar_target']) && $GLOBALS['phpgw_info']['flags']['navbar_target'])
|
||||
{
|
||||
$app_extra_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||
}
|
||||
|
||||
$app_extra_icons .= ' >' . $icon . '</a></td>';
|
||||
}
|
||||
|
||||
|
||||
|
||||
// $app_extra_icons .= '<tr><td><a href="' . $app_data['url'] . '"';
|
||||
|
||||
// if(isset($GLOBALS['phpgw_info']['flags']['navbar_target']) && $GLOBALS['phpgw_info']['flags']['navbar_target'])
|
||||
// {
|
||||
// $app_extra_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||
// }
|
||||
|
||||
// $app_extra_icons .= '>' . $icon . '</a></td>';
|
||||
|
||||
$app_extra_icons .= '<td align="left" class="extraIconsRow" style=""><a href="'.$app_data['url'] . '"';
|
||||
|
||||
if(isset($GLOBALS['phpgw_info']['flags']['navbar_target']) && $GLOBALS['phpgw_info']['flags']['navbar_target'])
|
||||
{
|
||||
$app_extra_icons .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
||||
}
|
||||
|
||||
$app_extra_icons .= '>' . $title . '</a></td></tr>';
|
||||
}
|
||||
|
||||
unset($icon);
|
||||
unset($title);
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['start_and_logout_icons']!='no')
|
||||
{
|
||||
$app_icons .= '<td width="'.$tdwidth.'%" height="32" valign="bottom" align="center" style="text-align:center"><a
|
||||
href="'.$GLOBALS['phpgw_info']['navbar']['logout']['url'].'"><img src="'.$GLOBALS['phpgw_info']['navbar']['logout']['icon'].'"></a></td>';
|
||||
$app_titles .= '<td align="center" valign="top" class="appTitles" style="text-align:center"><a href="'.$GLOBALS['phpgw_info']['navbar']['logout']['url'].'">'.$GLOBALS['phpgw_info']['navbar']['logout']['title'].'</a></td>';
|
||||
|
||||
}
|
||||
// $var['app_icons'] = $app_icons;
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format']!='text')
|
||||
{
|
||||
$var['app_icons'] = $app_icons;
|
||||
}
|
||||
|
||||
if($i > $max_icons)
|
||||
{
|
||||
// table width=100% fixed layout bug (ndee130204)
|
||||
$app_extra_icons_div = '
|
||||
<script language="javascript">
|
||||
new ypSlideOutMenu("menu1", "down", 10, 114, 160, 200,\'right\')
|
||||
</script>
|
||||
<div id="menu1Container">
|
||||
<div id="menu1Content" style="position: relative; left: 0; text-align: left;">
|
||||
|
||||
<div id="extraIcons">
|
||||
|
||||
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||
<tr><td colspan="2" nowrap="nowrap" align="right" style="background-color:#dddddd;padding:1px;">
|
||||
<a href="#" '.$show_menu_event.'="ypSlideOutMenu.hide(\'menu1\')" title="'.lang('close').'">
|
||||
<img style="" border="0" src="'.$var['img_root'].'/close.png"/></a></td></tr>
|
||||
'.$app_extra_icons.'</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
|
||||
$var['app_extra_icons_div']= $app_extra_icons_div;
|
||||
// $var['app_extra_icons_icon']= '<td width="26" valign="top" align="right" style="padding-right:3px;padding-top:50px;"><a title="'.lang('show_more_apps').'" href="javascript:void(0);" onClick="HideShow(\'extraIcons\');"><img src="'.$var['img_root'].'/extra_icons.png" border="0" /></a></td>';
|
||||
$var['app_extra_icons_icon']= '<td width="26" valign="top" align="right" style="padding-right:3px;padding-top:50px;"><a title="'.lang('show_more_apps').'" href="#" '.$show_menu_event.'="ypSlideOutMenu.showMenu(\'menu1\')"><img src="'.$var['img_root'].'/extra_icons.png" border="0" /></a></td>';
|
||||
}
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format']!='icons')
|
||||
{
|
||||
$var['app_titles'] = $app_titles;
|
||||
}
|
||||
else
|
||||
{
|
||||
$var['app_titles'] = '<td colspan="'.$max_icons.'"> </td>';
|
||||
}
|
||||
if(isset($GLOBALS['phpgw_info']['flags']['app_header']))
|
||||
{
|
||||
$var['current_app_title'] = $GLOBALS['phpgw_info']['flags']['app_header'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$var['current_app_title']=$GLOBALS['phpgw_info']['navbar'][$GLOBALS['phpgw_info']['flags']['currentapp']]['title'];
|
||||
}
|
||||
|
||||
if(isset($GLOBALS['phpgw_info']['navbar']['admin']) && $GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers'])
|
||||
{
|
||||
$var['current_users'] = '<a href="'
|
||||
. $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions') . '">'
|
||||
. lang('Current users') . ': ' . $GLOBALS['phpgw']->session->total() . '</a>';
|
||||
}
|
||||
$now = time();
|
||||
$var['user_info'] = '<b>'.$GLOBALS['phpgw']->common->display_fullname() .'</b>'. ' - '
|
||||
. lang($GLOBALS['phpgw']->common->show_date($now,'l')) . ' '
|
||||
. $GLOBALS['phpgw']->common->show_date($now,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['lastpasswd_change'] == 0)
|
||||
{
|
||||
$api_messages = lang('You are required to change your password during your first login')
|
||||
. '<br> Click this image on the navbar: <img src="'
|
||||
. $GLOBALS['phpgw']->common->image('preferences','navbar.gif').'">';
|
||||
}
|
||||
elseif($GLOBALS['phpgw_info']['user']['lastpasswd_change'] < time() - (86400*30))
|
||||
{
|
||||
$api_messages = lang('it has been more then %1 days since you changed your password',30);
|
||||
}
|
||||
|
||||
// This is gonna change
|
||||
if(isset($cd))
|
||||
{
|
||||
$var['messages'] = $api_messages . '<br>' . checkcode($cd);
|
||||
}
|
||||
|
||||
if (substr($GLOBALS['phpgw_info']['server']['login_logo_file'],0,4) == 'http')
|
||||
{
|
||||
$var['logo_file'] = $GLOBALS['phpgw_info']['server']['login_logo_file'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$var['logo_file'] = $GLOBALS['phpgw']->common->image('phpgwapi',$GLOBALS['phpgw_info']['server']['login_logo_file']?$GLOBALS['phpgw_info']['server']['login_logo_file']:'logo');
|
||||
}
|
||||
$var['logo_url'] = $GLOBALS['phpgw_info']['server']['login_logo_url']?$GLOBALS['phpgw_info']['server']['login_logo_url']:'http://www.eGroupWare.org';
|
||||
if (substr($var['logo_url'],0,4) != 'http')
|
||||
{
|
||||
$var['logo_url'] = 'http://'.$var['logo_url'];
|
||||
}
|
||||
$var['logo_title'] = $GLOBALS['phpgw_info']['server']['login_logo_title']?$GLOBALS['phpgw_info']['server']['login_logo_title']:'www.eGroupWare.org';
|
||||
|
||||
$GLOBALS['idots_tpl']->set_var($var);
|
||||
$GLOBALS['idots_tpl']->pfp('out','navbar_header');
|
||||
|
||||
/******************************************************\
|
||||
* The sidebox menu's *
|
||||
\******************************************************/
|
||||
|
||||
$menu_title = lang('General Menu');
|
||||
|
||||
$file['Home'] = $GLOBALS['phpgw_info']['navbar']['home']['url'];
|
||||
if($GLOBALS['phpgw_info']['user']['apps']['preferences'])
|
||||
{
|
||||
$file['Preferences'] = $GLOBALS['phpgw_info']['navbar']['preferences']['url'];
|
||||
}
|
||||
$file += array(
|
||||
array(
|
||||
'text' => lang('About %1',$GLOBALS['phpgw_info']['apps'][$GLOBALS['phpgw_info']['flags']['currentapp']]['title']),
|
||||
'no_lang' => True,
|
||||
'link' => $GLOBALS['phpgw_info']['navbar']['about']['url']
|
||||
),
|
||||
'Logout'=>$GLOBALS['phpgw_info']['navbar']['logout']['url']
|
||||
);
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['auto_hide_sidebox']==1)
|
||||
{
|
||||
$GLOBALS['idots_tpl']->set_var('show_menu_event',$show_menu_event);
|
||||
$GLOBALS['idots_tpl']->set_var('lang_show_menu',lang('show menu'));
|
||||
$GLOBALS['idots_tpl']->pparse('out','sidebox_hide_header');
|
||||
|
||||
display_sidebox('',$menu_title,$file);
|
||||
$GLOBALS['phpgw']->hooks->single('sidebox_menu',$GLOBALS['phpgw_info']['flags']['currentapp']);
|
||||
|
||||
$GLOBALS['idots_tpl']->pparse('out','sidebox_hide_footer');
|
||||
|
||||
$var['sideboxcolstart']='';
|
||||
|
||||
$GLOBALS['idots_tpl']->set_var($var);
|
||||
$GLOBALS['idots_tpl']->pparse('out','appbox');
|
||||
$var['remove_padding'] = 'style="padding-left:0px;"';
|
||||
$var['sideboxcolend'] = '';
|
||||
}
|
||||
else
|
||||
{
|
||||
$var['menu_link'] = '';
|
||||
$var['sideboxcolstart'] = '<td id="tdSidebox" valign="top">';
|
||||
$var['remove_padding'] = '';
|
||||
$GLOBALS['idots_tpl']->set_var($var);
|
||||
$GLOBALS['idots_tpl']->pparse('out','appbox');
|
||||
|
||||
display_sidebox('',$menu_title,$file);
|
||||
$GLOBALS['phpgw']->hooks->single('sidebox_menu',$GLOBALS['phpgw_info']['flags']['currentapp']);
|
||||
|
||||
$var['sideboxcolend'] = '</td>';
|
||||
}
|
||||
|
||||
$GLOBALS['idots_tpl']->set_var($var);
|
||||
$GLOBALS['idots_tpl']->pparse('out','navbar_footer');
|
||||
|
||||
// If the application has a header include, we now include it
|
||||
if(!@$GLOBALS['phpgw_info']['flags']['noappheader'] && @isset($_GET['menuaction']))
|
||||
{
|
||||
list($app,$class,$method) = explode('.',$_GET['menuaction']);
|
||||
if(is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions['header'])
|
||||
{
|
||||
$GLOBALS[$class]->header();
|
||||
}
|
||||
}
|
||||
$GLOBALS['phpgw']->hooks->process('after_navbar');
|
||||
return;
|
||||
}
|
||||
|
||||
function display_sidebox($appname,$menu_title,$file)
|
||||
{
|
||||
if(!$appname || ($appname==$GLOBALS['phpgw_info']['flags']['currentapp'] && $file))
|
||||
{
|
||||
$var['lang_title']=$menu_title;//$appname.' '.lang('Menu');
|
||||
$GLOBALS['idots_tpl']->set_var($var);
|
||||
$GLOBALS['idots_tpl']->pfp('out','extra_blocks_header');
|
||||
|
||||
foreach($file as $text => $url)
|
||||
{
|
||||
sidebox_menu_item($url,$text);
|
||||
}
|
||||
|
||||
$GLOBALS['idots_tpl']->pparse('out','extra_blocks_footer');
|
||||
}
|
||||
}
|
||||
|
||||
function sidebox_menu_item($item_link='',$item_text='')
|
||||
{
|
||||
if($item_text === '_NewLine_' || $item_link === '_NewLine_')
|
||||
{
|
||||
$GLOBALS['idots_tpl']->pparse('out','extra_block_spacer');
|
||||
}
|
||||
else
|
||||
{
|
||||
$var['icon_or_star']='<img src="'.$GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/images'.'/orange-ball.png" width="9" height="9" alt="ball"/>';
|
||||
$var['target'] = '';
|
||||
if(is_array($item_link))
|
||||
{
|
||||
if(isset($item_link['icon']))
|
||||
{
|
||||
$app = isset($item_link['app']) ? $item_link['app'] : $GLOBALS['phpgw_info']['flags']['currentapp'];
|
||||
$var['icon_or_star'] = '<img style="margin:0px 2px 0px 2px" src="'.$GLOBALS['phpgw']->common->image($app,$item_link['icon']).'"/>';
|
||||
}
|
||||
$var['lang_item'] = isset($item_link['no_lang']) && $item_link['no_lang'] ? $item_link['text'] : lang($item_link['text']);
|
||||
$var['item_link'] = $item_link['link'];
|
||||
if ($item_link['target'])
|
||||
{
|
||||
$var['target'] = ' target="' . $item_link['target'] . '"';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$var['lang_item'] = lang($item_text);
|
||||
$var['item_link'] = $item_link;
|
||||
}
|
||||
$GLOBALS['idots_tpl']->set_var($var);
|
||||
$GLOBALS['idots_tpl']->pparse('out','extra_block_row');
|
||||
}
|
||||
}
|
||||
|
||||
function parse_navbar_end()
|
||||
{
|
||||
$GLOBALS['idots_tpl'] = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
|
||||
|
||||
$GLOBALS['idots_tpl']->set_file(
|
||||
array(
|
||||
'footer' => 'footer.tpl'
|
||||
)
|
||||
);
|
||||
$var = Array(
|
||||
'img_root' => $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/idots/images',
|
||||
'table_bg_color' => $GLOBALS['phpgw_info']['theme']['navbar_bg'],
|
||||
'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
|
||||
);
|
||||
$GLOBALS['phpgw']->hooks->process('navbar_end');
|
||||
|
||||
if($GLOBALS['phpgw_info']['user']['preferences']['common']['show_generation_time'])
|
||||
{
|
||||
$mtime = microtime();
|
||||
$mtime = explode(' ',$mtime);
|
||||
$mtime = $mtime[1] + $mtime[0];
|
||||
$tend = $mtime;
|
||||
$totaltime = ($tend - $GLOBALS['page_start_time']);
|
||||
|
||||
$var['page_generation_time'] = '<div id="divGenTime"><br/><span>'.lang('Page was generated in %1 seconds',$totaltime).'</span></div>';
|
||||
}
|
||||
|
||||
$var['powered_by'] = lang('Powered by phpGroupWare version %1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
|
||||
$GLOBALS['idots_tpl']->set_var($var);
|
||||
$GLOBALS['idots_tpl']->pfp('out','footer');
|
||||
}
|
@ -1,123 +0,0 @@
|
||||
<!-- BEGIN navbar_header -->
|
||||
<div id="divLogo"><a href="{logo_url}" target="_blank"><img src="{logo_file}" border="0" alt="eGroupWare"/></a></div>
|
||||
|
||||
{app_extra_icons_div}
|
||||
|
||||
|
||||
<div id="divMain">
|
||||
<div id="divAppIconBar">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="180" valign="top" align="left"><img src="{img_root}/grey-pixel.png" width="1" height="68" alt="spacer" /></td>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
{app_icons}
|
||||
</tr>
|
||||
<tr>
|
||||
{app_titles}
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</td>
|
||||
|
||||
{app_extra_icons_icon}
|
||||
|
||||
<td width="1" valign="top" align="right"><img src="{img_root}/grey-pixel.png" width="1" height="68" alt="spacer" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="divStatusBar"><table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td align="left" id="user_info">{user_info}</td><td align="right" id="admin_info">{current_users}</td></tr></table></div>
|
||||
|
||||
|
||||
|
||||
<!-- END navbar_header -->
|
||||
|
||||
|
||||
<!-- BEGIN appbox -->
|
||||
<div id="divSubContainer">
|
||||
<table width="100%" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<!-- Sidebox Column -->
|
||||
{sideboxcolstart}
|
||||
<!-- <td id="{tdsiteboxid}" valign="top">-->
|
||||
|
||||
<!-- END appbox -->
|
||||
|
||||
<!-- BEGIN sidebox_hide_header -->
|
||||
<!--<script language="javascript" src="SlideOut.js"></script>-->
|
||||
<script language="javascript">
|
||||
new ypSlideOutMenu("menu2", "right", 0, 165, 160, 200)
|
||||
</script>
|
||||
|
||||
<div id="sideboxdragarea" style="position:absolute;left:0px;top:175px">
|
||||
<a href="#" {show_menu_event}="ypSlideOutMenu.showMenu('menu2')" onmouseover="//ypSlideOutMenu.showMenu('menu2')" title="{lang_show_menu}"><img src="{img_root}/dragarea_right.png" /></a>
|
||||
</div>
|
||||
|
||||
<div id="menu2Container">
|
||||
<div id="menu2Content" style="position: relative; left: 0; text-align: left;">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
|
||||
<div style="background-color:#ffffff;border: #9c9c9c 1px solid;padding:5px;">
|
||||
<!-- END sidebox_hide_header -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN sidebox_hide_footer -->
|
||||
</div>
|
||||
</td><td style="padding-top:10px" valign="top">
|
||||
<a href="#" onClick="ypSlideOutMenu.hide('menu2')" ><img src="{img_root}/dragarea_left.png" align="right" /></a>
|
||||
</td></tr></table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END sidebox_hide_footer -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN navbar_footer -->
|
||||
{sideboxcolend}
|
||||
<!-- End Sidebox Column -->
|
||||
|
||||
<!-- Applicationbox Column -->
|
||||
<td id="tdAppbox" valign="top" {remove_padding}>
|
||||
<div id="divAppboxHeader">{current_app_title}</div>
|
||||
<div id="divAppbox">
|
||||
<table width="98%" cellpadding="0" cellspacing="0">
|
||||
<tr><td>
|
||||
<!-- END navbar_footer -->
|
||||
|
||||
|
||||
<!-- BEGIN extra_blocks_header -->
|
||||
<div class="divSidebox">
|
||||
<div class="divSideboxHeader"><span>{lang_title}</span></div>
|
||||
<div>
|
||||
<table width="100%" cellspacing="0" cellpadding="0">
|
||||
<!-- END extra_blocks_header -->
|
||||
|
||||
|
||||
<!-- BEGIN extra_blocks_footer -->
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="sideboxSpace"></div>
|
||||
<!-- END extra_blocks_footer -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN extra_block_row -->
|
||||
<tr class="divSideboxEntry">
|
||||
<td width="20" align="center" valign="middle" class="textSidebox">{icon_or_star}</td><td class="textSidebox"><a class="textSidebox" href="{item_link}"{target}>{lang_item}</a></td>
|
||||
</tr>
|
||||
<!-- END extra_block_row -->
|
||||
|
||||
|
||||
<!-- BEGIN extra_block_spacer -->
|
||||
<tr class="divSideboxEntry">
|
||||
<td colspan="2" height="8" class="textSidebox"> </td>
|
||||
</tr>
|
||||
<!-- END extra_block_spacer -->
|
@ -1,3 +0,0 @@
|
||||
<!-- <TD width="10%" align=center><img src="{img_root}/admin.jpg" width="60" height="62"></TD>-->
|
||||
|
||||
<!--<td align="center" width="{width}">{value}</td>-->
|
@ -1,103 +0,0 @@
|
||||
<!-- BEGIN nextmatchs -->
|
||||
<table width="{table_width}" border="0" bgcolor="{th_bg}" cellspacing="0" cellpadding="0" cols="5">
|
||||
<tr> {left}
|
||||
<td align="center" bgcolor="{th_bg}" valign="top" width="92%">{cats_search_filter_data}</td>{right}
|
||||
</tr>
|
||||
</table>
|
||||
<br/>
|
||||
|
||||
<!-- END nextmatchs -->
|
||||
|
||||
|
||||
<!-- BEGIN filter -->
|
||||
{select}
|
||||
<noscript>
|
||||
<input type="submit" value="{lang_filter}">
|
||||
</noscript>
|
||||
<!-- END filter -->
|
||||
|
||||
|
||||
<!-- BEGIN form -->
|
||||
<td width="2%" align="{align}" valign="top">
|
||||
<form method="POST" action="{action}" name="{form_name}">
|
||||
{hidden}
|
||||
<table border="0" bgcolor="{th_bg}" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td align="{align}">
|
||||
<input type="image" src="{img}" border="{border}" alt="{label}" name="start" value="{start}">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
<!-- END form -->
|
||||
|
||||
|
||||
<!-- BEGIN icon -->
|
||||
<td width="2%" align="{align}"> {_link}</td>
|
||||
<!-- END icon -->
|
||||
|
||||
|
||||
<!-- BEGIN link -->
|
||||
<td width="2%" align="{align}" valign="top">
|
||||
<table border="0" bgcolor="{th_bg}" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td align="{align}"><img src="{img}" border="{border}" alt="{label}" hspace="2" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<!-- END link -->
|
||||
|
||||
|
||||
<!-- BEGIN search -->
|
||||
<input type="text" name="query" value="{query_value}"> {searchby}<input type="submit" name="Search" value="{lang_search}">
|
||||
<!-- END search -->
|
||||
|
||||
<!-- BEGIN cats -->
|
||||
<td>
|
||||
{lang_category} <select name="{cat_field}" onChange="this.form.submit();">
|
||||
<option value="0">{lang_all}</option>
|
||||
{categories}
|
||||
</select>
|
||||
<noscript><input type="submit" name="cats" value="{lang_select}"></noscript>
|
||||
</td>
|
||||
<!-- END cats -->
|
||||
|
||||
<!-- BEGIN search_filter -->
|
||||
<table border="0" bgcolor="{th_bg}" cellspacing="0" cellpadding="0">
|
||||
<form method="POST" action="{form_action}" name="filter">
|
||||
<input type="hidden" name="filter" value="{filter_value}">
|
||||
<input type="hidden" name="qfield" value="{qfield_value}">
|
||||
<input type="hidden" name="start" value="{start_value}">
|
||||
<input type="hidden" name="order" value="{order_value}">
|
||||
<input type="hidden" name="sort" value="{sort_value}">
|
||||
<input type="hidden" name="query" value="{query_value}">
|
||||
<tr>
|
||||
<td>{search}</td>
|
||||
<td> </td>
|
||||
<td>{filter}</td>
|
||||
</tr>
|
||||
</form>
|
||||
</table>
|
||||
<!-- END search_filter -->
|
||||
|
||||
<!-- BEGIN cats_search_filter -->
|
||||
<table border="0" bgcolor="{th_bg}" cellspacing="0" cellpadding="0">
|
||||
<form method="POST" action="{form_action}" name="filter">
|
||||
<input type="hidden" name="filter" value="{filter_value}">
|
||||
<input type="hidden" name="qfield" value="{qfield_value}">
|
||||
<input type="hidden" name="start" value="{start_value}">
|
||||
<input type="hidden" name="order" value="{order_value}">
|
||||
<input type="hidden" name="sort" value="{sort_value}">
|
||||
<input type="hidden" name="query" value="{query_value}">
|
||||
<tr>
|
||||
{cats}
|
||||
<td> </td>
|
||||
<td>{search}</td>
|
||||
<td> </td>
|
||||
<td>{filter}</td>
|
||||
</tr>
|
||||
</form>
|
||||
</table>
|
||||
<!-- END cats_search_filter -->
|
||||
|
@ -1,70 +0,0 @@
|
||||
<!-- BEGIN portal_box -->
|
||||
<p>
|
||||
<div style="border: #9c9c9c 1px solid;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="{outer_width}">
|
||||
<tr nowrap align="center">
|
||||
<td align="left">
|
||||
<div class="divSideboxHeader" style="height: 15px; padding-top: 0px">
|
||||
<table border="0" cellpadding="1" cellspacing="0" width="{outer_width}">
|
||||
<tr>
|
||||
<td align="left"> <strong>{title}</strong></td>{portal_controls}
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="{inner_width}" bgcolor="#eeeeee">
|
||||
{row}
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</p>
|
||||
<!-- END portal_box -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN portal_row -->
|
||||
<tr>
|
||||
<td>
|
||||
{output}
|
||||
</td>
|
||||
</tr>
|
||||
<!-- END portal_row -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN portal_listbox_header -->
|
||||
<tr>
|
||||
<td>
|
||||
<ul>
|
||||
<!-- END portal_listbox_header -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN portal_listbox_link -->
|
||||
<li><a href="{link}">{text}</a></li>
|
||||
<!-- END portal_listbox_link -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN portal_listbox_footer -->
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- END portal_listbox_footer -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN portal_control -->
|
||||
<td valign="middle" align="right" nowrap="nowrap">{control_link}</td>
|
||||
<!-- END portal_control -->
|
||||
|
||||
|
||||
|
||||
<!-- BEGIN link_field -->
|
||||
{link_field_data}
|
||||
<!-- END link_field -->
|
Binary file not shown.
Binary file not shown.
@ -1,183 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
|
||||
<svg
|
||||
i:viewOrigin="87 453"
|
||||
i:rulerOrigin="0 0"
|
||||
i:pageBounds="0 842 595 0"
|
||||
width="420.467"
|
||||
height="66.227"
|
||||
viewBox="0 0 420.467 66.227"
|
||||
style="overflow:visible;enable-background:new 0 0 420.467 66.227"
|
||||
xml:space="preserve"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:ns="http://ns.adobe.com/Variables/1.0/"
|
||||
xmlns:ns0="http://ns.adobe.com/SaveForWeb/1.0/"
|
||||
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
|
||||
xmlns:xml="http://www.w3.org/XML/1998/namespace"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
id="svg548"
|
||||
sodipodi:version="0.33pre"
|
||||
sodipodi:docname="/home/pim/Desktop/E-GROUPW.EPS.svg"
|
||||
sodipodi:docbase="/home/pim/Desktop/">
|
||||
<defs
|
||||
id="defs564" />
|
||||
<sodipodi:namedview
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata549">
|
||||
<ns:variableSets>
|
||||
<ns:variableSet
|
||||
varSetName="binding1"
|
||||
locked="none">
|
||||
<ns:variables />
|
||||
<ns:sampleDataSets />
|
||||
</ns:variableSet>
|
||||
</ns:variableSets>
|
||||
<ns0:sfw>
|
||||
<ns0:slices />
|
||||
<ns0:sliceSourceBounds
|
||||
y="386.773"
|
||||
x="87"
|
||||
width="420.467"
|
||||
height="66.227"
|
||||
bottomLeftOrigin="true" />
|
||||
</ns0:sfw>
|
||||
</metadata>
|
||||
<g
|
||||
id="Layer_1"
|
||||
i:layer="yes"
|
||||
i:dimmedPercent="50"
|
||||
i:rgbTrio="#4F008000FFFF"
|
||||
transform="translate(0.627537,-79.70049)"
|
||||
style="fill:#002572;fill-opacity:0.996078;">
|
||||
<g
|
||||
id="g551"
|
||||
style="fill:#002572;fill-opacity:0.996078;">
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#002572;fill-opacity:0.996078;"
|
||||
d="M107.059,31.714v-7.821H88.404v6.601H99.31v2.871 c0,3.301-0.718,5.883-2.583,8.035c-2.009,2.297-4.951,3.588-8.323,3.588c-3.014,0-5.74-1.148-7.534-3.084 c-2.512-2.727-3.085-5.67-3.085-15.93s0.574-13.13,3.085-15.857c1.793-1.938,4.52-3.157,7.534-3.157 c5.74,0,9.471,3.301,10.763,8.897h7.821C105.553,7.104,99.238,0,88.404,0c-5.453,0-9.902,1.938-13.417,5.453 c-5.023,5.023-4.951,10.691-4.951,20.521c0,9.831-0.072,15.499,4.951,20.522c3.516,3.516,8.108,5.453,13.417,5.453 c5.381,0,10.188-1.723,14.063-5.812C105.839,42.549,107.059,38.316,107.059,31.714z"
|
||||
id="path552" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#002572;fill-opacity:0.996078;"
|
||||
d="M141.99,18.153c-2.511-2.511-5.166-3.444-8.682-3.444 c-4.09,0-7.821,1.794-9.687,4.377V15.14h-7.175v36.378h7.319V29.418c0-5.022,3.301-8.18,7.247-8.18 c2.511,0,3.803,0.79,5.453,2.439L141.99,18.153z"
|
||||
id="path553" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#002572;fill-opacity:0.996078;"
|
||||
d="M173.977,33.293 c0-6.099-0.861-10.691-4.305-14.278c-2.368-2.44-5.956-4.305-10.906-4.305c-4.951,0-8.467,1.865-10.834,4.305 c-3.444,3.587-4.305,8.18-4.305,14.278c0,6.17,0.861,10.764,4.305,14.35c2.368,2.441,5.883,4.307,10.834,4.307 c4.951,0,8.539-1.865,10.906-4.307C173.116,44.057,173.977,39.463,173.977,33.293z M166.658,33.293 c0,3.947-0.287,7.75-2.511,9.975c-1.363,1.361-3.229,2.152-5.381,2.152c-2.153,0-3.947-0.791-5.31-2.152 c-2.225-2.225-2.511-6.027-2.511-9.975c0-3.946,0.287-7.749,2.511-9.974c1.363-1.363,3.157-2.081,5.31-2.081 c2.152,0,4.018,0.717,5.381,2.081C166.371,25.544,166.658,29.347,166.658,33.293z"
|
||||
id="path554" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#002572;fill-opacity:0.996078;"
|
||||
d="M211.836,51.518V15.14h-7.319v22.171c0,5.598-3.444,8.109-7.534,8.109 c-4.09,0-7.319-2.439-7.319-8.109V15.14h-7.319v23.247c0,4.09,0.861,7.535,3.66,10.262c2.152,2.08,5.238,3.301,8.969,3.301 c3.66,0,7.175-1.363,9.687-4.09v3.658H211.836z"
|
||||
id="path555" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#002572;fill-opacity:0.996078;"
|
||||
d="M252.07,33.293 c0-5.525-0.431-11.695-4.09-15.355c-2.01-2.009-5.238-3.229-8.897-3.229c-3.946,0-6.889,1.004-9.615,4.305V15.14h-7.175v51.087 h7.318V47.787c2.655,3.156,5.669,4.162,9.543,4.162c3.66,0,6.816-1.221,8.826-3.23C251.64,45.061,252.07,38.818,252.07,33.293z M244.751,33.293c0,6.457-0.933,12.127-7.533,12.127c-6.602,0-7.606-5.67-7.606-12.127c0-6.458,1.005-12.054,7.606-12.054 C243.818,21.239,244.751,26.835,244.751,33.293z"
|
||||
id="path556" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#002572;fill-opacity:0.996078;"
|
||||
d="M318.137,0.431h-8.18l-8.897,36.522L290.799,0.431h-6.242l-10.261,36.522 l-8.897-36.522h-8.18l13.346,51.087h6.745l10.332-35.804l10.404,35.804h6.744L318.137,0.431z"
|
||||
id="path557" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#002572;fill-opacity:0.996078;"
|
||||
d="M352.485,51.518V27.194 c0-8.251-5.022-12.485-14.996-12.485c-6.027,0-9.614,1.22-13.059,5.238l4.808,4.521c2.009-2.583,3.946-3.516,7.964-3.516 c5.668,0,7.965,2.225,7.965,6.816v2.583h-9.615c-8.323,0-12.557,4.377-12.557,10.475c0,3.086,1.005,5.885,2.87,7.822 c2.225,2.225,5.238,3.301,9.759,3.301s7.031-1.076,9.687-3.732v3.301H352.485z M345.167,38.387c0,2.584-0.503,4.307-1.579,5.383 c-1.938,1.865-4.018,2.08-6.816,2.08c-4.592,0-6.673-1.865-6.673-5.166s2.225-5.238,6.53-5.238h8.538V38.387z"
|
||||
id="path558" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#002572;fill-opacity:0.996078;"
|
||||
d="M386.687,18.153c-2.512-2.511-5.166-3.444-8.683-3.444 c-4.09,0-7.82,1.794-9.687,4.377V15.14h-7.175v36.378h7.319V29.418c0-5.022,3.3-8.18,7.246-8.18c2.512,0,3.804,0.79,5.453,2.439 L386.687,18.153z"
|
||||
id="path559" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#002572;fill-opacity:0.996078;"
|
||||
d="M420.467,35.445v-3.229 c0-10.333-5.668-17.507-15.427-17.507c-9.327,0-15.427,6.816-15.427,18.583c0,13.848,7.247,18.656,16.359,18.656 c6.387,0,9.902-1.938,13.633-5.67l-4.663-4.375c-2.583,2.582-4.736,3.73-8.826,3.73c-5.955,0-9.256-3.947-9.256-10.189H420.467z M413.22,30.351H396.86c0.072-2.224,0.215-3.3,0.933-4.951c1.148-2.727,3.804-4.592,7.247-4.592c3.444,0,6.027,1.866,7.175,4.592 C412.933,27.051,413.148,28.127,413.22,30.351z"
|
||||
id="path560" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#002572;fill-opacity:0.996078;"
|
||||
d="M24.039,21.584h20.644c0.976,0,1.767,0.791,1.767,1.767v3.934 c0,0.976-0.791,1.766-1.767,1.766H24.039c-0.976,0-1.767-0.791-1.767-1.766v-3.934C22.272,22.375,23.063,21.584,24.039,21.584z"
|
||||
id="path561" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#002572;fill-opacity:0.996078;"
|
||||
d="M7.285,7.937V44.27h25.508h0.019h0.305 c0.355,0,1.555,0.416,1.558,1.311l0.009,0.656l-0.002,3.936c0.002,0.867-1.204,1.311-1.558,1.311l-2.175,0.004H3.069 C1.851,51.496,0,49.66,0,48.459V3.736C0,2.21,2.095,0.7,3.329,0.709h29.472h0.002h0.305c0.354,0,1.554,0.416,1.558,1.312 l-0.006,0.653v3.951c0.002,0.868-1.203,1.311-1.558,1.311h-0.305L7.285,7.937z"
|
||||
id="path562" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g565"
|
||||
i:layer="yes"
|
||||
i:dimmedPercent="50"
|
||||
i:rgbTrio="#4F008000FFFF"
|
||||
transform="matrix(0.962096,0.000000,0.000000,0.962096,7.530728,1.882702)"
|
||||
style="fill:#2572fe;fill-opacity:1;overflow:visible;enable-background:new 0 0 420.467 66.227;">
|
||||
<g
|
||||
id="g566"
|
||||
style="fill:#2572fe;fill-opacity:1;">
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#2572fe;fill-opacity:1;"
|
||||
d="M107.059,31.714v-7.821H88.404v6.601H99.31v2.871 c0,3.301-0.718,5.883-2.583,8.035c-2.009,2.297-4.951,3.588-8.323,3.588c-3.014,0-5.74-1.148-7.534-3.084 c-2.512-2.727-3.085-5.67-3.085-15.93s0.574-13.13,3.085-15.857c1.793-1.938,4.52-3.157,7.534-3.157 c5.74,0,9.471,3.301,10.763,8.897h7.821C105.553,7.104,99.238,0,88.404,0c-5.453,0-9.902,1.938-13.417,5.453 c-5.023,5.023-4.951,10.691-4.951,20.521c0,9.831-0.072,15.499,4.951,20.522c3.516,3.516,8.108,5.453,13.417,5.453 c5.381,0,10.188-1.723,14.063-5.812C105.839,42.549,107.059,38.316,107.059,31.714z"
|
||||
id="path567" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#2572fe;fill-opacity:1;"
|
||||
d="M141.99,18.153c-2.511-2.511-5.166-3.444-8.682-3.444 c-4.09,0-7.821,1.794-9.687,4.377V15.14h-7.175v36.378h7.319V29.418c0-5.022,3.301-8.18,7.247-8.18 c2.511,0,3.803,0.79,5.453,2.439L141.99,18.153z"
|
||||
id="path568" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#2572fe;fill-opacity:1;"
|
||||
d="M173.977,33.293 c0-6.099-0.861-10.691-4.305-14.278c-2.368-2.44-5.956-4.305-10.906-4.305c-4.951,0-8.467,1.865-10.834,4.305 c-3.444,3.587-4.305,8.18-4.305,14.278c0,6.17,0.861,10.764,4.305,14.35c2.368,2.441,5.883,4.307,10.834,4.307 c4.951,0,8.539-1.865,10.906-4.307C173.116,44.057,173.977,39.463,173.977,33.293z M166.658,33.293 c0,3.947-0.287,7.75-2.511,9.975c-1.363,1.361-3.229,2.152-5.381,2.152c-2.153,0-3.947-0.791-5.31-2.152 c-2.225-2.225-2.511-6.027-2.511-9.975c0-3.946,0.287-7.749,2.511-9.974c1.363-1.363,3.157-2.081,5.31-2.081 c2.152,0,4.018,0.717,5.381,2.081C166.371,25.544,166.658,29.347,166.658,33.293z"
|
||||
id="path569" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#2572fe;fill-opacity:1;"
|
||||
d="M211.836,51.518V15.14h-7.319v22.171c0,5.598-3.444,8.109-7.534,8.109 c-4.09,0-7.319-2.439-7.319-8.109V15.14h-7.319v23.247c0,4.09,0.861,7.535,3.66,10.262c2.152,2.08,5.238,3.301,8.969,3.301 c3.66,0,7.175-1.363,9.687-4.09v3.658H211.836z"
|
||||
id="path570" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#2572fe;fill-opacity:1;"
|
||||
d="M252.07,33.293 c0-5.525-0.431-11.695-4.09-15.355c-2.01-2.009-5.238-3.229-8.897-3.229c-3.946,0-6.889,1.004-9.615,4.305V15.14h-7.175v51.087 h7.318V47.787c2.655,3.156,5.669,4.162,9.543,4.162c3.66,0,6.816-1.221,8.826-3.23C251.64,45.061,252.07,38.818,252.07,33.293z M244.751,33.293c0,6.457-0.933,12.127-7.533,12.127c-6.602,0-7.606-5.67-7.606-12.127c0-6.458,1.005-12.054,7.606-12.054 C243.818,21.239,244.751,26.835,244.751,33.293z"
|
||||
id="path571" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#2572fe;fill-opacity:1;"
|
||||
d="M318.137,0.431h-8.18l-8.897,36.522L290.799,0.431h-6.242l-10.261,36.522 l-8.897-36.522h-8.18l13.346,51.087h6.745l10.332-35.804l10.404,35.804h6.744L318.137,0.431z"
|
||||
id="path572" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#2572fe;fill-opacity:1;"
|
||||
d="M352.485,51.518V27.194 c0-8.251-5.022-12.485-14.996-12.485c-6.027,0-9.614,1.22-13.059,5.238l4.808,4.521c2.009-2.583,3.946-3.516,7.964-3.516 c5.668,0,7.965,2.225,7.965,6.816v2.583h-9.615c-8.323,0-12.557,4.377-12.557,10.475c0,3.086,1.005,5.885,2.87,7.822 c2.225,2.225,5.238,3.301,9.759,3.301s7.031-1.076,9.687-3.732v3.301H352.485z M345.167,38.387c0,2.584-0.503,4.307-1.579,5.383 c-1.938,1.865-4.018,2.08-6.816,2.08c-4.592,0-6.673-1.865-6.673-5.166s2.225-5.238,6.53-5.238h8.538V38.387z"
|
||||
id="path573" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#2572fe;fill-opacity:1;"
|
||||
d="M386.687,18.153c-2.512-2.511-5.166-3.444-8.683-3.444 c-4.09,0-7.82,1.794-9.687,4.377V15.14h-7.175v36.378h7.319V29.418c0-5.022,3.3-8.18,7.246-8.18c2.512,0,3.804,0.79,5.453,2.439 L386.687,18.153z"
|
||||
id="path574" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#2572fe;fill-opacity:1;"
|
||||
d="M420.467,35.445v-3.229 c0-10.333-5.668-17.507-15.427-17.507c-9.327,0-15.427,6.816-15.427,18.583c0,13.848,7.247,18.656,16.359,18.656 c6.387,0,9.902-1.938,13.633-5.67l-4.663-4.375c-2.583,2.582-4.736,3.73-8.826,3.73c-5.955,0-9.256-3.947-9.256-10.189H420.467z M413.22,30.351H396.86c0.072-2.224,0.215-3.3,0.933-4.951c1.148-2.727,3.804-4.592,7.247-4.592c3.444,0,6.027,1.866,7.175,4.592 C412.933,27.051,413.148,28.127,413.22,30.351z"
|
||||
id="path575" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill:#2572fe;fill-opacity:1;"
|
||||
d="M24.039,21.584h20.644c0.976,0,1.767,0.791,1.767,1.767v3.934 c0,0.976-0.791,1.766-1.767,1.766H24.039c-0.976,0-1.767-0.791-1.767-1.766v-3.934C22.272,22.375,23.063,21.584,24.039,21.584z"
|
||||
id="path576" />
|
||||
<path
|
||||
i:knockout="Off"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;fill:#2572fe;fill-opacity:1;"
|
||||
d="M7.285,7.937V44.27h25.508h0.019h0.305 c0.355,0,1.555,0.416,1.558,1.311l0.009,0.656l-0.002,3.936c0.002,0.867-1.204,1.311-1.558,1.311l-2.175,0.004H3.069 C1.851,51.496,0,49.66,0,48.459V3.736C0,2.21,2.095,0.7,3.329,0.709h29.472h0.002h0.305c0.354,0,1.554,0.416,1.558,1.312 l-0.006,0.653v3.951c0.002,0.868-1.203,1.311-1.558,1.311h-0.305L7.285,7.937z"
|
||||
id="path577" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 13 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user