Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ <h1>

<p><b>1.2.7</b> -- To De Determined</p>
<ul>
<li>[<a href='https://github.com/igniterealtime/openfire-sip-plugin/issues/19'>#19] - Replace tooltip javascript library.</li>
</ul>

<p><b>1.2.{2,6}</b> -- December 4, 2020</p>
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<description>Provides support for SIP account management</description>
<author>Ignite Realtime</author>
<version>${project.version}</version>
<date>12/17/2020</date>
<date>2022-03-04</date>
<databaseKey>sip</databaseKey>
<databaseVersion>2</databaseVersion>
<minServerVersion>4.0.0</minServerVersion>
Expand Down
75 changes: 34 additions & 41 deletions src/web/sipark-log-summary.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
<meta name="pageID" content="sipark-log-summary"/>
<script src="/js/prototype.js" type="text/javascript"></script>
<script src="/js/scriptaculous.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript" src="/js/tooltips/domLib.js"></script>
<script type="text/javascript" language="javascript" src="/js/tooltips/domTT.js"></script>
<style type="text/css">@import url( /js/jscalendar/calendar-win2k-cold-1.css );</style>
<script type="text/javascript" src="/js/jscalendar/calendar.js"></script>
<script type="text/javascript" src="/js/jscalendar/i18n.jsp"></script>
Expand Down Expand Up @@ -57,25 +55,42 @@
margin-left: 3px;
margin-right: 3px;
}
</style>

<script type="text/javascript">
function hover(oRow) {
oRow.style.background = "#A6CAF0";
oRow.style.cursor = "pointer";
.openfire-helpicon-with-tooltip {
position: relative;
display: inline-block;
}

function noHover(oRow) {
oRow.style.background = "white";
.openfire-helpicon-with-tooltip .helpicon {
display: block;
float: left;
width: 14px;
height: 14px;
background: transparent url('images/icon_help_14x14.gif') no-repeat;
}

function submitFormAgain(start, range){
document.f.start.value = start;
document.f.range.value = range;
document.f.parseRange.value = "true";
document.f.submit();
.openfire-helpicon-with-tooltip .tooltiptext {
font-family: Arial, Helvetica sans-serif;
font-size: small;
visibility: hidden;
width: 240px;
background-color: #FFFBE2;
color: black;
text-align: center;
border: 1px solid #bbb;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -120px;
white-space: normal;
}
</script>

.openfire-helpicon-with-tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
<style type="text/css">
.stat {
margin: 0px 0px 8px 0px;
Expand All @@ -102,29 +117,6 @@
border-width: 0px 0px 1px 0px;
}

/* Default DOM Tooltip Style */
div.domTT {
border: 1px solid #bbb;
background-color: #FFFBE2;
font-family: Arial, Helvetica sans-serif;
font-size: 9px;
padding: 5px;
}

div.domTT .caption {
font-family: serif;
font-size: 12px;
font-weight: bold;
padding: 1px 2px;
color: #FFFFFF;
}

div.domTT .contents {
font-size: 12px;
font-family: sans-serif;
padding: 3px 2px;
}

.textfield {
font-size: 11px;
font-family: Verdana, Arial, sans-serif;
Expand Down Expand Up @@ -271,9 +263,10 @@
<td colspan="3">
<img src="images/icon_daterange.gif" align="absmiddle" alt="" style="margin: 0px 4px 0px 2px;"/>
<b><fmt:message key="archive.search.daterange" /></b>
<a onmouseover="domTT_activate(this, event, 'content',
'<fmt:message key="archive.search.daterange.tooltip"/>',
'trail', true, 'direction', 'northeast', 'width', '220');"><img src="images/icon_help_14x14.gif" vspace="2" align="texttop"/></a>
<div class="openfire-helpicon-with-tooltip">
<span class="helpicon"></span>
<span class="tooltiptext"><fmt:message key="archive.search.daterange.tooltip"/></span>
</div>
</td>
</tr>
<tr valign="top">
Expand Down
23 changes: 0 additions & 23 deletions src/web/sipark-settings.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -70,29 +70,6 @@
border-width: 0px 0px 1px 0px;
}

/* Default DOM Tooltip Style */
div.domTT {
border: 1px solid #bbb;
background-color: #F9F5D5;
font-family: arial;
font-size: 9px;
padding: 5px;
}

div.domTT .caption {
font-family: serif;
font-size: 12px;
font-weight: bold;
padding: 1px 2px;
color: #FFFFFF;
}

div.domTT .contents {
font-size: 12px;
font-family: sans-serif;
padding: 3px 2px;
}

.textfield {
font-size: 11px;
font-family: verdana;
Expand Down