Marcin Klimek

Results 7 issues of Marcin Klimek

I don't think it should create multiple rows with same data whenever object is used?

As in subject. Example on defining labeler (as from docs): ``` datadog.event_subscriber.audit: class: 'DataDog\AuditBundle\EventSubscriber\AuditSubscriber' arguments: ["@security.token_storage"] tags: - { name: doctrine.event_subscriber, connection: default } calls: - ['setLabeler', [['\AppBundle\Labeler\AuditLabeler', 'getLabel']]] ```...

should provide http -> https rewrite cond if these mismatch input: `http://example.org/example-path/ https://example.org/example-path/` current output: `RewriteRule ^example\-path/$ /example\-path/? [L,R=301]` expected output: ``` RewriteCond %{HTTPS} !=on RewriteRule ^example\-path/$ https://example.org/example\-path/? [L,R=301] ```...

Analyzed whole thumbnail generating flow. I'd suggest, instead of generating 4 thumbnails - generating only one + storing type of it. If user changes in config thumbnail type - notify...

enhancement
help wanted

If server has imagick disabled, on calculation settings page there is "Do you want to calculate now?" even though there is no button or anything. Would be nice to have...

enhancement
good first issue

``` Attempted to load class "Twig_Extension" from the global namespace. Did you forget a "use" statement? ``` Fails with Twig 2.* As hotfix you can create empty class and register...

any way to set noindex/nofollow per taxonomy instead of for all taoxnomies? Example: have taxonomies: blog, products, want: index/follow on /blog, noindex/follow on /products current behaviour - i see it's...