planlos ....

Probleme bei der regulären Arbeiten mit phpBB, Fragen zu Vorgehensweisen oder Funktionsweise sowie sonstige Fragen zu phpBB im Allgemeinen.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Benutzeravatar
Leuchte
Ehemaliges Teammitglied
Beiträge: 9179
Registriert: 26.05.2003 14:57
Wohnort: Duisburg
Kontaktdaten:

Beitrag von Leuchte »

schau dir mal die calendar_box.tpl an

Code: Alles auswählen

<td class="quote"><b>&nbsp;<a href="{_calendar_box.U_PREC}" class="gen">&laquo;</a>&nbsp;</b></td>
			<td width="100%" align="center">{_calendar_box.S_MONTH}{_calendar_box.S_YEAR}&nbsp;{_calendar_box.S_FORUM_LIST}&nbsp;<input type="submit" value="{_calendar_box.L_GO}" class="liteoption" /></td>
			<td class="quote"><b>&nbsp;<a href="{_calendar_box.U_NEXT}" class="gen">&raquo;</a>&nbsp;</b></td>
Benutzeravatar
phpbbaby
Mitglied
Beiträge: 255
Registriert: 15.10.2003 07:37

Beitrag von phpbbaby »

ähm....sag mal was steht bei dir in den oberen zeilen deiner calender_box ????


das steht bei mir :
<!-- The javascript presents here comes from MyCalendar 2.2.6 from MojavLinux -->
<script language="Javascript" type="text/javascript">
<!--
var agt = navigator.userAgent.toLowerCase();
var originalFirstChild;
Benutzeravatar
Leuchte
Ehemaliges Teammitglied
Beiträge: 9179
Registriert: 26.05.2003 14:57
Wohnort: Duisburg
Kontaktdaten:

Beitrag von Leuchte »

dat steht bei mir auch. bist du dir unschlüssig, dann gib doch mal den link zu "deinem" cal-mod, damit wir nicht weiter aneinander vorbei reden ;)
Benutzeravatar
phpbbaby
Mitglied
Beiträge: 255
Registriert: 15.10.2003 07:37

Beitrag von phpbbaby »

sorry den geb ich erst raus wenn mein "projekt" mal soeit fertig ist, dass ich es der "öffentlichkeit" überlassen kann - so kann mir ja jeder nun über die schulter gucken :D

so das ist meine calendar.tpl
<!-- The javascript presents here comes from MyCalendar 2.2.6 from MojavLinux -->
<script language="Javascript" type="text/javascript">
<!--
var agt = navigator.userAgent.toLowerCase();
var originalFirstChild;

function createTitle(which, string, x, y)
{
// record the original first child (protection when deleting)
if (typeof(originalFirstChild) == 'undefined')
{
originalFirstChild = document.body.firstChild;
}

x = document.all ? (event.clientX + document.body.scrollLeft) : x;
y = document.all ? (event.clientY + document.body.scrollTop) : y;
element = document.createElement('div');
element.style.position = 'absolute';
element.style.zIndex = 1000;
element.style.visibility = 'hidden';
if (document.all)
{
element.style.width = '200px';
excessWidth = 50;
excessHeight = 20;
}
else
{
excessWidth = 0;
excessHeight = 20;
}
element.innerHTML = '<div class="bodyline" style="padding: 2px; text-align: left;"><span class="gen">' + string + '</span></div>';
renderedElement = document.body.insertBefore(element, document.body.firstChild);
renderedWidth = renderedElement.offsetWidth;
renderedHeight = renderedElement.offsetHeight;
// fix overflowing off the right side of the screen
overFlowX = x + renderedWidth + excessWidth - document.body.offsetWidth;
x = overFlowX > 0 ? x - overFlowX : x;
// fix overflowing off the bottom of the screen
overFlowY = y + renderedHeight + excessHeight - window.innerHeight - window.pageYOffset;
y = overFlowY > 0 ? y - overFlowY : y;
renderedElement.style.top = (y + 15) + 'px';
renderedElement.style.left = x + 'px';
// windows versions of mozilla are like too fast here...we have to slow it down
if (agt.indexOf('gecko') != -1 && agt.indexOf('win') != -1)
{
setTimeout("renderedElement.style.visibility = 'visible'", 1);
}
else
{
renderedElement.style.visibility = 'visible';
}
}

function destroyTitle()
{
// make sure we don't delete the actual page contents (javascript can get out of alignment)
if (document.body.firstChild != originalFirstChild)
{
document.body.removeChild(document.body.firstChild);
}
}
//-->
</script>

