| 5a4df70d | 30-Nov-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Do not allow Lookup Editor on page schemas. fixes #235 |
| 5f11f83e | 30-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: repair multi-column cloud sql |
| d44fbf18 | 29-Nov-2016 |
Hideaki SAWADA <chuno@live.jp> |
translation update |
| c7dd6b6a | 29-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: make Cloud renderer-agnostic |
| 0c555ad4 | 28-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: preface pagename w/ namespace for inline diff
The event IO_WIKIPAGE_READ saves the namespace of a page in $data[1] and only the page_name itself in $data[2]. So this code was broken for all pag
fix: preface pagename w/ namespace for inline diff
The event IO_WIKIPAGE_READ saves the namespace of a page in $data[1] and only the page_name itself in $data[2]. So this code was broken for all pages not in the root namespace.
see https://www.dokuwiki.org/devel:event:io_wikipage_read
Fixes #232 and fixes SPR-572
show more ...
|
| f88397bc | 28-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: rescale imagetags so pixel area ~ count
Rescale the images so that images, that are loaded with the same width are rescaled to contain the same number of pixels (initial width^2), but keep the
feat: rescale imagetags so pixel area ~ count
Rescale the images so that images, that are loaded with the same width are rescaled to contain the same number of pixels (initial width^2), but keep their aspect ratio. This must be done in js, because the server does not know the dimensions of the images used. (espacially since we support external images)
show more ...
|
| 8026d0b1 | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: directly use class, we have only 1 kind |
| 85edf4f2 | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: enable target option for cloud
Enable the target option for cloud, so we can define another page where the aggregation to be filtered is located. |
| cf365c1f | 28-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: rename variable to better reflect scope |
| 3aad9612 | 28-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: resolve conflict of type\Page and meta\Page
These two classes having the same name caused an error that on some pages, after saving the page, the page itself remained blank. The error-log conta
fix: resolve conflict of type\Page and meta\Page
These two classes having the same name caused an error that on some pages, after saving the page, the page itself remained blank. The error-log contained the following:
[Mon Nov 28 09:05:52 2016] [error] [client 91.65.183.141] PHP Fatal error: Cannot use dokuwiki\\plugin\\struct\\types\\Page as Page because the name is already in use in [...]/lib/plugins/struct/meta/Search.php on line 7, referer: [...]
show more ...
|
| 8e54e6f4 | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: render colors and images in cloud
Known issues: currently the images are scaled by their width. However that makes potrait-images much larger than landscape-images of the same count. However s
feat: render colors and images in cloud
Known issues: currently the images are scaled by their width. However that makes potrait-images much larger than landscape-images of the same count. However since we do not know the size of the image in php, we may have to fix this with javascript.
show more ...
|
| 8b4531cf | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: sort in php and sort colors by hue
We moved the sorting to php and added a extra sort function for colors by their hue. |
| 5282d027 | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: cleanup of AggregationCloud |
| be2ae900 | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: remove unnecessary class
We do not reuse any styles from struct aggregations |
| 33bd00e9 | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: rename methods to be more specific |
| 4c969d82 | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: Set font-sizes in php |
| ce8676ae | 25-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: use displayValue to support lookups
Use displayValue, since the lookup-type only stores the row-id in the raw-value. But we need a workaround, since displayValue may be empty for page-types for
fix: use displayValue to support lookups
Use displayValue, since the lookup-type only stores the row-id in the raw-value. But we need a workaround, since displayValue may be empty for page-types for pages that never existed.
show more ...
|
| ea5ad12a | 22-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: add list aggregation
Implement the list aggregation known from the dokuwiki data plugin. This feature is useful when an entire table would be to much boilerplate. Usually one would select only
feat: add list aggregation
Implement the list aggregation known from the dokuwiki data plugin. This feature is useful when an entire table would be to much boilerplate. Usually one would select only a few columns.
Enable the option sepbyheader to behave analogous to the data plugin.
Report any options that are not valid for a list aggregation as error. Show that error during the render phase of a page. That way the error is visible always when the page is rendered, not only after the initial save when it is parsed.
See #90 and see SPR-710
show more ...
|
| 5e893cb9 | 24-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: sort tags alphabetically |
| ae457e47 | 24-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: support option min for cloud aggregation |
| aafac1c1 | 24-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: Adjust tag size by its count |
| 0699ff47 | 24-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
refactor: Use Search class and hence support limit |
| 1719449c | 23-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: escaped filter in url |
| fa04b28c | 23-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: add tag cloud aggregation
The basics are working but there is still a lot to do and to refactor |
| 38ad376d | 23-Nov-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fix logic error |