├── .gitignore ├── Module.php ├── README.md ├── composer.json ├── composer.lock ├── config ├── module.config.php └── module.ini ├── data └── doctrine-proxies │ ├── __CG__NeatlineEntityNeatlineExhibit.php │ ├── __CG__NeatlineEntityNeatlineRecord.php │ └── __CG__NeatlineEntityUser.php ├── docs ├── development.md ├── mysql.md ├── production.md └── staging.md ├── hooks └── post-receive ├── scripts └── release.sh ├── src ├── Api │ ├── Adapter │ │ ├── ExhibitAdapter.php │ │ ├── LoginAdapter.php │ │ ├── LogoutAdapter.php │ │ └── RecordAdapter.php │ └── Representation │ │ ├── ExhibitRepresentation.php │ │ ├── RecordRepresentation.php │ │ └── UserRepresentation.php ├── Authentication │ ├── Adapter │ │ └── JwtAdapter.php │ └── JwtUtils.php ├── Controller │ ├── IndexController.php │ └── LoginController.php ├── DBAL │ └── Types │ │ └── Geometry │ │ └── GeometryCollectionType.php ├── Entity │ ├── NeatlineExhibit.php │ ├── NeatlineRecord.php │ └── User.php ├── Mvc │ └── NeatlineStatus.php ├── PHP │ └── Types │ │ └── Geometry │ │ └── GeometryCollection.php ├── Service │ ├── Controller │ │ ├── ExhibitsControllerFactory.php │ │ ├── IndexControllerFactory.php │ │ └── LoginControllerFactory.php │ ├── Form │ │ └── ExhibitFormFactory.php │ ├── NeatlineAuthenticationServiceFactory.php │ └── NeatlineStatusFactory.php └── Site │ ├── BlockLayout │ └── NeatlineExhibit.php │ └── Navigation │ └── Link │ └── NeatlineBrowse.php └── view ├── common ├── block-layout │ ├── neatline-exhibit-form.phtml │ └── neatline-exhibit.phtml └── navigation-link-form │ └── neatline.phtml ├── neatline ├── index │ ├── browse.phtml │ ├── full.phtml │ ├── index.phtml │ └── show.phtml └── login │ └── login.phtml └── omeka └── site └── page └── show.phtml /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | /vendor 3 | /asset/neatline -------------------------------------------------------------------------------- /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/composer.lock -------------------------------------------------------------------------------- /config/module.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/config/module.config.php -------------------------------------------------------------------------------- /config/module.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/config/module.ini -------------------------------------------------------------------------------- /data/doctrine-proxies/__CG__NeatlineEntityNeatlineExhibit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/data/doctrine-proxies/__CG__NeatlineEntityNeatlineExhibit.php -------------------------------------------------------------------------------- /data/doctrine-proxies/__CG__NeatlineEntityNeatlineRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/data/doctrine-proxies/__CG__NeatlineEntityNeatlineRecord.php -------------------------------------------------------------------------------- /data/doctrine-proxies/__CG__NeatlineEntityUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/data/doctrine-proxies/__CG__NeatlineEntityUser.php -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/docs/mysql.md -------------------------------------------------------------------------------- /docs/production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/docs/production.md -------------------------------------------------------------------------------- /docs/staging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/docs/staging.md -------------------------------------------------------------------------------- /hooks/post-receive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/hooks/post-receive -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /src/Api/Adapter/ExhibitAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Api/Adapter/ExhibitAdapter.php -------------------------------------------------------------------------------- /src/Api/Adapter/LoginAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Api/Adapter/LoginAdapter.php -------------------------------------------------------------------------------- /src/Api/Adapter/LogoutAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Api/Adapter/LogoutAdapter.php -------------------------------------------------------------------------------- /src/Api/Adapter/RecordAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Api/Adapter/RecordAdapter.php -------------------------------------------------------------------------------- /src/Api/Representation/ExhibitRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Api/Representation/ExhibitRepresentation.php -------------------------------------------------------------------------------- /src/Api/Representation/RecordRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Api/Representation/RecordRepresentation.php -------------------------------------------------------------------------------- /src/Api/Representation/UserRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Api/Representation/UserRepresentation.php -------------------------------------------------------------------------------- /src/Authentication/Adapter/JwtAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Authentication/Adapter/JwtAdapter.php -------------------------------------------------------------------------------- /src/Authentication/JwtUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Authentication/JwtUtils.php -------------------------------------------------------------------------------- /src/Controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Controller/IndexController.php -------------------------------------------------------------------------------- /src/Controller/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Controller/LoginController.php -------------------------------------------------------------------------------- /src/DBAL/Types/Geometry/GeometryCollectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/DBAL/Types/Geometry/GeometryCollectionType.php -------------------------------------------------------------------------------- /src/Entity/NeatlineExhibit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Entity/NeatlineExhibit.php -------------------------------------------------------------------------------- /src/Entity/NeatlineRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Entity/NeatlineRecord.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/Mvc/NeatlineStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Mvc/NeatlineStatus.php -------------------------------------------------------------------------------- /src/PHP/Types/Geometry/GeometryCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/PHP/Types/Geometry/GeometryCollection.php -------------------------------------------------------------------------------- /src/Service/Controller/ExhibitsControllerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Service/Controller/ExhibitsControllerFactory.php -------------------------------------------------------------------------------- /src/Service/Controller/IndexControllerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Service/Controller/IndexControllerFactory.php -------------------------------------------------------------------------------- /src/Service/Controller/LoginControllerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Service/Controller/LoginControllerFactory.php -------------------------------------------------------------------------------- /src/Service/Form/ExhibitFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Service/Form/ExhibitFormFactory.php -------------------------------------------------------------------------------- /src/Service/NeatlineAuthenticationServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Service/NeatlineAuthenticationServiceFactory.php -------------------------------------------------------------------------------- /src/Service/NeatlineStatusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Service/NeatlineStatusFactory.php -------------------------------------------------------------------------------- /src/Site/BlockLayout/NeatlineExhibit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Site/BlockLayout/NeatlineExhibit.php -------------------------------------------------------------------------------- /src/Site/Navigation/Link/NeatlineBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/src/Site/Navigation/Link/NeatlineBrowse.php -------------------------------------------------------------------------------- /view/common/block-layout/neatline-exhibit-form.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/common/block-layout/neatline-exhibit-form.phtml -------------------------------------------------------------------------------- /view/common/block-layout/neatline-exhibit.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/common/block-layout/neatline-exhibit.phtml -------------------------------------------------------------------------------- /view/common/navigation-link-form/neatline.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/common/navigation-link-form/neatline.phtml -------------------------------------------------------------------------------- /view/neatline/index/browse.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/neatline/index/browse.phtml -------------------------------------------------------------------------------- /view/neatline/index/full.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/neatline/index/full.phtml -------------------------------------------------------------------------------- /view/neatline/index/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/neatline/index/index.phtml -------------------------------------------------------------------------------- /view/neatline/index/show.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/neatline/index/show.phtml -------------------------------------------------------------------------------- /view/neatline/login/login.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/neatline/login/login.phtml -------------------------------------------------------------------------------- /view/omeka/site/page/show.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/performant-software/neatline-omeka-s/HEAD/view/omeka/site/page/show.phtml --------------------------------------------------------------------------------