Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
| wiki:syntax [19.06.2015 11:08] – [Lightweight Task Management System] Ingo Brauns | wiki:syntax [07.02.2024 08:34] (aktuell) – Externe Bearbeitung 127.0.0.1 | ||
|---|---|---|---|
| Zeile 84: | Zeile 84: | ||
| * For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the "local zone" | * For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the "local zone" | ||
| - | * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http:// | + | * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http:// |
| - | + | <?php | |
| - | LANG.nosmblinks = ''; | + | /** |
| + | * Customization of the english language file | ||
| + | * Copy only the strings that needs to be modified | ||
| + | */ | ||
| + | $lang[' | ||
| + | </ | ||
| ==== Image Links ==== | ==== Image Links ==== | ||
| Zeile 92: | Zeile 97: | ||
| You can also use an image to link to another internal or external page by combining the syntax for links and [[# | You can also use an image to link to another internal or external page by combining the syntax for links and [[# | ||
| - | [[http://www.php.net|{{wiki: | + | [[http:// |
| - | [[http://www.php.net|{{wiki: | + | [[http:// |
| Please note: The image formatting is the only formatting syntax accepted in link names. | Please note: The image formatting is the only formatting syntax accepted in link names. | ||
| Zeile 132: | Zeile 137: | ||
| Resize to given width and height((when the aspect ratio of the given width and height doesn' | Resize to given width and height((when the aspect ratio of the given width and height doesn' | ||
| - | Resized external image: | + | Resized external image: |
| Real size: {{wiki: | Real size: {{wiki: | ||
| Resize to given width: | Resize to given width: | ||
| Resize to given width and height: {{wiki: | Resize to given width and height: {{wiki: | ||
| - | Resized external image: | + | Resized external image: |
| Zeile 170: | Zeile 175: | ||
| If you specify a filename that is not a supported media format, then it will be displayed as a link instead. | If you specify a filename that is not a supported media format, then it will be displayed as a link instead. | ||
| + | |||
| + | By adding ''? | ||
| + | |||
| + | {{wiki: | ||
| + | |||
| + | {{wiki: | ||
| ==== Fallback Formats ==== | ==== Fallback Formats ==== | ||
| Zeile 236: | Zeile 247: | ||
| * ;-) %% ;-) %% | * ;-) %% ;-) %% | ||
| * ^_^ %% ^_^ %% | * ^_^ %% ^_^ %% | ||
| + | * m( %% m( %% | ||
| * :?: %% :?: %% | * :?: %% :?: %% | ||
| * :!: %% :!: %% | * :!: %% :!: %% | ||
| Zeile 262: | Zeile 274: | ||
| Some times you want to mark some text to show it's a reply or comment. You can use the following syntax: | Some times you want to mark some text to show it's a reply or comment. You can use the following syntax: | ||
| - | | + | < |
| - | + | I think we should do it | |
| - | > No we shouldn' | + | |
| - | + | > No we shouldn' | |
| - | >> Well, I say we should | + | |
| - | + | >> Well, I say we should | |
| - | > Really? | + | |
| - | + | > Really? | |
| - | >> Yes! | + | |
| - | + | >> Yes! | |
| - | >>> | + | |
| + | >>> | ||
| + | </ | ||
| I think we should do it | I think we should do it | ||
| Zeile 318: | Zeile 332: | ||
| ^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 | | ^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 | | ||
| - | You can have rowspans (vertically connected cells) by adding '':::'' | + | You can have rowspans (vertically connected cells) by adding '' |
| ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | ||
| Zeile 404: | Zeile 418: | ||
| </ | </ | ||
| - | The following language strings are currently recognized: //4cs, 6502acme, 6502kickass, 6502tasm, 68000devpac, abap, actionscript-french, actionscript, | + | The following language strings are currently recognized: //4cs 6502acme 6502kickass 6502tasm 68000devpac abap actionscript3 |
| + | |||
| + | There are additional [[doku> | ||
| ==== Downloadable Code Blocks ==== | ==== Downloadable Code Blocks ==== | ||
| Zeile 421: | Zeile 437: | ||
| If you don't want any highlighting but want a downloadable file, specify a dash ('' | If you don't want any highlighting but want a downloadable file, specify a dash ('' | ||
| - | |||
| - | |||
| - | ===== Embedding HTML and PHP ===== | ||
| - | |||
| - | You can embed raw HTML or PHP code into your documents by using the '' | ||
| - | |||
| - | HTML example: | ||
| - | |||
| - | < | ||
| - | < | ||
| - | This is some <span style=" | ||
| - | </ | ||
| - | < | ||
| - | <p style=" | ||
| - | </ | ||
| - | </ | ||
| - | |||
| - | < | ||
| - | This is some <span style=" | ||
| - | </ | ||
| - | < | ||
| - | <p style=" | ||
| - | </ | ||
| - | |||
| - | PHP example: | ||
| - | |||
| - | < | ||
| - | <php> | ||
| - | echo 'The PHP version: '; | ||
| - | echo phpversion(); | ||
| - | echo ' (generated inline HTML)'; | ||
| - | </ | ||
| - | <PHP> | ||
| - | echo '< | ||
| - | echo '< | ||
| - | echo '</ | ||
| - | </ | ||
| - | </ | ||
| - | |||
| - | <php> | ||
| - | echo 'The PHP version: '; | ||
| - | echo phpversion(); | ||
| - | echo ' (inline HTML)'; | ||
| - | </ | ||
| - | <PHP> | ||
| - | echo '< | ||
| - | echo '< | ||
| - | echo '</ | ||
| - | </ | ||
| - | |||
| - | **Please Note**: HTML and PHP embedding is disabled by default in the configuration. If disabled, the code is displayed instead of executed. | ||
| ===== RSS/ATOM Feed Aggregation ===== | ===== RSS/ATOM Feed Aggregation ===== | ||
| Zeile 481: | Zeile 446: | ||
| | author | | author | ||
| | date | show item dates | | | date | show item dates | | ||
| - | | description| show the item description. | + | | description| show the item description. |
| + | | nosort | ||
| | //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). | | | //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). | | ||
| The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki: | The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki: | ||
| + | |||
| + | By default the feed will be sorted by date, newest items first. You can sort it by oldest first using the '' | ||
| **Example: | **Example: | ||
| Zeile 506: | Zeile 474: | ||
| ~~INFO: | ~~INFO: | ||
| - | |||
| - | ===== Installierte Plugins ===== | ||
| - | |||
| - | Das Notes Plugin ist installiert. | ||
| - | |||
| - | < | ||
| - | < | ||
| - | So sieht eine normal Notiz aus | ||
| - | </ | ||
| - | |||
| - | <note important> | ||
| - | Das hier ist eine wichtige Notiz ;-) | ||
| - | </ | ||
| - | |||
| - | <note tip> | ||
| - | Hier ist ein Tipp ... | ||
| - | </ | ||
| - | |||
| - | <note warning> | ||
| - | Und so kann eine Warnung aussehen | ||
| - | </ | ||
| - | </ | ||
| - | |||
| - | und hier das Ergebnis : | ||
| - | < | ||
| - | So sieht eine normal Notiz aus | ||
| - | </ | ||
| - | |||
| - | <note important> | ||
| - | Das hier ist eine wichtige Notiz ;-) | ||
| - | </ | ||
| - | |||
| - | <note tip> | ||
| - | Hier ist ein Tipp ... | ||
| - | </ | ||
| - | |||
| - | <note warning> | ||
| - | Und so kann eine Warnung aussehen | ||
| - | </ | ||
| - | |||
| - | ====== ToDo Plugin ====== | ||
| - | ===== Usage and examples ===== | ||
| - | |||
| - | There is an additional instruction page at [[http:// | ||
| - | |||
| - | ===Creating tasks=== | ||
| - | After installing the plugin, simply enter this information on the page you wish to create the todo list: | ||
| - | |||
| - | < | ||
| - | |||
| - | Each ''< | ||
| - | |||
| - | To create a checkbox that is check by default, create your todo like this: | ||
| - | |||
| - | < | ||
| - | |||
| - | Using bulleted lists (*) is recommended, | ||
| - | |||
| - | ===Assign tasks to persons=== | ||
| - | |||
| - | To assign users use the @ symbol like this: | ||
| - | |||
| - | < | ||
| - | < | ||
| - | |||
| - | The name of the user can use: | ||
| - | * the following characters: // a-z, A-Z, 0-9, .-_ // \\ | ||
| - | * No (white)spaces are allowed! | ||
| - | So '' | ||
| - | |||
| - | |{{http:// | ||
| - | |{{http:// | ||
| - | |||
| - | Multiple users can be assigned in one todo (separated by space character). This way a todo can show up in todo lists of different users. | ||
| - | |||
| - | < | ||
| - | |||
| - | === Render username === | ||
| - | |||
| - | Render the username as id, full name or not at all, allowed values: '' | ||
| - | <todo @somebody username: | ||
| - | |||
| - | === Start and Due date === | ||
| - | |||
| - | Set a start and/or due date and get colored output if todo has started or is due | ||
| - | |||
| - | <todo start: | ||
| - | <todo due: | ||
| - | <todo start: | ||
| - | | ||
| - | Colors,... can be set in the style.css file in the plugin directory (lib/ | ||
| - | |||
| - | === Show/Hide Start/Due Date === | ||
| - | Do (not) show the Start/Due date, allowed values: '' | ||
| - | |||
| - | < | ||
| - | | ||
| - | |||
| - | ===Formatting=== | ||
| - | |||
| - | Formatting is not allowed inside of the ''< | ||
| - | |||
| - | ===QuickButton=== | ||
| - | |||
| - | A quickbutton for inserting todo syntax is available in the editor toolbar. You can click the button (which is pictured as a checked-checkbox) or you can use the keyboard shortcut of [T]. | ||
| - | |||
| - | ===== Lightweight Task Management System ===== | ||
| - | |||
| - | The new version (since version 2014-03-17) of the todo plugin allows to create an easy to use task management system to collect all todos from all pages on a single page. | ||
| - | |||
| - | **First turn off caching** | ||
| - | | ||
| - | |||
| - | Display all open and closed todos from all pages | ||
| - | ~~TODOLIST~~ | ||
| - | |||
| - | === Completion state === | ||
| - | |||
| - | Filter the completion state, allowed values: '' | ||
| - | ~~TODOLIST completed: | ||
| - | ~~TODOLIST completed: | ||
| - | | ||
| - | === Assignments === | ||
| - | Filter the assignments, | ||
| - | ~~TODOLIST assigned: | ||
| - | ~~TODOLIST assigned: | ||
| - | ~~TODOLIST assigned: | ||
| - | ~~TODOLIST assigned: | ||
| - | ~~TODOLIST assigned: | ||
| - | | ||
| - | === Show/Hide checkbox === | ||
| - | Do (not) show the checkbox, allowed values: '' | ||
| - | ~~TODOLIST checkbox: | ||
| - | | ||
| - | === Render username=== | ||
| - | |||
| - | Render the username as id, full name or not at all, allowed values: '' | ||
| - | ~~TODOLIST username: | ||
| - | | ||
| - | === Render header === | ||
| - | |||
| - | Render the header as pageID, as the first header of the page or not at all, allowed values: '' | ||
| - | ~~TODOLIST header: | ||
| - | |||
| - | === Show/Hide Start/Due Date === | ||
| - | Do (not) show the Start/Due date, allowed values: '' | ||
| - | |||
| - | ~~TODOLIST showdate: | ||
| - | | ||
| - | === Completed Data Filter=== | ||
| - | Filter by date completed. | ||
| - | |||
| - | ~~TODOLIST completedbefore:< | ||
| - | ~~TODOLIST completedafter:< | ||
| - | |||
| - | === Start/Due Date Filter=== | ||
| - | Filter the TODOLIST by Start/Due Date. Absolute and relative Dates are possible. | ||
| - | Not yet in the stable Version. Download: [[https:// | ||
| - | |||
| - | ~~TODOLIST startbefore:< | ||
| - | ~~TODOLIST startafter:< | ||
| - | ~~TODOLIST duebefore:< | ||
| - | ~~TODOLIST dueafter:< | ||
| - | |||
| - | < | ||
| - | |||
| - | Y-m-d like 2014-06-12 | ||
| - | or a value like +10 or -10 or 0 | ||
| - | | ||
| - | invalid values will be substituted with todays date | ||
| - | |||
| - | === Combined options === | ||
| - | |||
| - | ~~TODOLIST assigned: | ||
| - | ~~TODOLIST assigned: | ||
| - | |||
| - | Some default values for these options can be set in the Configuration Manager | ||
| - | |||
| - | === Filter the namespace of the task list === | ||
| - | [[https:// | ||
| - | |||
| - | If omitted it uses '' | ||
| - | |||
| - | It can be used with the following parameters: | ||
| - | * '' | ||
| - | * ''/'' | ||
| - | * ''< | ||
| - | |||
| - | ~~TODOLIST ns:todo~~ | ||
| - | |||
| - | returns all todo's from the page todo in the root of the wiki, or from the namespaces starting with todo or from the page todo and the namespaces starting with todo. | ||
| - | |||
| - | ~~TODOLIST ns:todo:~~ | ||
| - | |||
| - | returns all todo's from the namespace todo. | ||
| - | |||
| - | ~~TODOLIST ns: | ||
| - | |||
| - | returns all todo's from the namespaces or pages under todo, starting with an r. | ||
| - | |||
| - | ==Example of 'all todos' | ||
| - | |{{http:// | ||
| - | |||
| - | |||
| - | |||
| - | ===== Plugin Settings ===== | ||
| - | |||
| - | ===Allow actions to also link to pages with the same name?=== | ||
| - | |||
| - | Default: Off\\ | ||
| - | This option (when enabled) will allow your actions to also link to a page with the same name. This way, if you have important details about an action, you can place them in this link. | ||
| - | |||
| - | ===What namespace should your actions be created in (" | ||
| - | |||
| - | Default: [Empty]\\ | ||
| - | This option allows you specify where actions links should be placed. Using " | ||
| - | |||
| - | ===Should the actions have strike-through applied when checked?=== | ||
| - | |||
| - | Default: On\\ | ||
| - | This option (when enabled) will place a strike-through in the actions that have been completed. When disabled, an action can be checked, but the text will not have strike-through applied. | ||
| - | |||
| - | ===If AllowLinks is disabled, should clicking the actions' | ||
| - | |||
| - | Default: On\\ | ||
| - | When this option is enabled, and the links option is disabled, then clicking on the text of an action will mark that action as being complete. (Added with version 10-14-09) | ||
| - | |||
| - | |||