├── .gitignore ├── CI ├── build.xml └── salesforce_ant_31.0 │ └── ant-salesforce.jar ├── README.md ├── assets ├── DefaultDiagram.pdf └── DefaultDiagram.png └── src ├── classes ├── ERDDisplayType.cls ├── ERDDisplayType.cls-meta.xml ├── ERDEntity.cls ├── ERDEntity.cls-meta.xml ├── ERDEntityField.cls ├── ERDEntityField.cls-meta.xml ├── ERDEntityGroup.cls ├── ERDEntityGroup.cls-meta.xml ├── ERDEntityRelationship.cls ├── ERDEntityRelationship.cls-meta.xml ├── ERDException.cls ├── ERDException.cls-meta.xml ├── ERDGenerator.cls ├── ERDGenerator.cls-meta.xml ├── ERDGeneratorController.cls ├── ERDGeneratorController.cls-meta.xml ├── ERDGeneratorControllerTest.cls ├── ERDGeneratorControllerTest.cls-meta.xml ├── ERDGeneratorTest.cls ├── ERDGeneratorTest.cls-meta.xml ├── ERDInspector.cls ├── ERDInspector.cls-meta.xml ├── ERDListUtils.cls ├── ERDListUtils.cls-meta.xml ├── ERDPersister.cls ├── ERDPersister.cls-meta.xml ├── ERDPersisterTests.cls ├── ERDPersisterTests.cls-meta.xml ├── ERDSettingProcessor.cls ├── ERDSettingProcessor.cls-meta.xml ├── ERDSettingsV1.cls ├── ERDSettingsV1.cls-meta.xml ├── ERDSettingsV2.cls ├── ERDSettingsV2.cls-meta.xml ├── ERDSettingsV3.cls ├── ERDSettingsV3.cls-meta.xml ├── ERDTemplateEngine.cls ├── ERDTemplateEngine.cls-meta.xml ├── ERDTemplateEngineTests.cls ├── ERDTemplateEngineTests.cls-meta.xml ├── ERDTemplateType.cls ├── ERDTemplateType.cls-meta.xml ├── ERDUtils.cls └── ERDUtils.cls-meta.xml ├── components ├── JQuerySelectable.component └── JQuerySelectable.component-meta.xml ├── objects └── ERD__c.object ├── package.xml ├── pages ├── ERDDownloader.page ├── ERDDownloader.page-meta.xml ├── ERDGeneratorPage.page └── ERDGeneratorPage.page-meta.xml ├── staticresources ├── DefaultDiagram.resource ├── DefaultDiagram.resource-meta.xml ├── DefaultTemplate.resource ├── DefaultTemplate.resource-meta.xml ├── ERDGeneratorJS.resource ├── ERDGeneratorJS.resource-meta.xml ├── VizJS.resource ├── VizJS.resource-meta.xml ├── WorkingImage.resource └── WorkingImage.resource-meta.xml └── tabs └── ERD_Generator.tab /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/.gitignore -------------------------------------------------------------------------------- /CI/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/CI/build.xml -------------------------------------------------------------------------------- /CI/salesforce_ant_31.0/ant-salesforce.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/CI/salesforce_ant_31.0/ant-salesforce.jar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/README.md -------------------------------------------------------------------------------- /assets/DefaultDiagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/assets/DefaultDiagram.pdf -------------------------------------------------------------------------------- /assets/DefaultDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/assets/DefaultDiagram.png -------------------------------------------------------------------------------- /src/classes/ERDDisplayType.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDDisplayType.cls -------------------------------------------------------------------------------- /src/classes/ERDDisplayType.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDDisplayType.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDEntity.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntity.cls -------------------------------------------------------------------------------- /src/classes/ERDEntity.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntity.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDEntityField.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntityField.cls -------------------------------------------------------------------------------- /src/classes/ERDEntityField.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntityField.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDEntityGroup.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntityGroup.cls -------------------------------------------------------------------------------- /src/classes/ERDEntityGroup.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntityGroup.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDEntityRelationship.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntityRelationship.cls -------------------------------------------------------------------------------- /src/classes/ERDEntityRelationship.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDEntityRelationship.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDException.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDException.cls -------------------------------------------------------------------------------- /src/classes/ERDException.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDException.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDGenerator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGenerator.cls -------------------------------------------------------------------------------- /src/classes/ERDGenerator.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGenerator.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDGeneratorController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGeneratorController.cls -------------------------------------------------------------------------------- /src/classes/ERDGeneratorController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGeneratorController.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDGeneratorControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGeneratorControllerTest.cls -------------------------------------------------------------------------------- /src/classes/ERDGeneratorControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGeneratorControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDGeneratorTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGeneratorTest.cls -------------------------------------------------------------------------------- /src/classes/ERDGeneratorTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDGeneratorTest.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDInspector.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDInspector.cls -------------------------------------------------------------------------------- /src/classes/ERDInspector.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDInspector.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDListUtils.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDListUtils.cls -------------------------------------------------------------------------------- /src/classes/ERDListUtils.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDListUtils.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDPersister.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDPersister.cls -------------------------------------------------------------------------------- /src/classes/ERDPersister.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDPersister.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDPersisterTests.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDPersisterTests.cls -------------------------------------------------------------------------------- /src/classes/ERDPersisterTests.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDPersisterTests.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDSettingProcessor.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingProcessor.cls -------------------------------------------------------------------------------- /src/classes/ERDSettingProcessor.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingProcessor.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDSettingsV1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingsV1.cls -------------------------------------------------------------------------------- /src/classes/ERDSettingsV1.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingsV1.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDSettingsV2.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingsV2.cls -------------------------------------------------------------------------------- /src/classes/ERDSettingsV2.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingsV2.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDSettingsV3.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingsV3.cls -------------------------------------------------------------------------------- /src/classes/ERDSettingsV3.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDSettingsV3.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDTemplateEngine.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDTemplateEngine.cls -------------------------------------------------------------------------------- /src/classes/ERDTemplateEngine.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDTemplateEngine.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDTemplateEngineTests.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDTemplateEngineTests.cls -------------------------------------------------------------------------------- /src/classes/ERDTemplateEngineTests.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDTemplateEngineTests.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDTemplateType.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDTemplateType.cls -------------------------------------------------------------------------------- /src/classes/ERDTemplateType.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDTemplateType.cls-meta.xml -------------------------------------------------------------------------------- /src/classes/ERDUtils.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDUtils.cls -------------------------------------------------------------------------------- /src/classes/ERDUtils.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/classes/ERDUtils.cls-meta.xml -------------------------------------------------------------------------------- /src/components/JQuerySelectable.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/components/JQuerySelectable.component -------------------------------------------------------------------------------- /src/components/JQuerySelectable.component-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/components/JQuerySelectable.component-meta.xml -------------------------------------------------------------------------------- /src/objects/ERD__c.object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/objects/ERD__c.object -------------------------------------------------------------------------------- /src/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/package.xml -------------------------------------------------------------------------------- /src/pages/ERDDownloader.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/pages/ERDDownloader.page -------------------------------------------------------------------------------- /src/pages/ERDDownloader.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/pages/ERDDownloader.page-meta.xml -------------------------------------------------------------------------------- /src/pages/ERDGeneratorPage.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/pages/ERDGeneratorPage.page -------------------------------------------------------------------------------- /src/pages/ERDGeneratorPage.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/pages/ERDGeneratorPage.page-meta.xml -------------------------------------------------------------------------------- /src/staticresources/DefaultDiagram.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/DefaultDiagram.resource -------------------------------------------------------------------------------- /src/staticresources/DefaultDiagram.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/DefaultDiagram.resource-meta.xml -------------------------------------------------------------------------------- /src/staticresources/DefaultTemplate.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/DefaultTemplate.resource -------------------------------------------------------------------------------- /src/staticresources/DefaultTemplate.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/DefaultTemplate.resource-meta.xml -------------------------------------------------------------------------------- /src/staticresources/ERDGeneratorJS.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/ERDGeneratorJS.resource -------------------------------------------------------------------------------- /src/staticresources/ERDGeneratorJS.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/ERDGeneratorJS.resource-meta.xml -------------------------------------------------------------------------------- /src/staticresources/VizJS.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/VizJS.resource -------------------------------------------------------------------------------- /src/staticresources/VizJS.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/VizJS.resource-meta.xml -------------------------------------------------------------------------------- /src/staticresources/WorkingImage.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/WorkingImage.resource -------------------------------------------------------------------------------- /src/staticresources/WorkingImage.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/staticresources/WorkingImage.resource-meta.xml -------------------------------------------------------------------------------- /src/tabs/ERD_Generator.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevebuik/GraphVizForce/HEAD/src/tabs/ERD_Generator.tab --------------------------------------------------------------------------------