This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
wiki:pluginsyntax:wrap [2013/01/11 18:55] – created Alan Shea | wiki:pluginsyntax:wrap [2018/05/28 22:29] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Wrap Plugin ====== | ====== Wrap Plugin ====== | ||
- | Universal plugin which combines the functionality of many other plugins. Wrap wiki text inside containers (divs or spans) and give them a class (choose from a variety of preset classes), a width and/or a language with its associated text direction. | + | [[https:// |
===== One plugin to rule them all ===== | ===== One plugin to rule them all ===== | ||
Line 9: | Line 9: | ||
- a width | - a width | ||
- a language with its associated text direction | - a language with its associated text direction | ||
- | |||
- | It potentially replaces a lot of other plugins and is IMHO the better alternative for many. There is one exception: It currently lacks ODT support. If you need ODT support, you might want to take a look at similar plugins. | ||
- | |||
- | It fully replaces: [[doku> | ||
- | It partly replaces: [[doku> | ||
Line 20: | Line 15: | ||
The plugin comes with an **[[wrap_example|example]]** page, which should explain a lot and looks like this in the default template: | The plugin comes with an **[[wrap_example|example]]** page, which should explain a lot and looks like this in the default template: | ||
- | {{ : | + | {{ wrap_plugin_example7_1_.png? |
===== Syntax ===== | ===== Syntax ===== | ||
Basic Syntax: | Basic Syntax: | ||
- | <WRAP classes width : | + | <WRAP classes |
" | " | ||
</ | </ | ||
| | ||
or | or | ||
- | <block classes width : | + | <block classes |
" | " | ||
</ | </ | ||
| | ||
or | or | ||
- | <div classes width : | + | <div classes |
" | " | ||
</ | </ | ||
An uppercase **%%< | An uppercase **%%< | ||
| | ||
- | <wrap classes width : | + | <wrap classes |
| | ||
or | or | ||
- | <inline classes width : | + | <inline classes |
| | ||
or | or | ||
- | <span classes width : | + | <span classes |
A lowercase **%%< | A lowercase **%%< | ||
Line 54: | Line 49: | ||
The following classes are currently available: | The following classes are currently available: | ||
+ | |||
^class name^description/ | ^class name^description/ | ||
Line 62: | Line 58: | ||
|**'' | |**'' | ||
|**'' | |**'' | ||
+ | ^__widths__ -- :!: **experimental**, | ||
+ | |**'' | ||
+ | |**'' | ||
+ | |**'' | ||
^__alignments__ -- similar to [[divalign]], | ^__alignments__ -- similar to [[divalign]], | ||
|**'' | |**'' | ||
Line 71: | Line 71: | ||
|**'' | |**'' | ||
|**'' | |**'' | ||
- | |**'' | + | |**'' |
|**'' | |**'' | ||
|**'' | |**'' | ||
Line 82: | Line 82: | ||
|**'' | |**'' | ||
|**'' | |**'' | ||
- | ^__marks__ -- similar to [[hilited]], | + | ^__marks__ -- similar to [[emphasis]], |
|**'' | |**'' | ||
|**'' | |**'' | ||
|**'' | |**'' | ||
- | ^< | ||
- | |< | ||
- | |< | ||
- | |< | ||
- | |< | ||
^__miscellaneous__^^ | ^__miscellaneous__^^ | ||
|**'' | |**'' | ||
+ | |**'' | ||
|**'' | |**'' | ||
|**'' | |**'' | ||
Line 107: | Line 103: | ||
=== Known restrictions === | === Known restrictions === | ||
- | * WRAPs won't export in ODT format | + | * WRAPs won't export in ODT format. |
- | * The PNG icons for the various notes have an alpha transparency which will look ugly in IE6. | + | * Round corners only work in modern browsers (no IE8 and below). |
- | * Round corners only work in modern browsers (no IE). | + | * Multiple columns only work in modern browsers (no IE9 and below). |
- | * Multiple columns only work in Firefox, Chrome | + | * Width classes are experimental and only work in modern browsers |
- | * < | + | * Normal DokuWiki Headlines |
- | * Normal DokuWiki Headlines | + | |
* %%//**__Big Underlined Headline__**// | * %%//**__Big Underlined Headline__**// | ||
* %%//**Small Headline**// | * %%//**Small Headline**// | ||
Line 124: | Line 119: | ||
You can set any valid widths on any uppercase %%< | You can set any valid widths on any uppercase %%< | ||
<WRAP someclass 50% anotherclass> | <WRAP someclass 50% anotherclass> | ||
+ | All except percentages will be reduced to have the maximum width available on smaller screens. | ||
+ | |||
+ | You can also use the width keywords '' | ||
+ | <WRAP group> | ||
+ | <WRAP half column> | ||
+ | <WRAP half column> | ||
+ | </ | ||
+ | will result in two columns next to each other, which will wrap underneath each other on smaller screens and mobile devices. | ||
==== Languages and Text Directions ==== | ==== Languages and Text Directions ==== | ||
Line 135: | Line 138: | ||
If you like to mark a text with a different text direction than the default one, you should use divs, i.e. uppercase '' | If you like to mark a text with a different text direction than the default one, you should use divs, i.e. uppercase '' | ||
- | This makes it a better replacement of [[ltr]] (and [[lang]]). | ||
- | |||
- | ===== Extend with custom styles ===== | ||
- | |||
- | If you like to add your own classes and styles to the plugin, you can simply add the styles for your class preceded by "'' | ||
- | |||
- | E.g. if you need a '' | ||
- | |||
- | Since version 2010-03-14 you have the possibility to exclude certain class names from being prefixed with " | ||
- | |||
- | ==== Examples ==== | ||
- | |||
- | in style.css | ||
- | |||
- | <code css> | ||
- | .dokuwiki div.wrap_note{ /* added */ | ||
- | background-color: | ||
- | color: #000; | ||
- | padding: .5em .5em .5em .5em; | ||
- | margin-bottom: | ||
- | overflow: hidden; | ||
- | } | ||
- | </ | ||
- | |||
- | call in DW-page: | ||
- | <WRAP note> | ||
- | |||
- | ==== Add former typography classes ==== | ||
- | |||
- | The old typography classes were removed in version 2011-05-15. If you need something similar, use the [[block]] plugin instead. If you like to have the old typography classes back, they are not lost: | ||
- | They were not completely removed yet, but only put in a comment. To keep using them either remove the comments (search for " | ||
- | ===== How to use the helper ===== | ||
- | |||
- | From version 2011-05-15 on the plugin includes a helper plugin which you can use to add classes, width and lang/dir to any other plugin. | ||
- | |||
- | ==== Example how to get just one kind of attribute ==== | ||
- | |||
- | <code php> | ||
- | // get lang from wrap helper plugin | ||
- | $lang = ''; | ||
- | if(!plugin_isdisabled(' | ||
- | $wrap =& plugin_load(' | ||
- | $attr = $wrap-> | ||
- | if($attr[' | ||
- | } | ||
- | |||
- | // add lang to your plugin' | ||
- | $renderer-> | ||
- | </ | ||
- | |||
- | getAttributes() expects the string with " | ||
- | * $attr[' | ||
- | * $attr[' | ||
- | * $attr[' | ||
- | |||
- | ==== Example how to get all attributes ==== | ||
- | |||
- | <code php> | ||
- | // get attributes from wrap helper plugin | ||
- | $attr = ''; | ||
- | if(!plugin_isdisabled(' | ||
- | $wrap =& plugin_load(' | ||
- | $attr = $wrap-> | ||
- | } | ||
- | |||
- | // add those attributes to your plugin' | ||
- | $renderer-> | ||
- | </ | ||
- | |||
- | buildAttributes() expects the same string as above (" | ||
- | |||
- | |||
- | ===== Work ===== | ||
- | |||
- | ==== Done ==== | ||
- | |||
- | {{rss> | ||
- | |||
- | ==== To Do ==== | ||
- | |||
- | * [[ODT]] support | ||
- | * and more ... | ||
- | |||
- | ==== Localization ==== | ||
- | |||
- | You can help me with translations. There are two files to translate: | ||
- | |||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | You can either send me language files to update by email or post them here or in the [[https:// | ||
- | |||
- | ===== Credits ===== | ||
- | |||
- | * The code reuses parts of the [[box]] plugin. Thanks to [[chris@jalakai.co.uk|Christopher Smith]]. | ||
- | * The images for the notes are taken from the [[http:// | ||
- | * The toolbar uses images from the [[http:// | ||
- | * Thanks to all contributors: | ||
- | |||
- | ===== Comments ===== | ||
- | |||
- | Before reporting any issues (bugs or requests), please first take a look at the [[faq: | ||
- | |||
- | You can report any issues either on the [[http:// | ||
- | |||
- | |||
- | ==== Problems in some templates ==== | ||
- | |||
- | I've just made the CSS work properly with some custom themes using the git master branch, eg one of my own and [[template: | ||
- | |||
- | perl -pi -e ' | ||
- | |||
- | --- // | ||
- | |||
- | > Templates should use the '' | ||
- | |||
- | |||
- | ==== Quotation Box ==== | ||
- | |||
- | Wouldn' | ||
- | - chris | ||
- | |||
- | > Yes, I thought about that, too. But as the [[plugin: | ||
- | |||
- | |||
- | ==== Thanks ==== | ||
- | |||
- | Incredibly useful multipurpose plugin I must say. Thanks for that" Looking forward to intended ODT compatibility.\\ | ||
- | --- //Martin 2009/09/14 23:22// | ||
- | |||
- | |||
- | ==== Align Issues ==== | ||
- | |||
- | < | ||
- | <WRAP centeralign> | ||
- | |||
- | <WRAP info 60%> | ||
- | |||
- | This is some text, text , text , text , text , text , text , text , text , text , text , text , text , text , text , text , | ||
- | text , text , text , text , text , text , text , text , text , text , text , text , text , text , text , text , text , text | ||
- | </ | ||
- | |||
- | [[namespace: | ||
- | </ | ||
- | </ | ||
- | |||
- | The result is the text of the info note is centered. If I use leftalign it aligns the whole box left. How do I get the box text to be left aligned and screen centered? peterennis [at] yahoo [dot] com | ||
- | |||
- | > To position something you shouldn' | ||
- | |||
- | |||
- | ==== Empty Paragraph ==== | ||
- | Like using tab-plugin in some places (perhaps tables) | ||
- | |||
- | >> I sometimes need space above or below a paragraph. Fed up fiddling with HTML, PHP methods so I just use . (dot) | ||
- | >> Of course, it shows a dot! Is there an easy solution? peterennis [at] yahoo [dot] com | ||
- | |||
- | > The best way would be to [[# | ||
- | .dokuwiki .wrap_topspace { margin-top: 1.5em; } | ||
- | .dokuwiki .wrap_bottomspace { margin-bottom: | ||
- | </ | ||
- | |||
- | I think too it depent on your template and the combination of classes. Testing with following code I could find something working for me. | ||
- | |||
- | __css__ try differend combinations of height, margin, padding and line-height. The colors are only to see the effect. (%, px, em, ex, pt, pc, cm, mm, in): | ||
- | < | ||
- | div.wrap_empty1 | ||
- | div.wrap_empty2 | ||
- | div.wrap_empty3 | ||
- | div.wrap_empty4 | ||
- | |||
- | __dokuwiki__: | ||
- | < | ||
- | \\ | ||
- | <div testing> | ||
- | \\ | ||
- | <div testing> | ||
- | \\ | ||
- | <div testing> | ||
- | \\ | ||
- | <div testing> | ||
- | </ | ||
- | ==== Non-valid CSS ==== | ||
- | |||
- | Love this plugin, but the CSS on [[http:// | ||
- | < | ||
- | 1 .dokuwiki div.wrap_round | ||
- | 1 .dokuwiki div.wrap_round Property -webkit-border-radius doesn' | ||
- | 1 .dokuwiki div.wrap_round Property -khtml-border-radius doesn' | ||
- | 1 .dokuwiki span.wrap_round Property -moz-border-radius doesn' | ||
- | 1 .dokuwiki span.wrap_round Property -webkit-border-radius doesn' | ||
- | 1 .dokuwiki span.wrap_round Property -khtml-border-radius doesn' | ||
- | </ | ||
- | |||
- | I'm no CSS expert. Anybody have any suggestions? | ||
- | |||
- | > Actually, did some web searches and discovered that since these properties are proprietary, | ||
- | |||
- | |||
- | ==== latitude / longitude ==== | ||
- | |||
- | is there any way to skip the generation of the wrap_ " | ||
- | < | ||
- | <wrap latitude> | ||
- | </ | ||
- | </ | ||
- | right now that results in: | ||
- | < | ||
- | <span class=" | ||
- | </ | ||
- | where I would want: | ||
- | < | ||
- | <span class=" | ||
- | </ | ||
- | |||
- | > I wouldn' | ||
- | >> I just implemented this (in the repo). A new release which includes it will follow soon. --- // | ||
- | |||
- | |||
- | ==== missing paragraph break issue ==== | ||
- | |||
- | < | ||
- | case DOKU_LEXER_ENTER: | ||
- | $wrap = new syntax_plugin_wrap_base(); | ||
- | $attr = $wrap-> | ||
- | |||
- | $renderer-> | ||
- | break; | ||
- | </ | ||
- | |||
- | The div version of the plugin merges the first two paragraphs into one. The workaround is to leave a line break immediately after the opening < | ||
- | |||
- | > As described under [[#known restrictions]] you can circumvent this by writing one more line after %%< | ||
- | >> This will be fixed in the next version (coming soon) if used with Anteater. --- [[user> | ||
- | |||
- | |||
- | ==== Headlines ==== | ||
- | Are you planning support for **regular dokuwiki headlines** syntax? Plugin [[plugin: | ||
- | |||
- | > The [[plugin: | ||
- | >> The latest version (2011-05-15) now has **experimental** support for regular headlines implemented. This is not an official feature yet, because there might be unforeseen problems (most likely with section editing). You are free to try it out and please report any problems back. --- [[user> | ||
- | |||
- | ==== Emulated headlines with anchors ==== | ||
- | |||
- | Is there a way to make the emulated headlines contain "a name=..." | ||
- | |||
- | > No, this is currently not possible and is also not planned. As a work-around you can use the [[bookmark]] plugin. --- // | ||
- | >> I now implemented **experimental** support for regular headlines, so those will contain the anchors and will also be added to the TOC. --- [[user> | ||
- | |||
- | ==== Baretables ==== | ||
- | |||
- | I've been using a few lines in '' | ||
- | |||
- | < | ||
- | < | ||
- | </ | ||
- | </ | ||
- | |||
- | <code css> | ||
- | div.dokuwiki div.baretable th, | ||
- | div.dokuwiki div.baretable td { border: 0px; } | ||
- | </ | ||
- | |||
- | > It's quite easy to implement it yourself by [[# | ||
- | div.dokuwiki div.wrap_baretable table, | ||
- | div.dokuwiki div.wrap_baretable th, | ||
- | div.dokuwiki div.wrap_baretable td { border: 0; } | ||
- | </ | ||
- | |foo| | ||
- | |bar| | ||
- | </ | ||
- | </ | ||
- | |||
- | >> Also check out the [[plugin: | ||
- | ==== Just appreciation ==== | ||
- | |||
- | Anika, sorry for spamming, just wanted to show my appreciation for the work you've done. -Alex. | ||
- | |||
- | I second that! -Tina | ||
- | |||
- | Me too. Fantastic addition to Dokuwiki. -Brett | ||
- | |||
- | Hello Anika, I would like to thank you too for your wonderful work. I use all of your plugins a lot :-) -Hartmut. | ||
- | |||
- | ==== Conflict with OpenLayersMap ==== | ||
- | http:// | ||
- | |||
- | > I just [[http:// | ||
- | ... | ||
- | </ | ||
- | <WRAP clear></ | ||
- | </ | ||
- | --- // | ||
- | |||
- | >> | ||
- | |||
- | ==== Hide (some of) the editor buttons? ==== | ||
- | |||
- | I want to use several of the functions as the admin of my wiki (like columns), but I would like my users to only be able to insert the info/ | ||
- | |||
- | > You cat manually edit action.php or simply delete it - all buttons described there. // | ||
- | |||
- | >> To edit Textlabels of the editor buttons: ''/ | ||
- | |||
- | ==== Why uppercase? ==== | ||
- | |||
- | It's a great plugin, but why uppercase for WRAP? All other Doku syntax and plugins use lovercase or case insensitive. May be replace wrap with " | ||
- | |||
- | **UPD:** It will be //really// great if you add two options to plugin configuration: | ||
- | |||
- | I have modified WRAP for my use. Download here: https:// | ||
- | |||
- | > The initial reasoning was to make it similar to DokuWiki' | ||
- | > Adding anything to the configuration options is a bad idea, as it would make the syntax different in every installation and could potentially break many things (other plugins, for example). (Although it would be beneficial for internationalization.) | ||
- | > I updated the code to use '' | ||
- | |||
- | ==== Picker images==== | ||
- | Some PNGs are not present in the picker. In folder images/ | ||
- | |||
- | > There are no and have never been any images with " | ||
- | |||
- | ==== This plugin doesn' | ||
- | |||
- | :!: // | ||
- | > This plugin is not installed on dokuwiki.org, | ||
- | >> Thanks for your answer. Well, I tried what's suggested over there, installing through the manager, various methods to force a page refresh, etc, still nogo. Not sure if there is a way to debug or log the failure ? | ||
- | >>> | ||
- | >>> | ||
- | >>> | ||
- | >>> | ||
- | >>>> | ||
- | >>>>> | ||
- | |||
- | ==== Shorter code for empty div? ==== | ||
- | |||
- | It would be nice if there could be a shorter code for empty divs like %%<WRAP clear></ | ||
- | |||
- | > Good idea. But this has not a very high priority for me. If someone sends a patch, I will implement it. --- [[user> | ||
- | >> To better keep track of things, I just [[https:// | ||
- | |||
- | ==== CSS unwanted behaviour in IE ==== | ||
- | The following CSS statement leads to different behaviour between firefox and internet explorer: | ||
- | <code css>/* tables in columns and boxes should span the whole width */ | ||
- | .dokuwiki .plugin_wrap table { | ||
- | width: 100%; | ||
- | }</ | ||
- | |||
- | If you create boxes like this one: | ||
- | |||
- | <code wiki> | ||
- | <WRAP column> | ||
- | // | ||
- | ^Column 1 Row 1 |Column 2 Row 1 | | ||
- | ^Column 1 Row 2 |Column 2 Row 2 | | ||
- | ^Column 1 Row 3 |Column 2 Row 3 | | ||
- | ^Column 1 Row 4 |Column 2 Row 4 | | ||
- | ^Column 1 Row 5 |Column 2 Row 5 | | ||
- | </ | ||
- | </ | ||
- | |||
- | firefox will display a box as large as needed by the content of the box. Internet explorer (tested with version 7) displays a box with 100% page width. | ||
- | |||
- | IMHO table width: 100% is only needed if a fixed size is given. May a class wrap_fixsize should be added to wraps that include size information. | ||
- | |||
- | <code css>/* tables in columns and boxes should span the whole width */ | ||
- | .dokuwiki .plugin_wrap .wrap_fixsize table { | ||
- | width: 100%; | ||
- | }</ | ||
- | |||
- | and modified helper.php | ||
- | <code php> | ||
- | //get width | ||
- | if (preg_match('/ | ||
- | $attr[' | ||
- | $attr[' | ||
- | continue; | ||
- | } | ||
- | </ | ||
- | |||
- | greetz\\ | ||
- | Frank | ||
- | |||
- | > I couldn' | ||
- | ==== ID attribute ==== | ||
- | |||
- | A quick modification to be able to add an ID to a box (I use it to make empty <div> that are processed by javascript). | ||
- | |||
- | In helpher.php# | ||
- | <code php> | ||
- | //get id | ||
- | if (preg_match('/# | ||
- | $attr[' | ||
- | continue; | ||
- | } | ||
- | </ | ||
- | In helper.php# | ||
- | <code php> | ||
- | if($attr[' | ||
- | </ | ||
- | |||
- | And then you can use < | ||
- | |||
- | > Thanks for this. I just implemented it, so it will be part of the next release. --- [[user> | ||
- | ==== Just to let you know == | ||
- | |||
- | Your's is ALWAYS the first plugin I install on a fresh DokuWiki system. Thank you SO MUCH Anika. This is a true jewel. | ||
- | |||
- | Louis | ||
- | |||
- | ==== ODT Support? ==== | ||
- | |||
- | This is a wonderful plugin. | ||
- | |||
- | - Lar | ||
- | |||
- | ==== Not working, default template in 2012-01-25 " | ||
- | |||
- | Great plug-in, but default template doesn' | ||
- | |||
- | > I am not aware of any issues with the default template. This will most likely have been due to [[faq: | ||
- | |||
- | ==== Printing boxes and notes ==== | ||
- | |||
- | Hi, is there any possibility to print out the boxes and notes including the icon, which is shown on the screen? I use the vector template. When I open the print preview in this template, everything is ok. When using the print preview of firefox or when printing, the icons are not printed out. - [[user> | ||
- | |||
- | > This is basically not fixable. See [[https:// | ||
- | |||
- | ==== CSS tabs for the Wrap plugin ==== | ||
- | |||
- | I've created a new style that converts a simple <ul> list into beautiful tabs. It works great. I use it all the time on my wiki so I decided to share it with you. It's designed to play nicely with the [[template: | ||
- | And thank you Anika for this wonderful plugin ! --- [[user> | ||
- | |||
- | === The markup: === | ||
- | |||
- | < | ||
- | <WRAP tabs> | ||
- | * [[Features]] | ||
- | * [[Manual]] | ||
- | * [[Plugins]] | ||
- | * [[Template]] | ||
- | </ | ||
- | </ | ||
- | === The result: | + | ===== Demo ===== |
- | {{http:// | + | You can see a demo of the plugin on [[wrap_example]]. |
- | First tab is a non existing link, second is the current page, third is an existing link and fourth is an existing link hovered. | ||
- | === The CSS: === | + | ===== Configuration options ===== |
- | Add it to your '' | + | ^ Option |
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
- | <code css userstyle.css> | + | ===== Toolbar picker ===== |
- | /** New Tabs style for the Wrap Plugin | + | |
- | * | + | |
- | * Original tabs code : Eric Meyer | + | |
- | * Dokuwiki convertion : Laynee | + | |
- | | + | |
- | */ | + | |
- | + | ||
- | .wrap_tabs .li { | + | |
- | display: | + | |
- | } | + | |
- | .wrap_tabs ul { | + | {{ wrap_plugin_toolbar_picker_1_.png?nolink}} |
- | padding: 3px 0; | + | |
- | margin-left: | + | |
- | border-bottom: | + | |
- | font: bold 12px Verdana, sans-serif; | + | |
- | } | + | |
- | + | ||
- | .wrap_tabs ul li { | + | |
- | list-style: none; | + | |
- | margin: 0; | + | |
- | display: inline; | + | |
- | } | + | |
- | + | ||
- | .dokuwiki .wrap_tabs ul li a { | + | |
- | padding: 3px 0.5em; | + | |
- | margin-left: | + | |
- | border: 1px solid __text_alt__; | + | |
- | border-bottom: | + | |
- | background: __background_alt__; | + | |
- | text-decoration: | + | |
- | } | + | |
- | + | ||
- | .dokuwiki .wrap_tabs ul a:link { color: __text__; | + | |
- | .dokuwiki .wrap_tabs ul a:visited { color: __text__; } | + | |
- | + | ||
- | .dokuwiki .wrap_tabs ul li a:hover { | + | |
- | color: black; | + | |
- | background: __background_neu__; | + | |
- | } | + | The wrap picker in the editing toolbar adds the most common wrap syntaxes. |
- | + | ||
- | # | + | |
- | background: __background__; | + | |
- | border-bottom: | + | |
- | font-weight: | + | |
- | } | + | |
- | </ | + | |
- | > I like them and actually planned to do something similar for a while. They will definitely go into the next release. I've also added this to the issue tracker as a reminder | + | * " |
+ | * " | ||
+ | * "info, tip, important, alert, help, download, todo box" creates specifically themed boxes (also 60% wide, centered) | ||
+ | * "clear floats" | ||
+ | * " | ||
Copyright © Alan Shea, 2011-2025