Difference between revisions of "Main Page"
m (Repaired many broken links) |
Deadmaus2010 (talk | contribs) |
||
Line 102: | Line 102: | ||
* <span style="background-color:#eebbff">If you use one of my extensions, please '''add a reference to your wiki''' to the [[DPL:Websites using DPL|site list]]!</span> | * <span style="background-color:#eebbff">If you use one of my extensions, please '''add a reference to your wiki''' to the [[DPL:Websites using DPL|site list]]!</span> | ||
+ | /* | ||
+ | * Dynamic menus | ||
+ | */ | ||
+ | .dmenu { width: 180px } | ||
+ | |||
+ | .dmenu, .dmenu ul { /* all lists */ | ||
+ | padding: 0; | ||
+ | margin: 0; | ||
+ | list-style: none; | ||
+ | } | ||
+ | .dmenu .selflink { font-weight: normal; } | ||
+ | |||
+ | .dmenu li { /* all list items */ | ||
+ | position: relative; | ||
+ | float: left; | ||
+ | width: 172px; | ||
+ | padding: 4px; | ||
+ | z-index: 100; | ||
+ | } | ||
+ | |||
+ | .dmenu li, | ||
+ | .dmenu li.even a, | ||
+ | .dmenu li.odd a, | ||
+ | .dmenu li li, | ||
+ | .dmenu li li a, | ||
+ | .dmenu li li li, | ||
+ | .dmenu li li li a { | ||
+ | color : black; | ||
+ | } | ||
+ | |||
+ | .dmenu li li { margin: 0; } | ||
+ | |||
+ | .dmenu li ul { /* second-level lists */ | ||
+ | position: absolute; | ||
+ | left: -999em; | ||
+ | z-index: 101; | ||
+ | border: 1px solid #ccc; | ||
+ | } | ||
+ | |||
+ | .dmenu li ul ul { /* third-and-above-level lists */ | ||
+ | position: absolute; | ||
+ | left: -999em; | ||
+ | margin: 0 0 0 0; | ||
+ | z-index: 102; | ||
+ | } | ||
+ | |||
+ | .dmenu li.odd .submenu { | ||
+ | width: 12px; | ||
+ | height: 15px; | ||
+ | float: right; | ||
+ | background: url(/common/images/rarr-lt.png) 0 3px no-repeat; | ||
+ | } | ||
+ | .dmenu li.even .submenu { | ||
+ | width: 12px; | ||
+ | height: 15px; | ||
+ | float: right; | ||
+ | background: url(/common/images/rarr-dk.png) 0 3px no-repeat; | ||
+ | } | ||
+ | .dmenu li.odd { | ||
+ | background: #E9EDF4; | ||
+ | border: 2px solid #E9EDF4; | ||
+ | } | ||
+ | .dmenu li.even { | ||
+ | background: #D0D8E8; | ||
+ | border: 2px solid #D0D8E8; | ||
+ | } | ||
+ | |||
+ | .dmenu li:hover, .dmenu li.sfhover { | ||
+ | border: 2px solid #385D8A; | ||
+ | } | ||
+ | |||
+ | .dmenu li:hover ul ul, | ||
+ | .dmenu li:hover ul ul ul, | ||
+ | .dmenu li.sfhover ul ul, | ||
+ | .dmenu li.sfhover ul ul ul { | ||
+ | left: -999em; | ||
+ | } | ||
+ | |||
+ | .dmenu li:hover ul, | ||
+ | .dmenu li li:hover ul, | ||
+ | .dmenu li li li:hover ul, | ||
+ | .dmenu li.sfhover ul, | ||
+ | .dmenu li li.sfhover ul, | ||
+ | .dmenu li li li.sfhover ul { /* lists nested under hovered list items */ | ||
+ | left: 182px; | ||
+ | top: -3px; | ||
+ | } | ||
<small>This site runs MediaWiki 1.13 with page caching enabled. We are redesigning the homepage. You may want to switch to the '''[[Old Homepage]].'''</small> | <small>This site runs MediaWiki 1.13 with page caching enabled. We are redesigning the homepage. You may want to switch to the '''[[Old Homepage]].'''</small> |
Revision as of 11:52, 22 January 2010
DPL 1.8.9 has been released with a bundle of new features.
For German speaking visitors we have a special offer: Auf [1] läuft eine lokale Kopie der deutschen Wikipedia. Wir demonstrieren dort den Einsatz von DPL und zeigen auch den Vorlagen-Editor.
|
|
|
- There is a place where you can report bugs and request new features.
- All extensions are under GPL license. Test them here live! There is extensive documentation, see the manuals. You can download the sources.
- The main extensions provided are DynamicPageList, Wgraph and Ploticus.
- There are also some minor extensions (e.g. Call) and improved versions of existing extensions (Inputbox, StripMarkup) which may be useful.
- You can find plenty of examples, which can serve as a starting point for your own ideas. Some of them are usable applications (like the calendar) others have the character of a framework.
- Please note that most of our applications use more than one extension (DPL always being one of them). If you do not want to run into trouble we strongly recommend that you take the versions from this website for: DynamicPageList, Wgraph, Ploticus, Call, StripMarkup, Inputbox, StringFunctions and Variables.
- If you use one of my extensions, please add a reference to your wiki to the site list!
/*
- Dynamic menus
- /
.dmenu { width: 180px }
.dmenu, .dmenu ul { /* all lists */ padding: 0; margin: 0; list-style: none; } .dmenu .selflink { font-weight: normal; }
.dmenu li { /* all list items */ position: relative; float: left; width: 172px; padding: 4px; z-index: 100; }
.dmenu li, .dmenu li.even a, .dmenu li.odd a, .dmenu li li, .dmenu li li a, .dmenu li li li, .dmenu li li li a { color : black; }
.dmenu li li { margin: 0; }
.dmenu li ul { /* second-level lists */ position: absolute; left: -999em; z-index: 101; border: 1px solid #ccc; }
.dmenu li ul ul { /* third-and-above-level lists */ position: absolute; left: -999em; margin: 0 0 0 0; z-index: 102; }
.dmenu li.odd .submenu { width: 12px; height: 15px; float: right; background: url(/common/images/rarr-lt.png) 0 3px no-repeat; } .dmenu li.even .submenu { width: 12px; height: 15px; float: right; background: url(/common/images/rarr-dk.png) 0 3px no-repeat; } .dmenu li.odd { background: #E9EDF4; border: 2px solid #E9EDF4; } .dmenu li.even { background: #D0D8E8; border: 2px solid #D0D8E8; }
.dmenu li:hover, .dmenu li.sfhover { border: 2px solid #385D8A; }
.dmenu li:hover ul ul, .dmenu li:hover ul ul ul, .dmenu li.sfhover ul ul, .dmenu li.sfhover ul ul ul { left: -999em; }
.dmenu li:hover ul, .dmenu li li:hover ul, .dmenu li li li:hover ul, .dmenu li.sfhover ul, .dmenu li li.sfhover ul, .dmenu li li li.sfhover ul { /* lists nested under hovered list items */ left: 182px; top: -3px; } This site runs MediaWiki 1.13 with page caching enabled. We are redesigning the homepage. You may want to switch to the Old Homepage.