a8201342 | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
removed unused files |
e87d1e74 | 14-Mar-2017 |
Michael Große <grosse@cosmocode.de> |
Fix typo
At least it was consistent... |
34db2096 | 14-Mar-2017 |
Michael Große <grosse@cosmocode.de> |
Throw on missing column
This happens if the user explicitly enters a column that does not exist in the schema. This error was previously silently ignored.
This adjustment notifies the user that the
Throw on missing column
This happens if the user explicitly enters a column that does not exist in the schema. This error was previously silently ignored.
This adjustment notifies the user that there is an error.
show more ...
|
bb348952 | 07-Dec-2016 |
Andreas Gohr <andi@splitbrain.org> |
fixed typo |
6d2df532 | 07-Dec-2016 |
Andreas Gohr <gohr@cosmocode.de> |
some language clarification |
b3e6d4a4 | 07-Dec-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: show a warning if a filter is used on a cloud |
a0b3799e | 05-Dec-2016 |
Andreas Gohr <gohr@cosmocode.de> |
first go at CSV import #239
This adds CSV importing for Lookup Schemas. The format is fixed (comma separator, " encapsulation, \ escape). The first row has to contain headers matching the Schema's f
first go at CSV import #239
This adds CSV importing for Lookup Schemas. The format is fixed (comma separator, " encapsulation, \ escape). The first row has to contain headers matching the Schema's field names. Non matched fields are ignored.
No validation is done on import. All data is stored as is and will then bw interpreted by the different types.
show more ...
|
5a4df70d | 30-Nov-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Do not allow Lookup Editor on page schemas. fixes #235 |
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 ...
|
2e12ac22 | 17-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
feat: Add `%lasteditor%` col in access-aggregation
Add this column to show the user that last edited a page.
SPR-622 |
95659421 | 16-Nov-2016 |
Andreas Gohr <gohr@cosmocode.de> |
This adds a new type Color
This is not terribly useful on it's own, but will be used by other plugins defining their own types and making use of this.
The default color will never be saved.
This t
This adds a new type Color
This is not terribly useful on it's own, but will be used by other plugins defining their own types and making use of this.
The default color will never be saved.
This type makes use of <input type="color"> which is not supported in some older browsers (a simple text input will be displayed by those).
show more ...
|
7cbcfbdb | 07-Nov-2016 |
Andreas Gohr <gohr@cosmocode.de> |
better handling of failing sqlite plugin init. fixes #200 |
09dd691a | 01-Nov-2016 |
Andreas Gohr <gohr@cosmocode.de> |
first attempt at CSV export |
e2c90eeb | 06-Oct-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added editors to schema. not checked anywhere, yet |
09dd9c78 | 25-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
do not save empty lookup data |
f107f479 | 24-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
show new row when adding to lookup
This renders the newly created row and adds it dynamically to the existing table. |
fc26989e | 11-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
make sure lookups aren't assigned to pages
This prevents pattern assignment and will ignore any lookups when reading the assignments for a given page.
Should probably have some tests |
2be187cd | 11-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
safeguard against lookup mixing in Search
We can not join lookup schemas with any other schema on pid. Which means we can not allow selecting more than one lookup schema in Search. |
70d1dea6 | 10-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed references to old Integer type |
04346cd2 | 08-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
delete lookup rows |
6b5e52fd | 04-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
first go at the lookup table editor
All functionality is added via JavaScript after an initial AJAX call. This call can be used to check permissions later (without the need to invalidate caches) |
7c080d69 | 04-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
lookup schemas can now be created |
4e427bd5 | 04-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added lookup selection in schema creation dialog |
cadfc3cc | 26-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
implement a %lastupdated% column #122 |
4a2883e0 | 26-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
introduced DateTime Type
This is similar to Date but also accepts a time. Only uses a Date picker, no time picker as we currently have none available. |