Göran Ehrsson
Göran Ehrsson
When creating a table cell a paragraph is created automatically by `TextBlock DocumentBuilder#getColumnParagraph(Cell)` to hold the cell content. However I found no easy way to set lineSpacing and lineSpacingMultiplier for...
Vertical alignment is fixed to 'top' in 0.4.15 (at least in WordDocumentBuilder). It would be great if we could specify vertical alignment for a cell. Something like this: cell(align: 'center',...
Adding document properties was much harder than expected, but I finally made it. I had to move code from WordDocument to WordDocumentBuilder and add relationships for app.xml and core.xml, and...
This pull request adds support generating Table of Contents with the `toc()` tag. ``` paragraph(font: [size: 20.pt, bold: true]) { text "Table of Contents" } toc() pageBreak() ``` It's not...
In one of my use-cases I need footers on all pages but no header on first page. I tried to add an if-statement in the header block that just returns...
When using the shiro-quick-start script the template for SecurityFilters.groovy does not work well with the asset pipeline plugin. All assets (images, css) are protected by shiro and you see broken...
### Task List - [x] Steps to reproduce provided - [ ] Stacktrace (if present) provided - [ ] Example that reproduces the problem uploaded to Github - [x] Full...
### Expected Behavior A controller method with the following signature should return data: ``` @JsonView(Views.Public.class) @Get("/optional") public Optional getUserOptional() { return Optional.of(new User(1, "Joe", "secret")); } ``` ``` public class...
### Expected Behavior After upgrade from Micronaut 3.x to 4.5.1 we see "random" `No value present` errors from a service that accepts multipart file uploads. We also see that sometimes...
### Feature description Today UUID is supported by Micronaut Data as auto generated primary keys. It would be great to also have support for CUIDs. "CUID is a more modern...