Julian Montagna

Results 24 comments of Julian Montagna

Hi, I've checked provided code and I can't find anything strange. The only thing that makes me think is that in your description, you've said that the filter does happen...

Thanks! This is a know issue that I have on my todo and is about publisher sending data to subscriber. Will try to fix this with some priority since I...

Hi André, Thanks for your contact. I'm working on testing new package features for 0.8.x and once I've finished that I will be repackaging for 0.9. Will let you know...

Before I started this projects, I have done a little research and also found meteor-pages. After tested it and as far as I've understood, the package is great but did...

You are right, that is something that I've noticed and I think that this happend because invalidation is performed after the cursor is back to the subscriber so at a...

Sound interesting. I've read several times all your posts and I think that I don't fully understand or i can't imagine yet how this could be implemented correctly. I agree...

Hi lzwaan, Right on target. I've added to the last commit a new feature allowing the subscriber and publisher methods to have a "name" property. If you setup same value...

Thanks! Let me know if you need further help. Happy to help.

Something like that: ``` /** /lib/collections.js **/ Rfc = new Meteor.Collection('rfccollection'); ``` ``` /** /server/server.js **/ Meteor.FilterCollections.publish(Rfc, { name: 'someName' }); Meteor.FilterCollections.publish(Rfc, { name: 'anotherName' }); ``` ``` /** /client/views/rfc-add.js...