<!-- BEGIN _calendar_box -->
<!-- BEGIN switch_full_month -->
<table align="center" cellpadding="0" cellspacing="1" border="0" width="100%" class="forumline">
<tr>
<td align="center" class="catHead" colspan="{_calendar_box.SPAN_ALL}" width="100%">{_calendar_box.S_MONTH}{_calendar_box.S_YEAR}&nbsp;<input type="submit" value="{_calendar_box.L_GO}" class="liteoption" /></td>
</tr>
<tr>
<!-- BEGIN _cell -->
<th width="{_calendar_box.switch_full_month._cell.WIDTH}%" nowrap="nowrap">{_calendar_box.switch_full_month._cell.L_DAY}</th>
<!-- END _cell -->
</tr>
<!-- END switch_full_month -->
<!-- BEGIN switch_full_month_no -->
<table align="center" cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100%"></td>
<td align="right" nowrap="nowrap"><span class="mainmenu"><a href="#" onClick="hdr_toggle('calendar_display','calendar_open_close', '{DOWN_ARROW}', '{UP_ARROW}'); return false;" class="gensmall"><img src="{TOGGLE_ICON}" id="calendar_open_close" hspace="2" border="0" />{_calendar_box.L_CALENDAR_TXT}</a>&nbsp;</span></td>
</tr>
<tbody id="calendar_display" style="display:{TOGGLE_STATUS}">
<tr height="2"><td></td></tr>
<tr><td colspan="2">
<table align="center" cellpadding="0" cellspacing="1" border="0" width="100%" class="forumline">
<tr>
<th align="center" colspan="{_calendar_box.SPAN_ALL}" width="100%">{_calendar_box.L_CALENDAR}</th>
</tr>
<!-- END switch_full_month_no -->
<!-- BEGIN _row -->
<tr>
<!-- BEGIN _cell -->
<!-- BEGIN switch_filled_no -->
<td class="row3" colspan="{_calendar_box._row._cell.SPAN}" width="{_calendar_box._row._cell.WIDTH}%">&nbsp;</td>
<!-- END switch_filled_no -->
<!-- BEGIN switch_filled -->
<td class="row1" valign="top" colspan="{_calendar_box._row._cell.SPAN}" width="{_calendar_box._row._cell.WIDTH}%">
<table cellspacing="0" cellpadding="2" width="100%" height="94" valign="top">
<tr>
<td class="row2" align="center" height="4" nowrap="nowrap"><span class="genmed"><a href="{_calendar_box._row._cell.U_DATE}" alt="{_calendar_box._row._cell.DATE}" class="genmed">{_calendar_box._row._cell.DATE}</a></span></td>
</tr>
<tr valign="top">
<td class="row1" nowrap="nowrap">
<table cellspacing="0" cellpadding="0" width="100%" valign="top">
<!-- BEGIN _event -->
<!-- BEGIN switch_event -->
<tr>
<td class="row1" nowrap="nowrap"><span class="genmed">{_calendar_box._row._cell.switch_filled._event.EVENT_TYPE}<a href="{_calendar_box._row._cell.switch_filled._event.U_EVENT}" onMouseOver="createTitle(this, '{_calendar_box._row._cell.switch_filled._event.EVENT_MESSAGE}', event.pageX, event.pageY);" onMouseOut="destroyTitle();" class="{_calendar_box._row._cell.switch_filled._event.EVENT_CLASS}">{_calendar_box._row._cell.switch_filled._event.EVENT_TITLE}</a></span></td>
<!-- BEGIN _more -->
<td class="row1" align="right"><span class="genmed"><a href="#" onClick="hdr_toggle('calendar_display_extend_{_calendar_box._row._cell.switch_filled.EVENT_DATE}','calendar_open_close_{_calendar_box._row._cell.switch_filled.EVENT_DATE}', '{DOWN_ARROW}', '{UP_ARROW}'); return false;" class="gensmall">...<img src="{_calendar_box._row._cell.switch_filled.TOGGLE_ICON}" id="calendar_open_close_{_calendar_box._row._cell.switch_filled.EVENT_DATE}" hspace="2" border="0" /></a></span></td>
<!-- END _more -->
<!-- BEGIN _more_no -->
<td></td>
<!-- END _more_no -->
</tr>
<!-- END switch_event -->
<!-- BEGIN switch_event_no -->
<tr>
<td class="row1"><span class="genmed">&nbsp;</span></td>
<!-- BEGIN _more -->
<td class="row1" align="right"><span class="genmed"><a href="#" onClick="hdr_toggle('calendar_display_extend_{_calendar_box._row._cell.switch_filled.EVENT_DATE}','calendar_open_close_{_calendar_box._row._cell.switch_filled.EVENT_DATE}', '{DOWN_ARROW}', '{UP_ARROW}'); return false;" class="gensmall">...<img src="{_calendar_box._row._cell.switch_filled.TOGGLE_ICON}" id="calendar_open_close_{_calendar_box._row._cell.switch_filled.EVENT_DATE}" hspace="2" border="0" /></a></span></td>
<!-- END _more -->
<!-- BEGIN _more_no -->
<td></td>
<!-- END _more_no -->
</tr>
<!-- END switch_event_no -->
<!-- BEGIN _more_header -->
<tbody id="calendar_display_extend_{_calendar_box._row._cell.switch_filled.EVENT_DATE}" style="display:{_calendar_box._row._cell.switch_filled.TOGGLE_STATUS}">
<!-- END _more_header -->
<!-- BEGIN _more_footer -->
</tbody>
<!-- END _more_footer -->
<!-- END _event -->
</table>
</td>
</tr>
</table>
</td>
<!-- END switch_filled -->
<!-- END _cell -->
</tr>
<!-- END _row -->
<!-- BEGIN switch_full_month -->
<tr>
<td class="cat" align="center" colspan="{_calendar_box.SPAN_ALL}" width="100%">&nbsp;</td>
</tr>
<!-- END switch_full_month -->
<!-- BEGIN switch_full_month_no -->
</table><table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table></td></tr></tbody>
<!-- END switch_full_month_no -->
</table>
<!-- END _calendar_box -->
die sieht etwas anders aus als deine ;)
Benutzeravatar
Leuchte
Ehemaliges Teammitglied
Beiträge: 9179
Registriert: 26.05.2003 14:57
Wohnort: Duisburg
Kontaktdaten:

