David Buchmann
David Buchmann
thanks for the feedback @Soullivaneuh . this bundle builds on top of the bridge. the problem is that this PR is copying a lot of code from there in order...
the form type guesser will now at least add a class to translated fields: https://github.com/doctrine/DoctrinePHPCRBundle/blob/master/Form/PHPCRTypeGuesser.php#L175 this can be used to visually show that a field is translated. @nicolas-bastien is working...
@nicolas-bastien said he is making progress with this one.
thanks for the note! great to see this moving!
i am not sure i completely understood your proposal. would i tell the form type whether i want uuid or path? or do both work mixed? what if a document...
this is supported already, see for example https://github.com/symfony-cmf/cmf-sandbox/blob/master/app/config/phpcr_jackrabbit.yml.dist maybe we miss documentation? you are welcome to do a PR to add it if its missing somewhere.
ah, sorry, i misunderstood what you meant. ideally we would take those informations from the default session information and have command options to set them, to have them passed along...
i was trying to do this as a raw `request` on an index. turns out the data format to send is really peculiar: the body of the request has to...
the elasticsearch support (zachary) gave me this example, if it is any help: ``` php $client = new Client(); $index = $client->getIndex('twitter'); $type = $index->getType('tweet'); $mpercolate = [ '{"percolate" :...
looks like you can do something like this: https://github.com/FriendsOfSymfony/FOSHttpCacheBundle/blob/master/Tests/Functional/EventListener/InvalidationSubscriberTest.php maybe simply a documentation issue?