diff --git a/src/app/app.module.ts b/src/app/app.module.ts index c12826c6561b04932f6dae0527bf450f1a584428..c2b0d15cd89014c9b0aae10eb14596e1f390a8f3 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -130,6 +130,7 @@ import { CallLandingComponent } from './pages/call-landing/call-landing.componen import { ToolsBannerComponent } from './components/other/tools-banner/tools-banner.component'; import { ToolPanelComponent } from './components/other/tools-banner/tool-panel/tool-panel.component'; import { CiteComponent } from './pages/cite/cite.component'; +import { ImplGitComponent } from './pages/doc/content/implementation/impl-git/impl-git.component'; @NgModule({ @@ -204,6 +205,7 @@ import { CiteComponent } from './pages/cite/cite.component'; CiteComponent, ToolsBannerComponent, ToolPanelComponent, + ImplGitComponent, ], imports: [ BrowserModule, diff --git a/src/app/pages/doc/content/implementation/impl-git/impl-git.component.html b/src/app/pages/doc/content/implementation/impl-git/impl-git.component.html new file mode 100644 index 0000000000000000000000000000000000000000..5ec6afec9d4e246cd6ef9b2f944af8f591063f25 --- /dev/null +++ b/src/app/pages/doc/content/implementation/impl-git/impl-git.component.html @@ -0,0 +1,7 @@ +<p> + For code versioning Drugst.One uses GitHub. Under the <a href="https://github.com/drugst-one" target="_blank">drugst-one + organization</a> you can find the <a href="https://github.com/drugst-one/plugin" target="_blank">plugin repository</a>, the <a + href="https://github.com/drugst-one/backend" target="_blank">backend repository</a> and other repositories like + the <a href="https://github.com/drugst-one/integration-examples" target="_blank">integration examples</a> and the <a + href="https://github.com/drugst-one/django-template" target="_blank">website skeleton project</a>. +</p> diff --git a/src/app/pages/doc/content/implementation/impl-git/impl-git.component.scss b/src/app/pages/doc/content/implementation/impl-git/impl-git.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/app/pages/doc/content/implementation/impl-git/impl-git.component.spec.ts b/src/app/pages/doc/content/implementation/impl-git/impl-git.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..89082d19409b540d7c16ed02470cc89b81a59704 --- /dev/null +++ b/src/app/pages/doc/content/implementation/impl-git/impl-git.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ImplGitComponent } from './impl-git.component'; + +describe('ImplGitComponent', () => { + let component: ImplGitComponent; + let fixture: ComponentFixture<ImplGitComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ ImplGitComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(ImplGitComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/doc/content/implementation/impl-git/impl-git.component.ts b/src/app/pages/doc/content/implementation/impl-git/impl-git.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..1b4636734fef08831261f0169155dc316d3d1dfa --- /dev/null +++ b/src/app/pages/doc/content/implementation/impl-git/impl-git.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-impl-git', + templateUrl: './impl-git.component.html', + styleUrls: ['./impl-git.component.scss'] +}) +export class ImplGitComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/doc/content/start/from-scratch/from-scratch.component.html b/src/app/pages/doc/content/start/from-scratch/from-scratch.component.html index e7b6004432c49ad217680795221287612c50e9d9..01bfef29193d14c497f79eec996cf62170188b73 100644 --- a/src/app/pages/doc/content/start/from-scratch/from-scratch.component.html +++ b/src/app/pages/doc/content/start/from-scratch/from-scratch.component.html @@ -4,7 +4,7 @@ to help you get started. It includes a working django webserver with an example program that returns a list of genes and the visualization of the results in a Drugst.One instance. For more information and the code, check out our <a - href="https://gitlab.rrz.uni-hamburg.de/cosy-bio/drugst.one/template-django" + href="https://github.com/drugst-one/django-template" target="_blank" >website template repository</a >. diff --git a/src/app/pages/doc/doc.component.html b/src/app/pages/doc/doc.component.html index 4dc1128214363bdb7f1e79035d78792b1110a82e..b76cb82d606d7577119982324fcd2f9662645974 100644 --- a/src/app/pages/doc/doc.component.html +++ b/src/app/pages/doc/doc.component.html @@ -27,7 +27,7 @@ ></app-doc-subheader> <app-angular></app-angular> - <app-doc-subheader text="Django" id="djano_setup" link="https://gitlab.rrz.uni-hamburg.de/cosy-bio/drugst.one/template-django/-/tree/main/drugstone_template"></app-doc-subheader> + <app-doc-subheader text="Django" id="djano_setup" link="https://github.com/drugst-one/django-template/tree/main/drugstone_template"></app-doc-subheader> <app-django></app-django> <app-doc-subheader @@ -174,7 +174,11 @@ text="Implementation" id="implementation" ></app-doc-header> - + <app-doc-subheader + text="GitHub" + id="implementation_git" + ></app-doc-subheader> + <app-impl-git></app-impl-git> <app-doc-subheader text="Datasources" id="implementation_datasources" diff --git a/src/app/pages/doc/elements/doc-navbar/doc-navbar.component.ts b/src/app/pages/doc/elements/doc-navbar/doc-navbar.component.ts index c408a13685f1340adbc0ff63b74621c7a8c08f61..72fb72eaf4fbb097aa4e70d9a06255ba4d999f5c 100644 --- a/src/app/pages/doc/elements/doc-navbar/doc-navbar.component.ts +++ b/src/app/pages/doc/elements/doc-navbar/doc-navbar.component.ts @@ -56,6 +56,7 @@ export class DocNavbarComponent implements OnInit { }, { name: 'Implementation', target: 'nav_implementation', elements: [ + {name: 'GitHub', anchor: 'implementation_git'}, { name: 'Datasources', anchor: 'implementation_datasources' }, { name: 'Network', anchor: 'implementation_visjs' }, { name: 'Algorithms', anchor: 'implementation_algorithms' }, diff --git a/src/assets/favicon_raw.png b/src/assets/favicon_raw.png index 7588c8b22471780fc13d2273647eb29aca70b88e..572adb1427880e38d8e4875ce9c660026daf90f3 100644 Binary files a/src/assets/favicon_raw.png and b/src/assets/favicon_raw.png differ