├── .gitignore ├── CCMHistory.py ├── DirectoryObject.py ├── FileObject.py ├── ProjectObject.py ├── README.md ├── SynergyObject.py ├── SynergySession.py ├── SynergySessions.py ├── SynergyUtils.py ├── TaskObject.py ├── add_project_snapshot_to_git.py ├── ccm_cache.py ├── ccm_fast_export.py ├── ccm_history_to_graphs.py ├── ccm_objects_in_project.py ├── ccm_types.py ├── configuration.conf.sample ├── convert_history.py ├── do_history_conversion.py ├── get_snapshot.py ├── get_synergy_history.py ├── load_configuration.py ├── populate_ccm_cache.py ├── user.py └── users.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/.gitignore -------------------------------------------------------------------------------- /CCMHistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/CCMHistory.py -------------------------------------------------------------------------------- /DirectoryObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/DirectoryObject.py -------------------------------------------------------------------------------- /FileObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/FileObject.py -------------------------------------------------------------------------------- /ProjectObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/ProjectObject.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/README.md -------------------------------------------------------------------------------- /SynergyObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/SynergyObject.py -------------------------------------------------------------------------------- /SynergySession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/SynergySession.py -------------------------------------------------------------------------------- /SynergySessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/SynergySessions.py -------------------------------------------------------------------------------- /SynergyUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/SynergyUtils.py -------------------------------------------------------------------------------- /TaskObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/TaskObject.py -------------------------------------------------------------------------------- /add_project_snapshot_to_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/add_project_snapshot_to_git.py -------------------------------------------------------------------------------- /ccm_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/ccm_cache.py -------------------------------------------------------------------------------- /ccm_fast_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/ccm_fast_export.py -------------------------------------------------------------------------------- /ccm_history_to_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/ccm_history_to_graphs.py -------------------------------------------------------------------------------- /ccm_objects_in_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/ccm_objects_in_project.py -------------------------------------------------------------------------------- /ccm_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/ccm_types.py -------------------------------------------------------------------------------- /configuration.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/configuration.conf.sample -------------------------------------------------------------------------------- /convert_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/convert_history.py -------------------------------------------------------------------------------- /do_history_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/do_history_conversion.py -------------------------------------------------------------------------------- /get_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/get_snapshot.py -------------------------------------------------------------------------------- /get_synergy_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/get_synergy_history.py -------------------------------------------------------------------------------- /load_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/load_configuration.py -------------------------------------------------------------------------------- /populate_ccm_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/populate_ccm_cache.py -------------------------------------------------------------------------------- /user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/user.py -------------------------------------------------------------------------------- /users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanuelez/PySynergy/HEAD/users.py --------------------------------------------------------------------------------