| 6cb5dc7b | 20-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Add more type information in action.php |
| b26ef077 | 20-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Fix tests for changed HTML output in DokuWiki |
| 1c242a7d | 20-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Style fixes for new dokuwiki template |
| 67e87481 | 02-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Write relation haspart metadata
On https://www.dokuwiki.org/devel:metadata it has been documented that the include plugin writes the relation haspart metadata, with this change it actually writes it. |
| afa996bc | 30-Jun-2012 |
Michael Hamann <michael@content-space.de> |
Migrate tests to PHPUnit (used in development version of DokuWiki) |
| a75ed92f | 21-Aug-2011 |
Michael Hamann <michael@content-space.de> |
Version number updated |
| 89c58f89 | 19-Aug-2011 |
Michael Hamann <michael@content-space.de> |
Added a class to the readmore link and moved it right, implements #78 |
| d2cd3b4c | 19-Aug-2011 |
Michael Hamann <michael@content-space.de> |
Make the edit page button use section edits, fixes #65
This means that now the edit buttons for included pages only appear where it makes sense (i.e. not in the preview and not in the RSS feed). Thi
Make the edit page button use section edits, fixes #65
This means that now the edit buttons for included pages only appear where it makes sense (i.e. not in the preview and not in the RSS feed). This also means that the cache no longer depends on the edit permissions as there is nothing in the rendering process anymore that depends on them because the edit buttons are generated after the rendering.
show more ...
|
| 4679e920 | 19-Aug-2011 |
Michael Hamann <michael@content-space.de> |
Fix the plugins not using the new settings |
| 6dda95b3 | 19-Aug-2011 |
Michael Hamann <michael@content-space.de> |
Translate the remaining untranslated settings into German |
| 1403dce0 | 19-Aug-2011 |
Jerry G Geiger <jerrygeiger@web.de> |
Add more options for the linkonly mode and date replacements
This adds several new options and flags, it allows to force-enable the usage of the first heading of the linked to page even if useheadin
Add more options for the linkonly mode and date replacements
This adds several new options and flags, it allows to force-enable the usage of the first heading of the linked to page even if useheading is off, it allows to disable the paragraph around the links and it adds more date replacements so you can easily use the year of the previous or next month etc. in the id of the included page/namespace.
show more ...
|
| cc549663 | 19-Jul-2011 |
Michael Hamann <michael@content-space.de> |
Fix placement of section edit button by fixing a name |
| 5cf0268c | 19-Jul-2011 |
Michael Hamann <michael@content-space.de> |
Add special table section edit handling for the edittable plugin
This should make the include plugin fully compatible with the edittable plugin. |
| 02ca71c3 | 19-Jul-2011 |
Michael Hamann <michael@content-space.de> |
Don't display section buttons for sections without names
This prevents buttons for tables from being displayed |
| 9ed6c5ea | 19-Jul-2011 |
Michael Hamann <michael@content-space.de> |
Fix loading instructions with the wrong global $ID
Previously, instructions have been loaded while $ID has been set to the current page instead of the page that has been loaded. Now this is the page
Fix loading instructions with the wrong global $ID
Previously, instructions have been loaded while $ID has been set to the current page instead of the page that has been loaded. Now this is the page that is loaded as some plugins like the discussion plugin do save data for the wrong page otherwise. This should fix some problems in the discussion plugin where discussion sections appeared on the wrong page.
show more ...
|
| 5534e4eb | 21-Jan-2011 |
Michael Hamann <michael@content-space.de> |
Use sectionID() only when a section is given. Closes #67 and closes #66
The problem was that sectionID() when NULL is given as parameter returns 'section' which leads to strange links in headings an
Use sectionID() only when a section is given. Closes #67 and closes #66
The problem was that sectionID() when NULL is given as parameter returns 'section' which leads to strange links in headings and empty headings also get 'section' as id so they are selected when the whole page is included. Please upgrade and purge the cache (at least for the pages where the bug occurs).
show more ...
|
| 7475482b | 02-Jan-2011 |
Michael Hamann <michael@content-space.de> |
Use sectionID instead of cleanID for sections. Closes #62
Now the internal section ids that are compared should match the ones that are displayed in the url so the ids from the url can be used inste
Use sectionID instead of cleanID for sections. Closes #62
Now the internal section ids that are compared should match the ones that are displayed in the url so the ids from the url can be used instead of the original title in all cases and even when the title is not unique you can select the section by appending a number in the same way it is done in urls (but note that included headers are not seen in the include plugin so for nested includes the appended numbers might differ).
show more ...
|
| 0e3ea831 | 01-Jan-2011 |
Michael Hamann <michael@content-space.de> |
New version 2011-01-01 |
| dcec2f1f | 01-Jan-2011 |
Michael Hamann <michael@content-space.de> |
Respect the redirect flag and configuration option. Closes #60 |
| b11b2b9d | 01-Jan-2011 |
Michael Hamann <michael@content-space.de> |
Fix detection of inline_content parameter
An empty inline_content parameter set the inline_content value of the metadata to false although the content has been displayed. This should fix caching for
Fix detection of inline_content parameter
An empty inline_content parameter set the inline_content value of the metadata to false although the content has been displayed. This should fix caching for the inline_content flag.
show more ...
|
| dcba494b | 30-Dec-2010 |
Michael Hamann <michael@content-space.de> |
Add inline mode without sections for inclusion in other plugins
This mode might look strange with some templates as it changes e.g. how headers are displayed. If the included content contains no hea
Add inline mode without sections for inclusion in other plugins
This mode might look strange with some templates as it changes e.g. how headers are displayed. If the included content contains no headers this mode shouldn't cause any visual difference. If you have problems with invalid html or the inclusion of included content in wrap-blocks of the wrap-plugin or in hidable blocks try the inline mode, it should solve these problems.
show more ...
|
| 12092bce | 31-Dec-2010 |
Michael Hamann <michael@content-space.de> |
Add linkonly option for displaying a link instead of the content
This commit adds a linkonly option that makes the include plugin behave like internal links except that each link is wrapped inside a
Add linkonly option for displaying a link instead of the content
This commit adds a linkonly option that makes the include plugin behave like internal links except that each link is wrapped inside a paragraph. When the url parameter "include_content" is set, all includes are displayed as full includes. This makes it possible to have a page with a list of a lot of pages as table of contents and then to export all these pages as single large document with setting that url parameter. This is useful for creating things like books or larger documentations. This feature has been requested and sponsored by Jörg Ferlein.
show more ...
|
| 6db19c84 | 31-Dec-2010 |
Michael Hamann <michael@content-space.de> |
Add relation references metadata for backlinks
With this addition included pages are also listed under backlinks (with the problems backlinks currently have). |
| dd385353 | 21-Dec-2010 |
Michael Hamann <michael@content-space.de> |
Force metadata rendering in older DokuWiki versions
With this change the include plugins forces metadata rendering when it redirects the user after saving a page to another page because otherwise th
Force metadata rendering in older DokuWiki versions
With this change the include plugins forces metadata rendering when it redirects the user after saving a page to another page because otherwise the metadata is only rendered when the page is displayed directly in DokuWiki versions older than 2010-11-23. A version check ensures this code is only executed in older DokuWiki versions.
show more ...
|
| 3ce125b2 | 21-Dec-2010 |
Michael Hamann <michael@content-space.de> |
Only indent nested includes when indent is activated |