├── .versions ├── LICENSE ├── README.md ├── lib ├── client │ └── publish_relations.js └── server │ ├── cursor │ ├── change_parent_doc.js │ ├── crossbar.js │ ├── cursor.js │ ├── index.js │ ├── join.js │ ├── nonreactive │ │ ├── cursor.js │ │ ├── index.js │ │ └── join.js │ ├── observe.js │ └── utils.js │ ├── handler_controller.js │ ├── index.js │ ├── methods.js │ └── publish_relations.js ├── package.js ├── tests ├── basic.js ├── cursor_methods.js ├── data.js └── index.js └── versions.json /.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/.versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/README.md -------------------------------------------------------------------------------- /lib/client/publish_relations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/client/publish_relations.js -------------------------------------------------------------------------------- /lib/server/cursor/change_parent_doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/change_parent_doc.js -------------------------------------------------------------------------------- /lib/server/cursor/crossbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/crossbar.js -------------------------------------------------------------------------------- /lib/server/cursor/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/cursor.js -------------------------------------------------------------------------------- /lib/server/cursor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/index.js -------------------------------------------------------------------------------- /lib/server/cursor/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/join.js -------------------------------------------------------------------------------- /lib/server/cursor/nonreactive/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/nonreactive/cursor.js -------------------------------------------------------------------------------- /lib/server/cursor/nonreactive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/nonreactive/index.js -------------------------------------------------------------------------------- /lib/server/cursor/nonreactive/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/nonreactive/join.js -------------------------------------------------------------------------------- /lib/server/cursor/observe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/observe.js -------------------------------------------------------------------------------- /lib/server/cursor/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/cursor/utils.js -------------------------------------------------------------------------------- /lib/server/handler_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/handler_controller.js -------------------------------------------------------------------------------- /lib/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/index.js -------------------------------------------------------------------------------- /lib/server/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/methods.js -------------------------------------------------------------------------------- /lib/server/publish_relations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/lib/server/publish_relations.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/package.js -------------------------------------------------------------------------------- /tests/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/tests/basic.js -------------------------------------------------------------------------------- /tests/cursor_methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/tests/cursor_methods.js -------------------------------------------------------------------------------- /tests/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/tests/data.js -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/tests/index.js -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfades/cottz-publish-relations/HEAD/versions.json --------------------------------------------------------------------------------