Tuesday, 21 July 2009 03:00

article_column

Ansichten:
  • com_content/category
  • com_content/frontpage
  • com_content/section
CSS Code: { background-color:yellow; border: 1px solid red; color:#000 !important; font-family:trebuchet MS; font-size:1.2em !important; font-weight:bold !important; padding:0; }
HTML Ansicht:We are Volunteers Attention, open in a new window. PDFPrint E-mail Last Updated (Thursday, 08 November 2007 12:10) Written by Administrator Wednesday, 07 July 2004 09:54 The Joomla! Core Team consists of volunteer developers, designers, administrators and managers who, together with a large range of Work Groups of dedicated community members have taken Joomla! to new heights in its relatively short life. This well-oiled machine is often copied but never surpassed. Joomla! has some wonderfully talented people taking Open Source concepts to the forefront of industry standards. Joomla! 1.5 is a major leap forward and represents the most exciting Joomla! release in the history of the project. Read more: We are Volunteers
HTML Code: {codecitation class="gutter: false;width:100%;"}

 

HTML Code: {codecitation class="gutter: false;width:100%;"}
<div class="article_column column1 cols2" >
<h2 class="contentheading">We are Volunteers</h2>
<p class="buttonheading">
<img src="Joomla_15/templates/beez/images/trans.gif" alt="Attention, open in a new window." />
<a href="Joomla_15/latest-news&id=6:we-are-volunteers&format=pdf" title="PDF" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" rel="nofollow">
<img src="Joomla_15/images/M_images/pdf_button.png" alt="PDF" /></a><a href="/sites/J/Joomla_15/latest-news&id=6:we-are-volunteers&tmpl=component&print=1&page=" title="Print" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;"><img src="/sites/J/Joomla_15/images/M_images/printButton.png" alt="Print" /></a>
<a href="/sites/J/Joomla_15/index.php?option=com_mailto&tmpl=component&link=aHR0cDovL2xvY2FsaG9zdC9zaXRlcy9KL0pvb21sYV8xNS93ZS1hcmUtdm9sdW50ZWVycw==" title="E-mail" onclick="window.open(this.href,'win2','width=400,height=300,menubar=yes,resizable=yes'); return false;"><img src="/sites/J/Joomla_15/images/M_images/emailButton.png" alt="E-mail" /></a></p>
<p class="iteminfo">
<span class="modifydate">
Last Updated (Thursday, 08 November 2007 12:10) </span>


<span class="createdby">
Written by Administrator </span>

<span class="createdate">
Wednesday, 07 July 2004 09:54 </span>
</p>
<p>The Joomla! Core Team consists of volunteer developers, designers, administrators and managers who, together with a large range of Work Groups of dedicated community members have taken Joomla! to new heights in its relatively short life. This well-oiled machine is often copied but never surpassed. Joomla! has some wonderfully talented people taking Open Source concepts to the forefront of industry standards. Joomla! 1.5 is a major leap forward and represents the most exciting Joomla! release in the history of the project. </p>
<p>
<a href="#" class="readon">Read more: We are Volunteers</a>
</p>
</div>
{/codecitation}
Joomla PHP Code:
<div class="article_column column
cols"
>
<?php $this->item =& $this->getItem($i, $this->params);
echo $this->loadTemplate('item'); ?>
</div>
Published in Joomla CSS Guide
Monday, 20 July 2009 23:51

contentheading

Ansichten:
  • com_content/category
  • com_content/article
  • com_content/frontpage
  • com_content/section
CSS Code: .contentheading { background-color: yellow; border: 1px solid red; }
HTML Ansicht: CSS Guide
HTML Code: {codecitation class="gutter: false;width:100%;"}

CSS Guide

{/codecitation}
Joomla PHP Code:
<?php if ($this->params->get('show_title')) : ?>
<h2 class="contentheading">
<?php if ($this->params->get('link_titles') && $this->article->readmore_link != '') : ?>
<a href="" class="contentpagetitle">
<?php echo $this->article->title; ?></a>
<?php else :
echo $this->escape($this->article->title);
endif; ?>
</h2>
<?php endif; ?>
Published in Joomla CSS Guide
Monday, 20 July 2009 23:51

blog

Ansichten:
  • com_content/category
  • com_content/frontpage
  • com_content/section
CSS Code: .blog { background-color: yellow; padding: 10px ; border: 1px solid red;}

Joomla PHP Code:
<div class="blog">
 
<?php if ($this->params->def('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
<div class="contentdescription">
 
<?php if ($this->params->get('show_description_image') && $this->category->image) : ?>
<img src="" class="image_" />
<?php endif; ?>
 
<?php if ($this->params->get('show_description') && $this->category->description) :
echo $this->category->description;
endif; ?>
 
<?php if ($this->params->get('show_description_image') && $this->category->image) : ?>
<div class="wrap_image">&nbsp;</div>
<?php endif; ?>
 
</div>
<?php endif; ?>
 
<?php $i = $this->pagination->limitstart;
$rowcount = $this->params->def('num_leading_articles', 1);
for ($y = 0; $y < $rowcount && $i < $this->total; $y++, $i++) : ?>
<div class="leading">
<?php $this->item =& $this->getItem($i, $this->params);
echo $this->loadTemplate('item'); ?>
</div>
<span class="leading_separator">&nbsp;</span>
<?php endfor; ?>
 
<?php $introcount = $this->params->def('num_intro_articles', 4);
if ($introcount) :
$colcount = $this->params->def('num_columns', 2);
if ($colcount == 0) :
$colcount = 1;
endif;
$rowcount = (int) $introcount / $colcount;
$ii = 0;
for ($y = 0; $y < $rowcount && $i < $this->total; $y++) : ?>
<div class="article_row">
<?php for ($z = 0; $z < $colcount && $ii < $introcount && $i
< $this->total; $z++, $i++, $ii++) : ?>
<div class="article_column column cols" >
<?php $this->item =& $this->getItem($i, $this->params);
echo $this->loadTemplate('item'); ?>
</div>
<span class="article_separator">&nbsp;</span>
<?php endfor; ?>
<span class="row_separator">&nbsp;</span>
</div>
<?php endfor;
endif; ?>
 
<?php $numlinks = $this->params->def('num_links', 4);
if ($numlinks && $i < $this->total) : ?>
<div class="blog_more">
<?php $this->links = array_slice($this->items, $i - $this->pagination->limitstart,
$i
- $this->pagination->limitstart + $numlinks);
echo $this->loadTemplate('links'); ?>
</div>
<?php endif; ?>
 
<?php if ($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination')
== 2 && $this->pagination->get('pages.total') > 1)) : ?>
<?php if( $this->pagination->get('pages.total') > 1 ) : ?>
<p class="counter">
<?php echo $this->pagination->getPagesCounter(); ?>
</p>
<?php endif; ?>
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
<?php echo $this->pagination->getPagesLinks(); ?>
<?php endif; ?>
<?php endif; ?>
 
</div>
Published in Joomla CSS Guide
Monday, 20 July 2009 23:51

buttonheading

Ansichten:
  • com_content/category
  • com_content/article
  • com_content/frontpage
  • com_content/section
CSS Code:
p.buttonheading {
text-align:right;
}
 
.buttonheading img
{
border:0;
}
 
p.buttonheading a:link,p.buttonheading a:visited
{
border:solid 2px #fff;
}
 
.leading p.buttonheading a:link,.leading p.buttonheading a:visited
{
border:solid 2px #EFDEEA;
}
 
p.buttonheading a:hover
{
background:none !important;
color:#000 !important;
}
 
p.buttonheading a:active,p.buttonheading a:focus
{
border:solid 2px;
color:#000;
}

Joomla PHP Code:
<p class="buttonheading">
<?php if ($this->print) :
echo JHTML::_('icon.print_screen', $this->article, $this->params, $this->access);
elseif ($this->params->get('show_pdf_icon') || $this->params->get('show_print_icon')
 || $this->params->get('show_email_icon')) : ?>
<img src="/templates/beez/images/trans.gif" alt="" />
<?php if ($this->params->get('show_pdf_icon')) :
echo JHTML::_('icon.pdf', $this->article, $this->params, $this->access);
endif;
if ($this->params->get('show_print_icon')) :
echo JHTML::_('icon.print_popup', $this->article, $this->params, $this->access);
endif;
if ($this->params->get('show_email_icon')) :
echo JHTML::_('icon.email', $this->article, $this->params, $this->access);
endif;
endif; ?>
</p>
Published in Joomla CSS Guide
Monday, 02 November 2009 02:03

[20091103] - Core - XML File Read Issue

  • Project: Joomla!
  • SubProject: All
  • Severity: Low
  • Versions: 1.5.14 and all previous 1.5 releases
  • Exploit type: Extension Version Disclosure
  • Reported Date: 2009-October-13
  • Fixed Date: 2009-Nov-03

Description

It is possible to read the contents of an extension's XML file and find the version number of the installed extension. This could allow people to exploit a known security flaws for a specific version of an extension.

Affected Installs

All 1.5.x installs prior to and including 1.5.14 are affected.

Solution

Turn on Apache mod_rewrite and configure your .htaccess file to filter out XML files. In the htaccess.txt file shipped with version 1.5.15, lines 35-39 contain example code that will deny access to XML files. You can incorporate this code (or similar code) into your .htaccess file. Be sure to test that it does not cause problems on your site.

Reported by WHK and Gergő Erdősi

Contact

The JSST at the Joomla! Security Center.

Published in Sicherheitsmeldungen
Tuesday, 24 February 2009 09:17

Simple Machine Forum SMF - Sicherheitsupdate

Bei der derzeitigen Version des SimpleMachines Forum 1.1.7 ist eine Sicherheitslücke bekannt geworden.
Diese Lücke kann von potentiellen Angreifern genutzt werden, um ein Script einzuschleusen.

Der Hintergrund ist, dass die Anwendung nicht geschlossene "[url]" BBcode Tags nicht richtig verarbeitet. Dadurch können möglicherweise Scripte und HTML Code eingeschleust werden, die im Browser des Benutzers während einer gültigen Session ausgeführt werden können. Sobald der Benutzer während diese Session auf ein verändertes Detail, z.B. einen Link klickt, wird der Code ausgeführt.
Das Problem tritt aber nur dann auf, wenn der Benutzer aktiv auf einen veränderten Link klickt.

Die Sicherheitslücke ist in der Version 1.1.7 erstmalig bekannt geworden. Andere Versionen können ebenfalls betroffen sein.

Lösung: Update auf die Version 1.18 auf der Website von SimpleMachines Forum

Originalmeldung bei Secunia
Published in Neuigkeiten
security_release
Das Joomla-Projekt verkündet die sofortige Verfügbarkeit von Joomla 1.5.11 [Vea]. Dies ist ein Sicherheits-Release und die Nutzer werden dringend gebeten, zu aktualisieren.

Dieses Release enthält 26 Bugfixes, zweifach moderate Sicherheitskorrekturen und ein Low-Level-Security-Fix. Es sind  11 Wochen vergangen, seit Joomla 1.5.10  am 28. März 2009 erschien. Die Entwicklergruppe hat sich zum Ziel gesetzt, weiterhin für eine regelmäßige Versorgung Sicherheitspatches zu sorgen und häufige Aktualisierungen der Joomla-Community mitzuteilen.

Published in Neuigkeiten
Sunday, 04 October 2009 00:05

Joomla 1.6 Release Plan

Wenn Joomla 1,6 Alpha vor ein paar Monaten veröffentlicht wurde, war der ursprüngliche Plan, die Beta-Version  sechs Wochen später zu veröffentlichen Ende August. Allerdings ist bis heute keine Beta veröffentlicht. Was passiert ist, und wie ist der Status von Joomla 1.6 ?

Hannes Papenberg vom Joomla 1.6 Release Team erklärt, warum Joomla 1.6 Beta 1 verzögert wurde und beschreibt einige der Funktionen, die wir sehen werden.

 

ACL nicht fertig - aber bald


Der Hauptgrund für die Verzögerung: Der Code wurde nicht fertig. Vor allem das ACLSystem (Access Control System Level -

Published in Neuigkeiten
Sunday, 28 February 2010 20:00

Die Gewinner der CeBiT-Karten

Published in Neuigkeiten
Tuesday, 24 February 2009 18:17

Insert HTML Button

inserthtmlDer "Füge HTML ein"-Knopf erlaubt dem Benutzer beliebigen HTML-Code an die aktuelle Stelle im Editor einzufügen, ohne in die HTML-/Quellcodeansicht zu wechseln. Das ist besonders nützlich, wenn Sie einen Code wie zum Beispiel PayPal oder Google Adsense in Ihre Seite einfügen möchten.

Übersetzung vom Englischen

Benötigte Joomlaversion: 1.5
Enthaltene Sprachen: Englisch, Spanisch
In folgenden WYSWYG Editoren getestet: TinyMCE
Entwickelt von: Francisco R. Rey Barcelo
Lizenz: GNU General Public License

Anleitung:
  • Laden Sie das Plugin herunter
  • Gehen Sie auf in das JoomlaBackend und dort auf Erweiterungen -> Installieren
  • Gehen Sie nun zu "Erweiterungen" -> "Plugins" und aktivieren Sie das Plugin
  • Um es mit dem TinyMCE Editor zu nutzen, deaktivieren Sie bitte den HTML-Filter (siehe Beschreibung unten)
  • Nur für Joomla 1.5.8: Deaktivieren Sie den Joomla HTML-Filter (siehe Beschreibung unten)