Beitrag von Leuchte »

sorry den geb ich erst raus wenn mein "projekt" mal soeit fertig ist, dass ich es der "öffentlichkeit" überlassen kann - so kann mir ja jeder nun über die schulter gucken
ich meinte auch den link zum mod, also da wo du ihn herhast ;)
Benutzeravatar
phpbbaby
Mitglied
Beiträge: 255
Registriert: 15.10.2003 07:37

Beitrag von phpbbaby »

achso :D :D

herje, dass weiss ich nimmer-ich hab so viele mods schon auf der festplatte *gg*

mist-ich will das ändern
Benutzeravatar
Leuchte
Ehemaliges Teammitglied
Beiträge: 9179
Registriert: 26.05.2003 14:57
Wohnort: Duisburg
Kontaktdaten:

Beitrag von Leuchte »

also gut, die datei da oben ist ähnlich meiner, die ich hier hab. das sagt uns, das das der selbe mod ist, aber entweder eine ältere oder eine neuere version.
du kannst ja die dateien die dazu gehören in einen ordner hauen und den link posten (auch als pn oder so; ich kann auch schweigen ;))
ansonsten kommen wir nicht weiter
Gast

Beitrag von Gast »

hm.....ehrlich gesagt wäre mir das hier viel wichtiger

http://www.phpbb.de/viewtopic.php?t=385 ... sc&start=0

und das hier

http://www.phpbb.de/viewtopic.php?t=242 ... c&start=10

beides bring ich nicht zum laufen und bevor das nicht geht kann ich nicht online gehen mit meinem board :(


die << >> kann ich dann auch mal ändern-das andere hat oberste priorität für mich-kannste da eventuell mal gucken?
Gast

Beitrag von Gast »

hm.....danke schon mal leuchte, dass mich erleuchten willst :D
aber ehrlich gesagt wäre mir das hier viel wichtiger

http://www.phpbb.de/viewtopic.php?t=385 ... sc&start=0

und das hier

http://www.phpbb.de/viewtopic.php?t=242 ... c&start=10

beides bring ich nicht zum laufen und bevor das nicht geht kann ich nicht online gehen mit meinem board :(


die << >> kann ich dann auch mal ändern-das andere hat oberste priorität für mich-kannste da eventuell mal gucken?[/quote]
Benutzeravatar
phpbbaby
Mitglied
Beiträge: 255
Registriert: 15.10.2003 07:37

Beitrag von phpbbaby »

hola, da ging nun etwas schief und eingeloggt war ich auch nimmer :cookie:
Antworten

Zurück zu „phpBB 2.0: Administration, Benutzung und Betrieb“