diff --git a/components/AppComponent.html b/components/AppComponent.html index 256e05ad..6f9615e4 100644 --- a/components/AppComponent.html +++ b/components/AppComponent.html @@ -275,7 +275,7 @@

Constructor

diff --git a/components/AppEventsComponent.html b/components/AppEventsComponent.html index 04d206f3..3367b190 100644 --- a/components/AppEventsComponent.html +++ b/components/AppEventsComponent.html @@ -758,7 +758,7 @@

diff --git a/components/AppManageComponent.html b/components/AppManageComponent.html index 20035a45..8d136ef9 100644 --- a/components/AppManageComponent.html +++ b/components/AppManageComponent.html @@ -544,7 +544,7 @@

diff --git a/components/BuildISOComponent.html b/components/BuildISOComponent.html index 9e6ac8b6..31147a8f 100644 --- a/components/BuildISOComponent.html +++ b/components/BuildISOComponent.html @@ -749,7 +749,7 @@

diff --git a/components/CheckSysComponent.html b/components/CheckSysComponent.html index 45fda028..a486f966 100644 --- a/components/CheckSysComponent.html +++ b/components/CheckSysComponent.html @@ -731,7 +731,7 @@

diff --git a/components/DialogBoxTextConfirmComponent.html b/components/DialogBoxTextConfirmComponent.html index 70e5cd5f..14e0d928 100644 --- a/components/DialogBoxTextConfirmComponent.html +++ b/components/DialogBoxTextConfirmComponent.html @@ -400,7 +400,7 @@

diff --git a/components/DialogItemCopyComponent.html b/components/DialogItemCopyComponent.html new file mode 100644 index 00000000..3f239bbe --- /dev/null +++ b/components/DialogItemCopyComponent.html @@ -0,0 +1,636 @@ + + + + + + Cobbler Frontend Docs + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + + + + + +
+

+

File

+

+

+ projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts +

+ + + + + + +
+

Metadata

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+

Index

+ + + + + + + + + + + + + + + + + + + + + +
+
Properties
+
+ +
+
Methods
+
+ +
+
+ +
+

Constructor

+ + + + + + + + + + + + + +
+constructor(data: DialogItemCopyData) +
+ +
+
+ Parameters : + + + + + + + + + + + + + + + + + + +
NameTypeOptional
data + DialogItemCopyData + + No +
+
+
+
+ + + + + +
+ +

+ Methods +

+ + + + + + + + + + + + + + + + + + + +
+ + + onNoClick + + +
+onNoClick() +
+ +
+ +
+ Returns : void + +
+
+
+
+ +

+ Properties +

+ + + + + + + + + + + + + + + + + +
+ + + + Public + data + + +
+ Type : DialogItemCopyData + +
+ Decorators : +
+ + @Inject(MAT_DIALOG_DATA)
+
+
+ +
+ + + + + + + + + + + + + + +
+ + + Readonly + dialogCloseSignal + + +
+ Default value : model('') +
+ +
+ + + + + + + + + + + + + + +
+ + + Readonly + dialogRef + + +
+ Default value : inject(MatDialogRef<DialogItemCopyComponent>) +
+ +
+
+ +
+ + +
+
import {
+  ChangeDetectionStrategy,
+  Component,
+  inject,
+  Inject,
+  model,
+} from '@angular/core';
+import { FormsModule, ReactiveFormsModule } from '@angular/forms';
+import { MatButton, MatButtonModule } from '@angular/material/button';
+import {
+  MAT_DIALOG_DATA,
+  MatDialogModule,
+  MatDialogRef,
+} from '@angular/material/dialog';
+import { MatFormFieldModule } from '@angular/material/form-field';
+import { MatInputModule } from '@angular/material/input';
+
+export interface DialogItemCopyData {
+  itemType: string;
+  itemName: string;
+  itemUid: string;
+}
+
+@Component({
+  selector: 'cobbler-dialog-item-copy',
+  standalone: true,
+  imports: [
+    MatDialogModule,
+    MatButtonModule,
+    ReactiveFormsModule,
+    MatFormFieldModule,
+    MatInputModule,
+    FormsModule,
+  ],
+  templateUrl: './dialog-item-copy.component.html',
+  styleUrl: './dialog-item-copy.component.scss',
+  changeDetection: ChangeDetectionStrategy.OnPush,
+})
+export class DialogItemCopyComponent {
+  readonly dialogRef = inject(MatDialogRef<DialogItemCopyComponent>);
+  readonly dialogCloseSignal = model('');
+
+  constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemCopyData) {}
+
+  onNoClick(): void {
+    this.dialogRef.close();
+  }
+}
+
+
+ +
+
<h1 mat-dialog-title>Copy {{ data.itemType }}</h1>
+<mat-dialog-content>
+  <mat-form-field class="form-field-full-width">
+    <mat-label>Old name</mat-label>
+    <input matInput readonly value="{{ data.itemName }}" />
+  </mat-form-field>
+
+  <mat-form-field class="form-field-full-width">
+    <mat-label>New name</mat-label>
+    <input
+      matInput
+      [(ngModel)]="dialogCloseSignal"
+      cdkFocusInitial
+      placeholder="New name"
+    />
+  </mat-form-field>
+</mat-dialog-content>
+<mat-dialog-actions>
+  <button mat-button (click)="onNoClick()">Close</button>
+  <button mat-button [mat-dialog-close]="dialogCloseSignal()">Copy</button>
+</mat-dialog-actions>
+
+
+ + +
+
+
+
+ Legend +
+
+
Html element +
+
+
Component +
+
+
Html element with directive +
+
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+

results matching ""

+
    +
    +
    +

    No results matching ""

    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/components/DialogItemRenameComponent.html b/components/DialogItemRenameComponent.html index 297da583..fd67b719 100644 --- a/components/DialogItemRenameComponent.html +++ b/components/DialogItemRenameComponent.html @@ -540,7 +540,7 @@

    diff --git a/components/DialogTextInputComponent.html b/components/DialogTextInputComponent.html index 4763f6b2..4fbef8c1 100644 --- a/components/DialogTextInputComponent.html +++ b/components/DialogTextInputComponent.html @@ -467,7 +467,7 @@

    diff --git a/components/DistroEditComponent.html b/components/DistroEditComponent.html index 79451e81..dbbe7cd7 100644 --- a/components/DistroEditComponent.html +++ b/components/DistroEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -228,6 +229,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • @@ -246,6 +251,9 @@
    Methods
  • editDistro
  • +
  • + ngOnDestroy +
  • ngOnInit
  • @@ -308,12 +316,12 @@

    Constructor

    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog) -
    Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:96
    +
    Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:104
    @@ -390,6 +398,18 @@

    Constructor

    + + dialog + + + MatDialog + + + + No + + + @@ -421,15 +441,15 @@

    -copyDistro() +copyDistro(uid: string, name: string) -
    Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:264
    +
    Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:280
    @@ -437,10 +457,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -465,8 +527,45 @@

    -
    Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:259
    +
    Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:275
    + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -502,8 +601,8 @@

    @@ -539,8 +638,8 @@

    @@ -576,8 +675,8 @@

    @@ -613,8 +712,8 @@

    @@ -656,7 +755,7 @@

    @@ -682,7 +781,7 @@

    @@ -753,7 +852,7 @@

    @@ -784,7 +883,7 @@

    @@ -810,7 +909,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -839,7 +964,7 @@

    @@ -861,7 +986,7 @@

    @@ -883,7 +1008,7 @@

    @@ -905,7 +1030,7 @@

    @@ -927,7 +1052,7 @@

    @@ -949,7 +1074,7 @@

    @@ -971,7 +1096,7 @@

    @@ -982,7 +1107,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -991,6 +1116,7 @@ 

    } from '@angular/forms'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -999,6 +1125,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, Distro } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component'; import { MultiSelectComponent } from '../../../common/multi-select/multi-select.component'; import { UserService } from '../../../services/user.service'; @@ -1026,7 +1155,11 @@

    templateUrl: './distro-edit.component.html', styleUrl: './distro-edit.component.scss', }) -export class DistroEditComponent implements OnInit { +export class DistroEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; distro: Distro; private readonly _formBuilder = inject(FormBuilder); @@ -1085,6 +1218,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -1093,9 +1227,15 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_distro(this.name, false, false, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { this.distro = value; @@ -1222,6 +1362,7 @@

    removeDistro(): void { this.cobblerApiService .remove_distro(this.name, this.userService.token, false) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { if (value) { @@ -1245,18 +1386,44 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copyDistro(): void { - this.cobblerApiService - .copy_distro('', '', this.userService.token) - .subscribe( - (value) => { - // TODO - }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + copyDistro(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'Distro', + itemName: name, + itemUid: uid, + }, + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the distro + return; + } + this.cobblerApiService + .get_distro_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (distroHandle) => { + this.cobblerApiService + .copy_distro(distroHandle, newItemName, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate(['/items', 'distro', newItemName]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } saveDistro(): void { @@ -1350,7 +1517,11 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copyDistro()" matTooltip="Copy"> + <button + mat-icon-button + (click)="this.copyDistro(this.distro.uid, this.distro.name)" + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1559,8 +1730,8 @@

    diff --git a/components/DistrosOverviewComponent.html b/components/DistrosOverviewComponent.html index a4f615f1..64356a3f 100644 --- a/components/DistrosOverviewComponent.html +++ b/components/DistrosOverviewComponent.html @@ -1138,7 +1138,7 @@

    diff --git a/components/FileEditComponent.html b/components/FileEditComponent.html index fcbd5961..453a81cb 100644 --- a/components/FileEditComponent.html +++ b/components/FileEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -226,6 +227,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • @@ -244,6 +249,9 @@
    Methods
  • editFile
  • +
  • + ngOnDestroy +
  • ngOnInit
  • @@ -274,12 +282,12 @@

    Constructor

    @@ -356,6 +364,18 @@

    Constructor

    +
    + + + + + + +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)
    - +
    dialog + MatDialog + + No +
    @@ -387,15 +407,15 @@

    -copyFile() +copyFile(uid: string, name: string) - + @@ -403,10 +423,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -431,8 +493,45 @@

    - + + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -468,8 +567,8 @@

    @@ -505,8 +604,8 @@

    @@ -542,8 +641,8 @@

    @@ -579,8 +678,8 @@

    @@ -622,7 +721,7 @@

    @@ -648,7 +747,7 @@

    @@ -689,7 +788,7 @@

    @@ -720,7 +819,7 @@

    @@ -746,7 +845,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -759,7 +884,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -769,6 +894,7 @@ 

    import { MatOption } from '@angular/material/autocomplete'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -777,6 +903,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, File } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { UserService } from '../../../services/user.service'; import Utils from '../../../utils'; @@ -800,7 +929,11 @@

    templateUrl: './file-edit.component.html', styleUrl: './file-edit.component.scss', }) -export class FileEditComponent implements OnInit { +export class FileEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; file: File; private readonly _formBuilder = inject(FormBuilder); @@ -829,6 +962,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -837,9 +971,15 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_file(this.name, false, false, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { this.file = value; @@ -873,6 +1013,7 @@

    removeFile(): void { this.cobblerApiService .remove_file(this.name, this.userService.token, false) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { if (value) { @@ -896,16 +1037,44 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copyFile(): void { - this.cobblerApiService.copy_file('', '', this.userService.token).subscribe( - (value) => { - // TODO + copyFile(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'File', + itemName: name, + itemUid: uid, }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the file + return; + } + this.cobblerApiService + .get_file_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (fileHandle) => { + this.cobblerApiService + .copy_file(fileHandle, newItemName, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate(['/items', 'file', newItemName]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } saveFile(): void { @@ -929,7 +1098,11 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copyFile()" matTooltip="Copy"> + <button + mat-icon-button + (click)="this.copyFile(this.file.uid, this.file.name)" + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1034,8 +1207,8 @@

    diff --git a/components/FileOverviewComponent.html b/components/FileOverviewComponent.html index 6402930a..6a65b43c 100644 --- a/components/FileOverviewComponent.html +++ b/components/FileOverviewComponent.html @@ -1124,7 +1124,7 @@

    diff --git a/components/HardlinkComponent.html b/components/HardlinkComponent.html index 9b8bbe1e..0f328910 100644 --- a/components/HardlinkComponent.html +++ b/components/HardlinkComponent.html @@ -540,7 +540,7 @@

    diff --git a/components/ImageEditComponent.html b/components/ImageEditComponent.html index e5380b96..c4130aaf 100644 --- a/components/ImageEditComponent.html +++ b/components/ImageEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -227,6 +228,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • @@ -245,6 +250,9 @@
    Methods
  • editImage
  • +
  • + ngOnDestroy +
  • ngOnInit
  • @@ -289,12 +297,12 @@

    Constructor

    @@ -371,6 +379,18 @@

    Constructor

    +
    + + + + + + +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)
    - +
    dialog + MatDialog + + No +
    @@ -402,15 +422,15 @@

    -copyImage() +copyImage(uid: string, name: string) - + @@ -418,10 +438,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -446,8 +508,45 @@

    - + + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -483,8 +582,8 @@

    @@ -520,8 +619,8 @@

    @@ -557,8 +656,8 @@

    @@ -594,8 +693,8 @@

    @@ -637,7 +736,7 @@

    @@ -663,7 +762,7 @@

    @@ -709,7 +808,7 @@

    @@ -740,7 +839,7 @@

    @@ -766,7 +865,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -795,7 +920,7 @@

    @@ -806,7 +931,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -816,6 +941,7 @@ 

    import { MatOption } from '@angular/material/autocomplete'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -824,6 +950,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, Image } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { MultiSelectComponent } from '../../../common/multi-select/multi-select.component'; import { UserService } from '../../../services/user.service'; import Utils from '../../../utils'; @@ -849,7 +978,11 @@

    templateUrl: './image-edit.component.html', styleUrl: './image-edit.component.scss', }) -export class ImageEditComponent implements OnInit { +export class ImageEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; image: Image; private readonly _formBuilder = inject(FormBuilder); @@ -883,6 +1016,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -891,9 +1025,15 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_image(this.name, false, false, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { this.image = value; @@ -951,6 +1091,7 @@

    removeImage(): void { this.cobblerApiService .remove_image(this.name, this.userService.token, false) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { if (value) { @@ -974,16 +1115,44 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copyImage(): void { - this.cobblerApiService.copy_image('', '', this.userService.token).subscribe( - (value) => { - // TODO + copyImage(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'Image', + itemName: name, + itemUid: uid, }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the image + return; + } + this.cobblerApiService + .get_image_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (imageHandle) => { + this.cobblerApiService + .copy_image(imageHandle, newItemName, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate(['/items', 'image', newItemName]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } saveImage(): void { @@ -1017,7 +1186,11 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copyImage()" matTooltip="Copy"> + <button + mat-icon-button + (click)="this.copyImage(this.image.uid, this.image.name)" + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1145,8 +1318,8 @@

    diff --git a/components/ImageOverviewComponent.html b/components/ImageOverviewComponent.html index 29412d7e..7d795bda 100644 --- a/components/ImageOverviewComponent.html +++ b/components/ImageOverviewComponent.html @@ -1142,7 +1142,7 @@

    diff --git a/components/ImportDVDComponent.html b/components/ImportDVDComponent.html index 041de29b..1fe00ae8 100644 --- a/components/ImportDVDComponent.html +++ b/components/ImportDVDComponent.html @@ -738,7 +738,7 @@

    diff --git a/components/KeyValueEditorComponent.html b/components/KeyValueEditorComponent.html index 61625a44..3c707fb7 100644 --- a/components/KeyValueEditorComponent.html +++ b/components/KeyValueEditorComponent.html @@ -1385,7 +1385,7 @@

    diff --git a/components/LogInFormComponent.html b/components/LogInFormComponent.html index a6b2bb50..b83bbac9 100644 --- a/components/LogInFormComponent.html +++ b/components/LogInFormComponent.html @@ -1266,7 +1266,7 @@

    diff --git a/components/ManageMenuComponent.html b/components/ManageMenuComponent.html index eaac203d..23fa73a5 100644 --- a/components/ManageMenuComponent.html +++ b/components/ManageMenuComponent.html @@ -661,7 +661,7 @@

    diff --git a/components/ManagementClassEditComponent.html b/components/ManagementClassEditComponent.html index f45569ec..11d1971b 100644 --- a/components/ManagementClassEditComponent.html +++ b/components/ManagementClassEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -228,6 +229,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • @@ -241,11 +246,14 @@
    Methods

    @@ -372,6 +380,18 @@

    Constructor

    +
    + + + + + + +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    - +
    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)
    - +
    dialog + MatDialog + + No +
    @@ -394,24 +414,24 @@

    - + - copyProfile - + copyMgmtClass + -copyProfile() +copyMgmtClass(uid: string, name: string) - + @@ -419,10 +439,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -447,8 +509,45 @@

    - + + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -484,8 +583,8 @@

    @@ -521,8 +620,8 @@

    @@ -558,8 +657,8 @@

    @@ -595,8 +694,8 @@

    @@ -638,7 +737,7 @@

    @@ -669,7 +768,7 @@

    @@ -695,7 +794,7 @@

    @@ -736,7 +835,7 @@

    @@ -762,7 +861,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -791,7 +916,7 @@

    @@ -802,7 +927,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -812,6 +937,7 @@ 

    import { MatOption } from '@angular/material/autocomplete'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -820,6 +946,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, Mgmgtclass } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component'; import { MultiSelectComponent } from '../../../common/multi-select/multi-select.component'; import { UserService } from '../../../services/user.service'; @@ -847,7 +976,11 @@

    templateUrl: './management-class-edit.component.html', styleUrl: './management-class-edit.component.scss', }) -export class ManagementClassEditComponent implements OnInit { +export class ManagementClassEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; managementClass: Mgmgtclass; private readonly _formBuilder = inject(FormBuilder); @@ -876,6 +1009,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -884,9 +1018,15 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_mgmtclass(this.name, false, false, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { this.managementClass = value; @@ -949,6 +1089,7 @@

    removeManagementClass(): void { this.cobblerApiService .remove_mgmtclass(this.name, this.userService.token, false) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { if (value) { @@ -972,18 +1113,52 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copyProfile(): void { - this.cobblerApiService - .copy_mgmtclass('', '', this.userService.token) - .subscribe( - (value) => { - // TODO - }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + copyMgmtClass(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'Mangement Class', + itemName: name, + itemUid: uid, + }, + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the management class + return; + } + this.cobblerApiService + .get_mgmtclass_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (mgmtClassHandle) => { + this.cobblerApiService + .copy_mgmtclass( + mgmtClassHandle, + newItemName, + this.userService.token, + ) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate([ + '/items', + 'management-class', + newItemName, + ]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } saveProfile(): void { @@ -1017,7 +1192,16 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copyProfile()" matTooltip="Copy"> + <button + mat-icon-button + (click)=" + this.copyMgmtClass( + this.managementClass.uid, + this.managementClass.name + ) + " + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1135,8 +1319,8 @@

    diff --git a/components/ManagementClassOverviewComponent.html b/components/ManagementClassOverviewComponent.html index 0db02b67..4c91b6af 100644 --- a/components/ManagementClassOverviewComponent.html +++ b/components/ManagementClassOverviewComponent.html @@ -1147,7 +1147,7 @@

    diff --git a/components/MkloadersComponent.html b/components/MkloadersComponent.html index f0ae73ed..46ed77d0 100644 --- a/components/MkloadersComponent.html +++ b/components/MkloadersComponent.html @@ -540,7 +540,7 @@

    diff --git a/components/MultiSelectComponent.html b/components/MultiSelectComponent.html index 3f04ca89..5c11d31d 100644 --- a/components/MultiSelectComponent.html +++ b/components/MultiSelectComponent.html @@ -1480,7 +1480,7 @@

    diff --git a/components/NavbarComponent.html b/components/NavbarComponent.html index 69fa92b4..e20a23cd 100644 --- a/components/NavbarComponent.html +++ b/components/NavbarComponent.html @@ -864,7 +864,7 @@

    diff --git a/components/NotFoundComponent.html b/components/NotFoundComponent.html index a2c3d74c..1cc93364 100644 --- a/components/NotFoundComponent.html +++ b/components/NotFoundComponent.html @@ -273,7 +273,7 @@

    Constructor

    diff --git a/components/PackageEditComponent.html b/components/PackageEditComponent.html index cdbc9689..a4106f7d 100644 --- a/components/PackageEditComponent.html +++ b/components/PackageEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -221,6 +222,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • package
  • @@ -245,6 +250,9 @@
    Methods
  • editPackage
  • +
  • + ngOnDestroy +
  • ngOnInit
  • @@ -289,12 +297,12 @@

    Constructor

    @@ -371,6 +379,18 @@

    Constructor

    +
    + + + + + + +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    - +
    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)
    - +
    dialog + MatDialog + + No +
    @@ -402,15 +422,15 @@

    -copyPackage() +copyPackage(uid: string, name: string) - + @@ -418,10 +438,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -446,8 +508,45 @@

    - + + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -483,8 +582,8 @@

    @@ -520,8 +619,8 @@

    @@ -557,8 +656,8 @@

    @@ -594,8 +693,8 @@

    @@ -637,7 +736,7 @@

    @@ -668,7 +767,7 @@

    @@ -694,7 +793,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -720,7 +845,7 @@

    @@ -764,7 +889,7 @@

    @@ -793,7 +918,7 @@

    @@ -804,7 +929,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -814,6 +939,7 @@ 

    import { MatOption } from '@angular/material/autocomplete'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -822,6 +948,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, Package } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { MultiSelectComponent } from '../../../common/multi-select/multi-select.component'; import { UserService } from '../../../services/user.service'; import Utils from '../../../utils'; @@ -847,7 +976,11 @@

    templateUrl: './package-edit.component.html', styleUrl: './package-edit.component.scss', }) -export class PackageEditComponent implements OnInit { +export class PackageEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; package: Package; private readonly _formBuilder = inject(FormBuilder); @@ -879,6 +1012,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -887,9 +1021,15 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_package(this.name, false, false, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { this.package = value; @@ -935,6 +1075,7 @@

    removePackage(): void { this.cobblerApiService .remove_package(this.name, this.userService.token, false) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { if (value) { @@ -958,18 +1099,44 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copyPackage(): void { - this.cobblerApiService - .copy_package('', '', this.userService.token) - .subscribe( - (value) => { - // TODO - }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + copyPackage(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'Package', + itemName: name, + itemUid: uid, + }, + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the package + return; + } + this.cobblerApiService + .get_package_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (packageHandle) => { + this.cobblerApiService + .copy_package(packageHandle, newItemName, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate(['/items', 'package', newItemName]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } savePackage(): void { @@ -1003,7 +1170,11 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copyPackage()" matTooltip="Copy"> + <button + mat-icon-button + (click)="this.copyPackage(this.package.uid, this.package.name)" + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1125,8 +1296,8 @@

    diff --git a/components/PackageOverviewComponent.html b/components/PackageOverviewComponent.html index 4929857c..81d5f769 100644 --- a/components/PackageOverviewComponent.html +++ b/components/PackageOverviewComponent.html @@ -1134,7 +1134,7 @@

    diff --git a/components/ProfileEditComponent.html b/components/ProfileEditComponent.html index 557d0c24..99034f0d 100644 --- a/components/ProfileEditComponent.html +++ b/components/ProfileEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -222,6 +223,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • profile
  • @@ -246,6 +251,9 @@
    Methods
  • editProfile
  • +
  • + ngOnDestroy +
  • ngOnInit
  • @@ -311,12 +319,12 @@

    Constructor

    @@ -393,6 +401,18 @@

    Constructor

    +
    + + + + + + +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    - +
    - +
    - +
    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)
    - +
    dialog + MatDialog + + No +
    @@ -424,15 +444,15 @@

    -copyProfile() +copyProfile(uid: string, name: string) - + @@ -440,10 +460,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -468,8 +530,45 @@

    - + + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -505,8 +604,8 @@

    @@ -542,8 +641,8 @@

    @@ -579,8 +678,8 @@

    @@ -616,8 +715,8 @@

    @@ -659,7 +758,7 @@

    @@ -690,7 +789,7 @@

    @@ -716,7 +815,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -742,7 +867,7 @@

    @@ -821,7 +946,7 @@

    @@ -850,7 +975,7 @@

    @@ -872,7 +997,7 @@

    @@ -894,7 +1019,7 @@

    @@ -916,7 +1041,7 @@

    @@ -938,7 +1063,7 @@

    @@ -960,7 +1085,7 @@

    @@ -982,7 +1107,7 @@

    @@ -1004,7 +1129,7 @@

    @@ -1015,7 +1140,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -1025,6 +1150,7 @@ 

    import { MatOption } from '@angular/material/autocomplete'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -1033,6 +1159,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, Profile } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component'; import { MultiSelectComponent } from '../../../common/multi-select/multi-select.component'; import { UserService } from '../../../services/user.service'; @@ -1060,7 +1189,11 @@

    templateUrl: './profile-edit.component.html', styleUrl: './profile-edit.component.scss', }) -export class ProfileEditComponent implements OnInit { +export class ProfileEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; profile: Profile; private readonly _formBuilder = inject(FormBuilder); @@ -1127,6 +1260,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -1135,9 +1269,15 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_profile(this.name, false, false, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { this.profile = value; @@ -1301,6 +1441,7 @@

    removeProfile(): void { this.cobblerApiService .remove_profile(this.name, this.userService.token, false) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { if (value) { @@ -1324,18 +1465,44 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copyProfile(): void { - this.cobblerApiService - .copy_profile('', '', this.userService.token) - .subscribe( - (value) => { - // TODO - }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + copyProfile(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'Profile', + itemName: name, + itemUid: uid, + }, + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the profile + return; + } + this.cobblerApiService + .get_profile_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (profileHandle) => { + this.cobblerApiService + .copy_profile(profileHandle, newItemName, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate(['/items', 'profile', newItemName]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } saveProfile(): void { @@ -1439,7 +1606,11 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copyProfile()" matTooltip="Copy"> + <button + mat-icon-button + (click)="this.copyProfile(this.profile.uid, this.profile.name)" + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1684,8 +1855,8 @@

    diff --git a/components/ProfileOverviewComponent.html b/components/ProfileOverviewComponent.html index abf494c5..8c3ef5da 100644 --- a/components/ProfileOverviewComponent.html +++ b/components/ProfileOverviewComponent.html @@ -1134,7 +1134,7 @@

    diff --git a/components/ReplicateComponent.html b/components/ReplicateComponent.html index 76eec757..fb09f793 100644 --- a/components/ReplicateComponent.html +++ b/components/ReplicateComponent.html @@ -771,7 +771,7 @@

    diff --git a/components/RepoSyncComponent.html b/components/RepoSyncComponent.html index 8ee5882e..730d05e3 100644 --- a/components/RepoSyncComponent.html +++ b/components/RepoSyncComponent.html @@ -956,7 +956,7 @@

    diff --git a/components/RepositoryEditComponent.html b/components/RepositoryEditComponent.html index b1da019c..842eb091 100644 --- a/components/RepositoryEditComponent.html +++ b/components/RepositoryEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -222,6 +223,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • repository
  • @@ -246,6 +251,9 @@
    Methods
  • editRepository
  • +
  • + ngOnDestroy +
  • ngOnInit
  • @@ -296,12 +304,12 @@

    Constructor

    @@ -378,6 +386,18 @@

    Constructor

    +
    + + + + + + +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)
    - +
    dialog + MatDialog + + No +
    @@ -409,15 +429,15 @@

    -copyRepository() +copyRepository(uid: string, name: string) - + @@ -425,10 +445,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -453,8 +515,45 @@

    - + + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -490,8 +589,8 @@

    @@ -527,8 +626,8 @@

    @@ -564,8 +663,8 @@

    @@ -601,8 +700,8 @@

    @@ -644,7 +743,7 @@

    @@ -675,7 +774,7 @@

    @@ -701,7 +800,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -727,7 +852,7 @@

    @@ -778,7 +903,7 @@

    @@ -807,7 +932,7 @@

    @@ -829,7 +954,7 @@

    @@ -851,7 +976,7 @@

    @@ -862,7 +987,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -872,6 +997,7 @@ 

    import { MatOption } from '@angular/material/autocomplete'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -880,6 +1006,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, Repo } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component'; import { MultiSelectComponent } from '../../../common/multi-select/multi-select.component'; import { UserService } from '../../../services/user.service'; @@ -907,7 +1036,11 @@

    templateUrl: './repository-edit.component.html', styleUrl: './repository-edit.component.scss', }) -export class RepositoryEditComponent implements OnInit { +export class RepositoryEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; repository: Repo; private readonly _formBuilder = inject(FormBuilder); @@ -946,6 +1079,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -954,9 +1088,15 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_repo(this.name, false, false, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { this.repository = value; @@ -1041,6 +1181,7 @@

    removeRepository(): void { this.cobblerApiService .remove_repo(this.name, this.userService.token, false) + .pipe(takeUntil(this.ngUnsubscribe)) .subscribe( (value) => { if (value) { @@ -1064,16 +1205,44 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copyRepository(): void { - this.cobblerApiService.copy_repo('', '', this.userService.token).subscribe( - (value) => { - // TODO + copyRepository(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'Repository', + itemName: name, + itemUid: uid, }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the repository + return; + } + this.cobblerApiService + .get_repo_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (repositoryHandle) => { + this.cobblerApiService + .copy_repo(repositoryHandle, newItemName, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate(['/items', 'repository', newItemName]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } saveRepository(): void { @@ -1127,7 +1296,11 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copyRepository()" matTooltip="Copy"> + <button + mat-icon-button + (click)="this.copyRepository(this.repository.uid, this.repository.name)" + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1285,8 +1458,8 @@

    diff --git a/components/RepositoryOverviewComponent.html b/components/RepositoryOverviewComponent.html index de0245ed..d7e56e98 100644 --- a/components/RepositoryOverviewComponent.html +++ b/components/RepositoryOverviewComponent.html @@ -1133,7 +1133,7 @@

    diff --git a/components/SettingsViewComponent.html b/components/SettingsViewComponent.html index 8f6ca033..4c90dabc 100644 --- a/components/SettingsViewComponent.html +++ b/components/SettingsViewComponent.html @@ -970,7 +970,7 @@

    diff --git a/components/SignaturesComponent.html b/components/SignaturesComponent.html index d8385507..e63e6751 100644 --- a/components/SignaturesComponent.html +++ b/components/SignaturesComponent.html @@ -1148,7 +1148,7 @@

    diff --git a/components/SnippetEditComponent.html b/components/SnippetEditComponent.html index a99c593a..c75cfead 100644 --- a/components/SnippetEditComponent.html +++ b/components/SnippetEditComponent.html @@ -949,7 +949,7 @@

    diff --git a/components/SnippetOverviewComponent.html b/components/SnippetOverviewComponent.html index d004899c..c96fb3d8 100644 --- a/components/SnippetOverviewComponent.html +++ b/components/SnippetOverviewComponent.html @@ -941,7 +941,7 @@

    diff --git a/components/StatusComponent.html b/components/StatusComponent.html index 0398b9fb..d09284a1 100644 --- a/components/StatusComponent.html +++ b/components/StatusComponent.html @@ -930,7 +930,7 @@

    diff --git a/components/SyncComponent.html b/components/SyncComponent.html index e973aa2e..928ebed8 100644 --- a/components/SyncComponent.html +++ b/components/SyncComponent.html @@ -1046,7 +1046,7 @@

    diff --git a/components/SystemEditComponent.html b/components/SystemEditComponent.html index a0efc7fe..e2170963 100644 --- a/components/SystemEditComponent.html +++ b/components/SystemEditComponent.html @@ -127,6 +127,7 @@

    Implements

    OnInit + OnDestroy

    @@ -222,6 +223,10 @@
    Properties
  • name
  • +
  • + Private + ngUnsubscribe +
  • system
  • @@ -246,6 +251,9 @@
    Methods
  • editSystem
  • +
  • + ngOnDestroy +
  • ngOnInit
  • @@ -311,12 +319,12 @@

    Constructor

    @@ -393,6 +401,18 @@

    Constructor

    +
    + + + + + + +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    - +
    - +
    - +
    - +
    - +
    -constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router) +constructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)
    - +
    dialog + MatDialog + + No +
    @@ -424,15 +444,15 @@

    -copySystem() +copySystem(uid: string, name: string) - + @@ -440,10 +460,52 @@

    +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    uid + string + + No +
    name + string + + No +
    +
    Returns : void
    +
    + +
    @@ -468,8 +530,45 @@

    - + + + + + + + + +
    + Returns : void + +
    + + + + + + + + + + + + + + + + @@ -505,8 +604,8 @@

    @@ -542,8 +641,8 @@

    @@ -579,8 +678,8 @@

    @@ -616,8 +715,8 @@

    @@ -659,7 +758,7 @@

    @@ -690,7 +789,7 @@

    @@ -716,7 +815,33 @@

    + + + + +
    + + + ngOnDestroy + + +
    +ngOnDestroy() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - + +
    + + + + + + + + + + @@ -742,7 +867,7 @@

    @@ -843,7 +968,7 @@

    @@ -872,7 +997,7 @@

    @@ -894,7 +1019,7 @@

    @@ -916,7 +1041,7 @@

    @@ -938,7 +1063,7 @@

    @@ -960,7 +1085,7 @@

    @@ -982,7 +1107,7 @@

    @@ -1004,7 +1129,7 @@

    @@ -1026,7 +1151,7 @@

    @@ -1037,7 +1162,7 @@

    -
    import { Component, inject, OnInit } from '@angular/core';
    +        
    import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';
     import {
       FormBuilder,
       FormControl,
    @@ -1047,6 +1172,7 @@ 

    import { MatOption } from '@angular/material/autocomplete'; import { MatButton, MatIconButton } from '@angular/material/button'; import { MatCheckbox } from '@angular/material/checkbox'; +import { MatDialog } from '@angular/material/dialog'; import { MatFormField, MatLabel } from '@angular/material/form-field'; import { MatIcon } from '@angular/material/icon'; import { MatInput } from '@angular/material/input'; @@ -1055,6 +1181,9 @@

    import { MatTooltip } from '@angular/material/tooltip'; import { ActivatedRoute, Router } from '@angular/router'; import { CobblerApiService, System } from 'cobbler-api'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component'; import { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component'; import { MultiSelectComponent } from '../../../common/multi-select/multi-select.component'; import { UserService } from '../../../services/user.service'; @@ -1082,7 +1211,11 @@

    templateUrl: './system-edit.component.html', styleUrl: './system-edit.component.scss', }) -export class SystemEditComponent implements OnInit { +export class SystemEditComponent implements OnInit, OnDestroy { + // Unsubscribe + private ngUnsubscribe = new Subject<void>(); + + // Form name: string; system: System; private readonly _formBuilder = inject(FormBuilder); @@ -1171,6 +1304,7 @@

    private cobblerApiService: CobblerApiService, private _snackBar: MatSnackBar, private router: Router, + @Inject(MatDialog) readonly dialog: MatDialog, ) { this.name = this.route.snapshot.paramMap.get('name'); } @@ -1179,6 +1313,11 @@

    this.refreshData(); } + ngOnDestroy(): void { + this.ngUnsubscribe.next(); + this.ngUnsubscribe.complete(); + } + refreshData(): void { this.cobblerApiService .get_system(this.name, false, false, this.userService.token) @@ -1432,18 +1571,44 @@

    this._snackBar.open('Not implemented at the moment!', 'Close'); } - copySystem(): void { - this.cobblerApiService - .copy_system('', '', this.userService.token) - .subscribe( - (value) => { - // TODO - }, - (error) => { - // HTML encode the error message since it originates from XML - this._snackBar.open(Utils.toHTML(error.message), 'Close'); - }, - ); + copySystem(uid: string, name: string): void { + const dialogRef = this.dialog.open(DialogItemCopyComponent, { + data: { + itemType: 'System', + itemName: name, + itemUid: uid, + }, + }); + + dialogRef.afterClosed().subscribe((newItemName) => { + if (newItemName === undefined) { + // Cancel means we don't need to rename the system + return; + } + this.cobblerApiService + .get_system_handle(name, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (systemHandle) => { + this.cobblerApiService + .copy_system(systemHandle, newItemName, this.userService.token) + .pipe(takeUntil(this.ngUnsubscribe)) + .subscribe( + (value) => { + this.router.navigate(['/items', 'system', newItemName]); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }, + (error) => { + // HTML encode the error message since it originates from XML + this._snackBar.open(Utils.toHTML(error.message), 'Close'); + }, + ); + }); } saveSystem(): void { @@ -1547,7 +1712,11 @@

    </button> </span> <span class="title-cell-button"> - <button mat-icon-button (click)="this.copySystem()" matTooltip="Copy"> + <button + mat-icon-button + (click)="this.copySystem(this.system.uid, this.system.name)" + matTooltip="Copy" + > <mat-icon>content_copy</mat-icon> </button> </span> @@ -1872,8 +2041,8 @@

    diff --git a/components/SystemOverviewComponent.html b/components/SystemOverviewComponent.html index eb3d9477..76975943 100644 --- a/components/SystemOverviewComponent.html +++ b/components/SystemOverviewComponent.html @@ -1124,7 +1124,7 @@

    diff --git a/components/TemplateEditComponent.html b/components/TemplateEditComponent.html index 485400a6..c64d9950 100644 --- a/components/TemplateEditComponent.html +++ b/components/TemplateEditComponent.html @@ -949,7 +949,7 @@

    diff --git a/components/TemplateOverviewComponent.html b/components/TemplateOverviewComponent.html index 3c799870..af93bb4f 100644 --- a/components/TemplateOverviewComponent.html +++ b/components/TemplateOverviewComponent.html @@ -941,7 +941,7 @@

    diff --git a/components/UnauthorizedComponent.html b/components/UnauthorizedComponent.html index 434dddf4..2af8825b 100644 --- a/components/UnauthorizedComponent.html +++ b/components/UnauthorizedComponent.html @@ -272,7 +272,7 @@

    Constructor

    diff --git a/components/ValidateAutoinstallsComponent.html b/components/ValidateAutoinstallsComponent.html index 63015c2e..36c4f33d 100644 --- a/components/ValidateAutoinstallsComponent.html +++ b/components/ValidateAutoinstallsComponent.html @@ -540,7 +540,7 @@

    diff --git a/components/ViewableTreeComponent.html b/components/ViewableTreeComponent.html index 48712a4c..b6ca06e6 100644 --- a/components/ViewableTreeComponent.html +++ b/components/ViewableTreeComponent.html @@ -812,7 +812,7 @@

    diff --git a/coverage.html b/coverage.html index 4bb1cff2..e41c0523 100644 --- a/coverage.html +++ b/coverage.html @@ -718,6 +718,30 @@ (0/4) +

    + + + + + + + + + + + @@ -859,7 +883,7 @@ @@ -883,7 +907,7 @@ @@ -907,7 +931,7 @@ @@ -931,7 +955,7 @@ @@ -955,7 +979,7 @@ @@ -979,7 +1003,7 @@ @@ -1027,7 +1051,7 @@ diff --git a/interfaces/DialogItemCopyData.html b/interfaces/DialogItemCopyData.html new file mode 100644 index 00000000..3e5ec382 --- /dev/null +++ b/interfaces/DialogItemCopyData.html @@ -0,0 +1,406 @@ + + + + + + Cobbler Frontend Docs + + + + + + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + +
    +
    +

    +

    File

    +

    +

    + projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts +

    + + + + +
    +

    Index

    +
    + + + Private + ngUnsubscribe + + +
    + Default value : new Subject<void>() +
    +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    + + projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts + componentDialogItemCopyComponent + 0 % + (0/6) +
    + + projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts + interfaceDialogItemCopyData + 0 % + (0/4) +
    @@ -835,7 +859,7 @@ DistroEditComponent 0 % - (0/13) + (0/15)
    FileEditComponent 0 % - (0/13) + (0/15)
    ImageEditComponent 0 % - (0/13) + (0/15)
    ManagementClassEditComponent 0 % - (0/13) + (0/15)
    PackageEditComponent 0 % - (0/13) + (0/15)
    ProfileEditComponent 0 % - (0/13) + (0/15)
    RepositoryEditComponent 0 % - (0/13) + (0/15)
    SystemEditComponent 0 % - (0/13) + (0/15)
    + + + + + + + + +
    +
    Properties
    +
    + +
    + + + + +
    +

    Properties

    + + + + + + + + + + + + + + + + + + + +
    + + itemName + + + + +
    + itemName: string + +
    + Type : string + +
    + + + + + + + + + + + + + + + + + + + +
    + + itemType + + + + +
    + itemType: string + +
    + Type : string + +
    + + + + + + + + + + + + + + + + + + + +
    + + itemUid + + + + +
    + itemUid: string + +
    + Type : string + +
    +
    + + + +
    +
    import {
    +  ChangeDetectionStrategy,
    +  Component,
    +  inject,
    +  Inject,
    +  model,
    +} from '@angular/core';
    +import { FormsModule, ReactiveFormsModule } from '@angular/forms';
    +import { MatButton, MatButtonModule } from '@angular/material/button';
    +import {
    +  MAT_DIALOG_DATA,
    +  MatDialogModule,
    +  MatDialogRef,
    +} from '@angular/material/dialog';
    +import { MatFormFieldModule } from '@angular/material/form-field';
    +import { MatInputModule } from '@angular/material/input';
    +
    +export interface DialogItemCopyData {
    +  itemType: string;
    +  itemName: string;
    +  itemUid: string;
    +}
    +
    +@Component({
    +  selector: 'cobbler-dialog-item-copy',
    +  standalone: true,
    +  imports: [
    +    MatDialogModule,
    +    MatButtonModule,
    +    ReactiveFormsModule,
    +    MatFormFieldModule,
    +    MatInputModule,
    +    FormsModule,
    +  ],
    +  templateUrl: './dialog-item-copy.component.html',
    +  styleUrl: './dialog-item-copy.component.scss',
    +  changeDetection: ChangeDetectionStrategy.OnPush,
    +})
    +export class DialogItemCopyComponent {
    +  readonly dialogRef = inject(MatDialogRef<DialogItemCopyComponent>);
    +  readonly dialogCloseSignal = model('');
    +
    +  constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemCopyData) {}
    +
    +  onNoClick(): void {
    +    this.dialogRef.close();
    +  }
    +}
    +
    +
    + + + + + + + + + +
    +
    +

    results matching ""

    +
      +
      +
      +

      No results matching ""

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/js/menu-wc.js b/js/menu-wc.js index 934cf919..9957d579 100644 --- a/js/menu-wc.js +++ b/js/menu-wc.js @@ -94,6 +94,9 @@ customElements.define('compodoc-menu', class extends HTMLElement { + @@ -292,6 +295,9 @@ customElements.define('compodoc-menu', class extends HTMLElement { + diff --git a/js/menu-wc_es5.js b/js/menu-wc_es5.js index baf48e9a..048fd547 100644 --- a/js/menu-wc_es5.js +++ b/js/menu-wc_es5.js @@ -33,7 +33,7 @@ customElements.define('compodoc-menu', /*#__PURE__*/function (_HTMLElement) { }, { key: "render", value: function render(isNormalMode) { - var tp = lithtml.html("\n \n ")); + var tp = lithtml.html("\n \n ")); this.innerHTML = tp.strings; } }]); diff --git a/js/search/search_index.js b/js/search/search_index.js index 94d0267e..25974b6e 100644 --- a/js/search/search_index.js +++ b/js/search/search_index.js @@ -1,4 +1,4 @@ var COMPODOC_SEARCH_INDEX = { - "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/injectables/AngularXmlrpcService.html",[0,2.281,1,3.493]],["body/injectables/AngularXmlrpcService.html",[0,3.153,1,4.828,2,2.909,3,0.127,4,0.117,5,0.106,6,4.47,7,6.844,8,3.55,9,0.149,10,0.265,11,1.69,12,6.466,13,2.023,14,7.68,15,6.435,16,1.375,17,6.021,18,4.337,19,6.021,20,6.021,21,6.021,22,6.021,23,6.842,24,0.727,25,6.021,26,7.923,27,1.389,28,4.427,29,1.479,30,0.01,31,0.346,32,0.267,33,1.262,34,6.021,35,4.427,36,6.353,37,7.137,38,5.302,39,6.021,40,4.825,41,5.302,42,6.021,43,6.021,44,3.281,45,4.763,46,1.445,47,1.016,48,6.021,49,2.074,50,4.427,51,3.729,52,6.021,53,4.427,54,4.067,55,6.021,56,4.818,57,4.427,58,3.729,59,6.021,60,4.427,61,3.729,62,4.427,63,0.488,64,4.087,65,1.154,66,6.5,67,4.427,68,6.021,69,2.114,70,5.302,71,1.978,72,6.021,73,6.021,74,5.085,75,5.302,76,6.021,77,5.302,78,4.828,79,5.302,80,5.085,81,4.427,82,4.427,83,4.427,84,1.098,85,0.6,86,6.021,87,4.427,88,3.55,89,4.427,90,4.427,91,3.55,92,4.427,93,1.212,94,3.898,95,1.343,96,1.806,97,5.487,98,1.185,99,3.082,100,2.631,101,0.127,102,0.502,103,1.863,104,0.55,105,2.761,106,2.761,107,3.755,108,2.562,109,6.021,110,3.755,111,2.909,112,1.068,113,4.427,114,6.021,115,1.016,116,4.427,117,4.427,118,3.846,119,3.898,120,6.021,121,4.427,122,6.021,123,4.427,124,4.427,125,1.28,126,4.427,127,4.427,128,4.427,129,4.427,130,4.427,131,4.427,132,4.427,133,0.007,134,0.007]],["title/components/AppComponent.html",[135,0.053,136,0.837]],["body/components/AppComponent.html",[3,0.149,4,0.137,5,0.124,24,1.216,27,0.853,30,0.01,31,0.277,84,1.004,85,0.704,98,1.159,100,3.979,101,0.149,102,0.589,104,0.645,133,0.007,134,0.007,135,0.091,136,1.502,137,1.286,138,0.853,139,2.211,140,1.05,141,1.19,142,0.259,143,4.574,144,1.05,145,1.48,146,1.218,147,0.69,148,0.933,149,1.099,150,1.502,151,2.526,152,7.406,153,1.07,154,6.694,155,5.195,156,1.353,157,4.166,158,5.195,159,5.195,160,3.86,161,5.195,162,3.24,163,2.387,164,4.574,165,1.05,166,1.253,167,1.19,168,1.05,169,1.581,170,1.05,171,1.05,172,0.998,173,1.319,174,1.05,175,0.998,176,1.05,177,0.998,178,0.998,179,1.05,180,0.998,181,0.972,182,1.05,183,0.972,184,1.386,185,0.998,186,1.05,187,0.972,188,0.766,189,1.05,190,0.972,191,1.05,192,0.998,193,1.759,194,0.998,195,1.05,196,0.998,197,0.998,198,1.744,199,0.998,200,1.05,201,0.998,202,0.787,203,0.998,204,0.998,205,1.05,206,0.998,207,0.9,208,1.05,209,0.998,210,1.05,211,0.998,212,0.998,213,1.05,214,0.998,215,1.05,216,0.998,217,1.024,218,1.05,219,0.998,220,1.05,221,0.998,222,1.05,223,0.998,224,0.998,225,0.998,226,0.998,227,0.998,228,1.05,229,0.998,230,0.998,231,0.998,232,0.787,233,1.353,234,0.972,235,0.876,236,1.05,237,0.923,238,1.05,239,0.998,240,0.998,241,0.998,242,1.05,243,0.998,244,1.024,245,0.998,246,0.998,247,0.998,248,0.998,249,1.05,250,0.998,251,1.05,252,1.05,253,0.923,254,0.998,255,1.05,256,1.05]],["title/components/AppEventsComponent.html",[135,0.053,172,0.837]],["body/components/AppEventsComponent.html",[3,0.114,4,0.104,5,0.095,9,0.133,10,0.245,11,1.415,13,1.171,16,1.043,24,0.916,27,1.292,29,1.017,30,0.01,31,0.352,32,0.201,33,0.868,44,3.038,46,1.177,47,1.181,63,0.491,65,0.668,84,1.161,85,0.537,93,1.084,95,1.202,96,0.931,98,1.212,101,0.114,102,0.449,104,0.95,112,0.955,115,1.181,133,0.006,134,0.006,135,0.079,136,0.761,137,1.071,138,0.65,139,1.685,140,0.8,141,0.991,142,0.311,144,0.8,145,1.463,146,1.205,147,0.575,148,0.777,149,0.916,150,0.761,151,2.104,153,0.891,156,0.8,162,2.47,163,1.412,165,0.8,166,1.043,167,0.991,168,0.8,169,1.415,170,0.8,171,0.8,172,1.345,173,1.608,174,0.8,175,0.761,176,0.8,177,0.761,178,0.761,179,0.8,180,0.761,181,0.741,182,0.8,183,1.043,184,1.381,185,1.239,186,0.8,187,0.741,188,0.951,189,0.8,190,0.741,191,0.8,192,0.761,193,1.672,194,0.761,195,0.8,196,0.761,197,0.761,198,1.65,199,0.761,200,0.8,201,0.761,202,0.6,203,0.761,204,0.761,205,0.8,206,0.761,207,0.686,208,0.8,209,0.761,210,0.8,211,0.761,212,0.761,213,0.8,214,0.761,215,0.8,216,0.761,217,0.78,218,0.8,219,0.761,220,0.8,221,0.761,222,0.8,223,0.761,224,0.761,225,0.761,226,0.761,227,0.761,228,0.8,229,0.761,230,0.761,231,0.761,232,0.6,233,1.127,234,0.741,235,0.668,236,0.8,237,0.704,238,0.8,239,0.761,240,0.761,241,0.761,242,0.8,243,0.761,244,0.78,245,0.761,246,0.761,247,0.761,248,0.761,249,0.8,250,0.761,251,0.8,252,0.8,253,0.704,254,0.761,255,0.8,256,0.8,257,7.069,258,7.069,259,3.487,260,1.185,261,1.858,262,2.063,263,6.164,264,4.023,265,4.023,266,4.793,267,3.252,268,6.45,269,3.834,270,5.68,271,4.239,272,6.45,273,5.574,274,6.45,275,2.661,276,2.119,277,2.239,278,2.07,279,5.574,280,3.96,281,3.815,282,1.896,283,5.574,284,3.96,285,3.96,286,5.574,287,3.96,288,5.172,289,1.337,290,4.793,291,2.979,292,2.449,293,2.449,294,2.617,295,3.96,296,2.063,297,3.96,298,1.926,299,1.112,300,0.741,301,1.005,302,1.997,303,2.074,304,1.112,305,1.634,306,1.685,307,1.412,308,0.931,309,2.251,310,2.757,311,2.943,312,1.301,313,1.301,314,2.166,315,2.158,316,1.487,317,3.96,318,1.831,319,4.47,320,3.96,321,1.301,322,1.301,323,3.96,324,1.859,325,3.96,326,3.175,327,3.96,328,3.038,329,4.908,330,3.815,331,5.574,332,4.908,333,5.574,334,4.908,335,1.933,336,2.919,337,2.919,338,3.038]],["title/components/AppManageComponent.html",[135,0.053,175,0.837]],["body/components/AppManageComponent.html",[3,0.132,4,0.121,5,0.11,9,0.208,10,0.271,16,1.155,24,0.754,27,1.315,29,1.125,30,0.01,31,0.308,32,0.233,33,0.96,40,4.58,46,0.837,47,1.041,63,0.448,84,0.944,85,0.622,96,1.639,98,1.068,101,0.132,102,0.52,104,0.925,108,1.953,133,0.007,134,0.007,135,0.085,136,0.881,137,1.185,138,0.754,139,1.953,140,0.928,141,1.097,142,0.317,144,0.928,145,1.472,146,1.212,147,0.636,148,0.86,150,0.881,151,2.328,153,0.987,156,1.409,165,0.928,166,1.155,167,1.097,168,0.928,169,1.506,170,0.928,171,0.928,172,0.881,173,1.66,174,0.928,175,1.431,176,0.928,177,0.881,178,0.881,179,0.928,180,0.881,181,0.859,182,0.928,183,0.859,184,1.305,185,0.881,186,0.928,187,0.859,188,1.206,189,0.928,190,0.859,191,0.928,192,0.881,193,1.721,194,0.881,195,0.928,196,0.881,197,0.881,198,1.703,199,0.881,200,0.928,201,0.881,202,0.695,203,0.881,204,0.881,205,0.928,206,0.881,207,0.795,208,0.928,209,0.881,210,0.928,211,0.881,212,0.881,213,0.928,214,0.881,215,0.928,216,0.881,217,0.904,218,0.928,219,0.881,220,0.928,221,0.881,222,0.928,223,0.881,224,0.881,225,0.881,226,0.881,227,0.881,228,0.928,229,0.881,230,0.881,231,0.881,232,0.695,233,1.247,234,0.859,235,0.774,236,0.928,237,0.816,238,0.928,239,0.881,240,0.881,241,0.881,242,0.928,243,0.881,244,0.904,245,0.881,246,0.881,247,0.881,248,0.881,249,0.928,250,0.881,251,0.928,252,0.928,253,0.816,254,0.881,255,0.928,256,0.928,339,7.204,340,4.041,341,6.969,342,6.169,343,6.137,344,6.969,345,6.969,346,4.852,347,3.798,348,4.947,349,5.538,350,6.169,351,6.169,352,4.589,353,4.589,354,4.589,355,4.589,356,4.589,357,4.589,358,5.588,359,4.589,360,4.041,361,4.589,362,4.589,363,4.589,364,4.589,365,6.169,366,4.589,367,6.969,368,4.589,369,3.68,370,4.589,371,4.589,372,4.589,373,5.538,374,4.589,375,1.637,376,4.589,377,4.589,378,4.589,379,4.041,380,4.589,381,4.589,382,4.589,383,6.169]],["title/classes/AppPage.html",[102,0.494,384,3.493]],["body/classes/AppPage.html",[3,0.192,4,0.176,5,0.16,9,0.225,16,1.461,27,1.282,30,0.01,46,1.424,84,0.904,100,3.966,101,0.192,102,0.756,103,1.836,133,0.008,134,0.008,142,0.321,167,1.186,384,6.26,385,4.161,386,5.875,387,8.807,388,8.533,389,8.533,390,6.672,391,8.533,392,6.672,393,4.958,394,5.875,395,6.672,396,6.672,397,4.161,398,6.672]],["title/injectables/AuthGuardService.html",[0,2.281,399,3.033]],["body/injectables/AuthGuardService.html",[0,3.66,2,3.653,3,0.16,4,0.146,5,0.133,9,0.187,10,0.307,11,1.413,16,1.308,24,1.148,27,1.406,29,1.275,30,0.01,31,0.289,32,0.239,33,1.088,46,1.463,47,1.179,84,1.087,85,0.753,93,1.522,96,1.798,99,3.87,100,3.304,101,0.16,102,0.63,103,2.014,104,0.949,107,4.359,125,1.757,133,0.008,134,0.008,142,0.336,148,1.066,289,1.152,304,1.561,399,4.865,400,7.625,401,4.895,402,7.644,403,6.268,404,8.02,405,8.02,406,8.02,407,6.989,408,2.098,409,1.935,410,3.053,411,6.989,412,5.559,413,1.184,414,5.559,415,5.559,416,6.989,417,5.559,418,4.767,419,5.559,420,4.895,421,8.562,422,6.989,423,8.435,424,5.559,425,6.989,426,5.559,427,6.989,428,4.895,429,5.559,430,4.895,431,5.559]],["title/interfaces/BackgroundAclSetupOptions.html",[432,0.158,433,1.854]],["body/interfaces/BackgroundAclSetupOptions.html",[3,0.152,4,0.178,5,0.126,9,0.178,10,0.297,30,0.01,31,0.308,32,0.246,49,1.55,63,0.558,65,1.372,101,0.257,133,0.007,134,0.007,142,0.204,147,0.543,163,1.88,291,2.876,292,2.316,293,2.316,307,1.88,413,1.197,432,0.324,433,2.876,434,1.437,435,1.481,436,2.316,437,3.571,438,3.571,439,3.571,440,3.571,441,1.845,442,2.244,443,1.865,444,2.393,445,2.393,446,2.244,447,2.393,448,2.393,449,2.393,450,2.393,451,2.175,452,2.175,453,2.11,454,2.898,455,2.11,456,1.272,457,2.316,458,2.316,459,2.316,460,2.175,461,2.244,462,2.244,463,2.969,464,2.244,465,2.175,466,2.316,467,2.316,468,2.316,469,2.316,470,2.316,471,2.316,472,2.316,473,2.316,474,2.316,475,2.316,476,2.316,477,2.316,478,2.316,479,2.316,480,2.175,481,1.642,482,2.316,483,2.316,484,2.316,485,1.686,486,1.559,487,1.6,488,2.175,489,1.686,490,2.316,491,2.316,492,2.244,493,2.393,494,2.244,495,1.559,496,1.88,497,2.244,498,2.316,499,3.174,500,2.244,501,2.393,502,2.393,503,2.393,504,2.393,505,2.393,506,2.393,507,2.393,508,2.393,509,2.393,510,2.393,511,2.393,512,2.316,513,2.393,514,2.393,515,2.393,516,2.175,517,2.316,518,2.316,519,2.316,520,2.393,521,2.316,522,2.316]],["title/interfaces/BackgroundBuildisoOptions.html",[432,0.158,451,1.797]],["body/interfaces/BackgroundBuildisoOptions.html",[3,0.146,4,0.212,5,0.121,9,0.171,10,0.29,30,0.01,31,0.303,32,0.271,49,1.512,63,0.558,65,1.355,101,0.256,133,0.007,134,0.007,142,0.197,147,0.799,163,1.809,291,2.805,292,2.229,293,2.229,307,1.809,413,1.217,432,0.322,433,2.159,434,1.402,435,1.425,436,2.229,437,2.303,438,2.303,439,2.303,440,2.303,441,1.811,442,2.159,443,1.857,444,2.303,445,2.303,446,2.159,447,2.303,448,2.303,449,2.303,450,2.303,451,2.719,452,3.198,453,3.103,454,3.2,455,3.103,456,1.87,457,3.406,458,3.406,459,3.406,460,2.093,461,2.159,462,2.159,463,2.896,464,2.159,465,2.093,466,2.229,467,2.229,468,2.229,469,2.229,470,2.229,471,2.229,472,2.229,473,2.229,474,2.229,475,2.229,476,2.229,477,2.229,478,2.229,479,2.229,480,2.093,481,1.58,482,2.229,483,2.229,484,2.229,485,1.623,486,1.5,487,1.539,488,2.093,489,1.623,490,2.229,491,2.229,492,2.159,493,2.303,494,2.159,495,1.5,496,1.809,497,2.159,498,2.229,499,3.116,500,2.159,501,2.303,502,2.303,503,2.303,504,2.303,505,2.303,506,2.303,507,2.303,508,2.303,509,2.303,510,2.303,511,2.303,512,2.229,513,2.303,514,2.303,515,2.303,516,2.093,517,2.229,518,2.229,519,2.229,520,2.303,521,2.229,522,2.229]],["title/interfaces/BackgroundImportOptions.html",[432,0.158,480,1.797]],["body/interfaces/BackgroundImportOptions.html",[3,0.148,4,0.175,5,0.123,9,0.173,10,0.292,30,0.01,31,0.342,32,0.266,49,1.524,63,0.558,65,1.361,101,0.256,133,0.007,134,0.007,142,0.199,147,0.53,163,1.832,291,2.828,292,2.257,293,2.257,307,1.832,413,1.192,432,0.323,433,2.186,434,1.413,435,1.443,436,2.257,437,2.332,438,2.332,439,2.332,440,2.332,441,1.822,442,2.186,443,1.86,444,2.332,445,2.332,446,2.186,447,2.332,448,2.332,449,2.332,450,2.332,451,2.12,452,2.12,453,2.056,454,2.863,455,2.056,456,1.239,457,2.257,458,2.257,459,2.257,460,2.12,461,2.186,462,2.186,463,2.92,464,2.186,465,2.12,466,2.257,467,2.257,468,2.257,469,2.257,470,2.257,471,2.257,472,2.257,473,2.257,474,2.257,475,2.257,476,2.257,477,2.257,478,2.257,479,2.257,480,2.742,481,2.427,482,3.422,483,3.422,484,3.422,485,2.492,486,2.303,487,2.364,488,2.12,489,1.643,490,2.257,491,2.257,492,2.186,493,2.332,494,2.186,495,1.519,496,1.832,497,2.186,498,2.257,499,3.135,500,2.186,501,2.332,502,2.332,503,2.332,504,2.332,505,2.332,506,2.332,507,2.332,508,2.332,509,2.332,510,2.332,511,2.332,512,2.257,513,2.332,514,2.332,515,2.332,516,2.12,517,2.257,518,2.257,519,2.257,520,2.332,521,2.257,522,2.257]],["title/interfaces/BackgroundPowerSystem.html",[432,0.158,492,1.854]],["body/interfaces/BackgroundPowerSystem.html",[3,0.154,4,0.179,5,0.128,9,0.18,10,0.299,30,0.01,31,0.31,32,0.213,49,1.563,63,0.557,65,1.431,101,0.258,133,0.007,134,0.007,142,0.207,147,0.551,163,1.905,291,2.9,292,2.347,293,2.347,307,1.905,413,1.199,432,0.324,433,2.274,434,1.449,435,1.5,436,2.347,437,2.425,438,2.425,439,2.425,440,2.425,441,1.856,442,2.274,443,1.867,444,2.425,445,2.425,446,2.274,447,2.425,448,2.425,449,2.425,450,2.425,451,2.204,452,2.204,453,2.138,454,3.244,455,2.138,456,1.289,457,2.347,458,2.347,459,2.347,460,2.204,461,2.274,462,2.274,463,2.994,464,2.274,465,2.204,466,2.347,467,2.347,468,2.347,469,2.347,470,2.347,471,2.347,472,2.347,473,2.347,474,2.347,475,2.347,476,2.347,477,2.347,478,2.347,479,2.347,480,2.204,481,1.664,482,2.347,483,2.347,484,2.347,485,1.709,486,1.58,487,1.621,488,2.204,489,1.709,490,2.347,491,2.347,492,2.9,493,3.588,494,2.274,495,1.58,496,1.905,497,2.274,498,2.347,499,3.194,500,2.274,501,2.425,502,2.425,503,2.425,504,2.425,505,2.425,506,2.425,507,2.425,508,2.425,509,2.425,510,2.425,511,2.425,512,2.347,513,2.425,514,2.425,515,2.425,516,2.204,517,2.347,518,2.347,519,2.347,520,2.425,521,2.347,522,2.347]],["title/interfaces/BackgroundReplicateOptions.html",[432,0.158,465,1.797]],["body/interfaces/BackgroundReplicateOptions.html",[3,0.142,4,0.171,5,0.118,9,0.167,10,0.285,30,0.01,31,0.299,32,0.276,49,1.487,63,0.558,65,1.345,101,0.255,133,0.007,134,0.007,142,0.192,147,0.51,163,1.765,291,2.76,292,2.174,293,2.174,307,1.765,413,1.22,432,0.322,433,2.106,434,1.379,435,1.389,436,2.174,437,2.246,438,2.246,439,2.246,440,2.246,441,1.789,442,2.106,443,1.852,444,2.246,445,2.246,446,2.106,447,2.246,448,2.246,449,2.246,450,2.246,451,2.041,452,2.041,453,1.981,454,2.811,455,1.981,456,1.193,457,2.174,458,2.174,459,2.174,460,2.041,461,2.106,462,2.106,463,2.849,464,2.106,465,2.676,466,3.373,467,3.373,468,3.373,469,3.373,470,3.373,471,3.373,472,3.373,473,3.373,474,3.373,475,3.373,476,3.373,477,3.373,478,3.373,479,3.373,480,2.041,481,1.541,482,2.174,483,2.174,484,2.174,485,1.583,486,1.463,487,1.502,488,2.041,489,1.583,490,2.174,491,2.174,492,2.106,493,2.246,494,2.106,495,1.463,496,1.765,497,2.106,498,2.174,499,3.079,500,2.106,501,2.246,502,2.246,503,2.246,504,2.246,505,2.246,506,2.246,507,2.246,508,2.246,509,2.246,510,2.246,511,2.246,512,2.174,513,2.246,514,2.246,515,2.246,516,2.041,517,2.174,518,2.174,519,2.174,520,2.246,521,2.174,522,2.174]],["title/interfaces/BackgroundReposyncOptions.html",[432,0.158,488,1.797]],["body/interfaces/BackgroundReposyncOptions.html",[3,0.152,4,0.178,5,0.126,9,0.178,10,0.297,30,0.01,31,0.309,32,0.246,49,1.553,63,0.557,65,1.428,101,0.257,133,0.007,134,0.007,142,0.205,147,0.545,163,1.886,291,2.881,292,2.323,293,2.323,307,1.886,413,1.208,432,0.324,433,2.25,434,1.44,435,1.485,436,2.323,437,2.4,438,2.4,439,2.4,440,2.4,441,1.847,442,2.25,443,1.874,444,2.4,445,2.4,446,2.25,447,2.4,448,2.4,449,2.4,450,2.4,451,2.181,452,2.181,453,2.116,454,2.902,455,2.116,456,1.275,457,2.323,458,2.323,459,2.323,460,2.181,461,2.25,462,2.25,463,2.974,464,2.25,465,2.181,466,2.323,467,2.323,468,2.323,469,2.323,470,2.323,471,2.323,472,2.323,473,2.323,474,2.323,475,2.323,476,2.323,477,2.323,478,2.323,479,2.323,480,2.181,481,1.647,482,2.323,483,2.323,484,2.323,485,1.691,486,1.563,487,1.604,488,2.793,489,2.519,490,3.459,491,3.459,492,2.25,493,2.4,494,2.25,495,1.563,496,1.886,497,2.25,498,2.323,499,3.178,500,2.25,501,2.4,502,2.4,503,2.4,504,2.4,505,2.4,506,2.4,507,2.4,508,2.4,509,2.4,510,2.4,511,2.4,512,2.323,513,2.4,514,2.4,515,2.4,516,2.181,517,2.323,518,2.323,519,2.323,520,2.4,521,2.323,522,2.323]],["title/components/BuildISOComponent.html",[135,0.053,177,0.837]],["body/components/BuildISOComponent.html",[3,0.111,4,0.2,5,0.092,9,0.13,10,0.241,11,1.613,13,1.882,16,1.026,24,0.9,27,1.283,29,0.705,30,0.01,31,0.263,32,0.171,33,0.602,46,1,47,1.168,69,1.031,74,4.072,84,1.156,85,0.524,93,1.058,95,1.173,96,0.909,98,0.949,101,0.111,102,0.438,103,0.909,104,0.908,115,0.924,125,1.615,133,0.006,134,0.006,135,0.078,136,0.742,137,1.052,138,0.635,139,1.645,140,0.781,141,0.974,142,0.309,144,0.781,145,1.461,146,1.204,147,0.805,148,0.764,149,0.9,150,0.742,151,2.068,153,0.876,156,0.781,162,4.56,163,1.954,165,0.781,166,1.192,167,0.974,168,0.781,169,1.4,170,0.781,171,0.781,172,0.742,173,1.08,174,0.781,175,0.742,176,0.781,177,1.33,178,1.58,179,0.781,180,0.742,181,0.723,182,0.781,183,0.723,184,1.192,185,0.742,186,0.781,187,0.723,188,0.57,189,0.781,190,0.723,191,0.781,192,0.742,193,1.663,194,0.742,195,0.781,196,0.742,197,0.742,198,1.64,199,0.742,200,0.781,201,0.742,202,0.586,203,0.742,204,0.742,205,0.781,206,0.742,207,0.669,208,0.781,209,0.742,210,0.781,211,0.742,212,0.742,213,0.781,214,0.742,215,0.781,216,0.742,217,0.762,218,0.781,219,0.742,220,0.781,221,0.742,222,0.781,223,0.742,224,0.742,225,0.742,226,0.742,227,0.742,228,0.781,229,0.742,230,0.742,231,0.742,232,0.586,233,1.107,234,0.723,235,0.652,236,0.781,237,0.687,238,0.781,239,0.742,240,0.742,241,0.742,242,0.781,243,0.742,244,0.762,245,0.742,246,0.742,247,0.742,248,0.742,249,0.781,250,0.742,251,0.781,252,0.781,253,0.687,254,0.742,255,0.781,256,0.781,260,1.165,262,2.036,265,3.97,276,2.091,277,2.215,282,1.883,289,1.32,296,2.036,299,1.085,300,0.723,302,1.949,308,0.909,312,1.27,313,1.27,316,1.031,318,1.27,321,1.27,322,1.27,375,1.378,408,1.459,409,1.861,451,2.26,452,3.348,453,2.926,454,2.841,455,2.548,456,1.763,457,3.212,458,2.796,459,2.796,462,2.332,523,7.025,524,7.025,525,3.403,526,2.796,527,2.208,528,2.709,529,2.626,530,2.796,531,2.548,532,3.095,533,6.365,534,5.479,535,2.989,536,6.365,537,1.787,538,6.925,539,1.742,540,1.896,541,3.865,542,3.865,543,3.865,544,2.573,545,3.865,546,2.573,547,3.865,548,3.865,549,3.865,550,1.815,551,1.418,552,1.879,553,1.378,554,1.901,555,1.341,556,1.058,557,1.058,558,1.005,559,1.425,560,3.784,561,3.865,562,3.865,563,3.865,564,3.865,565,3.865,566,3.865,567,3.865,568,3.865,569,3.865,570,3.865,571,3.865,572,3.865,573,3.099,574,3.865,575,3.099,576,2.41,577,2.54,578,1.425,579,3.099,580,3.099,581,3.865,582,1.304,583,1.031,584,1.425,585,1.058,586,1.031,587,1.085,588,1.085,589,4.072,590,5.479,591,4.072,592,5.479,593,5.479,594,3.417,595,2.872,596,3.099,597,3.403,598,3.099,599,3.403,600,2.872]],["title/components/CheckSysComponent.html",[135,0.053,180,0.837]],["body/components/CheckSysComponent.html",[3,0.115,4,0.106,5,0.096,9,0.135,10,0.247,11,1.499,16,1.053,24,0.924,27,1.323,29,0.732,30,0.01,31,0.269,32,0.203,33,0.625,46,1.185,47,1.296,69,1.071,80,4.828,84,1.17,85,0.544,93,1.099,95,1.218,98,1.125,101,0.115,102,0.455,104,0.875,112,1.788,115,0.949,125,1.196,133,0.006,134,0.006,135,0.079,136,0.771,137,1.081,138,0.659,139,1.708,140,0.811,141,1,142,0.317,144,0.811,145,1.464,146,1.206,147,0.58,148,1.034,149,0.924,150,0.771,151,2.124,153,0.9,156,0.811,160,5.233,162,4.052,163,2.317,165,0.811,166,1.216,167,1.252,168,0.811,169,1.423,170,0.811,171,0.811,172,0.771,173,1.109,174,0.811,175,0.771,176,0.811,177,0.771,178,0.771,179,0.811,180,1.353,181,1.553,182,0.811,183,0.751,184,1.216,185,0.771,186,0.811,187,0.751,188,0.592,189,0.811,190,0.751,191,0.811,192,0.771,193,1.676,194,0.771,195,0.811,196,0.771,197,0.771,198,1.655,199,0.771,200,0.811,201,0.771,202,0.608,203,0.771,204,0.771,205,0.811,206,0.771,207,0.695,208,0.811,209,0.771,210,0.811,211,0.771,212,0.771,213,0.811,214,0.771,215,0.811,216,0.771,217,0.791,218,0.811,219,0.771,220,0.811,221,0.771,222,0.811,223,0.771,224,0.771,225,0.771,226,0.771,227,0.771,228,0.811,229,0.771,230,0.771,231,0.771,232,0.608,233,1.137,234,0.751,235,0.677,236,0.811,237,0.713,238,0.811,239,0.771,240,0.771,241,0.771,242,0.811,243,0.771,244,0.791,245,0.771,246,0.771,247,0.771,248,0.771,249,0.811,250,0.771,251,0.811,252,0.811,253,0.713,254,0.771,255,0.811,256,0.811,260,1.196,261,1.872,262,2.078,264,4.052,265,4.052,271,4.27,276,2.135,277,2.253,278,2.082,282,1.904,289,1.347,296,2.078,298,1.952,300,0.751,301,1.018,302,2.024,304,1.127,308,0.944,312,1.319,313,1.319,314,2.881,316,1.071,318,1.319,321,1.319,322,1.319,408,1.515,409,1.877,527,2.254,537,2.299,539,1.778,540,1.928,556,1.099,557,1.099,558,1.044,559,1.464,578,1.044,583,1.071,584,1.464,585,1.099,586,1.071,587,1.127,588,1.127,601,7.208,602,7.208,603,3.534,604,5.627,605,2.024,606,2.024,607,3.541,608,4.524,609,6.497,610,5.627,611,4.524,612,7.042,613,5.627,614,4.014,615,4.014,616,4.014,617,4.014,618,4.014,619,4.014,620,2.794,621,2.794,622,2.024,623,4.014,624,4.524,625,4.014,626,4.014,627,4.014,628,2.947,629,6.201,630,3.218,631,4.873,632,3.218,633,2.983,634,3.218,635,3.534]],["title/classes/DateFormatter.html",[102,0.494,636,3.493]],["body/classes/DateFormatter.html",[3,0.175,4,0.118,5,0.107,6,4.569,9,0.151,10,0.267,16,1.137,18,4.399,24,0.997,27,1.425,29,1.484,30,0.01,31,0.336,32,0.254,33,1.266,44,4.432,46,1.347,49,1.824,63,0.519,65,1.245,66,3.595,101,0.129,102,0.508,103,1.054,104,0.988,115,1.024,118,3.181,125,1.691,133,0.007,134,0.007,148,1.029,289,1.686,330,4.903,335,2.87,373,3.332,385,2.796,413,1.149,443,1.715,452,2.505,585,1.227,598,4.87,636,5.919,637,3.948,638,4.483,639,6.073,640,7.953,641,6.887,642,6.887,643,4.483,644,4.483,645,3.948,646,4.483,647,4.483,648,4.483,649,4.483,650,4.483,651,7.381,652,7.714,653,8.132,654,7.714,655,7.953,656,6.073,657,6.073,658,6.073,659,6.073,660,6.073,661,6.073,662,4.483,663,4.483,664,4.483,665,7.381,666,7.381,667,4.385,668,6.073,669,4.483,670,6.073,671,4.483,672,4.483,673,7.381,674,5.348,675,4.483,676,4.483,677,4.483,678,6.073,679,6.073,680,7.381,681,6.073,682,6.073,683,6.073,684,6.073,685,6.073,686,6.073,687,4.483,688,6.073,689,6.073,690,6.073,691,6.073,692,7.381,693,4.483,694,4.483,695,4.483,696,4.483,697,4.483,698,5.348,699,4.483,700,3.595,701,6.073,702,6.073,703,6.073,704,7.381,705,4.483,706,4.483,707,4.483,708,4.483,709,7.714,710,5.732,711,4.483,712,4.483,713,4.483,714,4.483,715,4.483,716,4.483,717,4.483,718,4.483,719,6.073,720,7.714,721,4.483,722,4.483,723,4.483,724,6.073,725,8.273,726,4.483,727,6.5,728,6.073,729,7.381,730,6.073,731,5.348,732,8.132,733,6.073,734,6.073,735,6.073,736,4.483,737,6.073,738,4.483,739,4.483]],["title/components/DialogBoxTextConfirmComponent.html",[135,0.053,183,0.815]],["body/components/DialogBoxTextConfirmComponent.html",[3,0.136,4,0.125,5,0.113,9,0.16,10,0.277,24,0.777,27,1.034,29,0.863,30,0.01,31,0.312,32,0.197,33,0.737,63,0.426,84,1.022,85,0.641,98,1.529,101,0.181,102,0.537,104,0.588,112,1.82,133,0.007,134,0.007,135,0.086,136,0.909,137,1.209,138,0.777,139,2.014,140,0.956,141,1.119,142,0.274,144,0.956,145,1.474,146,1.214,147,0.649,148,0.878,149,1.034,150,0.909,151,2.377,153,1.007,156,0.956,165,0.956,166,1.179,167,1.119,168,0.956,169,1.525,170,0.956,171,0.956,172,0.909,173,1.241,174,0.956,175,0.909,176,0.956,177,0.909,178,0.909,179,0.956,180,0.909,181,0.886,182,0.956,183,1.412,184,1.603,185,1.688,186,0.956,187,0.886,188,0.697,189,0.956,190,0.886,191,0.956,192,0.909,193,1.731,194,0.909,195,0.956,196,0.909,197,0.909,198,1.714,199,0.909,200,0.956,201,0.909,202,0.717,203,0.909,204,0.909,205,0.956,206,0.909,207,0.819,208,0.956,209,0.909,210,0.956,211,0.909,212,0.909,213,0.956,214,0.909,215,0.956,216,0.909,217,0.932,218,0.956,219,0.909,220,0.956,221,0.909,222,0.956,223,0.909,224,0.909,225,0.909,226,0.909,227,0.909,228,0.956,229,0.909,230,0.909,231,0.909,232,0.717,233,1.273,234,0.886,235,0.798,236,0.956,237,0.841,238,0.956,239,0.909,240,0.909,241,0.909,242,0.956,243,0.909,244,0.932,245,0.909,246,0.909,247,0.909,248,0.909,249,0.956,250,0.909,251,0.956,252,0.956,253,0.841,254,0.909,255,0.956,256,0.956,267,3.569,288,3.795,299,1.329,300,0.886,306,2.014,310,4.927,311,4.679,326,3.795,397,2.951,432,0.171,537,1.987,578,1.638,740,4.414,741,3.795,742,5.259,743,4.927,744,5.259,745,5.259,746,6.232,747,5.545,748,4.167,749,5.838,750,4.732,751,2.222,752,3.516,753,4.732,754,3.11,755,3.516,756,4.384,757,6.297,758,6.297,759,4.732,760,4.167,761,4.732,762,4.732]],["title/interfaces/DialogData.html",[432,0.158,749,3.237]],["body/interfaces/DialogData.html",[3,0.182,4,0.167,5,0.151,9,0.213,10,0.332,30,0.01,31,0.347,32,0.253,63,0.537,84,1.097,85,0.857,98,1.485,101,0.218,102,0.717,112,1.526,133,0.008,134,0.008,135,0.092,142,0.245,145,1.012,146,0.833,147,0.652,148,0.882,149,1.039,151,2.388,153,1.012,183,1.184,184,1.515,185,1.647,267,3.815,288,6.726,299,1.777,300,1.184,306,2.692,310,4.405,311,4.702,326,6.726,432,0.229,434,1.345,537,1.777,740,3.946,741,5.073,742,5.622,743,5.267,744,5.622,745,5.622,746,5.571,747,5.571,749,6.015,754,4.158,755,4.702]],["title/components/DialogItemRenameComponent.html",[135,0.053,187,0.815]],["body/components/DialogItemRenameComponent.html",[3,0.129,4,0.118,5,0.107,9,0.151,10,0.267,13,2.352,16,1.138,24,0.738,27,1.268,29,0.819,30,0.01,31,0.336,32,0.19,33,0.699,46,0.819,47,1.025,63,0.415,84,1.102,85,0.608,98,1.053,101,0.175,102,0.509,104,0.856,112,1.781,115,1.025,133,0.007,134,0.007,135,0.084,136,0.862,137,1.168,138,0.738,140,0.908,141,1.081,142,0.308,144,0.908,145,1.471,146,1.211,147,0.627,148,0.847,149,0.999,150,0.862,153,0.972,156,0.908,165,0.908,166,1.138,167,1.081,168,0.908,169,1.493,170,0.908,171,0.908,172,0.862,173,1.198,174,0.908,175,0.862,176,0.908,177,0.862,178,0.862,179,0.908,180,0.862,181,0.841,182,0.908,183,0.841,184,1.57,185,0.862,186,0.908,187,1.383,188,1.311,189,0.908,190,0.841,191,0.908,192,0.862,193,1.714,194,0.862,195,0.908,196,0.862,197,0.862,198,1.695,199,0.862,200,0.908,201,0.862,202,0.68,203,0.862,204,0.862,205,0.908,206,0.862,207,0.778,208,0.908,209,0.862,210,0.908,211,0.862,212,0.862,213,0.908,214,0.862,215,0.908,216,0.862,217,0.885,218,0.908,219,0.862,220,0.908,221,0.862,222,0.908,223,0.862,224,0.862,225,0.862,226,0.862,227,0.862,228,0.908,229,0.862,230,0.862,231,0.862,232,0.68,233,1.229,234,0.841,235,0.757,236,0.908,237,0.798,238,0.908,239,0.862,240,0.862,241,0.862,242,0.908,243,0.862,244,0.885,245,0.862,246,0.862,247,0.862,248,0.862,249,0.908,250,0.862,251,0.908,252,0.908,253,0.798,254,0.862,255,0.908,256,0.908,267,3.475,289,1.26,299,1.707,300,0.841,306,1.911,324,3.236,432,0.163,526,3.028,527,1.558,531,2.759,537,1.935,551,1.647,553,1.601,554,1.558,555,1.558,578,1.582,740,4.962,748,3.954,751,2.108,752,3.337,754,2.951,755,3.337,763,4.167,764,3.601,765,4.875,766,4.875,767,4.012,768,6.069,769,3.918,770,4.299,771,5.353,772,1.664,773,5.353,774,5.122,775,5.489,776,5.735,777,6.079,778,4.491,779,4.491,780,5.122,781,4.518,782,4.491,783,3.601,784,3.337,785,2.447,786,2.447,787,2.447,788,3.337,789,6.079,790,6.079]],["title/interfaces/DialogItemRenameData.html",[432,0.158,776,3.237]],["body/interfaces/DialogItemRenameData.html",[3,0.176,4,0.161,5,0.146,9,0.206,10,0.326,13,2.193,30,0.01,32,0.249,47,1.032,63,0.534,84,1.17,85,0.829,101,0.213,102,0.694,112,1.476,133,0.008,134,0.008,135,0.091,142,0.237,145,0.979,146,0.806,147,0.631,148,0.853,149,1.005,153,0.979,184,1.494,187,1.146,188,1.252,267,3.74,299,2.083,300,1.146,306,2.605,324,2.874,432,0.222,434,1.301,526,3.258,527,2.123,531,2.968,537,1.719,551,2.245,553,2.183,554,2.123,555,2.123,740,3.817,754,4.022,755,4.548,763,3.205,764,4.908,765,4.908,766,4.908,767,3.086,768,6.531,769,4.216,770,4.625,771,5.389,772,1.675,773,5.389,774,4.548,775,4.548,776,5.93,780,5.511,781,4.548,783,4.908,784,4.548,785,4.521,786,4.521,787,4.521,788,4.548]],["title/components/DialogTextInputComponent.html",[135,0.053,190,0.815]],["body/components/DialogTextInputComponent.html",[3,0.132,4,0.121,5,0.11,9,0.155,10,0.271,13,2.491,16,1.155,27,1.224,30,0.01,31,0.255,46,0.837,47,1.041,63,0.276,84,1.109,85,0.622,98,1.544,101,0.177,102,0.52,104,0.925,112,1.681,115,1.257,133,0.007,134,0.007,135,0.085,136,0.881,137,1.185,138,0.754,140,0.928,141,1.097,142,0.301,144,0.928,145,1.472,146,1.212,147,0.636,148,0.86,149,1.013,150,0.881,153,0.987,156,0.928,165,0.928,166,1.155,167,1.097,168,0.928,169,1.506,170,0.928,171,0.928,172,0.881,173,1.216,174,0.928,175,0.881,176,0.928,177,0.881,178,0.881,179,0.928,180,0.881,181,0.859,182,0.928,183,0.859,184,1.577,185,0.881,186,0.928,187,0.859,188,0.676,189,0.928,190,1.395,191,0.928,192,0.881,193,1.721,194,0.881,195,0.928,196,0.881,197,0.881,198,1.703,199,0.881,200,0.928,201,0.881,202,0.695,203,0.881,204,0.881,205,0.928,206,0.881,207,0.795,208,0.928,209,0.881,210,0.928,211,0.881,212,0.881,213,0.928,214,0.881,215,0.928,216,0.881,217,0.904,218,0.928,219,0.881,220,0.928,221,0.881,222,0.928,223,0.881,224,0.881,225,0.881,226,0.881,227,0.881,228,0.928,229,0.881,230,0.881,231,0.881,232,0.695,233,1.247,234,0.859,235,0.774,236,0.928,237,0.816,238,0.928,239,0.881,240,0.881,241,0.881,242,0.928,243,0.881,244,0.904,245,0.881,246,0.881,247,0.881,248,0.881,249,0.928,250,0.881,251,0.928,252,0.928,253,0.816,254,0.881,255,0.928,256,0.928,289,1.445,299,1.289,300,0.859,306,1.953,324,3.272,432,0.166,526,3.062,527,2.417,528,2.966,529,2.875,530,3.062,551,1.683,553,1.637,554,1.592,555,1.592,740,4.849,742,5.179,743,4.852,744,5.179,745,5.179,752,4.585,754,3.016,772,1.689,774,5.179,775,5.538,780,3.41,781,4.585,784,3.41,788,3.41,791,5.778,792,3.68,793,3.507,794,5.432,795,5.432,796,4.589,797,4.589,798,5.432,799,4.589,800,4.589,801,3.41,802,3.848,803,6.562,804,6.169,805,6.169]],["title/interfaces/DialogTextInputData.html",[432,0.158,801,3.237]],["body/interfaces/DialogTextInputData.html",[3,0.18,4,0.164,5,0.149,9,0.21,10,0.33,13,2.379,30,0.01,32,0.195,47,1.053,63,0.484,84,1.176,85,0.846,98,1.542,101,0.216,102,0.708,112,1.506,133,0.008,134,0.008,135,0.092,142,0.242,145,0.998,146,0.822,147,0.643,148,0.87,149,1.025,153,0.998,184,1.507,190,1.169,299,1.753,300,1.169,306,2.657,324,2.931,432,0.226,434,1.327,526,3.297,527,2.603,528,3.194,529,3.096,530,3.297,551,2.29,553,2.226,554,2.165,555,2.165,740,3.893,742,5.577,743,5.225,744,5.577,745,5.577,752,4.639,754,4.102,772,1.709,774,4.639,775,4.639,780,4.639,781,4.639,784,4.639,788,4.639,791,4.639,792,5.006,793,3.548,794,5.497,795,5.497,798,5.497,801,5.577]],["title/interfaces/Distro.html",[432,0.158,456,1.051]],["body/interfaces/Distro.html",[3,0.09,4,0.082,5,0.135,9,0.105,10,0.206,18,1.573,30,0.01,31,0.329,32,0.273,49,2.099,63,0.561,64,1.573,65,1.519,71,1.539,101,0.225,125,0.663,133,0.005,134,0.005,138,0.77,142,0.121,188,1.222,202,0.71,232,0.473,413,1.183,432,0.284,434,0.996,435,0.876,441,0.772,443,1.764,456,1.357,481,1.46,485,2.253,486,2.082,487,2.137,489,0.998,495,1.385,496,1.113,806,1.773,807,4.569,808,4.334,809,4.009,810,3.552,811,3.493,812,4.334,813,3.556,814,3.609,815,3.556,816,3.609,817,4.009,818,3.866,819,4.009,820,3.609,821,4.164,822,2.905,823,3.556,824,3.556,825,3.556,826,3.556,827,3.719,828,4.009,829,3.556,830,1.416,831,1.416,832,1.416,833,1.113,834,2.736,835,2.663,836,2.454,837,1.634,838,2.363,839,2.663,840,2.663,841,2.363,842,2.363,843,2.663,844,3.067,845,2.947,846,3.345,847,3.345,848,3.345,849,3.345,850,3.345,851,3.345,852,3.345,853,2.554,854,1.854,855,1.854,856,1.854,857,1.854,858,1.854,859,1.854,860,1.854,861,1.854,862,1.854,863,1.854,864,1.854,865,1.854,866,1.854,867,1.854,868,1.854,869,1.854,870,1.416,871,1.854,872,1.854,873,1.854,874,1.249,875,1.854,876,1.854,877,1.465,878,1.854,879,1.854,880,1.854,881,1.854,882,1.854,883,1.854,884,1.854,885,1.854,886,1.854,887,1.854,888,1.7,889,1.854,890,1.854,891,1.854,892,3.986,893,4.654,894,3.986,895,2.946,896,3.811,897,3.811,898,1.773,899,1.773,900,1.573,901,1.573,902,1.773,903,1.7,904,1.7,905,1.773,906,1.773,907,1.773,908,1.773,909,1.773,910,2.363,911,2.554,912,1.773,913,2.554,914,2.554,915,1.773,916,1.773,917,1.573,918,1.7,919,1.634,920,1.465,921,1.573,922,1.371,923,1.7]],["title/components/DistroEditComponent.html",[135,0.053,192,0.837]],["body/components/DistroEditComponent.html",[3,0.063,4,0.058,5,0.053,9,0.074,10,0.156,11,1.348,13,1.328,16,0.666,24,0.585,27,1.318,29,0.401,30,0.01,31,0.315,32,0.161,33,0.342,46,1.109,47,1.246,49,1.394,63,0.474,69,1.378,71,0.721,84,1.068,85,0.297,96,1.506,98,0.616,101,0.063,102,0.249,103,1.792,104,1.124,108,3.243,115,1.52,125,1.803,133,0.004,134,0.004,135,0.055,136,0.422,137,0.684,138,0.361,140,0.444,141,0.918,142,0.313,144,0.444,145,1.408,146,1.161,147,0.367,148,1.259,149,0.585,150,0.422,153,0.569,156,0.444,165,0.444,166,1.138,167,0.633,168,0.444,169,1.044,170,0.444,171,0.444,172,0.422,173,0.702,174,0.444,175,0.422,176,0.444,177,0.422,178,0.863,179,0.444,180,0.422,181,0.666,182,0.444,183,0.411,184,0.841,185,0.422,186,0.444,187,0.411,188,0.324,189,0.444,190,0.411,191,0.444,192,0.992,193,1.431,194,0.422,195,0.444,196,0.422,197,0.422,198,1.393,199,0.422,200,0.444,201,0.422,202,0.333,203,0.422,204,0.422,205,0.444,206,0.992,207,0.778,208,0.444,209,0.422,210,0.444,211,0.422,212,0.422,213,0.444,214,0.422,215,0.444,216,0.992,217,0.433,218,0.444,219,0.422,220,0.444,221,0.422,222,0.444,223,0.422,224,0.422,225,0.422,226,0.422,227,0.422,228,0.444,229,0.422,230,0.422,231,0.422,232,0.333,233,0.72,234,0.411,235,0.37,236,0.444,237,0.39,238,0.444,239,0.422,240,0.422,241,0.422,242,0.444,243,0.422,244,0.433,245,0.422,246,0.422,247,0.422,248,0.422,249,0.444,250,0.422,251,0.444,252,0.444,253,0.39,254,0.422,255,0.444,256,0.444,260,0.757,261,1.294,278,1.527,282,1.544,289,0.931,299,0.617,300,0.411,301,0.557,304,0.617,308,0.516,316,1.198,335,1.235,338,1.197,347,1.94,375,1.601,409,1.469,410,2.284,413,0.482,441,0.881,456,1.811,485,1.139,486,1.527,487,1.08,526,1.973,527,1.558,528,1.911,529,1.853,530,1.973,531,1.797,532,2.184,535,2.108,539,1.229,540,1.414,544,1.672,546,1.672,550,1.031,551,0.805,552,1.068,553,0.783,554,0.762,555,0.762,556,0.601,557,0.601,558,0.571,559,0.926,578,1.477,582,1.516,583,1.198,584,1.666,585,1.414,586,1.378,587,1.451,588,1.261,605,1.399,606,1.399,607,2.447,622,1.107,628,1.865,667,3.456,772,0.974,808,1.94,809,1.795,810,1.731,811,2.269,812,1.94,813,3.791,814,1.616,815,3.791,816,1.616,817,1.795,818,1.731,820,1.616,822,1.469,823,2.024,824,2.024,825,2.024,826,2.024,828,1.795,829,2.024,830,1.616,831,2.345,832,1.616,833,1.842,870,1.616,874,1.425,924,7.116,925,1.197,926,2.007,927,2.553,928,2.447,929,2.024,930,2.024,931,4.491,932,3.227,933,5.166,934,5.166,935,2.936,936,5.166,937,5.166,938,1.865,939,4.491,940,4.491,941,4.491,942,4.491,943,4.491,944,4.491,945,4.491,946,1.248,947,2.936,948,3.56,949,2.024,950,2.196,951,2.196,952,1.761,953,1.933,954,2.196,955,2.196,956,1.443,957,1.443,958,4.378,959,4.712,960,2.855,961,2.34,962,3.135,963,3.135,964,3.135,965,3.135,966,3.135,967,3.135,968,3.135,969,1.443,970,1.443,971,2.196,972,2.196,973,2.196,974,2.196,975,2.196,976,2.196,977,2.196,978,2.196,979,2.196,980,2.196,981,2.196,982,2.196,983,2.196,984,2.196,985,1.197,986,1.632,987,1.443,988,1.632,989,1.443,990,1.305,991,1.443,992,1.248,993,1.248,994,1.248,995,2.196,996,6.67,997,2.196,998,2.196,999,2.196,1000,2.196,1001,2.801,1002,2.196,1003,2.196,1004,2.196,1005,2.196,1006,2.196,1007,2.196,1008,2.196,1009,2.196,1010,2.196,1011,2.196,1012,2.196,1013,2.196,1014,2.196,1015,2.196,1016,2.196,1017,2.196,1018,2.196,1019,2.196,1020,2.196,1021,2.196,1022,2.196,1023,2.196,1024,2.196,1025,2.196,1026,3.56,1027,2.196,1028,2.196,1029,2.196,1030,4.491,1031,2.196,1032,2.196,1033,2.196,1034,5.166,1035,3.56,1036,2.196,1037,5.166,1038,3.56,1039,2.196,1040,5.166,1041,3.56,1042,2.196,1043,5.166,1044,3.56,1045,2.196,1046,5.166,1047,3.56,1048,2.196,1049,2.196,1050,0.879,1051,1.248,1052,1.745,1053,1.068,1054,1.197,1055,0.965,1056,1.248,1057,1.248,1058,1.248,1059,2.196,1060,2.951,1061,3.954,1062,3.56,1063,3.954,1064,3.954,1065,3.954,1066,4.491,1067,3.954,1068,2.024,1069,2.22,1070,2.22,1071,2.22,1072,2.855,1073,2.22,1074,5.539,1075,6.67,1076,5.166,1077,4.142,1078,2.34,1079,3.135]],["title/interfaces/DistroSignatureOsVersion.html",[432,0.158,1080,3.237]],["body/interfaces/DistroSignatureOsVersion.html",[3,0.132,4,0.121,5,0.11,9,0.155,10,0.271,30,0.01,32,0.278,33,1.347,63,0.551,78,3.683,101,0.178,107,5.256,133,0.007,134,0.007,142,0.178,146,0.813,413,0.945,432,0.27,434,0.977,435,1.29,441,1.136,442,1.955,809,3.759,810,3.625,816,3.384,817,3.759,828,3.759,877,3.274,1077,6.888,1080,5.181,1081,3.683,1082,6.564,1083,6.564,1084,6.564,1085,6.564,1086,6.564,1087,6.564,1088,4.649,1089,6.564,1090,6.564,1091,6.564,1092,6.564,1093,5.435,1094,6.564,1095,6.139,1096,6.564,1097,6.564,1098,5.978,1099,6.139,1100,6.564,1101,6.564,1102,6.564,1103,6.564,1104,6.139,1105,6.564,1106,6.564,1107,6.564,1108,7.052,1109,6.139,1110,5.591,1111,6.139,1112,6.139,1113,6.139,1114,7.564,1115,7.564,1116,3.413,1117,3.683,1118,4.044,1119,4.044,1120,6.564,1121,3.683,1122,3.198,1123,5.181,1124,4.044,1125,3.413,1126,3.413,1127,4.044,1128,5.435,1129,5.435,1130,4.95,1131,4.587,1132,5.435,1133,4.044,1134,4.044,1135,4.044,1136,4.044]],["title/interfaces/DistroSignatures.html",[432,0.158,1126,3.237]],["body/interfaces/DistroSignatures.html",[3,0.156,4,0.143,5,0.13,9,0.183,10,0.303,30,0.01,32,0.236,44,2.959,63,0.54,78,5.522,101,0.198,107,4.716,133,0.007,134,0.007,142,0.211,146,1.047,413,0.736,432,0.288,434,1.155,435,1.525,441,1.703,442,2.93,809,2.738,810,2.64,816,2.465,817,2.738,828,2.738,877,3.55,1077,7.073,1080,5.117,1081,4.354,1082,4.781,1083,4.781,1084,4.781,1085,4.781,1086,4.781,1087,4.781,1088,3.387,1089,4.781,1090,4.781,1091,4.781,1092,4.781,1093,6.064,1094,6.064,1095,4.781,1096,6.064,1097,6.064,1098,5.522,1099,4.781,1100,6.064,1101,6.064,1102,6.064,1103,6.064,1104,4.781,1105,6.064,1106,6.064,1107,6.064,1108,6.064,1109,4.781,1110,4.354,1111,4.781,1112,4.781,1113,4.781,1114,7.767,1115,7.767,1116,4.035,1117,5.522,1118,6.064,1119,6.064,1120,7.383,1121,5.522,1122,4.794,1123,5.909,1124,6.064,1125,5.117,1126,5.117,1127,7.002,1128,6.064,1129,6.064,1130,5.522,1131,5.117,1132,6.064,1133,4.781,1134,4.781,1135,4.781,1136,4.781]],["title/components/DistrosOverviewComponent.html",[135,0.053,194,0.837]],["body/components/DistrosOverviewComponent.html",[3,0.098,4,0.089,5,0.081,9,0.115,10,0.219,11,1.589,13,1.005,16,0.935,24,0.82,27,1.347,29,1.19,30,0.01,31,0.359,32,0.241,33,1.016,46,1.326,47,1.383,63,0.52,65,0.842,69,1.741,84,1.148,85,0.46,93,0.93,95,1.031,96,0.799,98,1.13,101,0.098,102,0.385,103,0.799,104,0.957,112,0.82,115,0.842,125,0.723,133,0.005,134,0.005,135,0.072,136,0.653,137,0.959,138,0.558,139,1.446,140,0.687,141,0.888,142,0.321,144,0.687,145,1.451,146,1.196,147,0.515,148,0.696,149,0.82,150,0.653,151,1.885,153,0.799,156,0.687,165,0.687,166,1.36,167,0.888,168,0.687,169,1.319,170,0.687,171,0.687,172,0.653,173,0.984,174,0.687,175,0.653,176,0.687,177,0.653,178,0.653,179,0.687,180,0.653,181,0.636,182,0.687,183,0.935,184,1.36,185,1.137,186,0.687,187,0.935,188,0.872,189,0.687,190,0.636,191,0.687,192,0.653,193,1.616,194,1.253,195,0.687,196,0.653,197,0.653,198,1.589,199,0.653,200,0.687,201,0.653,202,0.515,203,0.653,204,0.653,205,0.687,206,0.653,207,0.588,208,0.687,209,0.653,210,0.687,211,0.653,212,0.653,213,0.687,214,0.653,215,0.687,216,0.653,217,0.67,218,0.687,219,0.653,220,0.687,221,0.653,222,0.687,223,0.653,224,0.653,225,0.653,226,0.653,227,0.653,228,0.687,229,0.653,230,0.653,231,0.653,232,0.515,233,1.009,234,0.636,235,0.573,236,0.687,237,0.604,238,0.687,239,0.653,240,0.653,241,0.653,242,0.687,243,0.653,244,0.67,245,0.653,246,0.653,247,0.653,248,0.653,249,0.687,250,0.653,251,0.687,252,0.687,253,0.604,254,0.653,255,0.687,256,0.687,260,1.062,261,1.705,262,1.893,275,2.442,276,1.945,277,2.087,278,1.929,281,3.556,282,1.812,289,1.227,294,2.344,296,1.893,299,0.954,300,0.636,301,0.862,303,1.78,304,0.954,305,1.402,306,1.446,308,0.799,309,2.838,310,2.366,311,2.525,312,1.116,313,1.116,314,2.535,315,1.852,316,1.741,318,2.143,321,1.116,322,1.116,324,1.596,328,2.721,336,2.615,337,2.615,408,1.283,409,1.803,410,2.679,441,1.235,456,1.574,486,1.929,487,1.515,527,2.053,537,1.662,539,1.62,540,1.786,556,0.93,557,0.93,558,0.884,559,1.299,578,1.697,582,1.998,583,1.741,584,2.005,585,1.786,586,1.741,587,1.832,588,1.832,605,1.844,606,1.844,751,1.596,763,1.78,767,2.985,785,1.852,786,1.852,787,1.852,833,2.327,874,1.999,895,1.493,926,1.94,1050,1.36,1052,2.535,1078,3.281,1137,7.293,1138,1.78,1139,6.306,1140,3.263,1141,2.779,1142,2.779,1143,2.779,1144,2.779,1145,2.779,1146,2.779,1147,2.779,1148,2.779,1149,2.779,1150,3.226,1151,3.226,1152,3.226,1153,5.919,1154,2.721,1155,2.442,1156,4.993,1157,4.993,1158,5.745,1159,4.397,1160,3.114,1161,4.993,1162,3.398,1163,3.398,1164,3.398,1165,4.993,1166,3.398,1167,3.398,1168,4.397,1169,3.398,1170,2.725,1171,2.233,1172,2.02,1173,2.721,1174,2.993,1175,1.652,1176,2.02,1177,5.212,1178,3.398,1179,1.852,1180,2.02,1181,2.02,1182,2.968,1183,1.78,1184,2.02,1185,1.932,1186,1.852,1187,3.398,1188,3.398,1189,3.398,1190,2.993,1191,4.004,1192,4.397,1193,2.721,1194,2.721]],["title/interfaces/Event.html",[307,1.554,432,0.158]],["body/interfaces/Event.html",[3,0.151,4,0.177,5,0.125,9,0.177,10,0.296,30,0.01,31,0.343,32,0.253,49,1.543,63,0.557,65,1.425,101,0.257,133,0.007,134,0.007,142,0.203,147,0.54,163,1.868,291,3.454,292,3.447,293,3.447,307,2.4,413,1.196,432,0.324,433,2.229,434,1.431,435,1.471,436,2.301,437,2.378,438,2.378,439,2.378,440,2.378,441,1.839,442,2.229,443,1.872,444,2.378,445,2.378,446,2.229,447,2.378,448,2.378,449,2.378,450,2.378,451,2.161,452,2.161,453,2.097,454,2.889,455,2.097,456,1.263,457,2.301,458,2.301,459,2.301,460,2.161,461,2.229,462,2.229,463,2.956,464,2.229,465,2.161,466,2.301,467,2.301,468,2.301,469,2.301,470,2.301,471,2.301,472,2.301,473,2.301,474,2.301,475,2.301,476,2.301,477,2.301,478,2.301,479,2.301,480,2.161,481,1.632,482,2.301,483,2.301,484,2.301,485,1.675,486,1.549,487,1.59,488,2.161,489,1.675,490,2.301,491,2.301,492,2.229,493,2.378,494,2.229,495,1.549,496,1.868,497,2.229,498,2.301,499,3.164,500,2.229,501,2.378,502,2.378,503,2.378,504,2.378,505,2.378,506,2.378,507,2.378,508,2.378,509,2.378,510,2.378,511,2.378,512,2.301,513,2.378,514,2.378,515,3.562,516,2.161,517,2.301,518,2.301,519,2.301,520,2.378,521,2.301,522,2.301]],["title/interfaces/ExampleFlatNode.html",[432,0.158,1195,3.033]],["body/interfaces/ExampleFlatNode.html",[3,0.155,4,0.142,5,0.129,9,0.182,10,0.301,11,1.386,24,0.886,30,0.01,31,0.356,32,0.235,33,0.84,44,2.94,47,0.91,49,1.819,63,0.477,84,1.11,85,0.731,96,1.269,101,0.155,102,0.612,103,1.773,104,0.936,108,2.295,112,1.301,115,1.271,133,0.007,134,0.007,135,0.084,141,0.959,142,0.209,145,0.863,146,0.71,147,0.556,148,0.752,149,0.886,151,2.036,153,0.863,207,0.934,253,0.959,254,1.448,260,1.147,261,1.975,267,3.457,269,4.076,278,1.595,300,1.01,301,1.368,335,1.871,413,1.021,432,0.248,434,1.147,443,1.735,793,3.897,1055,3.012,1155,2.225,1195,5.248,1196,4.008,1197,3.544,1198,4.008,1199,4.276,1200,4.977,1201,5.304,1202,5.42,1203,4.276,1204,3.364,1205,4.276,1206,4.276,1207,5.498,1208,3.364,1209,3.364,1210,3.364,1211,3.206,1212,3.206,1213,2.94,1214,5.22,1215,5.523,1216,4.325,1217,4.325,1218,4.325,1219,4.325,1220,4.276,1221,4.701,1222,3.364,1223,4.276,1224,3.364,1225,4.325,1226,4.325,1227,3.364,1228,3.364,1229,4.325,1230,3.364,1231,3.364,1232,3.364,1233,4.325,1234,4.325,1235,4.325,1236,5.498,1237,4.325,1238,4.325,1239,5.498,1240,4.325,1241,4.325,1242,3.206,1243,4.325]],["title/interfaces/ExtendedVersion.html",[432,0.158,446,1.854]],["body/interfaces/ExtendedVersion.html",[3,0.151,4,0.177,5,0.125,9,0.177,10,0.296,30,0.01,31,0.307,32,0.253,49,1.543,63,0.557,65,1.369,101,0.257,133,0.007,134,0.007,142,0.203,147,0.54,163,1.868,291,2.864,292,2.301,293,2.301,307,1.868,413,1.196,432,0.324,433,2.229,434,1.431,435,1.471,436,2.301,437,2.378,438,2.378,439,2.378,440,2.378,441,2.117,442,2.229,443,1.863,444,2.378,445,2.378,446,2.864,447,3.562,448,3.562,449,3.562,450,3.562,451,2.161,452,2.161,453,2.097,454,2.889,455,2.097,456,1.263,457,2.301,458,2.301,459,2.301,460,2.161,461,2.229,462,2.229,463,2.956,464,2.229,465,2.161,466,2.301,467,2.301,468,2.301,469,2.301,470,2.301,471,2.301,472,2.301,473,2.301,474,2.301,475,2.301,476,2.301,477,2.301,478,2.301,479,2.301,480,2.161,481,1.632,482,2.301,483,2.301,484,2.301,485,1.675,486,1.549,487,1.59,488,2.161,489,1.675,490,2.301,491,2.301,492,2.229,493,2.378,494,2.229,495,1.549,496,1.868,497,2.229,498,2.301,499,3.164,500,2.229,501,2.378,502,2.378,503,2.378,504,2.378,505,2.378,506,2.378,507,2.378,508,2.378,509,2.378,510,2.378,511,2.378,512,2.301,513,2.378,514,2.378,515,2.378,516,2.161,517,2.301,518,2.301,519,2.301,520,2.378,521,2.301,522,2.301]],["title/interfaces/File.html",[5,0.104,432,0.158]],["body/interfaces/File.html",[3,0.092,4,0.084,5,0.152,9,0.108,10,0.21,18,1.614,30,0.01,31,0.331,32,0.268,49,2.101,63,0.561,64,1.614,65,1.515,71,1.569,101,0.227,125,0.681,133,0.005,134,0.005,138,1.114,142,0.124,188,1.228,202,0.724,232,0.485,413,1.192,432,0.285,434,1.016,435,0.899,441,0.792,443,1.751,456,1.152,481,2.112,485,1.828,486,1.69,487,1.734,489,1.024,495,1.412,496,1.142,806,1.82,807,4.601,808,4.359,809,4.033,810,3.081,811,3.514,812,4.359,813,1.82,814,3.631,815,1.82,816,3.631,817,4.033,818,3.889,819,4.033,820,3.631,821,4.189,822,2.358,823,1.82,824,1.82,825,1.82,826,1.82,827,1.903,828,4.033,829,1.82,830,1.453,831,1.453,832,1.453,833,1.142,834,2.779,835,2.715,836,2.502,837,1.677,838,2.409,839,2.715,840,2.715,841,2.409,842,2.409,843,2.715,844,3.115,845,2.993,846,3.397,847,3.397,848,3.397,849,3.397,850,3.397,851,3.397,852,3.397,853,2.604,854,1.903,855,1.903,856,1.903,857,1.903,858,1.903,859,1.903,860,1.903,861,1.903,862,1.903,863,1.903,864,1.903,865,1.903,866,1.903,867,1.903,868,1.903,869,1.903,870,1.453,871,1.903,872,1.903,873,1.903,874,1.281,875,1.903,876,1.903,877,1.503,878,1.903,879,1.903,880,1.903,881,1.903,882,1.903,883,1.903,884,1.903,885,1.903,886,1.903,887,1.903,888,1.745,889,1.903,890,1.903,891,1.903,892,4.03,893,4.684,894,4.03,895,2.978,896,3.854,897,3.854,898,1.82,899,1.82,900,1.614,901,1.614,902,1.82,903,1.745,904,1.745,905,1.82,906,1.82,907,1.82,908,1.82,909,1.82,910,3.418,911,3.695,912,3.602,913,3.695,914,3.695,915,1.82,916,1.82,917,1.614,918,1.745,919,1.677,920,1.503,921,1.614,922,1.406,923,1.745]],["title/components/FileEditComponent.html",[135,0.053,196,0.837]],["body/components/FileEditComponent.html",[3,0.089,4,0.082,5,0.192,9,0.105,10,0.205,11,1.517,13,1.659,16,0.874,24,0.767,27,1.322,29,0.566,30,0.01,31,0.34,32,0.195,33,0.483,46,1.282,47,1.357,63,0.281,69,1.665,71,1.02,84,1.131,85,0.421,98,0.808,101,0.089,102,0.352,104,1.111,115,1.492,125,1.632,133,0.005,134,0.005,135,0.069,136,0.596,137,0.897,138,1.099,140,0.627,141,0.83,142,0.315,144,0.627,145,1.444,146,1.19,147,0.481,148,1.233,149,0.767,150,0.596,153,0.747,156,0.627,165,0.627,166,1.316,167,0.83,168,0.627,169,1.261,170,0.627,171,0.627,172,0.596,173,0.92,174,0.627,175,0.596,176,0.627,177,0.596,178,0.596,179,0.627,180,0.596,181,0.874,182,0.627,183,0.581,184,1.05,185,0.596,186,0.627,187,0.581,188,0.458,189,0.627,190,0.581,191,0.627,192,0.596,193,1.581,194,0.596,195,0.627,196,1.199,197,0.596,198,1.552,199,0.596,200,0.627,201,0.596,202,0.47,203,0.596,204,0.596,205,0.627,206,0.596,207,0.538,208,0.627,209,0.596,210,0.627,211,0.596,212,0.596,213,0.627,214,0.596,215,0.627,216,0.596,217,0.612,218,0.627,219,0.596,220,0.627,221,0.596,222,0.627,223,0.596,224,0.596,225,0.596,226,0.596,227,0.596,228,0.627,229,0.596,230,0.596,231,0.596,232,0.47,233,0.944,234,0.581,235,0.524,236,0.627,237,0.552,238,0.627,239,0.596,240,0.596,241,0.596,242,0.627,243,0.596,244,0.612,245,0.596,246,0.596,247,0.596,248,0.596,249,0.627,250,0.596,251,0.627,252,0.627,253,0.552,254,0.596,255,0.627,256,0.627,260,0.993,261,1.616,278,1.845,282,1.759,289,1.163,299,0.872,300,0.581,301,0.787,304,0.872,308,0.73,316,1.246,335,1.619,338,1.692,347,2.544,375,2.001,409,1.673,410,2.601,413,0.633,456,1.126,481,1.944,526,2.465,527,1.946,528,2.388,529,2.315,530,2.465,531,2.246,532,2.728,535,2.634,539,1.536,540,1.708,544,2.192,546,2.192,550,1.458,551,1.139,552,1.509,553,1.107,554,1.077,555,1.077,556,0.85,557,0.85,558,0.808,559,1.215,578,1.741,582,1.576,583,1.246,584,1.897,585,1.708,586,1.665,587,1.752,588,1.575,591,3.469,605,1.748,606,1.748,607,3.058,622,1.565,628,2.445,667,3.547,772,1.278,811,2.741,814,2.119,822,1.926,830,2.119,831,2.833,832,2.119,833,2.225,910,3.147,911,3.401,912,2.654,913,3.401,914,3.401,925,1.692,926,2.425,927,3.189,928,3.058,929,2.654,930,2.654,932,3.803,935,3.547,946,1.765,947,3.547,949,2.654,953,2.734,958,4.294,959,4.615,970,2.04,985,1.692,992,1.765,993,1.765,994,1.765,1001,2.912,1050,1.243,1051,1.765,1052,2.18,1053,1.509,1054,1.692,1055,1.364,1056,1.765,1057,1.765,1058,1.765,1068,2.654,1069,2.912,1070,2.912,1071,2.912,1073,2.912,1244,7.166,1245,5.611,1246,6.24,1247,6.24,1248,6.24,1249,6.24,1250,4.668,1251,3.104,1252,3.104,1253,3.104,1254,2.734,1255,2.734,1256,2.161,1257,2.489,1258,2.489,1259,1.845,1260,3.104,1261,3.104,1262,3.104,1263,3.104,1264,3.104,1265,3.104,1266,3.104,1267,3.104,1268,3.104,1269,3.104,1270,3.104,1271,3.104,1272,3.104,1273,3.104,1274,3.104,1275,3.104,1276,3.104,1277,3.104,1278,3.104,1279,3.104,1280,2.489]],["title/components/FileOverviewComponent.html",[135,0.053,197,0.837]],["body/components/FileOverviewComponent.html",[3,0.099,4,0.091,5,0.185,9,0.116,10,0.221,11,1.595,13,1.018,16,0.944,24,0.828,27,1.35,29,1.197,30,0.01,31,0.359,32,0.241,33,1.022,46,1.332,47,1.387,63,0.521,65,0.85,69,1.752,84,1.143,85,0.466,93,0.942,95,1.044,96,0.81,98,0.873,101,0.099,102,0.39,103,0.81,104,0.96,112,0.83,115,0.85,125,0.732,133,0.005,134,0.005,135,0.073,136,0.661,137,0.968,138,0.565,140,0.696,141,0.896,142,0.322,144,0.696,145,1.452,146,1.196,147,0.52,148,0.703,149,0.828,150,0.661,153,0.806,156,0.696,165,0.696,166,1.366,167,0.896,168,0.696,169,1.327,170,0.696,171,0.696,172,0.661,173,0.993,174,0.696,175,0.661,176,0.696,177,0.661,178,0.661,179,0.696,180,0.661,181,0.644,182,0.696,183,0.644,184,1.366,185,0.661,186,0.696,187,0.944,188,0.879,189,0.696,190,0.644,191,0.696,192,0.661,193,1.621,194,0.661,195,0.696,196,0.661,197,1.261,198,1.595,199,0.661,200,0.696,201,0.661,202,0.521,203,0.661,204,0.661,205,0.696,206,0.661,207,0.596,208,0.696,209,0.661,210,0.696,211,0.661,212,0.661,213,0.696,214,0.661,215,0.696,216,0.661,217,0.678,218,0.696,219,0.661,220,0.696,221,0.661,222,0.696,223,0.661,224,0.661,225,0.661,226,0.661,227,0.661,228,0.696,229,0.661,230,0.661,231,0.661,232,0.521,233,1.019,234,0.644,235,0.581,236,0.696,237,0.612,238,0.696,239,0.661,240,0.661,241,0.661,242,0.696,243,0.661,244,0.678,245,0.661,246,0.661,247,0.661,248,0.661,249,0.696,250,0.661,251,0.696,252,0.696,253,0.612,254,0.661,255,0.696,256,0.696,260,1.072,261,1.718,262,1.907,275,2.46,276,1.959,277,2.1,278,1.941,281,3.577,282,1.819,289,1.236,294,2.367,296,1.907,299,0.967,300,0.644,301,0.873,303,1.803,304,0.967,305,1.42,306,1.465,308,0.81,309,1.956,312,1.131,313,1.131,314,2.55,315,1.876,316,1.752,318,2.156,321,1.131,322,1.131,324,1.616,328,2.747,336,2.64,337,2.64,408,1.299,409,1.809,410,2.689,481,2.045,537,1.674,539,1.632,540,1.797,556,0.942,557,0.942,558,0.895,559,1.311,578,1.708,582,2.013,583,1.752,584,2.012,585,1.797,586,1.752,587,1.843,588,1.843,605,1.858,606,1.858,751,1.616,763,1.803,767,3.007,772,1.38,785,1.876,786,1.876,787,1.876,833,2.341,895,1.512,910,3.31,920,2.367,926,1.958,1050,1.378,1052,2.55,1138,1.803,1140,3.28,1141,2.8,1142,2.8,1143,2.8,1144,2.8,1145,2.8,1146,2.8,1147,2.8,1148,2.8,1149,2.8,1150,3.25,1151,3.25,1152,3.25,1154,2.747,1155,2.46,1159,4.438,1160,2.147,1168,4.438,1171,3.312,1172,2.046,1173,2.747,1175,1.674,1176,2.046,1179,1.876,1180,2.046,1181,2.046,1182,2.996,1183,1.803,1184,2.046,1185,1.956,1186,1.876,1193,2.747,1194,2.747,1281,7.31,1282,2.541,1283,2.865,1284,5.04,1285,5.04,1286,6.564,1287,5.04,1288,2.76,1289,2.396,1290,2.396,1291,5.04,1292,2.396,1293,2.046,1294,2.396,1295,2.396,1296,2.147,1297,5.963,1298,3.442,1299,2.147,1300,3.442,1301,3.442,1302,3.442,1303,3.442,1304,5.04,1305,5.04]],["title/injectables/GetObjService.html",[0,2.281,349,3.237]],["body/injectables/GetObjService.html",[0,3.328,2,3.152,3,0.138,4,0.126,5,0.152,9,0.162,10,0.279,16,1.189,24,1.246,27,1.38,29,0.875,30,0.01,31,0.347,32,0.246,33,0.747,38,4.224,44,2.614,45,3.339,46,1.159,47,0.809,49,1.1,63,0.475,64,2.419,80,5.295,84,0.965,85,0.65,93,1.739,96,1.494,98,0.831,99,3.339,100,2.851,101,0.138,102,0.808,103,1.128,104,1.027,110,2.991,112,1.718,115,1.072,133,0.007,134,0.007,135,0.059,137,0.921,142,0.33,148,1.153,181,0.898,188,1.275,235,0.809,289,1.636,335,3.054,343,7.141,349,4.722,360,6.679,373,5.864,385,3.963,453,1.92,454,1.864,489,1.534,537,2.001,554,1.664,560,2.851,584,1.248,586,1.28,589,3.564,760,4.224,802,2.991,811,2.791,820,3.234,870,2.884,919,2.512,920,3.345,921,3.593,922,2.107,938,3.328,1098,3.846,1122,3.339,1139,3.846,1183,2.512,1211,2.851,1212,3.777,1213,4.419,1306,7.485,1307,4.224,1308,7.125,1309,7.891,1310,7.125,1311,7.585,1312,6.354,1313,4.797,1314,6.949,1315,8.109,1316,4.797,1317,6.354,1318,4.797,1319,4.797,1320,6.354,1321,6.354,1322,6.354,1323,4.797,1324,4.797,1325,4.797,1326,4.797,1327,4.797,1328,4.797,1329,3.846,1330,3.846,1331,3.564,1332,4.797,1333,4.797,1334,4.797,1335,6.354,1336,6.354,1337,4.797,1338,4.797,1339,6.354,1340,4.797,1341,4.797,1342,4.797,1343,4.797,1344,4.797,1345,3.152,1346,7.125,1347,4.224,1348,4.797,1349,5.595,1350,4.797,1351,4.797,1352,4.224,1353,6.354,1354,4.797,1355,4.797,1356,4.797,1357,4.224,1358,6.354,1359,4.797,1360,3.846,1361,6.354,1362,4.797,1363,4.797,1364,4.797,1365,5.595,1366,4.797,1367,4.797,1368,4.797,1369,4.224,1370,4.797,1371,4.797,1372,4.797,1373,4.797,1374,4.797,1375,4.797,1376,4.797,1377,5.095,1378,4.797,1379,6.354,1380,7.125,1381,4.797,1382,4.797]],["title/components/HardlinkComponent.html",[135,0.053,199,0.837]],["body/components/HardlinkComponent.html",[3,0.133,4,0.122,5,0.11,9,0.156,10,0.272,11,1.575,16,1.16,24,1.018,27,1.28,29,0.843,30,0.01,31,0.289,32,0.193,33,0.719,46,1.13,47,1.26,69,1.233,84,1.143,85,0.626,93,1.264,95,1.402,98,1.073,101,0.133,102,0.524,104,0.868,115,1.045,133,0.007,134,0.007,135,0.085,136,0.887,137,1.19,138,0.759,140,0.934,141,1.101,142,0.311,144,0.934,145,1.473,146,1.213,147,0.639,148,0.864,149,1.018,150,0.887,153,0.991,156,0.934,165,0.934,166,1.309,167,1.101,168,0.934,169,1.51,170,0.934,171,0.934,172,0.887,173,1.221,174,0.934,175,0.887,176,0.934,177,0.887,178,0.887,179,0.934,180,0.887,181,0.865,182,0.934,183,0.865,184,1.309,185,0.887,186,0.934,187,0.865,188,0.681,189,0.934,190,0.865,191,0.934,192,0.887,193,1.723,194,0.887,195,0.934,196,0.887,197,0.887,198,1.705,199,1.435,200,0.934,201,0.887,202,0.7,203,0.887,204,0.887,205,0.934,206,0.887,207,0.8,208,0.934,209,0.887,210,0.934,211,0.887,212,0.887,213,0.934,214,0.887,215,0.934,216,0.887,217,0.91,218,0.934,219,0.887,220,0.934,221,0.887,222,0.934,223,0.887,224,0.887,225,0.887,226,0.887,227,0.887,228,0.934,229,0.887,230,0.887,231,0.887,232,0.7,233,1.252,234,0.865,235,0.779,236,0.934,237,0.821,238,0.934,239,0.887,240,0.887,241,0.887,242,0.934,243,0.887,244,0.91,245,0.887,246,0.887,247,0.887,248,0.887,249,0.934,250,0.887,251,0.934,252,0.934,253,0.821,254,0.887,255,0.934,256,0.934,260,1.318,262,2.237,276,2.297,277,2.39,282,1.977,289,0.958,296,2.237,300,0.865,308,1.086,312,1.518,313,1.518,316,1.233,318,1.518,321,1.518,322,1.518,375,1.647,408,1.743,409,1.935,527,2.425,537,1.963,539,1.914,540,2.045,556,1.264,557,1.264,558,1.202,559,1.612,578,1.202,583,1.233,584,1.612,585,1.264,586,1.233,587,1.297,588,1.297,772,1.696,1383,4.068,1384,6.58,1385,6.197,1386,6.197,1387,7.472,1388,6.197,1389,4.619,1390,4.619,1391,4.619,1392,4.068,1393,4.619]],["title/interfaces/Image.html",[202,0.66,432,0.158]],["body/interfaces/Image.html",[3,0.087,4,0.08,5,0.167,9,0.102,10,0.202,18,1.532,30,0.01,31,0.327,32,0.275,49,2.097,63,0.561,64,1.532,65,1.513,71,1.509,101,0.224,125,0.646,133,0.005,134,0.005,138,0.755,142,0.118,188,1.217,202,0.839,232,0.46,413,1.186,432,0.282,434,0.977,435,0.853,441,0.752,443,1.8,456,1.108,481,1.431,485,2.23,486,2.062,487,2.116,489,0.972,495,1.358,496,1.084,806,1.727,807,4.536,808,4.307,809,3.985,810,3.521,811,3.472,812,4.307,813,1.727,814,3.587,815,1.727,816,3.587,817,3.985,818,3.843,819,3.985,820,3.587,821,4.139,822,2.285,823,1.727,824,1.727,825,1.727,826,1.727,827,1.806,828,3.985,829,1.727,830,1.38,831,1.38,832,1.38,833,1.084,834,3.39,835,2.611,836,2.406,837,1.592,838,3.343,839,2.611,840,2.611,841,2.316,842,2.316,843,2.611,844,3.019,845,3.652,846,4.145,847,4.145,848,4.145,849,4.145,850,4.145,851,4.145,852,4.145,853,2.504,854,1.806,855,1.806,856,1.806,857,1.806,858,1.806,859,1.806,860,1.806,861,1.806,862,1.806,863,1.806,864,1.806,865,1.806,866,1.806,867,1.806,868,1.806,869,1.806,870,1.38,871,1.806,872,1.806,873,1.806,874,1.216,875,1.806,876,1.806,877,1.427,878,1.806,879,1.806,880,1.806,881,1.806,882,1.806,883,1.806,884,1.806,885,1.806,886,1.806,887,1.806,888,1.656,889,1.806,890,1.806,891,1.806,892,3.941,893,4.623,894,3.941,895,2.912,896,3.768,897,3.768,898,1.727,899,1.727,900,1.532,901,1.532,902,1.727,903,1.656,904,1.656,905,1.727,906,1.727,907,1.727,908,1.727,909,1.727,910,2.316,911,2.504,912,1.727,913,2.504,914,2.504,915,3.509,916,3.509,917,1.532,918,1.656,919,1.592,920,1.427,921,1.532,922,1.335,923,1.656]],["title/components/ImageEditComponent.html",[135,0.053,201,0.837]],["body/components/ImageEditComponent.html",[3,0.081,4,0.074,5,0.154,9,0.095,10,0.191,11,1.473,13,1.567,16,0.814,24,0.714,27,1.311,29,0.516,30,0.01,31,0.333,32,0.212,33,0.44,46,1.237,47,1.329,63,0.408,69,1.587,71,0.929,84,1.121,85,0.383,96,0.665,98,0.753,101,0.081,102,0.321,103,1.023,104,1.115,108,2.255,115,1.504,125,1.651,133,0.005,134,0.005,135,0.065,136,0.543,137,0.835,138,0.465,140,0.572,141,0.773,142,0.313,144,0.572,145,1.435,146,1.183,147,0.448,148,1.243,149,0.714,150,0.543,153,0.696,156,0.572,165,0.572,166,1.269,167,0.773,168,0.572,169,1.202,170,0.572,171,0.572,172,0.543,173,0.857,174,0.572,175,0.543,176,0.572,177,0.543,178,0.543,179,0.572,180,0.543,181,0.814,182,0.572,183,0.529,184,0.992,185,0.543,186,0.572,187,0.529,188,0.417,189,0.572,190,0.529,191,0.572,192,0.543,193,1.543,194,0.543,195,0.572,196,0.543,197,0.543,198,1.511,199,0.543,200,0.572,201,1.143,202,1.262,203,0.543,204,0.543,205,0.572,206,0.543,207,0.49,208,0.572,209,0.543,210,0.572,211,0.543,212,0.543,213,0.572,214,0.543,215,0.572,216,1.143,217,0.557,218,0.572,219,0.543,220,0.572,221,0.543,222,0.572,223,0.543,224,0.543,225,0.543,226,0.543,227,0.543,228,0.572,229,0.543,230,0.543,231,0.543,232,0.428,233,0.879,234,0.529,235,0.477,236,0.572,237,0.503,238,0.572,239,0.543,240,0.543,241,0.543,242,0.572,243,0.543,244,0.557,245,0.543,246,0.543,247,0.543,248,0.543,249,0.572,250,0.543,251,0.572,252,0.572,253,0.503,254,0.543,255,0.572,256,0.572,260,0.925,261,1.527,278,1.759,282,1.703,289,1.099,299,0.794,300,0.529,301,0.717,304,0.794,308,0.665,316,1.161,335,2.063,338,1.541,347,2.37,375,1.89,409,1.62,410,2.518,413,0.589,441,1.076,456,1.049,485,1.903,486,1.759,487,1.32,526,2.328,527,1.838,528,2.255,529,2.186,530,2.328,531,2.121,532,2.577,535,2.488,539,1.45,540,1.628,544,2.042,546,2.042,550,1.328,551,1.037,552,1.375,553,1.009,554,0.981,555,0.981,556,0.774,557,0.774,558,0.736,559,1.132,578,1.67,582,1.468,583,1.161,584,1.837,585,1.628,586,1.587,587,1.67,588,1.488,605,1.651,606,1.651,607,2.888,622,1.426,628,2.278,667,3.381,772,1.19,810,2.115,811,2.613,814,1.974,820,1.974,821,3.115,822,1.794,830,1.974,831,2.7,832,1.974,833,2.121,834,2.892,874,2.381,915,2.472,916,2.472,925,1.541,926,2.311,927,3.012,928,2.888,929,2.472,930,2.472,932,3.65,935,3.381,938,2.278,946,1.608,947,3.381,949,2.472,956,1.859,957,1.859,958,4.329,959,4.657,960,3.488,961,2.858,970,1.859,985,1.541,989,1.859,990,1.681,991,1.859,992,1.608,993,1.608,994,1.608,1001,2.713,1050,1.132,1051,1.608,1052,2.059,1053,1.375,1054,1.541,1055,1.243,1056,1.608,1057,1.608,1058,1.608,1060,3.482,1068,2.472,1069,2.713,1070,2.713,1071,2.713,1073,2.713,1074,4.141,1078,3.909,1256,1.969,1259,1.681,1280,2.268,1394,7.104,1395,5.299,1396,5.949,1397,5.949,1398,5.949,1399,5.949,1400,5.299,1401,4.349,1402,2.491,1403,2.828,1404,2.268,1405,2.828,1406,2.828,1407,2.828,1408,2.828,1409,2.491,1410,2.828,1411,4.349,1412,2.828,1413,2.828,1414,2.828,1415,2.828,1416,2.828,1417,2.828,1418,2.828,1419,2.828,1420,2.828,1421,2.828,1422,2.828,1423,2.828,1424,2.828,1425,2.828,1426,2.828,1427,2.828,1428,2.828,1429,2.828,1430,2.828,1431,2.828,1432,2.828,1433,2.828,1434,4.349,1435,2.828,1436,2.828,1437,2.828,1438,5.299,1439,2.828,1440,2.828,1441,2.828,1442,2.828,1443,2.828,1444,4.349,1445,4.349]],["title/components/ImageOverviewComponent.html",[135,0.053,203,0.837]],["body/components/ImageOverviewComponent.html",[3,0.098,4,0.09,5,0.081,9,0.115,10,0.22,11,1.59,13,1.007,16,0.936,24,0.821,27,1.347,29,1.191,30,0.01,31,0.359,32,0.241,33,1.017,46,1.326,47,1.384,63,0.52,65,0.843,69,1.742,84,1.141,85,0.461,93,0.932,95,1.033,96,0.801,98,0.866,101,0.098,102,0.386,103,0.801,104,0.957,112,0.821,115,0.843,125,0.724,133,0.005,134,0.005,135,0.072,136,0.654,137,0.96,138,0.559,140,0.688,141,0.889,142,0.321,144,0.688,145,1.451,146,1.196,147,0.515,148,0.697,149,0.821,150,0.654,153,0.8,156,0.688,165,0.688,166,1.361,167,0.889,168,0.688,169,1.32,170,0.688,171,0.688,172,0.654,173,0.985,174,0.688,175,0.654,176,0.688,177,0.654,178,0.654,179,0.688,180,0.654,181,0.637,182,0.688,183,0.637,184,1.361,185,0.654,186,0.688,187,0.936,188,0.873,189,0.688,190,0.637,191,0.688,192,0.654,193,1.617,194,0.654,195,0.688,196,0.654,197,0.654,198,1.59,199,0.654,200,0.688,201,0.654,202,1.192,203,1.254,204,0.654,205,0.688,206,0.654,207,0.59,208,0.688,209,0.654,210,0.688,211,0.654,212,0.654,213,0.688,214,0.654,215,0.688,216,0.654,217,0.671,218,0.688,219,0.654,220,0.688,221,0.654,222,0.688,223,0.654,224,0.654,225,0.654,226,0.654,227,0.654,228,0.688,229,0.654,230,0.654,231,0.654,232,0.516,233,1.011,234,0.637,235,0.574,236,0.688,237,0.605,238,0.688,239,0.654,240,0.654,241,0.654,242,0.688,243,0.654,244,0.671,245,0.654,246,0.654,247,0.654,248,0.654,249,0.688,250,0.654,251,0.688,252,0.688,253,0.605,254,0.654,255,0.688,256,0.688,260,1.063,261,1.707,262,1.895,275,2.445,276,1.947,277,2.089,278,1.931,281,3.559,282,1.813,289,1.228,294,2.348,296,1.895,299,0.956,300,0.637,301,0.864,303,1.783,304,0.956,305,1.405,306,1.449,308,0.801,309,1.935,312,1.119,313,1.119,314,2.537,315,1.856,316,1.742,318,2.145,321,1.119,322,1.119,324,1.599,328,2.725,336,2.619,337,2.619,408,1.285,409,1.804,410,2.68,441,1.237,485,1.599,486,1.931,487,1.517,537,1.664,539,1.622,540,1.787,556,0.932,557,0.932,558,0.886,559,1.301,578,1.699,582,2,583,1.742,584,2.006,585,1.787,586,1.742,587,1.834,588,1.834,589,3.716,605,1.846,606,1.846,751,1.599,763,1.783,767,2.988,772,1.369,785,1.856,786,1.856,787,1.856,833,2.329,874,2.001,895,1.496,926,1.943,1050,1.363,1052,2.537,1072,4.009,1078,3.286,1138,1.783,1140,3.266,1141,2.782,1142,2.782,1143,2.782,1144,2.782,1145,2.782,1146,2.782,1147,2.782,1148,2.782,1149,2.782,1150,3.229,1151,3.229,1152,3.229,1154,2.725,1155,2.445,1172,2.024,1173,2.725,1174,4.403,1175,1.655,1176,2.024,1179,1.856,1180,2.024,1181,2.024,1182,2.972,1183,1.783,1184,2.024,1185,1.935,1186,1.856,1190,2.998,1191,4.009,1192,4.403,1193,2.725,1194,2.725,1282,2.521,1283,2.842,1296,2.123,1446,7.295,1447,5,1448,5,1449,6.53,1450,5,1451,5,1452,3.405,1453,3.405,1454,3.405,1455,5,1456,3.405,1457,3.405,1458,5,1459,3.405,1460,3.405,1461,3.405,1462,5.926,1463,3.405,1464,3.405,1465,3.405,1466,3.405,1467,5]],["title/components/ImportDVDComponent.html",[135,0.053,204,0.837]],["body/components/ImportDVDComponent.html",[3,0.113,4,0.104,5,0.154,9,0.133,10,0.244,11,1.62,13,1.901,16,1.039,24,0.911,27,1.289,29,0.718,30,0.01,31,0.337,32,0.173,33,0.613,46,1.012,47,1.177,69,1.05,84,1.196,85,0.533,93,1.077,95,1.194,96,0.926,98,0.961,101,0.113,102,0.446,103,0.926,104,0.914,115,0.936,133,0.006,134,0.006,135,0.079,136,0.756,137,1.066,138,0.646,139,1.675,140,0.795,141,0.986,142,0.311,144,0.795,145,1.462,146,1.205,147,0.572,148,0.774,149,0.911,150,0.756,151,2.094,153,0.887,156,0.795,162,4.591,163,1.979,165,0.795,166,1.203,167,0.986,168,0.795,169,1.411,170,0.795,171,0.795,172,0.756,173,1.093,174,0.795,175,0.756,176,0.795,177,0.756,178,0.756,179,0.795,180,0.756,181,0.737,182,0.795,183,0.737,184,1.203,185,0.756,186,0.795,187,0.737,188,0.58,189,0.795,190,0.737,191,0.795,192,0.756,193,1.67,194,0.756,195,0.795,196,0.756,197,0.756,198,1.647,199,0.756,200,0.795,201,0.756,202,0.596,203,0.756,204,1.341,205,0.795,206,0.756,207,0.681,208,0.795,209,0.756,210,0.795,211,0.756,212,0.756,213,0.795,214,0.756,215,0.795,216,0.756,217,0.775,218,0.795,219,0.756,220,0.795,221,0.756,222,0.795,223,0.756,224,0.756,225,0.756,226,0.756,227,0.756,228,0.795,229,0.756,230,0.756,231,0.756,232,0.596,233,1.122,234,0.737,235,0.664,236,0.795,237,0.699,238,0.795,239,0.756,240,0.756,241,0.756,242,0.795,243,0.756,244,0.775,245,0.756,246,0.756,247,0.756,248,0.756,249,0.795,250,0.756,251,0.795,252,0.795,253,0.699,254,0.756,255,0.795,256,0.795,260,1.18,262,2.056,276,2.112,277,2.233,282,1.893,289,1.333,296,2.056,299,1.105,300,0.737,308,0.926,312,1.293,313,1.293,316,1.05,318,1.293,321,1.293,322,1.293,375,1.403,408,1.485,409,1.869,441,1.373,480,2.289,481,2.293,482,2.824,483,2.824,484,2.824,485,2.056,486,2.176,487,1.951,526,2.824,527,2.23,528,2.736,529,2.652,530,2.824,531,2.573,535,3.018,537,1.805,539,1.76,540,1.911,544,2.606,546,2.606,550,1.848,551,1.443,553,1.403,554,1.925,555,1.365,556,1.077,557,1.077,558,1.024,559,1.444,560,3.821,573,3.156,577,2.586,578,1.444,579,3.156,580,3.156,582,1.328,583,1.05,584,1.444,585,1.077,586,1.05,587,1.105,588,1.105,594,3.461,595,2.924,596,3.156,597,3.465,598,3.156,599,3.465,600,2.924,874,2.946,1072,4.45,1078,4.588,1110,4.45,1468,7.058,1469,7.058,1470,3.465,1471,6.147,1472,6.428,1473,5.549,1474,6.428,1475,6.981,1476,3.935,1477,3.935,1478,3.935,1479,3.935,1480,3.935,1481,3.935,1482,3.935,1483,3.935,1484,3.935,1485,3.935,1486,3.935,1487,3.935,1488,3.935,1489,3.935,1490,3.935,1491,3.935,1492,3.935,1493,3.156,1494,3.935,1495,5.549,1496,5.549,1497,4.886]],["title/interfaces/InstallationStatus.html",[432,0.158,516,1.797]],["body/interfaces/InstallationStatus.html",[3,0.149,4,0.176,5,0.124,9,0.174,10,0.293,30,0.01,31,0.305,32,0.263,49,1.531,63,0.557,65,1.363,101,0.257,133,0.007,134,0.007,142,0.2,147,0.533,163,1.844,291,3.44,292,2.272,293,2.272,307,1.844,413,1.193,432,0.323,433,2.2,434,1.419,435,1.452,436,2.272,437,2.347,438,2.347,439,2.347,440,2.347,441,1.828,442,2.2,443,1.889,444,2.347,445,2.347,446,2.2,447,2.347,448,2.347,449,2.347,450,2.347,451,2.133,452,2.133,453,2.07,454,2.871,455,2.07,456,1.247,457,2.272,458,2.272,459,2.272,460,2.133,461,2.2,462,2.2,463,2.932,464,2.2,465,2.133,466,2.272,467,2.272,468,2.272,469,2.272,470,2.272,471,2.272,472,2.272,473,2.272,474,2.272,475,2.272,476,2.272,477,2.272,478,2.272,479,2.272,480,2.133,481,1.611,482,2.272,483,2.272,484,2.272,485,1.654,486,1.529,487,1.569,488,2.133,489,1.654,490,2.272,491,2.272,492,2.2,493,2.347,494,2.2,495,1.529,496,1.844,497,2.2,498,2.272,499,3.145,500,2.2,501,2.347,502,2.347,503,2.347,504,2.347,505,2.347,506,2.347,507,2.347,508,2.347,509,2.347,510,2.347,511,2.347,512,2.272,513,2.347,514,2.347,515,2.347,516,2.753,517,3.43,518,3.43,519,3.43,520,3.545,521,3.43,522,3.43]],["title/interfaces/Item.html",[188,0.642,432,0.158]],["body/interfaces/Item.html",[3,0.1,4,0.092,5,0.144,9,0.117,10,0.223,18,1.756,30,0.01,31,0.321,32,0.206,49,2.096,63,0.561,64,1.756,65,1.517,71,1.67,101,0.231,125,0.741,133,0.006,134,0.006,138,0.835,142,0.135,188,1.245,202,0.77,232,0.528,413,1.19,432,0.291,434,1.081,435,0.978,441,0.861,443,1.816,456,1.226,481,1.584,485,1.92,486,1.775,487,1.822,489,1.114,495,1.503,496,1.242,806,1.979,807,4.612,808,4.228,809,3.912,810,3.209,811,3.408,812,4.228,813,1.979,814,3.522,815,1.979,816,3.522,817,3.912,818,3.772,819,3.912,820,3.522,821,4.063,822,2.477,823,1.979,824,1.979,825,1.979,826,1.979,827,2.07,828,3.912,829,1.979,830,2.996,831,2.996,832,2.996,833,2.354,834,2.919,835,2.889,836,2.662,837,1.824,838,2.563,839,2.889,840,2.889,841,2.563,842,2.563,843,2.889,844,3.272,845,3.144,846,3.568,847,3.568,848,3.568,849,3.568,850,3.568,851,3.568,852,3.568,853,2.77,854,2.07,855,2.07,856,2.07,857,2.07,858,2.07,859,2.07,860,2.07,861,2.07,862,2.07,863,2.07,864,2.07,865,2.07,866,2.07,867,2.07,868,2.07,869,2.07,870,1.581,871,2.07,872,2.07,873,2.07,874,1.394,875,2.07,876,2.07,877,1.635,878,2.07,879,2.07,880,2.07,881,2.07,882,2.07,883,2.07,884,2.07,885,2.07,886,2.07,887,2.07,888,1.898,889,2.07,890,2.07,891,2.07,892,4.173,893,4.779,894,4.173,895,3.084,896,3.99,897,3.99,898,1.979,899,1.979,900,1.756,901,1.756,902,1.979,903,1.898,904,1.898,905,1.979,906,1.979,907,1.979,908,1.979,909,1.979,910,2.563,911,2.77,912,1.979,913,2.77,914,2.77,915,1.979,916,1.979,917,1.756,918,1.898,919,1.824,920,1.635,921,1.756,922,1.53,923,1.898]],["title/injectables/ItemSettingsService.html",[0,2.281,1498,3.033]],["body/injectables/ItemSettingsService.html",[0,3.834,2,3.936,3,0.172,4,0.158,5,0.143,9,0.202,10,0.322,11,1.211,16,1.37,24,1.202,27,1.352,29,1.335,30,0.01,31,0.349,32,0.247,33,1.14,46,1.335,63,0.476,80,6.276,84,1.164,85,0.812,93,1.64,94,5.275,95,1.818,99,4.17,100,3.561,101,0.172,102,0.679,103,1.859,112,1.445,115,1.01,133,0.008,134,0.008,142,0.327,146,0.964,235,1.333,282,2.098,308,1.722,369,4.804,409,1.937,420,5.275,537,2.22,1360,4.804,1498,5.096,1499,7.436,1500,5.275,1501,6.603,1502,6.603,1503,7.32,1504,5.275,1505,5.99,1506,5.99,1507,7.32,1508,5.99,1509,5.99,1510,5.99,1511,5.275,1512,5.99,1513,5.99,1514,5.99,1515,5.99,1516,5.99,1517,5.99]],["title/components/KeyValueEditorComponent.html",[135,0.053,206,0.837]],["body/components/KeyValueEditorComponent.html",[3,0.095,4,0.087,5,0.079,9,0.111,10,0.215,13,1.721,16,0.915,27,1.401,29,1.424,30,0.01,31,0.333,32,0.251,33,1.215,46,1.448,47,1.446,49,1.575,63,0.433,74,4.78,84,1.057,85,0.447,96,0.776,98,0.846,101,0.095,102,0.374,103,0.776,104,1.131,107,3.048,115,1.158,133,0.005,134,0.005,135,0.071,136,0.634,137,0.939,138,0.542,140,0.667,141,0.869,142,0.332,144,0.667,145,1.449,146,1.193,147,0.504,148,1.107,149,0.803,150,0.634,153,0.782,156,0.667,165,0.667,166,0.915,167,0.869,168,0.667,169,1.3,170,0.667,171,0.667,172,0.634,173,0.963,174,0.667,175,0.634,176,0.667,177,0.634,178,0.634,179,0.667,180,0.634,181,0.618,182,0.667,183,0.618,184,1.089,185,0.634,186,0.667,187,0.618,188,0.487,189,0.667,190,0.618,191,0.667,192,0.634,193,1.605,194,0.634,195,0.667,196,0.634,197,0.634,198,1.577,199,0.634,200,0.667,201,0.634,202,0.5,203,0.634,204,0.634,205,0.667,206,1.468,207,1.469,208,0.667,209,0.634,210,0.667,211,0.634,212,0.634,213,0.667,214,0.634,215,0.667,216,0.634,217,1.353,218,0.667,219,0.634,220,0.667,221,0.634,222,0.667,223,0.634,224,0.634,225,0.634,226,0.634,227,0.634,228,0.667,229,0.634,230,0.634,231,0.634,232,0.5,233,0.988,234,0.618,235,0.557,236,0.667,237,0.587,238,0.667,239,0.634,240,0.634,241,0.634,242,0.667,243,0.634,244,0.65,245,0.634,246,0.634,247,0.634,248,0.634,249,0.667,250,0.634,251,1.176,252,0.667,253,0.587,254,0.634,255,0.667,256,0.667,260,1.039,289,1.584,300,0.618,301,0.837,307,1.177,335,1.695,375,1.177,413,0.974,528,2.476,529,2.401,531,2.329,551,1.211,553,1.177,554,1.145,555,1.145,577,3.212,605,1.813,606,1.813,710,2.453,772,1.338,793,3.308,838,2.464,958,2.83,959,2.56,987,5.634,1052,2.261,1183,1.729,1213,2.663,1518,7.55,1519,2.907,1520,5.124,1521,5.124,1522,4.303,1523,5.665,1524,5.124,1525,5.665,1526,5.124,1527,4.887,1528,5.124,1529,5.124,1530,5.124,1531,5.819,1532,5.819,1533,4.887,1534,4.887,1535,6.553,1536,6.867,1537,5.819,1538,5.819,1539,5.124,1540,5.124,1541,5.665,1542,4.887,1543,5.819,1544,4.303,1545,4.303,1546,4.303,1547,4.303,1548,4.887,1549,4.303,1550,5.819,1551,6.047,1552,3.301,1553,3.301,1554,3.301,1555,4.887,1556,3.301,1557,4.887,1558,6.433,1559,3.301,1560,4.303,1561,3.301,1562,6.047,1563,4.303,1564,3.301,1565,4.303,1566,3.301,1567,4.303,1568,3.301,1569,4.887,1570,3.301,1571,4.303,1572,5.158,1573,3.301,1574,2.453,1575,4.666,1576,4.303,1577,3.301,1578,4.303,1579,3.301,1580,5.819,1581,3.301,1582,4.78,1583,3.301,1584,3.301,1585,3.301,1586,3.301,1587,3.301,1588,3.301,1589,2.907,1590,2.907,1591,2.907,1592,2.907,1593,3.301,1594,3.301,1595,3.301,1596,3.301,1597,4.887,1598,3.301,1599,3.301,1600,3.301,1601,3.301,1602,3.301,1603,3.301,1604,3.301,1605,3.301,1606,3.301,1607,4.887,1608,3.632,1609,3.402,1610,3.301]],["title/components/LogInFormComponent.html",[135,0.053,209,0.837]],["body/components/LogInFormComponent.html",[3,0.093,4,0.085,5,0.077,9,0.108,10,0.211,11,1.44,15,5.483,16,0.897,18,2.889,24,0.787,27,1.396,29,0.874,30,0.01,31,0.263,32,0.212,33,0.746,36,2.579,40,2.113,46,1.299,47,1.245,63,0.288,71,2.546,84,1.11,85,0.436,93,0.88,95,0.976,96,1.348,98,0.83,101,0.093,102,0.365,103,1.598,104,0.942,107,4.442,112,1.532,115,1.35,133,0.005,134,0.005,135,0.07,136,0.618,137,0.921,138,0.528,139,1.369,140,0.65,141,0.852,142,0.331,144,0.65,145,1.447,146,1.194,147,0.494,148,0.799,149,0.787,150,0.618,151,1.809,153,0.767,156,0.65,160,3.562,162,3.961,163,1.709,164,2.832,165,0.65,166,0.897,167,0.852,168,0.65,169,1.284,170,0.65,171,0.65,172,0.618,173,0.945,174,0.65,175,0.618,176,0.65,177,0.618,178,0.618,179,0.65,180,0.618,181,0.602,182,0.65,183,0.602,184,1.073,185,0.618,186,0.65,187,0.602,188,0.474,189,0.65,190,0.602,191,0.65,192,0.618,193,1.595,194,0.618,195,0.65,196,0.618,197,0.618,198,1.567,199,0.618,200,0.65,201,0.618,202,0.487,203,0.618,204,0.618,205,0.65,206,0.618,207,0.557,208,0.65,209,1.22,210,0.65,211,0.618,212,0.618,213,0.65,214,0.618,215,0.65,216,0.618,217,0.634,218,0.65,219,0.618,220,0.65,221,0.618,222,0.65,223,0.618,224,0.618,225,0.618,226,0.618,227,0.618,228,0.65,229,0.618,230,0.618,231,0.618,232,0.487,233,0.969,234,0.602,235,0.542,236,0.65,237,0.572,238,0.65,239,0.618,240,0.618,241,0.618,242,0.65,243,0.618,244,0.634,245,0.618,246,0.618,247,0.618,248,0.618,249,0.65,250,0.618,251,0.969,252,0.65,253,0.572,254,0.618,255,0.65,256,0.65,260,1.019,262,1.833,267,2.889,271,3.766,277,2.032,282,1.78,289,1.477,298,1.564,299,0.903,300,0.602,304,0.903,308,0.756,335,1.663,346,5.396,358,3.844,397,2.99,399,4.729,403,4.258,409,1.558,410,2.631,413,0.436,418,3.961,428,4.221,430,2.832,498,1.413,531,2.294,537,1.609,551,1.18,553,1.147,554,1.116,555,1.116,558,0.837,560,1.912,576,3.574,583,1.529,586,1.969,596,2.579,600,2.39,630,2.579,633,2.39,756,3.337,769,3.257,770,3.574,897,1.828,938,2.511,1121,2.579,1130,2.579,1331,2.39,1369,2.832,1501,5.093,1504,2.832,1572,5.917,1575,4.595,1611,2.832,1612,5.731,1613,4.794,1614,6.793,1615,6.793,1616,6.793,1617,5.731,1618,5.731,1619,5.731,1620,6.351,1621,6.351,1622,6.351,1623,6.351,1624,5.731,1625,6.678,1626,5.046,1627,3.216,1628,3.216,1629,3.216,1630,3.216,1631,3.216,1632,3.216,1633,3.216,1634,3.216,1635,3.216,1636,6.498,1637,3.216,1638,3.216,1639,3.216,1640,5.731,1641,7.379,1642,5.712,1643,4.794,1644,4.794,1645,3.216,1646,3.216,1647,3.216,1648,3.216,1649,2.832,1650,3.216,1651,2.832,1652,3.216,1653,3.216,1654,3.216,1655,2.579,1656,2.39,1657,2.832,1658,2.832,1659,5.593,1660,3.216,1661,2.832,1662,2.832,1663,3.216,1664,3.216,1665,3.216,1666,3.216,1667,6.351,1668,3.216,1669,3.216,1670,5.731,1671,3.216,1672,3.216,1673,3.216,1674,3.216,1675,3.216,1676,3.216,1677,3.216,1678,3.216,1679,3.216,1680,3.216,1681,3.216,1682,3.216,1683,3.216,1684,3.216,1685,3.216,1686,3.216,1687,2.832,1688,3.216,1689,3.216,1690,3.216,1691,3.216,1692,3.216,1693,3.216,1694,3.216,1695,3.216,1696,3.216,1697,3.216,1698,2.832,1699,2.832,1700,3.216,1701,3.216,1702,3.216,1703,3.216,1704,3.216,1705,3.216,1706,3.216,1707,3.216,1708,2.239,1709,3.216,1710,3.216,1711,4.794,1712,3.216,1713,4.794,1714,3.216,1715,3.216,1716,3.216,1717,3.216,1718,3.216,1719,3.216,1720,3.216,1721,3.216,1722,3.216,1723,3.216,1724,3.216,1725,4.794,1726,4.794,1727,5.731,1728,4.794,1729,4.794,1730,4.794,1731,4.794,1732,4.794,1733,5.046,1734,5.046,1735,3.216,1736,4.221,1737,3.216,1738,3.216,1739,2.832,1740,3.216,1741,2.832,1742,2.832]],["title/components/ManageMenuComponent.html",[135,0.053,150,0.837]],["body/components/ManageMenuComponent.html",[3,0.124,4,0.114,5,0.103,9,0.146,10,0.26,24,0.709,27,0.972,29,0.788,30,0.01,31,0.279,32,0.185,33,0.672,84,1.161,85,0.585,98,1.025,101,0.124,102,0.49,104,0.536,133,0.006,134,0.006,135,0.083,136,0.829,137,1.137,138,0.709,139,1.838,140,0.873,141,1.052,142,0.262,144,0.873,145,1.469,146,1.211,147,0.61,148,0.825,149,0.972,150,1.396,151,2.234,153,0.947,156,1.657,157,5.416,165,0.873,166,1.108,167,1.052,168,0.873,169,1.469,170,0.873,171,0.873,172,0.829,173,1.166,174,0.873,175,0.829,176,0.873,177,0.829,178,1.297,179,0.873,180,0.829,181,1.264,182,0.873,183,0.808,184,1.264,185,0.829,186,0.873,187,0.808,188,0.636,189,0.873,190,0.808,191,0.873,192,0.829,193,1.701,194,0.829,195,0.873,196,0.829,197,0.829,198,1.681,199,0.829,200,0.873,201,0.829,202,0.654,203,0.829,204,0.829,205,0.873,206,0.829,207,0.748,208,0.873,209,0.829,210,0.873,211,0.829,212,0.829,213,0.873,214,0.829,215,0.873,216,0.829,217,0.851,218,0.873,219,1.396,220,0.873,221,0.829,222,0.873,223,0.829,224,0.829,225,0.829,226,0.829,227,0.829,228,0.873,229,0.829,230,0.829,231,0.829,232,0.654,233,1.197,234,0.808,235,1.139,236,0.873,237,0.768,238,0.873,239,0.829,240,0.829,241,0.829,242,0.873,243,0.829,244,0.851,245,0.829,246,0.829,247,0.829,248,0.829,249,0.873,250,0.829,251,1.365,252,0.873,253,0.768,254,0.829,255,0.873,256,0.873,263,5.213,264,4.213,265,4.213,269,4.015,271,4.439,294,2.779,298,2.1,301,1.095,302,2.177,304,1.213,385,3.692,397,2.693,410,2.967,418,3.692,452,2.442,453,2.369,454,2.3,489,1.893,537,1.662,589,4.399,595,4.399,838,2.985,870,2.687,888,3.226,920,2.779,921,2.985,1088,3.692,1139,4.747,1329,4.747,1330,4.747,1349,5.213,1384,5.213,1471,5.213,1742,3.803,1743,5.948,1744,3.803,1745,6.755,1746,6.755,1747,6.755,1748,5.948,1749,6.755,1750,6.755,1751,5.92,1752,4.318,1753,4.318,1754,4.318,1755,3.006,1756,4.318,1757,3.803,1758,4.318,1759,4.318,1760,5.213,1761,8.319,1762,5.92,1763,8.2,1764,4.399,1765,5.92,1766,5.213,1767,5.213,1768,7.864,1769,4.399,1770,5.92,1771,4.747,1772,5.92,1773,5.92,1774,4.318]],["title/components/ManagementClassEditComponent.html",[135,0.053,211,0.837]],["body/components/ManagementClassEditComponent.html",[3,0.084,4,0.077,5,0.07,9,0.098,10,0.196,11,1.488,13,1.598,16,0.834,24,0.732,27,1.32,29,0.533,30,0.01,31,0.342,32,0.189,33,0.455,46,1.253,47,1.339,63,0.392,64,2.248,69,1.614,71,0.96,84,1.135,85,0.396,96,0.687,98,0.772,101,0.084,102,0.965,103,1.048,104,1.108,108,1.897,115,1.484,125,1.688,133,0.005,134,0.005,135,0.066,136,0.561,137,0.856,138,0.48,140,0.59,141,0.792,142,0.315,144,0.59,145,1.438,146,1.185,147,0.459,148,1.229,149,0.732,150,0.561,153,0.713,156,0.59,165,0.59,166,1.285,167,0.792,168,0.59,169,1.223,170,0.59,171,0.59,172,0.561,173,0.878,174,0.59,175,0.561,176,0.59,177,0.561,178,0.561,179,0.59,180,0.561,181,0.834,182,0.59,183,0.547,184,1.012,185,0.561,186,0.59,187,0.547,188,0.431,189,0.59,190,0.547,191,0.59,192,0.561,193,1.556,194,0.561,195,0.59,196,0.561,197,0.561,198,1.525,199,0.561,200,0.59,201,0.561,202,0.442,203,0.561,204,0.561,205,0.59,206,1.162,207,0.506,208,0.59,209,0.561,210,0.59,211,1.162,212,0.561,213,0.59,214,0.561,215,0.59,216,1.162,217,0.576,218,0.59,219,0.561,220,0.59,221,0.561,222,0.59,223,0.561,224,0.561,225,0.561,226,0.561,227,0.561,228,0.59,229,0.561,230,0.561,231,0.561,232,0.442,233,0.901,234,0.547,235,0.493,236,0.59,237,0.519,238,0.59,239,0.561,240,0.561,241,0.561,242,0.59,243,0.561,244,0.576,245,0.561,246,0.561,247,0.561,248,0.561,249,0.59,250,0.561,251,0.59,252,0.59,253,0.519,254,0.561,255,0.59,256,0.59,260,0.948,261,1.558,278,1.789,282,1.723,289,1.121,299,0.82,300,0.547,301,0.741,304,0.82,308,0.687,316,1.443,335,1.546,338,1.592,347,2.429,375,1.928,409,1.638,410,2.547,413,0.604,456,1.075,495,0.864,526,2.375,527,1.875,528,2.301,529,2.23,530,2.375,531,2.164,532,2.629,535,2.538,539,1.48,540,1.656,544,2.093,546,2.093,550,1.371,551,1.071,552,1.42,553,1.042,554,1.013,555,1.013,556,0.799,557,0.799,558,0.76,559,1.16,578,1.695,582,1.825,583,1.443,584,1.858,585,1.656,586,1.614,587,1.699,588,1.518,605,1.684,606,1.684,607,2.946,622,1.473,628,2.335,667,3.438,772,1.22,811,2.658,814,2.024,820,2.024,822,1.839,830,2.024,831,2.746,832,2.024,833,2.157,870,2.746,917,2.726,918,2.429,919,2.335,920,2.093,921,2.248,925,1.592,926,2.351,927,3.073,928,2.946,929,2.534,930,2.534,932,3.703,935,3.438,938,2.335,946,1.66,947,3.438,949,2.534,956,1.919,957,1.919,958,4.269,959,4.588,961,2.929,969,1.919,985,1.592,986,2.171,987,1.919,988,2.171,989,1.919,990,1.736,991,1.919,992,1.66,993,1.66,994,1.66,1001,2.78,1050,1.169,1051,1.66,1052,2.101,1053,1.42,1054,1.592,1055,1.283,1056,1.66,1057,1.66,1058,1.66,1060,3.552,1068,2.534,1069,2.78,1070,2.78,1071,2.78,1073,2.78,1074,3.103,1131,3.313,1254,2.572,1259,1.736,1409,2.572,1775,6.512,1776,7.15,1777,5.406,1778,5.406,1779,5.327,1780,5.327,1781,6.049,1782,5.327,1783,5.406,1784,4.458,1785,2.921,1786,2.921,1787,2.921,1788,2.921,1789,2.342,1790,2.921,1791,2.921,1792,2.921,1793,4.458,1794,2.921,1795,2.921,1796,2.921,1797,2.921,1798,2.921,1799,2.921,1800,2.921,1801,2.921,1802,2.921,1803,2.921,1804,2.921,1805,2.921,1806,2.921,1807,2.921,1808,2.921,1809,2.921,1810,2.921,1811,2.921,1812,6.049,1813,4.458,1814,2.921,1815,2.921,1816,2.921,1817,2.921,1818,2.921,1819,2.921,1820,2.921,1821,2.921,1822,2.921]],["title/components/ManagementClassOverviewComponent.html",[135,0.053,212,0.837]],["body/components/ManagementClassOverviewComponent.html",[3,0.096,4,0.088,5,0.08,9,0.113,10,0.217,11,1.584,13,0.992,16,0.926,24,0.812,27,1.343,29,1.183,30,0.01,31,0.361,32,0.24,33,1.009,46,1.319,47,1.379,63,0.519,65,0.834,69,1.73,84,1.138,85,0.454,93,0.918,95,1.018,96,0.789,98,0.856,101,0.096,102,0.989,103,0.789,104,0.953,112,0.809,115,0.834,125,0.713,133,0.005,134,0.005,135,0.072,136,0.644,137,0.95,138,0.551,140,0.678,141,0.879,142,0.32,144,0.678,145,1.45,146,1.195,147,0.51,148,0.689,149,0.812,150,0.644,153,0.791,156,0.678,165,0.678,166,1.354,167,0.879,168,0.678,169,1.31,170,0.678,171,0.678,172,0.644,173,0.974,174,0.678,175,0.644,176,0.678,177,0.644,178,0.644,179,0.678,180,0.644,181,0.628,182,0.678,183,0.628,184,1.354,185,0.644,186,0.678,187,0.926,188,0.866,189,0.678,190,0.628,191,0.678,192,0.644,193,1.611,194,0.644,195,0.678,196,0.644,197,0.644,198,1.584,199,0.644,200,0.678,201,0.644,202,0.508,203,0.644,204,0.644,205,0.678,206,0.644,207,0.581,208,0.678,209,0.644,210,0.678,211,0.644,212,1.245,213,0.678,214,0.644,215,0.678,216,0.644,217,0.661,218,0.678,219,0.644,220,0.678,221,0.644,222,0.678,223,0.644,224,0.644,225,0.644,226,0.644,227,0.644,228,0.678,229,0.644,230,0.644,231,0.644,232,0.508,233,1,234,0.628,235,0.566,236,0.678,237,0.596,238,0.678,239,0.644,240,0.644,241,0.644,242,0.678,243,0.644,244,0.661,245,0.644,246,0.644,247,0.644,248,0.644,249,0.678,250,0.644,251,0.678,252,0.678,253,0.596,254,0.644,255,0.678,256,0.678,260,1.052,261,1.692,262,1.879,275,2.423,276,1.93,277,2.074,278,1.917,281,3.533,282,1.804,289,1.218,294,2.322,296,1.879,299,0.942,300,0.628,301,0.851,303,1.757,304,0.942,305,1.384,306,1.427,308,0.789,309,1.906,312,1.102,313,1.102,314,2.519,315,1.828,316,1.73,318,2.13,321,1.102,322,1.102,324,1.575,328,2.695,336,2.59,337,2.59,385,3.084,408,1.266,409,1.797,410,2.667,537,1.649,539,1.608,540,1.774,556,0.918,557,0.918,558,0.873,559,1.286,578,1.687,582,1.983,583,1.73,584,1.997,585,1.774,586,1.73,587,1.82,588,1.82,605,1.83,606,1.83,751,1.575,763,1.757,767,2.962,772,1.354,785,1.828,786,1.828,787,1.828,833,2.312,870,3.557,895,1.473,917,1.691,918,2.695,919,2.59,926,1.921,1050,1.342,1052,2.519,1131,3.675,1138,1.757,1140,3.246,1141,2.758,1142,2.758,1143,2.758,1144,2.758,1145,2.758,1146,2.758,1147,2.758,1148,2.758,1149,2.758,1150,3.201,1151,3.201,1152,3.201,1154,2.695,1155,2.423,1160,2.092,1172,1.994,1173,2.695,1175,1.631,1176,1.994,1179,1.828,1180,1.994,1181,1.994,1182,2.939,1183,1.757,1184,1.994,1185,1.906,1186,1.828,1193,2.695,1194,2.695,1282,2.493,1283,2.811,1293,1.994,1296,2.092,1775,6.625,1823,7.275,1824,4.945,1825,4.945,1826,6.483,1827,4.945,1828,3.965,1829,4.945,1830,3.354,1831,3.354,1832,4.945,1833,3.354,1834,3.354,1835,4.945,1836,3.354,1837,3.354,1838,5.874,1839,3.354,1840,3.354,1841,4.945,1842,3.354,1843,3.354,1844,4.945,1845,4.945]],["title/interfaces/Member.html",[432,0.158,1846,2.589]],["body/interfaces/Member.html",[3,0.186,4,0.17,5,0.155,6,3.386,9,0.218,10,0.337,30,0.01,31,0.349,32,0.264,51,3.523,54,3.843,56,5.126,58,4.177,61,4.177,63,0.519,65,1.293,101,0.254,104,1.071,105,4.032,106,4.032,111,4.248,112,1.559,118,4.014,133,0.008,134,0.008,330,3.523,413,0.876,432,0.312,434,1.375,443,1.589,1846,4.555,1847,4.032,1848,4.032,1849,4.032]],["title/interfaces/MethodFault.html",[51,2.374,432,0.158]],["body/interfaces/MethodFault.html",[3,0.186,4,0.17,5,0.155,6,3.386,9,0.218,10,0.337,30,0.01,31,0.267,32,0.264,51,4.177,54,3.843,56,4.856,58,4.177,61,4.177,63,0.519,65,1.293,101,0.254,104,0.952,105,5.268,106,5.268,111,4.248,112,1.559,118,4.014,133,0.008,134,0.008,330,3.523,413,0.876,432,0.312,434,1.375,443,1.751,1846,3.843,1847,4.032,1848,4.032,1849,4.032]],["title/interfaces/Mgmgtclass.html",[432,0.158,917,2.197]],["body/interfaces/Mgmgtclass.html",[3,0.093,4,0.085,5,0.137,9,0.109,10,0.211,18,1.627,30,0.01,31,0.331,32,0.266,49,2.103,63,0.561,64,3.208,65,1.522,71,1.579,101,0.227,125,0.686,133,0.005,134,0.005,138,0.789,142,0.125,188,1.23,202,0.728,232,0.489,413,1.193,432,0.286,434,1.022,435,0.906,441,0.798,443,1.753,456,1.159,481,1.497,485,1.837,486,1.698,487,1.742,489,1.032,495,1.421,496,1.151,806,1.834,807,4.611,808,4.367,809,4.04,810,3.093,811,3.52,812,4.367,813,1.834,814,3.637,815,1.834,816,3.637,817,4.04,818,3.896,819,4.04,820,3.637,821,4.197,822,2.369,823,1.834,824,1.834,825,1.834,826,1.834,827,1.918,828,4.04,829,1.834,830,1.465,831,1.465,832,1.465,833,1.151,834,2.792,835,2.732,836,2.517,837,1.69,838,2.423,839,2.732,840,2.732,841,2.423,842,2.423,843,2.732,844,3.129,845,3.007,846,3.413,847,3.413,848,3.413,849,3.413,850,3.413,851,3.413,852,3.413,853,2.619,854,1.918,855,1.918,856,1.918,857,1.918,858,1.918,859,1.918,860,1.918,861,1.918,862,1.918,863,1.918,864,1.918,865,1.918,866,1.918,867,1.918,868,1.918,869,1.918,870,1.465,871,1.918,872,1.918,873,1.918,874,1.292,875,1.918,876,1.918,877,1.515,878,1.918,879,1.918,880,1.918,881,1.918,882,1.918,883,1.918,884,1.918,885,1.918,886,1.918,887,1.918,888,1.759,889,1.918,890,1.918,891,1.918,892,4.043,893,4.694,894,4.043,895,2.988,896,3.867,897,3.867,898,1.834,899,1.834,900,1.627,901,1.627,902,1.834,903,1.759,904,1.759,905,1.834,906,1.834,907,1.834,908,1.834,909,1.834,910,2.423,911,2.619,912,1.834,913,2.619,914,2.619,915,1.834,916,1.834,917,2.423,918,3.467,919,3.332,920,2.987,921,3.208,922,1.418,923,1.759]],["title/components/MkloadersComponent.html",[135,0.053,214,0.837]],["body/components/MkloadersComponent.html",[3,0.132,4,0.121,5,0.11,9,0.155,10,0.272,11,1.573,16,1.157,24,1.016,27,1.279,29,0.84,30,0.01,31,0.289,32,0.193,33,0.717,46,1.128,47,1.259,69,1.229,84,1.142,85,0.624,93,1.26,95,1.397,98,1.071,101,0.132,102,0.522,104,0.867,115,1.043,133,0.007,134,0.007,135,0.085,136,0.884,137,1.188,138,0.756,140,0.931,141,1.099,142,0.311,144,0.931,145,1.473,146,1.213,147,0.637,148,0.862,149,1.016,150,0.884,153,0.989,156,0.931,165,0.931,166,1.307,167,1.099,168,0.931,169,1.508,170,0.931,171,0.931,172,0.884,173,1.218,174,0.931,175,0.884,176,0.931,177,0.884,178,0.884,179,0.931,180,0.884,181,0.862,182,0.931,183,0.862,184,1.307,185,0.884,186,0.931,187,0.862,188,0.679,189,0.931,190,0.862,191,0.931,192,0.884,193,1.722,194,0.884,195,0.931,196,0.884,197,0.884,198,1.704,199,0.884,200,0.931,201,0.884,202,0.698,203,0.884,204,0.884,205,0.931,206,0.884,207,0.797,208,0.931,209,0.884,210,0.931,211,0.884,212,0.884,213,0.931,214,1.433,215,0.931,216,0.884,217,0.907,218,0.931,219,0.884,220,0.931,221,0.884,222,0.931,223,0.884,224,0.884,225,0.884,226,0.884,227,0.884,228,0.931,229,0.884,230,0.884,231,0.884,232,0.698,233,1.25,234,0.862,235,0.777,236,0.931,237,0.818,238,0.931,239,0.884,240,0.884,241,0.884,242,0.931,243,0.884,244,0.907,245,0.884,246,0.884,247,0.884,248,0.884,249,0.931,250,0.884,251,0.931,252,0.931,253,0.818,254,0.884,255,0.931,256,0.931,260,1.315,262,2.233,276,2.293,277,2.387,282,1.975,289,0.955,296,2.233,299,1.293,300,0.862,308,1.083,312,1.513,313,1.513,316,1.229,318,1.513,321,1.513,322,1.513,375,1.642,403,3.422,408,1.738,409,1.934,527,2.421,537,1.96,539,1.911,540,2.042,556,1.26,557,1.26,558,1.198,559,1.609,578,1.198,583,1.229,584,1.816,585,1.26,586,1.229,587,1.293,588,1.293,772,1.692,1392,4.054,1766,6.571,1850,4.054,1851,6.183,1852,6.183,1853,7.462,1854,6.183,1855,4.604,1856,4.604,1857,4.604,1858,4.054,1859,4.604]],["title/components/MultiSelectComponent.html",[135,0.053,216,0.837]],["body/components/MultiSelectComponent.html",[3,0.091,4,0.084,5,0.076,9,0.107,10,0.209,13,2.097,16,0.89,27,1.401,29,1.41,30,0.01,31,0.33,32,0.253,33,1.203,46,1.457,47,1.452,63,0.492,65,0.802,74,5.463,84,1.118,85,0.431,96,1.118,98,1.094,101,0.091,102,0.361,103,0.748,104,1.015,107,2.964,112,1.146,115,0.96,125,1.343,133,0.005,134,0.005,135,0.07,136,0.611,137,0.913,138,0.522,140,0.643,141,0.845,142,0.332,144,0.643,145,1.446,146,1.19,147,0.49,148,1.077,149,0.781,150,0.611,153,0.76,156,0.643,165,0.643,166,0.89,167,0.845,168,0.643,169,1.277,170,0.643,171,0.643,172,0.611,173,0.937,174,0.643,175,0.611,176,0.643,177,0.611,178,0.611,179,0.643,180,0.611,181,0.595,182,0.643,183,0.595,184,1.376,185,0.611,186,0.643,187,0.595,188,0.469,189,0.643,190,0.89,191,0.643,192,0.611,193,1.59,194,0.611,195,0.643,196,0.611,197,0.611,198,1.562,199,0.611,200,0.643,201,0.611,202,0.482,203,0.611,204,0.611,205,0.643,206,0.611,207,0.551,208,0.643,209,0.611,210,0.643,211,0.611,212,0.611,213,0.643,214,0.611,215,0.643,216,1.452,217,1.574,218,0.643,219,0.611,220,0.643,221,0.611,222,0.643,223,0.611,224,0.611,225,0.611,226,0.611,227,0.611,228,0.643,229,0.611,230,0.611,231,0.611,232,0.482,233,0.961,234,0.595,235,0.536,236,0.643,237,0.565,238,0.643,239,0.611,240,0.611,241,0.611,242,0.643,243,0.611,244,0.627,245,0.611,246,0.611,247,0.611,248,0.611,249,0.643,250,0.611,251,1.15,252,0.643,253,0.565,254,0.611,255,0.643,256,0.643,260,1.011,261,1.64,278,1.867,281,1.733,289,1.631,298,1.546,299,0.893,300,0.595,301,0.807,302,1.603,306,1.353,315,2.59,324,1.493,335,1.649,413,0.771,527,1.974,529,2.348,530,2.501,531,2.278,532,2.768,551,1.166,552,1.546,553,1.134,554,1.103,555,1.103,577,3.123,605,1.773,606,1.773,710,2.363,769,3.235,772,1.301,791,2.363,793,3.235,802,2.964,803,6.246,928,3.102,958,2.768,959,1.665,985,1.733,990,5.094,1183,2.489,1213,2.59,1520,5.012,1521,5.012,1522,4.185,1523,5.561,1524,5.012,1525,5.561,1526,5.012,1528,5.012,1529,5.012,1530,5.012,1535,5.953,1539,5.012,1540,5.012,1541,4.185,1544,4.185,1545,4.185,1546,4.185,1547,4.185,1549,4.185,1551,5.953,1560,4.185,1562,5.953,1563,4.185,1565,4.185,1567,4.185,1571,4.185,1572,5.064,1574,4.23,1575,4.564,1576,4.185,1578,2.8,1582,5.024,1589,2.8,1590,2.8,1591,2.8,1592,5.012,1608,3.532,1636,5.012,1860,7.546,1861,2.8,1862,4.753,1863,5.692,1864,3.963,1865,3.963,1866,3.963,1867,5.692,1868,4.753,1869,4.753,1870,5.692,1871,5.692,1872,6.316,1873,4.753,1874,4.753,1875,5.692,1876,3.18,1877,3.18,1878,3.18,1879,4.753,1880,7.351,1881,3.18,1882,4.753,1883,6.316,1884,3.18,1885,3.18,1886,3.18,1887,3.18,1888,3.18,1889,3.18,1890,3.18,1891,4.753,1892,3.18,1893,3.18,1894,3.18,1895,3.18,1896,3.18,1897,3.18,1898,3.18,1899,3.18,1900,3.18,1901,3.18,1902,4.753,1903,4.753,1904,3.18,1905,3.18,1906,3.18,1907,3.18,1908,3.18,1909,3.18,1910,3.18,1911,3.18,1912,2.55,1913,3.18,1914,3.18,1915,3.18,1916,3.18,1917,3.18,1918,3.18,1919,3.18,1920,3.18,1921,3.18,1922,3.18,1923,4.753,1924,4.753]],["title/components/NavbarComponent.html",[135,0.053,219,0.837]],["body/components/NavbarComponent.html",[3,0.112,4,0.102,5,0.093,9,0.131,10,0.241,11,1.537,16,1.028,24,0.902,27,1.353,29,0.707,30,0.01,31,0.264,32,0.244,33,0.604,46,1.002,47,1.17,63,0.33,84,1.157,85,0.526,93,1.062,95,1.177,98,1.104,101,0.112,102,0.44,104,0.971,110,3.426,115,1.076,125,1.356,133,0.006,134,0.006,135,0.078,136,0.745,137,1.055,138,0.637,139,1.65,140,0.784,141,0.976,142,0.323,144,0.784,145,1.461,146,1.206,147,0.566,148,0.766,149,0.902,150,0.745,151,2.073,153,0.878,156,0.784,165,0.784,166,1.028,167,0.976,168,0.784,169,1.402,170,0.784,171,0.784,172,0.745,173,1.082,174,0.784,175,0.745,176,0.784,177,0.745,178,0.745,179,0.784,180,0.745,181,0.726,182,0.784,183,0.726,184,1.194,185,0.745,186,0.784,187,0.726,188,0.572,189,0.784,190,0.726,191,0.784,192,0.745,193,1.664,194,0.745,195,0.784,196,0.745,197,0.745,198,1.642,199,0.745,200,0.784,201,0.745,202,0.588,203,0.745,204,0.745,205,0.784,206,0.745,207,0.672,208,0.784,209,0.745,210,0.784,211,0.745,212,0.745,213,0.784,214,0.745,215,0.784,216,0.745,217,0.764,218,0.784,219,1.332,220,0.784,221,0.745,222,0.784,223,0.745,224,0.745,225,0.745,226,0.745,227,0.745,228,0.784,229,0.745,230,0.745,231,0.745,232,0.588,233,1.11,234,0.726,235,0.654,236,0.784,237,0.689,238,0.784,239,0.745,240,0.745,241,0.745,242,0.784,243,0.745,244,0.764,245,0.745,246,0.745,247,0.745,248,0.745,249,0.784,250,0.745,251,0.784,252,0.784,253,0.689,254,0.745,255,0.784,256,0.784,260,1.168,262,2.04,267,3.216,269,3.791,271,4.191,276,2.095,277,2.219,282,1.926,289,1.322,296,2.04,298,1.886,300,0.726,301,0.984,304,1.089,308,0.912,312,1.274,313,1.274,318,1.804,319,3.11,321,1.274,322,1.274,346,2.7,393,2.882,399,4.829,403,5.649,409,1.679,410,2.937,413,0.744,418,3.426,441,1.359,537,2.135,539,1.746,540,1.898,556,1.062,557,1.062,558,1.009,578,1.009,583,1.035,584,1.429,632,3.11,633,4.082,634,3.11,674,4.836,727,3.415,838,2.769,1116,4.082,1365,3.415,1501,5.87,1626,5.616,1657,3.415,1658,3.415,1698,3.415,1699,3.415,1733,3.415,1734,3.415,1739,3.415,1741,4.836,1748,5.616,1757,3.415,1925,3.415,1926,6.936,1927,5.114,1928,6.377,1929,5.493,1930,7.321,1931,7.816,1932,7.602,1933,5.493,1934,6.377,1935,3.878,1936,6.936,1937,6.377,1938,6.936,1939,5.493,1940,5.493,1941,6.377,1942,3.878,1943,3.878,1944,3.878,1945,3.878,1946,3.878,1947,3.878,1948,3.878,1949,3.878,1950,3.415,1951,3.878,1952,3.878,1953,3.878,1954,3.878,1955,3.878,1956,3.878,1957,3.878,1958,5.493,1959,3.878,1960,5.493,1961,3.878,1962,3.878,1963,3.878,1964,3.878,1965,3.878,1966,5.493,1967,3.878,1968,3.878,1969,5.493,1970,3.878]],["title/interfaces/NetworkInterface.html",[432,0.158,853,2.374]],["body/interfaces/NetworkInterface.html",[3,0.093,4,0.085,5,0.137,9,0.109,10,0.211,18,3.207,30,0.01,31,0.314,32,0.27,49,2.089,63,0.561,64,1.626,65,1.522,71,1.578,101,0.227,125,0.686,133,0.005,134,0.005,138,0.789,142,0.125,188,1.22,202,0.728,232,0.489,413,1.193,432,0.286,434,1.021,435,0.906,441,0.798,443,1.753,456,1.159,481,1.496,485,1.836,486,1.697,487,1.742,489,1.032,495,1.42,496,1.15,806,1.833,807,4.511,808,4.136,809,3.827,810,3.093,811,3.334,812,4.136,813,1.833,814,3.445,815,1.833,816,3.445,817,3.827,818,3.69,819,3.827,820,3.445,821,3.975,822,2.368,823,1.833,824,1.833,825,1.833,826,1.833,827,1.917,828,3.827,829,1.833,830,1.464,831,1.464,832,1.464,833,1.15,834,2.791,835,3.866,836,2.516,837,1.689,838,2.422,839,2.73,840,2.73,841,2.422,842,2.422,843,2.73,844,3.128,845,3.006,846,4.238,847,3.412,848,3.412,849,3.412,850,3.412,851,3.412,852,3.412,853,3.128,854,3.781,855,3.781,856,3.781,857,3.781,858,3.781,859,3.781,860,3.781,861,3.781,862,3.781,863,3.781,864,3.781,865,3.781,866,3.781,867,3.781,868,3.781,869,3.781,870,2.887,871,3.781,872,3.781,873,3.781,874,1.291,875,1.917,876,1.917,877,1.514,878,1.917,879,1.917,880,1.917,881,1.917,882,1.917,883,1.917,884,1.917,885,1.917,886,1.917,887,1.917,888,1.758,889,1.917,890,1.917,891,1.917,892,4.043,893,4.693,894,4.043,895,2.988,896,3.866,897,3.866,898,1.833,899,1.833,900,1.626,901,1.626,902,1.833,903,1.758,904,1.758,905,1.833,906,1.833,907,1.833,908,1.833,909,1.833,910,2.422,911,2.618,912,1.833,913,2.618,914,2.618,915,1.833,916,1.833,917,1.626,918,1.758,919,1.689,920,1.514,921,1.626,922,1.417,923,1.758]],["title/components/NotFoundComponent.html",[135,0.053,221,0.837]],["body/components/NotFoundComponent.html",[3,0.149,4,0.136,5,0.124,24,1.214,27,0.85,30,0.01,31,0.276,84,1.002,85,0.701,98,1.156,101,0.149,102,0.587,104,0.643,133,0.007,134,0.007,135,0.09,136,0.994,137,1.283,138,0.85,139,2.202,140,1.046,141,1.187,142,0.259,144,1.046,145,1.479,146,1.218,147,0.688,148,0.931,149,1.097,150,0.994,151,2.52,153,1.068,156,1.046,165,1.046,166,1.25,167,1.187,168,1.046,169,1.579,170,1.046,171,1.046,172,0.994,173,1.316,174,1.046,175,0.994,176,1.046,177,0.994,178,0.994,179,1.046,180,0.994,181,0.969,182,1.046,183,0.969,184,1.384,185,0.994,186,1.046,187,0.969,188,0.763,189,1.046,190,0.969,191,1.046,192,0.994,193,1.758,194,0.994,195,1.046,196,0.994,197,0.994,198,1.743,199,0.994,200,1.046,201,0.994,202,0.784,203,0.994,204,0.994,205,1.046,206,0.994,207,0.896,208,1.046,209,0.994,210,1.046,211,0.994,212,0.994,213,1.046,214,0.994,215,1.046,216,0.994,217,1.02,218,1.046,219,0.994,220,1.046,221,1.5,222,1.046,223,0.994,224,0.994,225,0.994,226,0.994,227,0.994,228,1.046,229,0.994,230,0.994,231,0.994,232,0.784,233,1.35,234,0.969,235,0.873,236,1.046,237,0.92,238,1.046,239,0.994,240,0.994,241,0.994,242,1.046,243,0.994,244,1.02,245,0.994,246,0.994,247,0.994,248,0.994,249,1.046,250,0.994,251,1.046,252,1.046,253,0.92,254,0.994,255,1.046,256,1.046,304,1.453,369,6.264,418,4.165,481,2.08,756,4.649,1708,4.649,1927,5.928,1971,5.88,1972,5.88,1973,4.557,1974,7.393,1975,6.678,1976,5.176,1977,6.678]],["title/interfaces/ObjectNode.html",[432,0.158,1215,3.033]],["body/interfaces/ObjectNode.html",[3,0.154,4,0.141,5,0.128,9,0.181,10,0.3,11,1.382,24,0.882,30,0.01,31,0.359,32,0.235,33,1.233,44,2.926,47,0.905,49,1.816,63,0.476,84,1.108,85,0.727,96,1.262,101,0.154,102,0.609,103,1.769,104,1.038,108,2.284,112,1.649,115,1.269,133,0.007,134,0.007,135,0.084,141,0.954,142,0.208,145,0.858,146,0.707,147,0.553,148,0.748,149,0.882,151,2.026,153,0.858,207,0.93,253,0.954,254,1.445,260,1.141,261,1.969,267,3.447,269,4.063,278,1.587,300,1.005,301,1.362,335,1.862,413,0.727,432,0.248,434,1.141,443,1.642,793,3.885,1055,2.358,1155,2.215,1195,4.759,1196,3.989,1197,3.527,1198,3.989,1199,3.348,1200,4.973,1201,4.691,1202,5.1,1203,4.263,1204,3.348,1205,4.263,1206,4.263,1207,5.482,1208,3.348,1209,4.263,1210,4.263,1211,4.063,1212,4.063,1213,3.725,1214,5.457,1215,5.914,1216,4.304,1217,4.304,1218,4.304,1219,4.304,1220,4.263,1221,4.691,1222,3.348,1223,4.263,1224,3.348,1225,4.304,1226,4.304,1227,3.348,1228,3.348,1229,4.304,1230,3.348,1231,3.348,1232,3.348,1233,4.304,1234,4.304,1235,4.304,1236,5.482,1237,4.304,1238,4.304,1239,5.482,1240,4.304,1241,4.304,1242,3.191,1243,4.304]],["title/interfaces/OsBreedFlatNode.html",[432,0.158,1978,2.863]],["body/interfaces/OsBreedFlatNode.html",[3,0.124,4,0.114,5,0.103,9,0.145,10,0.26,11,1.468,24,0.708,30,0.01,31,0.178,32,0.211,33,0.671,44,2.35,47,1.225,63,0.473,65,1.358,69,1.578,84,1.187,85,0.584,93,1.18,95,1.308,96,1.849,101,0.124,102,0.489,103,1.014,104,0.976,108,1.835,112,2.049,115,1.225,125,1.257,133,0.006,134,0.006,135,0.072,141,0.766,142,0.167,145,0.69,146,0.779,147,0.444,148,0.941,149,0.708,153,0.69,166,1.107,167,1.051,207,1.169,237,0.766,260,0.917,261,1.704,262,1.892,275,1.779,276,1.417,277,1.379,278,1.275,282,1.628,296,1.892,298,2.097,300,0.807,301,1.094,302,2.174,305,1.779,308,1.014,312,1.417,313,1.417,314,1.675,316,1.801,318,1.943,321,1.417,322,1.417,335,1.496,409,1.548,413,0.915,432,0.244,434,0.917,443,1.63,537,1.661,539,1.18,540,1.619,556,1.18,557,1.18,558,1.122,559,1.538,578,1.538,583,1.578,584,1.889,585,1.619,586,1.578,587,1.661,588,1.661,605,1.842,606,1.842,608,4.117,611,3.002,620,3.002,621,4.117,624,4.699,631,3.886,772,1.18,877,2.777,1053,2.097,1055,2.598,1088,2.689,1140,2.777,1141,2.777,1142,2.777,1143,2.777,1144,2.777,1145,2.777,1146,2.777,1147,2.777,1148,2.777,1149,2.777,1155,1.779,1199,3.688,1200,4.829,1201,5.02,1202,5.187,1203,3.688,1204,2.689,1205,2.689,1206,3.688,1208,2.689,1209,2.689,1210,2.689,1211,2.563,1212,2.563,1213,2.35,1214,5.02,1220,3.688,1221,4.209,1222,2.689,1223,3.688,1224,2.689,1227,2.689,1228,2.689,1230,2.689,1231,2.689,1232,3.688,1242,2.563,1755,3.002,1864,4.117,1865,4.117,1866,4.117,1978,4.772,1979,3.002,1980,4.394,1981,4.394,1982,4.394,1983,3.886,1984,4.394,1985,3.204,1986,4.394,1987,4.394,1988,4.394,1989,4.394,1990,4.394,1991,4.435,1992,4.435,1993,3.204,1994,3.204,1995,3.204,1996,4.394,1997,4.394,1998,3.204,1999,3.204,2000,3.002,2001,3.204,2002,3.204,2003,4.394,2004,3.204,2005,3.204,2006,4.394,2007,3.204,2008,3.204,2009,3.204,2010,4.394,2011,3.204,2012,4.394,2013,3.204,2014,4.394,2015,3.204,2016,3.204,2017,3.204,2018,3.204,2019,3.204,2020,3.204,2021,3.204,2022,3.204,2023,3.204,2024,4.394,2025,3.204,2026,3.204,2027,3.204]],["title/interfaces/OsNode.html",[432,0.158,1992,2.863]],["body/interfaces/OsNode.html",[3,0.124,4,0.114,5,0.103,9,0.145,10,0.26,11,1.468,24,0.708,30,0.01,31,0.244,32,0.185,33,1.131,44,2.35,47,1.225,63,0.473,65,1.358,69,1.578,84,1.187,85,0.584,93,1.18,95,1.308,96,1.849,101,0.124,102,0.489,103,1.014,104,0.976,108,1.835,112,2.066,115,1.225,125,1.257,133,0.006,134,0.006,135,0.072,141,0.766,142,0.167,145,0.69,146,0.779,147,0.444,148,0.941,149,0.708,153,0.69,166,1.107,167,1.051,207,1.169,237,0.766,260,0.917,261,1.704,262,1.892,275,1.779,276,1.417,277,1.379,278,1.275,282,1.628,296,1.892,298,2.097,300,0.807,301,1.094,302,2.174,305,1.779,308,1.014,312,1.417,313,1.417,314,1.675,316,1.801,318,1.943,321,1.417,322,1.417,335,1.496,409,1.548,413,0.584,432,0.244,434,0.917,443,1.506,537,1.661,539,1.18,540,1.619,556,1.18,557,1.18,558,1.122,559,1.538,578,1.538,583,1.578,584,1.889,585,1.619,586,1.578,587,1.661,588,1.661,605,1.842,606,1.842,608,4.117,611,3.002,620,3.002,621,4.117,624,4.699,631,3.886,772,1.18,877,2.777,1053,2.097,1055,1.894,1088,2.689,1140,2.777,1141,2.777,1142,2.777,1143,2.777,1144,2.777,1145,2.777,1146,2.777,1147,2.777,1148,2.777,1149,2.777,1155,1.779,1199,2.689,1200,4.829,1201,4.209,1202,4.746,1203,3.688,1204,2.689,1205,2.689,1206,3.688,1208,2.689,1209,3.688,1210,3.688,1211,3.515,1212,3.515,1213,3.223,1214,5.299,1220,3.688,1221,4.209,1222,2.689,1223,3.688,1224,2.689,1227,2.689,1228,2.689,1230,2.689,1231,2.689,1232,3.688,1242,2.563,1755,3.002,1864,4.117,1865,4.117,1866,4.117,1978,4.435,1979,3.002,1980,4.394,1981,4.394,1982,4.394,1983,3.886,1984,4.394,1985,3.204,1986,4.394,1987,4.394,1988,4.394,1989,4.394,1990,4.394,1991,4.435,1992,5.165,1993,3.204,1994,3.204,1995,3.204,1996,4.394,1997,4.394,1998,3.204,1999,3.204,2000,3.002,2001,3.204,2002,3.204,2003,4.394,2004,3.204,2005,3.204,2006,4.394,2007,3.204,2008,3.204,2009,3.204,2010,4.394,2011,3.204,2012,4.394,2013,3.204,2014,4.394,2015,3.204,2016,3.204,2017,3.204,2018,3.204,2019,3.204,2020,3.204,2021,3.204,2022,3.204,2023,3.204,2024,4.394,2025,3.204,2026,3.204,2027,3.204]],["title/interfaces/Package.html",[432,0.158,922,1.914]],["body/interfaces/Package.html",[3,0.092,4,0.084,5,0.136,9,0.107,10,0.209,18,1.608,30,0.01,31,0.33,32,0.269,49,2.101,63,0.561,64,1.608,65,1.515,71,1.565,101,0.226,125,0.678,133,0.005,134,0.005,138,1.112,142,0.124,188,1.227,202,0.722,232,0.483,413,1.186,432,0.285,434,1.013,435,0.895,441,1.564,443,1.75,456,1.149,481,2.108,485,1.824,486,1.686,487,1.73,489,1.02,495,1.408,496,1.137,806,1.812,807,4.596,808,4.355,809,4.03,810,3.075,811,3.511,812,4.355,813,1.812,814,3.628,815,1.812,816,3.628,817,4.03,818,3.886,819,4.03,820,3.628,821,4.185,822,2.352,823,1.812,824,1.812,825,1.812,826,1.812,827,1.895,828,4.03,829,1.812,830,1.447,831,1.447,832,1.447,833,1.137,834,2.772,835,2.707,836,2.495,837,1.67,838,2.402,839,2.707,840,2.707,841,2.402,842,2.402,843,2.707,844,3.107,845,2.986,846,3.389,847,3.389,848,3.389,849,3.389,850,3.389,851,3.389,852,3.389,853,2.596,854,1.895,855,1.895,856,1.895,857,1.895,858,1.895,859,1.895,860,1.895,861,1.895,862,1.895,863,1.895,864,1.895,865,1.895,866,1.895,867,1.895,868,1.895,869,1.895,870,1.447,871,1.895,872,1.895,873,1.895,874,1.276,875,1.895,876,1.895,877,1.497,878,1.895,879,1.895,880,1.895,881,1.895,882,1.895,883,1.895,884,1.895,885,1.895,886,1.895,887,1.895,888,1.738,889,1.895,890,1.895,891,1.895,892,4.023,893,4.68,894,4.023,895,2.973,896,3.847,897,3.847,898,1.812,899,1.812,900,1.608,901,1.608,902,1.812,903,1.738,904,1.738,905,1.812,906,1.812,907,1.812,908,1.812,909,1.812,910,3.413,911,3.689,912,1.812,913,3.689,914,3.689,915,1.812,916,1.812,917,1.608,918,1.738,919,1.67,920,1.497,921,1.608,922,2.093,923,3.447]],["title/components/PackageEditComponent.html",[135,0.053,223,0.837]],["body/components/PackageEditComponent.html",[3,0.084,4,0.077,5,0.07,9,0.099,10,0.196,11,1.489,13,1.599,16,0.835,24,0.733,27,1.32,29,0.533,30,0.01,31,0.336,32,0.189,33,0.455,46,1.253,47,1.339,63,0.392,69,1.615,71,0.961,84,1.128,85,0.396,96,0.688,98,0.773,101,0.084,102,0.332,103,1.049,104,1.114,108,1.899,115,1.499,125,1.605,133,0.005,134,0.005,135,0.066,136,0.562,137,0.857,138,1.071,140,0.591,141,0.793,142,0.315,144,0.591,145,1.438,146,1.185,147,0.46,148,1.239,149,0.733,150,0.562,153,0.713,156,0.591,165,0.591,166,1.286,167,0.793,168,0.591,169,1.223,170,0.591,171,0.591,172,0.562,173,0.879,174,0.591,175,0.562,176,0.591,177,0.562,178,0.562,179,0.591,180,0.562,181,0.835,182,0.591,183,0.547,184,1.013,185,0.562,186,0.591,187,0.547,188,0.431,189,0.591,190,0.547,191,0.591,192,0.562,193,1.557,194,0.562,195,0.591,196,0.562,197,0.562,198,1.526,199,0.562,200,0.591,201,0.562,202,0.443,203,0.562,204,0.562,205,0.591,206,0.562,207,0.506,208,0.591,209,0.562,210,0.591,211,0.562,212,0.562,213,0.591,214,0.562,215,0.591,216,1.163,217,0.576,218,0.591,219,0.562,220,0.591,221,0.562,222,0.591,223,1.163,224,0.562,225,0.562,226,0.562,227,0.562,228,0.591,229,0.562,230,0.562,231,0.562,232,0.443,233,0.902,234,0.547,235,0.493,236,0.591,237,0.52,238,0.591,239,0.562,240,0.562,241,0.562,242,0.591,243,0.562,244,0.576,245,0.562,246,0.562,247,0.562,248,0.562,249,0.591,250,0.562,251,0.591,252,0.591,253,0.52,254,0.562,255,0.591,256,0.591,260,0.949,261,1.559,278,1.789,282,1.723,289,1.121,299,0.821,300,0.547,301,0.742,304,0.821,308,0.688,316,1.443,335,1.548,338,1.593,347,2.431,375,1.929,409,1.639,410,2.548,413,0.605,441,1.497,456,1.076,481,1.885,526,2.376,527,1.876,528,2.302,529,2.232,530,2.376,531,2.165,532,2.63,535,2.54,539,1.481,540,1.657,544,2.095,546,2.095,550,1.373,551,1.072,552,1.422,553,1.043,554,1.014,555,1.014,556,0.8,557,0.8,558,0.761,559,1.161,578,1.696,582,1.826,583,1.443,584,1.859,585,1.657,586,1.615,587,1.7,588,1.519,605,1.685,606,1.685,607,2.948,622,1.474,628,2.336,667,3.44,772,1.221,811,2.659,814,2.025,820,2.025,822,1.841,830,2.025,831,2.747,832,2.025,833,2.158,910,3.052,911,3.299,913,3.299,914,3.299,922,3.44,923,3.299,925,1.593,926,2.352,927,3.075,928,2.948,929,2.536,930,2.536,932,3.705,935,3.44,938,2.336,946,1.662,947,3.44,949,2.536,956,1.921,957,1.921,958,4.316,959,4.642,961,2.932,970,1.921,985,1.593,989,1.921,990,1.738,991,1.921,992,1.662,993,1.662,994,1.662,1001,2.782,1050,1.17,1051,1.662,1052,2.102,1053,1.422,1054,1.593,1055,1.284,1056,1.662,1057,1.662,1058,1.662,1060,3.555,1068,2.536,1069,2.782,1070,2.782,1071,2.782,1073,2.782,1074,3.106,1255,2.575,1256,2.036,1259,1.738,1402,2.575,2028,7.152,2029,5.409,2030,6.053,2031,6.053,2032,6.053,2033,6.053,2034,5.409,2035,4.461,2036,2.924,2037,2.924,2038,2.924,2039,2.924,2040,2.924,2041,2.924,2042,2.924,2043,4.461,2044,2.924,2045,2.924,2046,2.924,2047,2.924,2048,2.924,2049,2.924,2050,2.924,2051,2.924,2052,2.924,2053,2.924,2054,2.924,2055,2.924,2056,2.924,2057,2.924,2058,2.924,2059,2.924,2060,2.924,2061,2.924,2062,2.924,2063,2.924,2064,5.409,2065,2.924,2066,2.924,2067,2.924,2068,2.924,2069,2.924]],["title/components/PackageOverviewComponent.html",[135,0.053,224,0.837]],["body/components/PackageOverviewComponent.html",[3,0.099,4,0.091,5,0.082,9,0.116,10,0.221,11,1.594,13,1.016,16,0.943,24,0.827,27,1.35,29,1.197,30,0.01,31,0.359,32,0.241,33,1.021,46,1.331,47,1.386,63,0.521,65,0.849,69,1.751,84,1.143,85,0.466,93,0.941,95,1.043,96,0.809,98,0.872,101,0.099,102,0.39,103,0.809,104,0.96,112,0.829,115,0.849,125,0.731,133,0.005,134,0.005,135,0.073,136,0.66,137,0.967,138,0.565,140,0.695,141,0.895,142,0.322,144,0.695,145,1.452,146,1.196,147,0.519,148,0.702,149,0.827,150,0.66,153,0.805,156,0.695,165,0.695,166,1.366,167,0.895,168,0.695,169,1.326,170,0.695,171,0.695,172,0.66,173,0.992,174,0.695,175,0.66,176,0.695,177,0.66,178,0.66,179,0.695,180,0.66,181,0.644,182,0.695,183,0.644,184,1.366,185,0.66,186,0.695,187,0.943,188,0.878,189,0.695,190,0.644,191,0.695,192,0.66,193,1.62,194,0.66,195,0.695,196,0.66,197,0.66,198,1.594,199,0.66,200,0.695,201,0.66,202,0.521,203,0.66,204,0.66,205,0.695,206,0.66,207,0.595,208,0.695,209,0.66,210,0.695,211,0.66,212,0.66,213,0.695,214,0.66,215,0.695,216,0.66,217,0.677,218,0.695,219,0.66,220,0.695,221,0.66,222,0.695,223,0.66,224,1.26,225,0.66,226,0.66,227,0.66,228,0.695,229,0.66,230,0.66,231,0.66,232,0.521,233,1.018,234,0.644,235,0.58,236,0.695,237,0.611,238,0.695,239,0.66,240,0.66,241,0.66,242,0.695,243,0.66,244,0.677,245,0.66,246,0.66,247,0.66,248,0.66,249,0.695,250,0.66,251,0.695,252,0.695,253,0.611,254,0.66,255,0.695,256,0.695,260,1.071,261,1.717,262,1.906,275,2.458,276,1.958,277,2.098,278,1.94,281,3.575,282,1.818,289,1.235,294,2.364,296,1.906,299,0.965,300,0.644,301,0.872,303,1.801,304,0.965,305,1.418,306,1.463,308,0.809,309,1.954,312,1.129,313,1.129,314,2.549,315,1.874,316,1.751,318,2.155,321,1.129,322,1.129,324,1.614,328,2.744,336,2.637,337,2.637,408,1.298,409,1.809,410,2.688,441,1.623,537,1.673,539,1.631,540,1.796,556,0.941,557,0.941,558,0.894,559,1.31,578,1.707,582,2.011,583,1.751,584,2.011,585,1.796,586,1.751,587,1.842,588,1.842,605,1.856,606,1.856,751,1.614,763,1.801,767,3.005,772,1.378,785,1.874,786,1.874,787,1.874,833,2.34,895,1.51,921,2.539,922,3.312,923,3.575,926,1.957,1050,1.376,1052,2.549,1138,1.801,1140,3.279,1141,2.798,1142,2.798,1143,2.798,1144,2.798,1145,2.798,1146,2.798,1147,2.798,1148,2.798,1149,2.798,1150,3.248,1151,3.248,1152,3.248,1154,2.744,1155,2.458,1160,2.144,1171,3.309,1172,2.044,1173,2.744,1175,1.672,1176,2.044,1179,1.874,1180,2.044,1181,2.044,1182,2.993,1183,1.801,1184,2.044,1185,1.954,1186,1.874,1193,2.744,1194,2.744,1282,2.539,1283,2.862,1289,2.393,1290,2.393,1292,2.393,1293,2.044,1294,2.393,1295,2.393,1296,2.144,1299,2.144,2070,7.308,2071,5.036,2072,5.036,2073,6.56,2074,5.036,2075,5.036,2076,3.027,2077,5.036,2078,5.036,2079,5.959,2080,3.438,2081,3.438,2082,5.036,2083,3.438,2084,3.438,2085,5.036,2086,5.036]],["title/interfaces/PageInfo.html",[432,0.158,499,1.854]],["body/interfaces/PageInfo.html",[3,0.145,4,0.173,5,0.12,9,0.169,10,0.288,30,0.01,31,0.301,32,0.27,49,1.503,63,0.555,65,1.411,101,0.256,133,0.007,134,0.007,142,0.195,147,0.518,163,2.6,291,2.789,292,2.209,293,2.209,307,1.793,413,1.189,432,0.322,433,2.14,434,1.393,435,1.412,436,2.209,437,2.282,438,2.282,439,2.282,440,2.282,441,1.803,442,2.14,443,1.9,444,2.282,445,2.282,446,2.14,447,2.282,448,2.282,449,2.282,450,2.282,451,2.074,452,2.074,453,2.012,454,2.833,455,2.012,456,1.213,457,2.209,458,2.209,459,2.209,460,2.074,461,2.14,462,2.14,463,2.879,464,2.14,465,2.074,466,2.209,467,2.209,468,2.209,469,2.209,470,2.209,471,2.209,472,2.209,473,2.209,474,2.209,475,2.209,476,2.209,477,2.209,478,2.209,479,2.209,480,2.074,481,1.566,482,2.209,483,2.209,484,2.209,485,1.608,486,1.486,487,1.526,488,2.074,489,1.608,490,2.209,491,2.209,492,2.14,493,2.282,494,2.14,495,1.486,496,1.793,497,2.14,498,2.209,499,3.288,500,3.288,501,3.507,502,3.507,503,3.507,504,3.507,505,3.507,506,3.507,507,3.507,508,3.507,509,3.507,510,3.31,511,3.31,512,3.203,513,3.31,514,3.31,515,2.282,516,2.074,517,2.209,518,2.209,519,2.209,520,2.282,521,2.209,522,2.209]],["title/interfaces/PagesItemsResult.html",[432,0.158,497,1.854]],["body/interfaces/PagesItemsResult.html",[3,0.154,4,0.179,5,0.128,9,0.18,10,0.299,30,0.01,31,0.31,32,0.213,49,1.813,63,0.556,65,1.377,101,0.258,133,0.007,134,0.007,142,0.207,147,0.551,163,1.905,291,2.9,292,2.347,293,2.347,307,1.905,413,1.199,432,0.324,433,2.274,434,1.449,435,1.5,436,2.347,437,2.425,438,2.425,439,2.425,440,2.425,441,1.856,442,2.274,443,1.867,444,2.425,445,2.425,446,2.274,447,2.425,448,2.425,449,2.425,450,2.425,451,2.204,452,2.204,453,2.138,454,2.916,455,2.138,456,1.289,457,2.347,458,2.347,459,2.347,460,2.204,461,2.274,462,2.274,463,2.994,464,2.274,465,2.204,466,2.347,467,2.347,468,2.347,469,2.347,470,2.347,471,2.347,472,2.347,473,2.347,474,2.347,475,2.347,476,2.347,477,2.347,478,2.347,479,2.347,480,2.204,481,1.664,482,2.347,483,2.347,484,2.347,485,1.709,486,1.58,487,1.621,488,2.204,489,1.709,490,2.347,491,2.347,492,2.274,493,2.425,494,2.274,495,1.58,496,1.905,497,2.9,498,3.473,499,3.656,500,2.274,501,2.425,502,2.425,503,2.425,504,2.425,505,2.425,506,2.425,507,2.425,508,2.425,509,2.425,510,2.425,511,2.425,512,2.347,513,2.425,514,2.425,515,2.425,516,2.204,517,2.347,518,2.347,519,2.347,520,2.425,521,2.347,522,2.347]],["title/interfaces/Param.html",[118,2.281,432,0.158]],["body/interfaces/Param.html",[3,0.187,4,0.172,5,0.156,6,3.413,9,0.22,10,0.338,30,0.01,31,0.269,32,0.256,51,3.552,54,3.874,56,5.137,58,4.197,61,4.197,63,0.493,65,1.299,101,0.254,104,1.073,105,4.065,106,4.065,111,4.283,112,1.572,118,4.293,133,0.008,134,0.008,330,3.552,413,0.883,432,0.313,434,1.386,443,1.596,1846,3.874,1847,4.065,1848,4.065,1849,4.065]],["title/components/ProfileEditComponent.html",[135,0.053,225,0.837]],["body/components/ProfileEditComponent.html",[3,0.06,4,0.055,5,0.05,9,0.07,10,0.149,11,1.319,13,1.276,16,0.636,24,0.558,27,1.313,29,0.378,30,0.01,31,0.31,32,0.156,33,0.323,46,1.08,47,1.226,49,1.433,63,0.484,69,1.332,71,2.219,84,1.065,85,0.281,96,1.534,98,0.588,101,0.06,102,0.235,103,1.812,104,1.126,108,3.346,115,1.523,125,1.812,133,0.004,134,0.004,135,0.053,136,0.398,137,0.653,138,0.341,140,0.419,141,0.604,142,0.312,144,0.419,145,1.401,146,1.155,147,0.35,148,1.262,149,0.558,150,0.398,153,0.543,156,0.419,165,0.419,166,1.108,167,0.604,168,0.419,169,1.009,170,0.419,171,0.419,172,0.398,173,0.67,174,0.419,175,0.398,176,0.419,177,0.398,178,0.398,179,0.419,180,0.398,181,0.636,182,0.419,183,0.388,184,0.808,185,0.398,186,0.419,187,0.388,188,0.306,189,0.419,190,0.388,191,0.419,192,0.398,193,1.405,194,0.398,195,0.419,196,0.398,197,0.398,198,1.365,199,0.398,200,0.419,201,0.398,202,0.314,203,0.398,204,0.398,205,0.419,206,0.959,207,0.748,208,0.419,209,0.398,210,0.419,211,0.398,212,0.398,213,0.419,214,0.398,215,0.419,216,0.959,217,0.409,218,0.419,219,0.398,220,0.419,221,0.398,222,0.419,223,0.398,224,0.398,225,0.959,226,0.398,227,0.398,228,0.419,229,0.398,230,0.398,231,0.398,232,0.314,233,0.687,234,0.388,235,0.35,236,0.419,237,0.369,238,0.419,239,0.398,240,0.398,241,0.398,242,0.419,243,0.398,244,0.409,245,0.398,246,0.398,247,0.398,248,0.398,249,0.419,250,0.398,251,0.419,252,0.419,253,0.369,254,0.398,255,0.419,256,0.419,260,0.723,261,1.244,278,1.476,282,1.507,289,0.895,299,0.582,300,0.388,301,0.526,304,0.582,308,0.488,316,1.152,335,1.179,338,1.13,347,1.852,375,1.54,409,1.433,410,2.229,413,0.46,456,1.204,461,1.446,489,1.087,495,2.105,526,1.897,527,1.498,528,1.837,529,1.781,530,1.897,531,1.728,532,2.099,535,2.027,539,1.182,540,1.367,544,1.595,546,1.595,550,0.974,551,0.761,552,1.008,553,0.739,554,0.719,555,0.719,556,0.568,557,0.568,558,0.539,559,0.884,578,1.433,582,1.457,583,1.152,584,1.626,585,1.367,586,1.332,587,1.402,588,1.212,605,1.345,606,1.345,607,2.353,622,1.045,628,1.78,667,2.838,772,0.93,808,1.852,809,1.713,810,1.652,811,2.193,812,1.852,814,1.542,816,1.542,817,1.713,818,1.652,819,1.713,820,1.542,821,2.615,822,1.402,828,1.713,830,1.542,831,2.266,832,1.542,833,1.781,834,2.428,835,1.931,838,2.518,839,1.931,840,1.931,841,1.713,842,1.713,843,2.838,844,2.721,870,1.542,925,1.13,926,1.94,927,2.454,928,2.353,929,1.931,930,1.931,932,3.132,935,2.838,938,1.78,946,1.179,947,2.838,949,1.931,956,1.363,957,1.363,958,4.388,959,4.724,960,2.725,961,2.233,962,2.992,963,2.992,964,2.992,965,2.992,966,2.992,967,2.992,968,2.992,969,1.363,985,1.13,986,1.541,987,1.363,988,1.541,989,1.363,990,1.232,991,1.363,992,1.179,993,1.179,994,1.179,1001,2.119,1050,0.83,1051,1.179,1052,1.678,1053,1.008,1054,1.13,1055,0.911,1056,1.179,1057,1.179,1058,1.179,1060,2.837,1061,3.802,1063,3.802,1064,3.802,1065,3.802,1067,3.802,1068,1.931,1069,2.119,1070,2.119,1071,2.119,1073,2.119,1074,5.566,1079,2.992,1259,1.232,1779,4.397,1780,4.397,1782,4.397,1789,1.663,1858,4.397,2087,7.09,2088,4.317,2089,4.993,2090,4.317,2091,4.317,2092,4.317,2093,4.317,2094,4.317,2095,4.317,2096,4.317,2097,4.317,2098,3.398,2099,2.073,2100,2.073,2101,2.073,2102,2.073,2103,2.073,2104,2.073,2105,3.398,2106,2.073,2107,2.073,2108,2.073,2109,2.073,2110,2.073,2111,2.073,2112,2.073,2113,2.073,2114,2.073,2115,2.073,2116,2.073,2117,2.073,2118,2.073,2119,2.073,2120,2.073,2121,2.073,2122,2.073,2123,6.754,2124,2.073,2125,2.073,2126,2.073,2127,2.073,2128,2.073,2129,2.073,2130,2.073,2131,2.073,2132,2.073,2133,2.073,2134,2.073,2135,2.073,2136,2.073,2137,2.073,2138,2.073,2139,2.073,2140,2.073,2141,2.073,2142,2.073,2143,2.073,2144,2.073,2145,2.073,2146,2.073,2147,2.073,2148,2.073,2149,2.073,2150,2.073,2151,2.073,2152,2.073,2153,2.073,2154,2.073,2155,2.073,2156,3.398,2157,2.073,2158,2.073,2159,2.073,2160,4.317,2161,2.073,2162,2.073,2163,2.073,2164,4.993,2165,3.398,2166,2.073,2167,4.993,2168,2.073,2169,2.073,2170,2.073,2171,4.993,2172,3.398,2173,2.073,2174,4.993,2175,3.398,2176,2.073,2177,4.993,2178,3.398,2179,2.073,2180,3.398,2181,3.398,2182,2.073,2183,4.993,2184,3.398,2185,2.073,2186,4.993,2187,3.398,2188,2.073,2189,2.073,2190,2.073,2191,4.317,2192,4.317,2193,3.398,2194,3.398,2195,3.398,2196,3.398]],["title/components/ProfileOverviewComponent.html",[135,0.053,226,0.837]],["body/components/ProfileOverviewComponent.html",[3,0.099,4,0.091,5,0.082,9,0.116,10,0.221,11,1.594,13,1.016,16,0.943,24,0.827,27,1.35,29,1.197,30,0.01,31,0.359,32,0.241,33,1.021,46,1.331,47,1.386,63,0.521,65,0.849,69,1.751,71,2.155,84,1.143,85,0.466,93,0.941,95,1.043,96,0.809,98,0.872,101,0.099,102,0.39,103,0.809,104,0.96,112,0.829,115,0.849,125,0.731,133,0.005,134,0.005,135,0.073,136,0.66,137,0.967,138,0.565,140,0.695,141,0.895,142,0.322,144,0.695,145,1.452,146,1.196,147,0.519,148,0.702,149,0.827,150,0.66,153,0.805,156,0.695,165,0.695,166,1.366,167,0.895,168,0.695,169,1.326,170,0.695,171,0.695,172,0.66,173,0.992,174,0.695,175,0.66,176,0.695,177,0.66,178,0.66,179,0.695,180,0.66,181,0.644,182,0.695,183,0.644,184,1.366,185,0.66,186,0.695,187,0.943,188,0.878,189,0.695,190,0.644,191,0.695,192,0.66,193,1.62,194,0.66,195,0.695,196,0.66,197,0.66,198,1.594,199,0.66,200,0.695,201,0.66,202,0.521,203,0.66,204,0.66,205,0.695,206,0.66,207,0.595,208,0.695,209,0.66,210,0.695,211,0.66,212,0.66,213,0.695,214,0.66,215,0.695,216,0.66,217,0.677,218,0.695,219,0.66,220,0.695,221,0.66,222,0.695,223,0.66,224,0.66,225,0.66,226,1.26,227,0.66,228,0.695,229,0.66,230,0.66,231,0.66,232,0.521,233,1.018,234,0.644,235,0.58,236,0.695,237,0.611,238,0.695,239,0.66,240,0.66,241,0.66,242,0.695,243,0.66,244,0.677,245,0.66,246,0.66,247,0.66,248,0.66,249,0.695,250,0.66,251,0.695,252,0.695,253,0.611,254,0.66,255,0.695,256,0.695,260,1.071,261,1.717,262,1.906,275,2.458,276,1.958,277,2.098,278,1.94,281,3.575,282,1.818,289,1.235,294,2.364,296,1.906,299,0.965,300,0.644,301,0.872,303,1.801,304,0.965,305,1.418,306,1.463,308,0.809,309,1.954,312,1.129,313,1.129,314,2.549,315,1.874,316,1.751,318,2.155,321,1.129,322,1.129,324,1.614,328,2.744,336,2.637,337,2.637,408,1.298,409,1.809,410,2.688,453,2.016,456,1.582,495,2.286,537,1.673,539,1.631,540,1.796,556,0.941,557,0.941,558,0.894,559,1.31,578,1.707,582,2.011,583,1.751,584,2.011,585,1.796,586,1.751,587,1.842,588,1.842,605,1.856,606,1.856,751,1.614,763,1.801,767,3.005,772,1.378,785,1.874,786,1.874,787,1.874,833,2.34,895,1.51,926,1.957,1050,1.376,1052,2.549,1138,1.801,1140,3.279,1141,2.798,1142,2.798,1143,2.798,1144,2.798,1145,2.798,1146,2.798,1147,2.798,1148,2.798,1149,2.798,1150,3.248,1151,3.248,1152,3.248,1154,2.744,1155,2.458,1160,2.144,1171,3.309,1172,2.044,1173,2.744,1175,1.672,1176,2.044,1179,1.874,1180,2.044,1181,2.044,1182,2.993,1183,1.801,1184,2.044,1185,1.954,1186,1.874,1193,2.744,1194,2.744,1282,2.539,1283,2.862,1289,2.393,1290,2.393,1292,2.393,1293,2.044,1294,2.393,1295,2.393,1296,2.144,2076,3.027,2197,7.308,2198,5.036,2199,5.036,2200,6.56,2201,5.036,2202,5.036,2203,5.036,2204,5.036,2205,5.959,2206,3.438,2207,3.438,2208,5.036,2209,3.438,2210,3.438,2211,5.036,2212,5.036]],["title/interfaces/RegisterOptions.html",[432,0.158,494,1.854]],["body/interfaces/RegisterOptions.html",[3,0.152,4,0.178,5,0.126,9,0.178,10,0.297,30,0.01,31,0.344,32,0.246,49,1.804,63,0.557,65,1.372,101,0.257,133,0.007,134,0.007,142,0.204,147,0.543,163,1.88,291,2.876,292,2.316,293,2.316,307,1.88,413,1.197,432,0.324,433,2.244,434,1.729,435,1.481,436,2.316,437,2.393,438,2.393,439,2.393,440,2.393,441,1.845,442,2.244,443,1.865,444,2.393,445,2.393,446,2.244,447,2.393,448,2.393,449,2.393,450,2.393,451,2.175,452,2.175,453,2.11,454,2.898,455,2.11,456,1.272,457,2.316,458,2.316,459,2.316,460,2.175,461,2.244,462,2.244,463,2.969,464,2.244,465,2.175,466,2.316,467,2.316,468,2.316,469,2.316,470,2.316,471,2.316,472,2.316,473,2.316,474,2.316,475,2.316,476,2.316,477,2.316,478,2.316,479,2.316,480,2.175,481,1.642,482,2.316,483,2.316,484,2.316,485,1.686,486,1.559,487,1.6,488,2.175,489,1.686,490,2.316,491,2.316,492,2.244,493,2.393,494,2.876,495,2.326,496,2.805,497,2.244,498,2.316,499,3.174,500,2.244,501,2.393,502,2.393,503,2.393,504,2.393,505,2.393,506,2.393,507,2.393,508,2.393,509,2.393,510,2.393,511,2.393,512,2.316,513,2.393,514,2.393,515,2.393,516,2.175,517,2.316,518,2.316,519,2.316,520,2.393,521,2.316,522,2.316]],["title/components/ReplicateComponent.html",[135,0.053,227,0.837]],["body/components/ReplicateComponent.html",[3,0.113,4,0.103,5,0.154,9,0.132,10,0.244,11,1.619,13,1.899,16,1.038,24,0.911,27,1.289,29,0.717,30,0.01,31,0.266,32,0.173,33,0.612,46,1.011,47,1.177,69,1.049,84,1.151,85,0.532,93,1.076,95,1.192,96,0.924,98,0.96,101,0.113,102,0.728,104,0.914,112,1.337,115,0.935,125,1.704,133,0.006,134,0.006,135,0.079,136,0.755,137,1.065,138,0.645,140,0.794,141,0.985,142,0.311,144,0.794,145,1.462,146,1.205,147,0.571,148,0.773,149,0.911,150,0.755,153,0.887,156,0.794,165,0.794,166,1.202,167,0.985,168,0.794,169,1.41,170,0.794,171,0.794,172,0.755,173,1.092,174,0.794,175,0.755,176,0.794,177,0.755,178,0.755,179,0.794,180,0.755,181,0.736,182,0.794,183,0.736,184,1.202,185,0.755,186,0.794,187,0.736,188,0.579,189,0.794,190,0.736,191,0.794,192,0.755,193,1.669,194,0.755,195,0.794,196,0.755,197,0.755,198,1.647,199,0.755,200,0.794,201,0.755,202,0.973,203,0.755,204,0.755,205,0.794,206,0.755,207,0.68,208,0.794,209,0.755,210,0.794,211,0.755,212,0.755,213,0.794,214,0.755,215,0.794,216,0.755,217,0.774,218,0.794,219,0.755,220,0.794,221,0.755,222,0.794,223,0.755,224,0.755,225,0.755,226,0.755,227,1.34,228,0.794,229,0.755,230,0.755,231,0.755,232,0.595,233,1.121,234,0.736,235,0.663,236,0.794,237,0.698,238,0.794,239,0.755,240,0.755,241,0.755,242,0.794,243,0.755,244,0.774,245,0.755,246,0.755,247,0.755,248,0.755,249,0.794,250,0.755,251,0.794,252,0.794,253,0.698,254,0.755,255,0.794,256,0.794,260,1.179,261,1.132,262,2.055,276,2.11,277,2.232,282,1.892,289,1.332,296,2.055,299,1.103,300,0.736,308,0.924,312,1.291,313,1.291,316,1.049,318,1.291,321,1.291,322,1.291,375,1.401,408,1.483,409,1.868,456,1.337,465,2.287,466,3.232,467,3.232,468,2.822,469,2.822,470,2.822,471,2.822,472,2.822,473,2.822,474,2.822,475,2.822,476,3.232,477,2.822,478,2.822,479,2.822,495,1.639,527,2.228,528,2.733,529,2.65,530,2.822,531,2.571,535,3.016,537,1.804,539,1.758,540,1.91,544,2.603,546,2.603,550,1.845,551,1.441,553,1.401,554,1.363,555,1.363,556,1.076,557,1.076,558,1.022,559,1.442,560,2.336,578,1.022,582,1.326,583,1.049,584,1.442,585,1.076,586,1.049,587,1.103,588,1.103,594,3.458,595,5.185,769,3.651,772,1.517,870,2.517,874,2.219,1299,3.458,1345,3.643,1662,7.534,1764,4.12,2213,3.46,2214,6.423,2215,5.544,2216,5.544,2217,6.423,2218,6.977,2219,3.93,2220,3.93,2221,3.93,2222,3.93,2223,3.93,2224,3.93,2225,3.93,2226,3.151,2227,3.151,2228,3.93,2229,3.93,2230,3.93,2231,3.93,2232,3.93,2233,3.93,2234,3.93,2235,3.93,2236,3.93,2237,3.93,2238,3.93,2239,3.93,2240,3.93,2241,3.93,2242,3.93,2243,3.93,2244,5.544,2245,5.544]],["title/interfaces/Repo.html",[232,0.66,432,0.158]],["body/interfaces/Repo.html",[3,0.089,4,0.081,5,0.134,9,0.104,10,0.204,18,1.558,30,0.01,31,0.328,32,0.274,49,2.103,63,0.561,64,1.558,65,1.521,71,1.529,101,0.225,125,0.657,133,0.005,134,0.005,138,0.764,142,0.12,188,1.22,202,0.705,232,0.705,413,1.194,432,0.283,434,0.989,435,0.868,441,0.764,443,1.761,456,1.122,481,1.449,485,2.245,486,2.075,487,2.13,489,0.989,495,1.376,496,1.102,806,1.757,807,4.557,808,4.324,809,4.001,810,3.028,811,3.486,812,4.324,813,1.757,814,3.602,815,1.757,816,3.602,817,4.001,818,3.858,819,4.001,820,3.602,821,4.155,822,2.309,823,1.757,824,1.757,825,1.757,826,1.757,827,1.837,828,4.001,829,1.757,830,1.403,831,1.403,832,1.403,833,1.102,834,2.721,835,2.645,836,2.437,837,1.619,838,2.346,839,2.645,840,2.645,841,2.346,842,2.346,843,2.645,844,3.825,845,2.931,846,3.326,847,3.326,848,3.326,849,3.326,850,3.326,851,3.326,852,3.326,853,2.536,854,1.837,855,1.837,856,1.837,857,1.837,858,1.837,859,1.837,860,1.837,861,1.837,862,1.837,863,1.837,864,1.837,865,1.837,866,1.837,867,1.837,868,1.837,869,1.837,870,1.403,871,1.837,872,1.837,873,1.837,874,1.237,875,1.837,876,1.837,877,1.451,878,1.837,879,1.837,880,1.837,881,1.837,882,1.837,883,1.837,884,1.837,885,1.837,886,1.837,887,1.837,888,1.684,889,1.837,890,1.837,891,1.837,892,3.97,893,4.643,894,3.97,895,2.934,896,3.796,897,3.796,898,3.539,899,3.539,900,3.14,901,3.14,902,3.539,903,3.393,904,3.393,905,3.539,906,3.539,907,3.539,908,3.539,909,3.539,910,2.346,911,2.536,912,1.757,913,2.536,914,2.536,915,1.757,916,1.757,917,1.558,918,1.684,919,1.619,920,1.451,921,1.558,922,1.358,923,1.684]],["title/components/RepoSyncComponent.html",[135,0.053,231,0.837]],["body/components/RepoSyncComponent.html",[3,0.102,4,0.093,5,0.085,9,0.225,10,0.227,11,1.577,13,1.795,16,0.965,24,0.847,27,1.359,29,0.94,30,0.01,31,0.305,32,0.19,33,0.803,46,1.215,47,1.316,65,0.599,69,0.947,84,1.162,85,0.481,93,0.972,95,1.077,96,0.835,98,0.893,101,0.102,102,0.403,103,1.213,104,0.916,110,3.215,115,1.245,125,1.096,133,0.006,134,0.006,135,0.074,136,0.682,137,0.99,138,0.583,139,1.511,140,0.718,141,0.916,142,0.324,144,0.718,145,1.455,146,1.199,147,0.531,148,0.719,149,0.847,150,0.682,151,1.946,153,0.824,156,0.718,165,0.718,166,1.136,167,0.916,168,0.718,169,1.346,170,0.718,171,0.718,172,0.682,173,1.016,174,0.718,175,0.682,176,0.718,177,0.682,178,0.682,179,0.718,180,0.682,181,0.665,182,0.718,183,0.665,184,1.136,185,0.682,186,0.718,187,0.665,188,0.523,189,0.718,190,0.665,191,0.718,192,0.682,193,1.632,194,0.682,195,0.718,196,0.682,197,0.682,198,1.607,199,0.682,200,0.718,201,0.682,202,0.538,203,0.682,204,0.682,205,0.718,206,0.682,207,0.615,208,0.718,209,0.682,210,0.718,211,0.682,212,0.682,213,0.718,214,0.682,215,0.718,216,0.682,217,0.7,218,0.718,219,0.682,220,0.718,221,0.682,222,0.718,223,0.682,224,0.682,225,0.682,226,0.682,227,0.682,228,0.718,229,0.682,230,0.682,231,1.279,232,1.182,233,1.042,234,0.665,235,0.599,236,0.718,237,0.631,238,0.718,239,0.682,240,0.682,241,0.682,242,0.718,243,0.682,244,0.7,245,0.682,246,0.682,247,0.682,248,0.682,249,0.718,250,0.682,251,0.718,252,0.718,253,0.631,254,0.682,255,0.718,256,0.718,260,1.096,262,1.942,264,3.786,265,3.786,276,1.994,277,2.131,282,1.836,289,1.381,296,1.942,299,0.997,300,0.665,301,0.901,302,1.79,304,0.997,308,1.213,312,1.166,313,1.166,316,0.947,318,1.166,321,1.166,322,1.166,335,2.311,375,1.266,408,1.34,409,1.824,443,1.258,488,2.127,489,1.136,490,1.56,491,2.667,526,2.667,527,2.106,528,2.583,529,2.504,530,2.667,531,2.43,532,2.952,535,2.85,537,1.705,539,1.662,540,1.823,544,2.421,546,2.421,550,1.667,551,1.302,552,1.726,553,1.266,554,1.232,555,1.232,556,0.972,557,0.972,558,0.924,559,1.341,560,2.11,576,3.215,578,0.924,582,1.198,583,0.947,584,1.341,585,0.972,586,0.947,587,0.997,588,0.997,594,2.214,605,1.891,606,1.891,769,3.45,770,3.786,802,3.215,938,2.7,958,1.726,1122,3.589,1299,4.154,1574,3.831,1582,5.484,1608,3.831,1609,3.589,1642,2.847,1655,2.847,1764,5.484,1912,2.847,2246,7.352,2247,7.352,2248,3.127,2249,5.345,2250,5.345,2251,5.345,2252,4.54,2253,6.07,2254,6.07,2255,6.661,2256,5.156,2257,6.661,2258,6.07,2259,7.074,2260,3.551,2261,3.551,2262,3.551,2263,5.156,2264,3.551,2265,3.551,2266,3.551,2267,3.551,2268,5.345,2269,3.551,2270,6.07,2271,5.156,2272,5.156,2273,5.156,2274,3.551,2275,3.551,2276,3.551,2277,3.551,2278,3.551,2279,3.551,2280,3.127,2281,3.551,2282,3.551,2283,3.551,2284,5.156,2285,3.551,2286,3.551,2287,3.551,2288,3.551,2289,3.551,2290,3.551,2291,2.847,2292,5.917,2293,6.661,2294,3.831,2295,5.866,2296,3.127,2297,4.54,2298,5.156,2299,4.54,2300,3.551,2301,3.551]],["title/components/RepositoryEditComponent.html",[135,0.053,229,0.837]],["body/components/RepositoryEditComponent.html",[3,0.075,4,0.069,5,0.062,9,0.088,10,0.179,11,1.434,13,1.487,16,0.764,24,0.67,27,1.316,29,0.475,30,0.01,31,0.328,32,0.205,33,0.405,46,1.196,47,1.303,49,0.936,63,0.412,69,1.519,71,0.856,84,1.113,85,0.353,96,1.183,98,0.706,101,0.075,102,0.295,103,1.542,104,1.12,108,2.422,115,1.511,125,1.666,133,0.004,134,0.004,135,0.061,136,0.5,137,0.784,138,0.428,140,0.526,141,0.725,142,0.314,144,0.526,145,1.427,146,1.176,147,0.421,148,1.249,149,0.67,150,0.5,153,0.652,156,0.526,165,0.526,166,1.227,167,0.725,168,0.526,169,1.15,170,0.526,171,0.526,172,0.5,173,0.804,174,0.526,175,0.5,176,0.526,177,0.5,178,0.5,179,0.526,180,0.5,181,0.764,182,0.526,183,0.488,184,0.941,185,0.5,186,0.526,187,0.488,188,0.384,189,0.526,190,0.488,191,0.526,192,0.5,193,1.508,194,0.5,195,0.526,196,0.5,197,0.5,198,1.474,199,0.5,200,0.526,201,0.5,202,0.395,203,0.5,204,0.5,205,0.526,206,1.093,207,0.451,208,0.526,209,0.5,210,0.526,211,0.5,212,0.5,213,0.526,214,0.5,215,0.526,216,1.093,217,0.513,218,0.526,219,0.5,220,0.526,221,0.5,222,0.526,223,0.5,224,0.5,225,0.5,226,0.5,227,0.5,228,0.526,229,1.093,230,0.5,231,0.5,232,0.862,233,0.825,234,0.488,235,0.439,236,0.526,237,0.463,238,0.526,239,0.5,240,0.5,241,0.5,242,0.526,243,0.5,244,0.513,245,0.5,246,0.5,247,0.5,248,0.5,249,0.526,250,0.5,251,0.526,252,0.526,253,0.463,254,0.5,255,0.526,256,0.526,260,0.868,261,1.449,278,1.683,282,1.653,289,1.043,299,0.731,300,0.488,301,0.661,304,0.731,308,0.613,316,1.089,335,1.974,338,1.42,347,2.224,375,1.794,409,1.571,410,2.443,413,0.553,441,1.009,456,0.984,486,1.683,487,1.238,526,2.209,527,1.745,528,2.14,529,2.075,530,2.209,531,2.013,532,2.445,535,2.361,539,1.377,540,1.558,544,1.916,546,1.916,550,1.223,551,0.955,552,1.266,553,0.929,554,0.904,555,0.904,556,0.713,557,0.713,558,0.678,559,1.061,578,1.608,582,1.377,583,1.089,584,1.783,585,1.558,586,1.519,587,1.598,588,1.412,605,1.567,606,1.567,607,2.741,622,1.313,628,2.137,667,3.235,772,1.117,811,2.5,814,1.852,820,1.852,822,1.683,830,1.852,831,2.584,832,1.852,833,2.03,844,3.102,874,2.278,898,2.319,899,2.319,900,2.057,901,2.057,902,2.319,903,3.866,904,2.224,905,2.319,906,3.235,907,2.319,908,2.319,909,2.319,925,1.42,926,2.212,927,2.859,928,2.741,929,2.319,930,2.319,932,3.513,935,3.235,938,2.137,946,1.481,947,3.235,949,2.319,956,1.712,957,1.712,958,4.352,959,4.683,961,2.681,969,1.712,985,1.42,986,1.936,987,1.712,988,1.936,989,1.712,990,1.548,991,1.712,992,1.481,993,1.481,994,1.481,1001,2.545,1050,1.043,1051,1.481,1052,1.954,1053,1.266,1054,1.42,1055,1.144,1056,1.481,1057,1.481,1058,1.481,1060,3.305,1068,2.319,1069,2.545,1070,2.545,1071,2.545,1073,2.545,1078,3.74,1259,1.548,1280,2.089,1299,4.424,1497,3.593,1789,2.089,2302,7.122,2303,5.029,2304,5.692,2305,5.692,2306,5.692,2307,5.692,2308,5.029,2309,5.029,2310,5.029,2311,4.08,2312,2.605,2313,2.605,2314,2.605,2315,2.605,2316,2.605,2317,2.605,2318,2.605,2319,2.605,2320,2.605,2321,2.605,2322,2.605,2323,2.605,2324,2.605,2325,5.692,2326,2.605,2327,2.605,2328,2.605,2329,2.605,2330,2.605,2331,2.605,2332,2.605,2333,2.605,2334,2.605,2335,2.605,2336,2.605,2337,2.605,2338,2.605,2339,2.605,2340,2.605,2341,2.605,2342,2.605,2343,2.605,2344,2.605,2345,2.605,2346,2.605,2347,2.605,2348,2.605,2349,2.605,2350,2.605,2351,2.605,2352,2.605,2353,2.605,2354,2.605,2355,2.605,2356,2.605,2357,2.605,2358,2.605,2359,2.605,2360,2.605,2361,2.605,2362,5.692,2363,2.605,2364,2.605,2365,2.605,2366,2.605,2367,2.605,2368,2.605,2369,5.029,2370,2.605,2371,5.029,2372,2.605,2373,2.605,2374,5.029,2375,5.029,2376,4.08,2377,4.08,2378,4.08,2379,4.08]],["title/components/RepositoryOverviewComponent.html",[135,0.053,230,0.837]],["body/components/RepositoryOverviewComponent.html",[3,0.099,4,0.091,5,0.082,9,0.116,10,0.221,11,1.594,13,1.016,16,0.943,24,0.827,27,1.35,29,1.197,30,0.01,31,0.359,32,0.25,33,1.021,46,1.331,47,1.386,63,0.521,65,0.849,69,1.751,84,1.143,85,0.466,93,0.941,95,1.043,96,0.809,98,0.872,101,0.099,102,0.39,103,0.809,104,0.96,112,0.829,115,0.849,125,0.731,133,0.005,134,0.005,135,0.073,136,0.66,137,0.967,138,0.565,140,0.695,141,0.895,142,0.322,144,0.695,145,1.452,146,1.196,147,0.519,148,0.702,149,0.827,150,0.66,153,0.805,156,0.695,165,0.695,166,1.366,167,0.895,168,0.695,169,1.326,170,0.695,171,0.695,172,0.66,173,0.992,174,0.695,175,0.66,176,0.695,177,0.66,178,0.66,179,0.695,180,0.66,181,0.644,182,0.695,183,0.644,184,1.366,185,0.66,186,0.695,187,0.943,188,0.878,189,0.695,190,0.644,191,0.695,192,0.66,193,1.62,194,0.66,195,0.695,196,0.66,197,0.66,198,1.594,199,0.66,200,0.695,201,0.66,202,0.521,203,0.66,204,0.66,205,0.695,206,0.66,207,0.595,208,0.695,209,0.66,210,0.695,211,0.66,212,0.66,213,0.695,214,0.66,215,0.695,216,0.66,217,0.677,218,0.695,219,0.66,220,0.695,221,0.66,222,0.695,223,0.66,224,0.66,225,0.66,226,0.66,227,0.66,228,0.695,229,0.66,230,1.26,231,0.66,232,0.763,233,1.018,234,0.644,235,0.58,236,0.695,237,0.611,238,0.695,239,0.66,240,0.66,241,0.66,242,0.695,243,0.66,244,0.677,245,0.66,246,0.66,247,0.66,248,0.66,249,0.695,250,0.66,251,0.695,252,0.695,253,0.611,254,0.66,255,0.695,256,0.695,260,1.071,261,1.717,262,1.906,275,2.458,276,1.958,277,2.098,278,1.94,281,3.575,282,1.818,289,1.235,294,2.364,296,1.906,299,0.965,300,0.644,301,0.872,303,1.801,304,0.965,305,1.418,306,1.463,308,0.809,309,1.954,312,1.129,313,1.129,314,2.549,315,1.874,316,1.751,318,2.155,321,1.129,322,1.129,324,1.614,328,2.744,336,2.637,337,2.637,408,1.298,409,1.809,410,2.688,486,1.94,537,1.673,539,1.631,540,1.796,556,0.941,557,0.941,558,0.894,559,1.31,578,1.707,582,2.011,583,1.751,584,2.011,585,1.796,586,1.751,587,1.842,588,1.842,605,1.856,606,1.856,751,1.614,763,1.801,767,3.005,772,1.378,785,1.874,786,1.874,787,1.874,833,2.34,895,1.51,903,2.744,904,2.744,926,1.957,1050,1.376,1052,2.549,1138,1.801,1140,3.279,1141,2.798,1142,2.798,1143,2.798,1144,2.798,1145,2.798,1146,2.798,1147,2.798,1148,2.798,1149,2.798,1150,3.248,1151,3.248,1152,3.248,1154,2.744,1155,2.458,1160,2.144,1171,3.309,1172,2.044,1173,2.744,1175,1.672,1176,2.044,1179,1.874,1180,2.044,1181,2.044,1182,2.993,1183,1.801,1184,2.044,1185,1.954,1186,1.874,1191,4.038,1193,2.744,1194,2.744,1282,2.539,1283,2.862,1288,2.757,1289,2.393,1290,2.393,1292,2.393,1293,2.044,1294,2.393,1295,2.393,1296,2.144,1299,4.701,2292,4.038,2380,7.308,2381,5.036,2382,5.036,2383,6.56,2384,5.036,2385,5.036,2386,5.036,2387,5.036,2388,5.959,2389,3.438,2390,3.438,2391,3.438,2392,3.438,2393,3.438,2394,5.036]],["title/interfaces/SettingsTableRowData.html",[432,0.158,2395,3.237]],["body/interfaces/SettingsTableRowData.html",[3,0.154,4,0.141,5,0.128,9,0.181,10,0.3,11,1.084,30,0.01,31,0.345,32,0.268,40,3.524,63,0.476,84,1.221,85,0.727,93,1.468,95,1.627,96,1.768,101,0.154,102,0.608,103,1.261,104,1.038,108,2.282,112,1.648,115,1.152,133,0.007,134,0.007,135,0.083,142,0.208,145,0.858,146,0.9,147,0.553,148,0.748,149,0.881,151,2.024,153,0.858,207,1.183,234,1.004,235,1.379,253,1.214,260,1.14,262,2.185,264,4.261,265,4.261,266,5.077,267,3.445,269,4.061,275,2.212,276,1.762,277,1.715,290,5.077,294,2.518,296,2.185,300,1.004,301,1.36,302,2.704,304,1.506,305,2.212,307,1.912,312,1.762,313,1.762,314,2.084,318,1.762,321,1.762,322,1.762,348,4.3,413,0.727,432,0.194,434,1.14,435,1.506,553,1.912,554,1.86,555,1.86,622,2.704,769,3.883,770,4.261,1175,2.608,1197,3.524,1498,4.756,1502,4.3,2226,4.3,2227,4.3,2395,5.587,2396,4.3,2397,4.3,2398,5.478,2399,5.478,2400,5.478,2401,4.3,2402,5.478,2403,6.016,2404,4.3,2405,4.722,2406,4.722,2407,4.722,2408,6.016,2409,4.722,2410,4.722,2411,6.016,2412,4.722,2413,4.722,2414,4.722,2415,4.3,2416,4.3,2417,4.3,2418,4.3,2419,4.722,2420,6.016,2421,4.722,2422,6.016,2423,4.722,2424,4.3,2425,6.016,2426,4.3,2427,4.722,2428,4.3,2429,4.3,2430,4.3,2431,4.3,2432,4.3,2433,4.722,2434,4.3,2435,4.722,2436,4.722,2437,4.722]],["title/components/SettingsViewComponent.html",[135,0.053,234,0.815]],["body/components/SettingsViewComponent.html",[3,0.102,4,0.093,5,0.085,9,0.119,10,0.226,11,1.225,16,0.963,24,0.582,27,1.326,29,1.106,30,0.01,31,0.338,32,0.243,33,0.944,40,3.382,46,1.214,47,1.022,49,1.18,63,0.425,84,1.167,85,0.48,93,0.969,95,1.075,96,1.426,98,1.05,101,0.102,102,0.402,103,0.833,104,1.002,108,1.507,112,1.778,115,1.122,133,0.006,134,0.007,135,0.074,136,0.68,137,0.988,138,0.582,139,1.507,140,0.716,141,0.915,142,0.317,144,0.716,145,1.454,146,1.198,147,0.53,148,0.717,149,0.845,150,0.68,151,1.942,153,0.823,156,0.716,160,4.944,162,4.408,163,2.52,165,0.716,166,0.963,167,0.915,168,0.716,169,1.345,170,0.716,171,0.716,172,0.68,173,1.014,174,0.716,175,0.68,176,0.716,177,0.68,178,0.68,179,0.716,180,0.68,181,0.663,182,0.716,183,0.663,184,1.135,185,0.68,186,0.716,187,0.663,188,0.522,189,0.716,190,0.663,191,0.716,192,0.68,193,1.631,194,0.68,195,0.716,196,0.68,197,0.68,198,1.606,199,0.68,200,0.716,201,0.68,202,0.537,203,0.68,204,0.68,205,0.716,206,0.68,207,1.05,208,0.716,209,0.68,210,0.716,211,0.68,212,0.68,213,0.716,214,0.68,215,0.716,216,0.68,217,0.698,218,0.716,219,0.68,220,0.716,221,0.68,222,0.716,223,0.68,224,0.68,225,0.68,226,0.68,227,0.68,228,0.716,229,0.68,230,0.68,231,0.68,232,0.537,233,1.04,234,1.245,235,1.394,236,0.716,237,0.63,238,0.716,239,0.68,240,0.68,241,0.68,242,0.716,243,0.68,244,0.698,245,0.68,246,0.68,247,0.68,248,0.68,249,0.716,250,0.68,251,0.716,252,0.716,253,1.183,254,0.68,255,0.716,256,0.716,260,1.094,262,1.939,264,3.78,265,3.78,266,4.504,267,3.056,269,3.603,275,2.501,276,1.991,277,2.128,289,1.257,290,4.504,294,3.124,296,1.939,300,0.663,301,0.898,302,1.786,304,0.995,305,1.461,307,2.373,312,1.164,313,1.164,314,2.956,318,1.164,321,1.164,322,1.164,328,2.805,348,4.127,379,3.119,413,0.902,432,0.128,435,0.995,443,1.067,553,1.263,554,1.785,555,1.229,560,2.105,622,1.786,629,5.859,630,2.84,631,4.644,632,2.84,633,2.632,634,2.84,635,3.119,751,2.416,769,3.445,770,3.78,793,2.013,802,3.21,926,2,1175,1.722,1197,2.327,1498,4.632,1502,2.84,1609,3.583,1983,4.372,2000,4.632,2226,2.84,2227,2.84,2395,3.824,2396,6.557,2397,2.84,2398,4.861,2399,4.861,2400,4.861,2401,2.84,2402,4.861,2403,5.338,2404,2.84,2405,3.119,2406,3.119,2407,3.119,2408,5.338,2409,3.119,2410,3.119,2411,5.338,2412,4.532,2413,4.532,2414,5.338,2415,4.127,2416,4.861,2417,4.127,2418,4.861,2419,3.119,2420,4.532,2421,3.119,2422,4.532,2423,3.119,2424,5.335,2425,4.532,2426,2.84,2427,3.119,2428,2.84,2429,4.127,2430,2.84,2431,2.84,2432,2.84,2433,3.119,2434,2.84,2435,3.119,2436,4.532,2437,3.119,2438,4.532,2439,5.146,2440,5.146,2441,3.542,2442,3.542,2443,3.542,2444,3.542,2445,3.542,2446,3.542,2447,3.542,2448,3.542,2449,7.795,2450,6.653,2451,6.492,2452,5.146,2453,4.532,2454,3.542,2455,3.542,2456,3.542]],["title/components/SignaturesComponent.html",[135,0.053,237,0.774]],["body/components/SignaturesComponent.html",[3,0.089,4,0.081,5,0.074,9,0.104,10,0.204,11,1.515,16,0.871,24,0.764,27,1.37,29,0.564,30,0.01,31,0.257,32,0.175,33,0.724,46,1.136,47,1.264,63,0.375,65,1.126,69,1.242,84,1.138,85,0.419,93,0.846,95,0.938,96,1.651,98,0.806,101,0.089,102,0.35,103,0.727,104,1.055,108,1.315,112,1.807,115,1.264,125,0.989,133,0.005,134,0.005,135,0.068,136,0.594,137,0.894,138,0.508,140,0.625,141,0.995,142,0.326,144,0.625,145,1.443,146,1.189,147,0.48,148,0.931,149,0.764,150,0.594,153,0.744,156,0.625,165,0.625,166,1.166,167,1.247,168,0.625,169,1.259,170,0.625,171,0.625,172,0.594,173,0.917,174,0.625,175,0.594,176,0.625,177,0.594,178,0.594,179,0.625,180,0.594,181,0.579,182,0.625,183,0.579,184,1.048,185,0.594,186,0.625,187,0.579,188,0.456,189,0.625,190,0.579,191,0.625,192,0.594,193,1.579,194,0.594,195,0.625,196,0.594,197,0.594,198,1.55,199,0.594,200,0.625,201,0.594,202,0.468,203,0.594,204,0.594,205,0.625,206,0.594,207,1.156,208,0.625,209,0.594,210,0.625,211,0.594,212,0.594,213,0.625,214,0.594,215,0.625,216,0.594,217,0.609,218,0.625,219,0.594,220,0.625,221,0.594,222,0.625,223,0.594,224,0.594,225,0.594,226,0.594,227,0.594,228,0.625,229,0.594,230,0.594,231,0.594,232,0.468,233,0.94,234,0.579,235,0.521,236,0.625,237,1.107,238,0.625,239,0.594,240,0.594,241,0.594,242,0.625,243,0.594,244,0.609,245,0.594,246,0.594,247,0.594,248,0.594,249,0.625,250,0.594,251,0.625,252,0.625,253,0.549,254,0.594,255,0.625,256,0.625,260,0.989,261,1.612,262,1.79,275,2.309,276,1.838,277,1.992,278,1.841,282,1.756,289,1.62,296,1.79,298,1.503,300,0.579,301,0.784,302,1.558,305,1.275,308,0.727,312,1.015,313,1.015,314,1.201,316,1.493,318,1.529,321,1.015,322,1.015,335,1.072,408,1.166,409,1.758,413,0.419,432,0.203,443,1.291,537,1.971,539,1.532,540,1.704,556,0.846,557,0.846,558,0.804,559,1.211,578,1.211,583,1.242,584,1.62,585,1.274,586,1.242,587,1.307,588,1.307,605,1.743,606,1.743,608,3.896,611,3.896,620,2.152,621,3.239,624,3.896,628,2.437,631,4.092,772,1.274,877,2.185,1053,1.503,1055,1.358,1088,3.883,1140,2.627,1141,2.627,1142,2.627,1143,2.627,1144,2.627,1145,2.627,1146,2.627,1147,2.627,1148,2.627,1149,2.627,1155,2.309,1199,1.928,1200,4.706,1201,3.49,1202,4.165,1203,3.49,1204,1.928,1205,1.928,1206,3.49,1208,1.928,1209,1.928,1210,1.928,1211,1.837,1212,1.837,1213,1.684,1214,4.542,1220,3.883,1221,4.165,1222,3.49,1223,3.49,1224,1.928,1227,3.49,1228,2.902,1230,2.902,1231,3.49,1232,2.902,1242,1.837,1609,3.239,1736,5.483,1755,2.152,1864,3.896,1865,3.896,1866,3.896,1978,3.677,1979,2.152,1980,4.158,1981,4.158,1982,4.158,1983,3.058,1984,3.458,1985,2.297,1986,4.158,1987,4.158,1988,4.158,1989,4.158,1990,4.158,1991,4.389,1992,3.677,1993,3.458,1994,3.458,1995,4.963,1996,4.627,1997,4.627,1998,3.458,1999,3.458,2000,3.239,2001,3.458,2002,3.458,2003,5.215,2004,4.158,2005,3.458,2006,3.458,2007,4.158,2008,4.627,2009,2.297,2010,3.458,2011,2.297,2012,3.458,2013,2.297,2014,3.458,2015,2.297,2016,2.297,2017,2.297,2018,2.297,2019,2.297,2020,4.627,2021,2.297,2022,2.297,2023,2.297,2024,3.458,2025,2.297,2026,2.297,2027,2.297,2457,4.653,2458,3.091,2459,3.091,2460,3.091,2461,3.091,2462,3.091,2463,3.091,2464,3.091,2465,3.091,2466,3.091,2467,3.091,2468,3.091,2469,3.091,2470,3.091,2471,3.091,2472,4.653,2473,4.097,2474,4.097,2475,4.653,2476,4.653]],["title/components/SnippetEditComponent.html",[135,0.053,239,0.837]],["body/components/SnippetEditComponent.html",[3,0.105,4,0.096,5,0.087,9,0.123,10,0.231,11,1.589,13,1.824,16,0.985,24,0.864,27,1.366,29,0.666,30,0.01,31,0.336,32,0.211,33,0.568,46,1.359,47,1.403,63,0.406,69,1.801,71,1.2,84,1.161,85,0.495,98,0.911,101,0.105,102,0.414,104,1.022,115,0.887,125,1.119,133,0.006,134,0.006,135,0.075,136,0.701,137,1.011,138,1.013,140,0.738,141,0.935,142,0.325,144,0.738,145,1.457,146,1.2,147,0.542,148,0.941,149,0.864,150,0.701,153,0.841,156,0.738,165,0.738,166,1.395,167,0.935,168,0.738,169,1.364,170,0.738,171,0.738,172,0.701,173,1.037,174,0.738,175,0.701,176,0.738,177,0.701,178,0.701,179,0.738,180,0.701,181,0.985,182,0.738,183,0.684,184,1.155,185,0.701,186,0.738,187,0.684,188,0.538,189,0.738,190,0.684,191,0.738,192,0.701,193,1.643,194,0.701,195,0.738,196,0.701,197,0.701,198,1.618,199,0.701,200,0.738,201,0.701,202,0.553,203,0.701,204,0.701,205,0.738,206,0.701,207,0.632,208,0.738,209,0.701,210,0.738,211,0.701,212,0.701,213,0.738,214,0.701,215,0.738,216,0.701,217,0.72,218,0.738,219,0.701,220,0.738,221,0.701,222,0.738,223,0.701,224,0.701,225,0.701,226,0.701,227,0.701,228,0.738,229,0.701,230,0.701,231,0.701,232,0.553,233,1.063,234,0.684,235,0.616,236,0.738,237,0.649,238,0.738,239,1.296,240,0.701,241,0.701,242,0.738,243,0.701,244,0.72,245,0.701,246,0.701,247,0.701,248,0.701,249,0.738,250,0.701,251,0.738,252,0.738,253,0.649,254,0.701,255,0.738,256,0.738,260,1.119,261,1.777,278,1.995,282,1.852,289,1.279,299,1.025,300,0.684,301,0.926,304,1.025,308,0.859,316,1.646,338,1.99,347,2.868,375,2.407,397,4.789,409,1.761,410,2.739,413,0.713,456,1.269,495,1.08,526,2.71,527,2.139,528,2.625,529,2.545,530,2.71,531,2.469,532,2.999,535,2.896,539,1.688,540,1.847,544,2.47,546,2.47,550,1.715,551,1.339,552,1.776,553,1.302,554,1.267,555,1.267,556,1,557,1,558,0.95,559,1.369,578,1.938,582,2.082,583,1.646,584,1.998,585,1.847,586,1.801,587,1.895,588,1.732,605,1.921,606,1.921,607,3.361,622,1.841,628,2.756,772,1.44,925,1.99,926,2.622,927,3.506,928,3.361,929,2.991,930,2.991,932,4.066,935,3.836,946,2.076,947,3.836,949,2.991,952,2.928,958,2.999,959,2.756,969,3.458,970,2.4,985,1.99,992,2.076,993,2.076,994,2.076,1050,1.462,1051,2.076,1052,2.397,1053,1.776,1054,1.99,1055,1.604,1056,2.991,1057,2.991,1058,2.991,1068,2.991,1256,2.542,1257,2.928,1258,2.928,1259,2.171,1404,2.928,2477,7.389,2478,5.943,2479,6.168,2480,6.749,2481,5.943,2482,6.749,2483,6.749,2484,3.216,2485,3.216,2486,3.216,2487,3.216,2488,3.652,2489,3.216,2490,3.652,2491,3.216,2492,3.652,2493,3.652]],["title/components/SnippetOverviewComponent.html",[135,0.053,240,0.837]],["body/components/SnippetOverviewComponent.html",[3,0.112,4,0.103,5,0.093,9,0.132,10,0.242,11,1.54,16,1.033,24,0.907,27,1.354,29,1.269,30,0.01,31,0.353,32,0.25,33,1.083,46,1.339,47,1.391,63,0.502,65,0.931,69,1.473,84,1.13,85,0.529,98,0.956,101,0.112,102,0.443,104,0.946,133,0.006,134,0.006,135,0.078,136,0.75,137,1.06,138,0.641,140,0.789,141,0.981,142,0.323,144,0.789,145,1.462,146,1.204,147,0.569,148,0.769,149,0.907,150,0.75,153,0.883,156,0.789,165,0.789,166,1.302,167,1.237,168,0.789,169,1.406,170,0.789,171,0.789,172,0.75,173,1.088,174,0.789,175,0.75,176,0.789,177,0.75,178,0.75,179,0.789,180,0.75,181,0.731,182,0.789,183,0.731,184,1.198,185,0.75,186,0.789,187,0.731,188,0.576,189,0.789,190,0.731,191,0.789,192,0.75,193,1.667,194,0.75,195,0.789,196,0.75,197,0.75,198,1.644,199,0.75,200,0.789,201,0.75,202,0.592,203,0.75,204,0.75,205,0.789,206,0.75,207,0.676,208,0.789,209,0.75,210,0.789,211,0.75,212,0.75,213,0.789,214,0.75,215,0.789,216,0.75,217,0.769,218,0.789,219,0.75,220,0.789,221,0.75,222,0.789,223,0.75,224,0.75,225,0.75,226,0.75,227,0.75,228,0.789,229,0.75,230,0.75,231,0.75,232,0.592,233,1.116,234,0.731,235,0.659,236,0.789,237,0.694,238,0.789,239,0.75,240,1.336,241,0.75,242,0.789,243,0.75,244,0.769,245,0.75,246,0.75,247,0.75,248,0.75,249,0.789,250,0.75,251,0.789,252,0.789,253,0.694,254,0.75,255,0.789,256,0.789,260,1.174,261,1.844,275,2.641,278,2.057,282,1.889,289,1.144,294,2.591,300,0.731,301,0.991,303,2.045,304,1.097,305,1.611,308,0.918,314,2.487,316,1.473,336,2.891,337,2.891,375,1.393,408,1.474,409,1.866,410,2.793,537,1.798,539,1.752,540,1.904,556,1.069,557,1.069,558,1.016,559,1.436,578,1.436,582,1.318,583,1.473,584,1.81,585,1.511,586,1.473,587,1.55,588,1.55,605,1.994,606,1.994,751,1.834,767,2.783,772,1.511,926,2.145,1050,1.563,1052,2.703,1138,2.045,1140,3.446,1141,3.006,1142,3.006,1143,3.006,1144,3.006,1145,3.006,1146,3.006,1147,3.006,1148,3.006,1149,3.006,1150,3.489,1151,3.489,1152,3.489,1154,3.008,1155,2.641,1170,3.131,1173,3.008,1175,1.899,1179,2.128,1193,3.008,1194,3.008,1282,2.783,1283,3.137,1293,2.321,1330,4.426,1828,3.131,2478,6.463,2481,4.86,2494,7.344,2495,5.519,2496,6.957,2497,5.519,2498,4.86,2499,5.519,2500,3.439,2501,5.519,2502,3.439,2503,5.519,2504,3.439,2505,3.439,2506,3.439,2507,5.519,2508,3.905,2509,3.905]],["title/components/StatusComponent.html",[135,0.053,241,0.837]],["body/components/StatusComponent.html",[3,0.109,4,0.099,5,0.09,9,0.127,10,0.237,11,1.386,16,1.009,24,0.886,27,1.361,29,0.984,30,0.01,31,0.328,32,0.252,33,0.839,46,1.251,47,1.271,49,1.237,63,0.324,84,1.134,85,0.512,93,1.034,95,1.147,96,0.889,98,0.934,101,0.109,102,0.429,104,0.9,112,1.301,115,1.156,133,0.006,134,0.007,135,0.077,136,0.726,137,1.036,138,0.621,140,0.764,141,0.959,142,0.324,144,0.764,145,1.459,146,1.202,147,0.556,148,0.752,149,0.886,150,0.726,153,0.862,156,0.764,165,0.764,166,1.009,167,0.959,168,0.764,169,1.386,170,0.764,171,0.764,172,0.726,173,1.063,174,0.764,175,0.726,176,0.764,177,0.726,178,0.726,179,0.764,180,0.726,181,0.707,182,0.764,183,0.707,184,1.177,185,0.726,186,0.764,187,0.707,188,0.557,189,0.764,190,0.707,191,0.764,192,0.726,193,1.655,194,0.726,195,0.764,196,0.726,197,0.726,198,1.632,199,0.726,200,0.764,201,0.726,202,0.573,203,0.726,204,0.726,205,0.764,206,0.726,207,0.654,208,0.764,209,0.726,210,0.764,211,0.726,212,0.726,213,0.764,214,0.726,215,0.764,216,0.726,217,0.745,218,0.764,219,0.726,220,0.764,221,0.726,222,0.764,223,0.726,224,0.726,225,0.726,226,0.726,227,0.726,228,0.764,229,0.726,230,0.726,231,0.726,232,0.573,233,1.09,234,0.707,235,0.637,236,0.764,237,0.672,238,0.764,239,0.726,240,0.726,241,1.317,242,0.764,243,0.726,244,0.745,245,0.726,246,0.726,247,0.726,248,0.726,249,0.764,250,0.726,251,0.764,252,0.764,253,0.672,254,0.726,255,0.764,256,0.764,260,1.147,261,1.811,262,2.011,266,4.672,270,5.536,275,2.594,276,2.065,277,2.193,278,2.027,282,1.871,289,1.303,290,5.387,291,2.917,296,2.011,298,1.838,305,1.559,307,2.445,308,0.889,312,1.242,313,1.242,314,1.468,316,1.008,318,1.242,319,3.031,321,1.242,322,1.242,329,4.748,330,3.736,332,6.037,408,1.426,409,1.851,516,1.559,517,3.012,518,2.369,519,2.369,521,2.369,522,2.369,537,1.765,553,1.348,554,1.311,555,1.311,558,0.983,582,1.276,751,2.532,769,3.574,770,3.921,772,1.476,888,3.736,1155,2.594,1175,1.838,1242,2.246,1983,4.505,2291,3.031,2398,5.042,2399,5.042,2400,5.042,2401,3.031,2402,5.813,2404,3.031,2415,4.324,2416,5.042,2417,4.324,2418,5.042,2424,5.497,2426,3.031,2428,3.031,2429,4.324,2430,3.031,2431,3.031,2432,3.031,2434,3.031,2438,4.748,2453,4.748,2510,3.328,2511,5.393,2512,5.393,2513,5.393,2514,3.779,2515,3.779,2516,3.779,2517,3.779,2518,3.779,2519,5.393,2520,3.779,2521,3.779,2522,3.779,2523,3.779,2524,3.779,2525,5.393,2526,3.779,2527,3.779,2528,3.779,2529,5.393,2530,5.393,2531,5.393,2532,5.393,2533,6.856,2534,6.037,2535,5.393,2536,6.856,2537,6.856,2538,5.393,2539,6.037,2540,6.856,2541,6.856]],["title/components/SyncComponent.html",[135,0.053,243,0.837]],["body/components/SyncComponent.html",[3,0.099,4,0.091,5,0.082,9,0.221,10,0.221,11,1.594,13,2.157,16,0.943,24,0.827,27,1.363,29,0.919,30,0.01,31,0.312,32,0.157,33,0.784,46,1.274,47,1.352,65,0.58,69,1.344,84,1.15,85,0.466,93,0.941,95,1.043,96,1.184,98,0.872,101,0.099,102,0.39,103,1.401,104,0.96,110,3.141,115,1.231,125,1.644,133,0.005,134,0.005,135,0.073,136,0.66,137,0.967,138,0.565,139,1.463,140,0.695,141,0.895,142,0.324,144,0.695,145,1.452,146,1.196,147,0.519,148,0.702,149,0.827,150,0.66,151,1.901,153,0.805,156,0.695,165,0.695,166,1.228,167,0.895,168,0.695,169,1.326,170,0.695,171,0.695,172,0.66,173,0.992,174,0.695,175,0.66,176,0.695,177,0.66,178,0.66,179,0.695,180,0.66,181,0.644,182,0.695,183,0.644,184,1.115,185,0.66,186,0.695,187,0.644,188,0.507,189,0.695,190,0.644,191,0.695,192,0.66,193,1.62,194,0.66,195,0.695,196,0.66,197,0.66,198,1.594,199,0.66,200,0.695,201,0.66,202,0.521,203,0.66,204,0.66,205,0.695,206,0.66,207,0.595,208,0.695,209,0.66,210,0.695,211,0.66,212,0.66,213,0.695,214,0.66,215,0.695,216,0.66,217,0.677,218,0.695,219,0.66,220,0.695,221,0.66,222,0.695,223,0.66,224,0.66,225,0.66,226,0.66,227,0.66,228,0.695,229,0.66,230,0.66,231,0.66,232,0.521,233,1.018,234,0.644,235,0.58,236,0.695,237,0.611,238,0.695,239,0.66,240,0.66,241,0.66,242,0.695,243,1.26,244,0.677,245,0.66,246,0.66,247,0.66,248,0.66,249,0.695,250,0.66,251,0.695,252,0.695,253,0.611,254,0.66,255,0.695,256,0.695,260,1.071,262,1.906,264,3.716,271,3.916,276,1.958,277,2.098,282,1.76,289,1.448,296,1.906,298,1.672,299,0.965,300,0.644,301,0.872,304,0.965,306,1.463,308,0.809,312,1.129,313,1.129,316,1.344,318,1.654,321,1.129,322,1.129,335,2.276,409,1.729,443,1.235,454,2.929,460,2.078,461,2.536,462,2.536,463,3.205,527,2.067,528,2.536,529,2.458,531,2.385,532,2.897,535,2.798,539,1.631,540,1.796,544,2.364,546,3.08,550,1.614,551,1.261,552,1.672,555,1.193,556,0.941,557,0.941,558,0.894,559,1.31,560,2.044,573,2.757,576,3.141,577,2.259,578,1.55,579,2.757,580,2.757,582,1.7,583,1.344,584,1.707,585,1.378,586,1.344,587,1.414,588,1.414,600,3.742,605,1.856,606,1.856,743,4.149,765,4.038,766,4.038,783,2.757,802,3.141,874,2.795,938,2.637,958,1.672,1493,2.757,1574,4.428,1582,5.422,1608,3.742,1609,3.506,1642,2.757,1655,2.757,1764,6.22,1912,2.757,2249,5.247,2250,5.247,2251,5.247,2252,4.434,2268,5.247,2280,3.027,2291,4.038,2294,3.742,2295,5.777,2296,3.027,2297,4.434,2299,4.434,2542,3.027,2543,5.959,2544,5.959,2545,5.959,2546,6.56,2547,5.036,2548,6.56,2549,6.56,2550,5.959,2551,6.983,2552,3.438,2553,3.438,2554,3.438,2555,3.438,2556,5.036,2557,3.438,2558,3.438,2559,3.438,2560,3.438,2561,5.036,2562,5.036,2563,5.036,2564,3.438,2565,3.438,2566,3.438,2567,5.036,2568,5.036,2569,5.036,2570,3.438,2571,3.438,2572,3.438,2573,3.438,2574,3.438,2575,3.438,2576,3.438,2577,3.438,2578,3.438,2579,3.438,2580,3.438,2581,3.438,2582,3.438,2583,3.438,2584,3.438,2585,3.438,2586,3.438,2587,5.036,2588,3.438,2589,5.036,2590,3.438,2591,3.438,2592,3.438,2593,3.438,2594,3.438,2595,6.56,2596,5.036]],["title/interfaces/SyncOptions.html",[432,0.158,460,1.797]],["body/interfaces/SyncOptions.html",[3,0.153,4,0.179,5,0.127,9,0.179,10,0.298,30,0.01,31,0.309,32,0.234,49,1.556,63,0.556,65,1.374,101,0.257,133,0.007,134,0.007,142,0.206,147,0.547,163,1.893,291,2.888,292,2.332,293,2.332,307,1.893,413,1.222,432,0.324,433,2.259,434,1.443,435,1.49,436,2.332,437,2.409,438,2.409,439,2.409,440,2.409,441,1.85,442,2.259,443,1.866,444,2.409,445,2.409,446,2.259,447,2.409,448,2.409,449,2.409,450,2.409,451,2.19,452,2.19,453,2.124,454,2.907,455,2.124,456,1.28,457,2.332,458,2.332,459,2.332,460,2.8,461,3.356,462,3.356,463,3.58,464,2.259,465,2.19,466,2.332,467,2.332,468,2.332,469,2.332,470,2.332,471,2.332,472,2.332,473,2.332,474,2.332,475,2.332,476,2.332,477,2.332,478,2.332,479,2.332,480,2.19,481,1.653,482,2.332,483,2.332,484,2.332,485,1.698,486,1.569,487,1.61,488,2.19,489,1.698,490,2.332,491,2.332,492,2.259,493,2.409,494,2.259,495,1.569,496,1.893,497,2.259,498,2.332,499,3.184,500,2.259,501,2.409,502,2.409,503,2.409,504,2.409,505,2.409,506,2.409,507,2.409,508,2.409,509,2.409,510,2.409,511,2.409,512,2.332,513,2.409,514,2.409,515,2.409,516,2.19,517,2.332,518,2.332,519,2.332,520,2.409,521,2.332,522,2.332]],["title/interfaces/SyncSystemsOptions.html",[432,0.158,464,1.854]],["body/interfaces/SyncSystemsOptions.html",[3,0.154,4,0.179,5,0.128,9,0.18,10,0.299,30,0.01,31,0.31,32,0.213,49,1.563,63,0.556,65,1.431,101,0.258,133,0.007,134,0.007,142,0.207,147,0.551,163,1.905,291,2.9,292,2.347,293,2.347,307,1.905,413,1.209,432,0.324,433,2.274,434,1.449,435,1.5,436,2.347,437,2.425,438,2.425,439,2.425,440,2.425,441,1.856,442,2.274,443,1.867,444,2.425,445,2.425,446,2.274,447,2.425,448,2.425,449,2.425,450,2.425,451,2.204,452,2.204,453,2.138,454,3.244,455,2.138,456,1.289,457,2.347,458,2.347,459,2.347,460,2.204,461,2.274,462,2.274,463,3.587,464,2.9,465,2.204,466,2.347,467,2.347,468,2.347,469,2.347,470,2.347,471,2.347,472,2.347,473,2.347,474,2.347,475,2.347,476,2.347,477,2.347,478,2.347,479,2.347,480,2.204,481,1.664,482,2.347,483,2.347,484,2.347,485,1.709,486,1.58,487,1.621,488,2.204,489,1.709,490,2.347,491,2.347,492,2.274,493,2.425,494,2.274,495,1.58,496,1.905,497,2.274,498,2.347,499,3.194,500,2.274,501,2.425,502,2.425,503,2.425,504,2.425,505,2.425,506,2.425,507,2.425,508,2.425,509,2.425,510,2.425,511,2.425,512,2.347,513,2.425,514,2.425,515,2.425,516,2.204,517,2.347,518,2.347,519,2.347,520,2.425,521,2.347,522,2.347]],["title/components/SystemOverviewComponent.html",[135,0.053,245,0.837]],["body/components/SystemOverviewComponent.html",[3,0.099,4,0.091,5,0.082,9,0.116,10,0.221,11,1.595,13,1.018,16,0.944,24,0.828,27,1.35,29,1.197,30,0.01,31,0.359,32,0.241,33,1.022,46,1.332,47,1.387,63,0.521,65,0.85,69,1.752,84,1.143,85,0.466,93,0.942,95,1.044,96,0.81,98,0.873,101,0.099,102,0.39,103,0.81,104,0.96,112,0.83,115,0.85,125,0.732,133,0.005,134,0.005,135,0.073,136,0.661,137,0.968,138,0.565,140,0.696,141,0.896,142,0.322,144,0.696,145,1.452,146,1.196,147,0.52,148,0.703,149,0.828,150,0.661,153,0.806,156,0.696,165,0.696,166,1.366,167,0.896,168,0.696,169,1.327,170,0.696,171,0.696,172,0.661,173,0.993,174,0.696,175,0.661,176,0.696,177,0.661,178,0.661,179,0.696,180,0.661,181,0.644,182,0.696,183,0.644,184,1.366,185,0.661,186,0.696,187,0.944,188,0.879,189,0.696,190,0.644,191,0.696,192,0.661,193,1.621,194,0.661,195,0.696,196,0.661,197,0.661,198,1.595,199,0.661,200,0.696,201,0.661,202,1.058,203,0.661,204,0.661,205,0.696,206,0.661,207,0.596,208,0.696,209,0.661,210,0.696,211,0.661,212,0.661,213,0.696,214,0.661,215,0.696,216,0.661,217,0.678,218,0.696,219,0.661,220,0.696,221,0.661,222,0.696,223,0.661,224,0.661,225,0.661,226,0.661,227,0.661,228,0.696,229,0.661,230,0.661,231,0.661,232,0.521,233,1.019,234,0.644,235,0.581,236,0.696,237,0.612,238,0.696,239,0.661,240,0.661,241,0.661,242,0.696,243,0.661,244,0.678,245,1.261,246,0.661,247,0.661,248,0.661,249,0.696,250,0.661,251,0.696,252,0.696,253,0.612,254,0.661,255,0.696,256,0.696,260,1.072,261,1.718,262,1.907,275,2.46,276,1.959,277,2.1,278,1.941,281,3.577,282,1.819,289,1.236,294,2.367,296,1.907,299,0.967,300,0.644,301,0.873,303,1.803,304,0.967,305,1.42,306,1.465,308,0.81,309,1.956,312,1.131,313,1.131,314,2.55,315,1.876,316,1.752,318,2.156,321,1.131,322,1.131,324,1.616,328,2.747,336,2.64,337,2.64,408,1.299,409,1.809,410,2.689,454,1.958,495,1.941,537,1.674,539,1.632,540,1.797,556,0.942,557,0.942,558,0.895,559,1.311,578,1.708,582,2.013,583,1.752,584,2.012,585,1.797,586,1.752,587,1.843,588,1.843,605,1.858,606,1.858,751,1.616,763,1.803,767,3.007,772,1.38,785,1.876,786,1.876,787,1.876,833,2.341,874,3.095,895,1.512,926,1.958,1050,1.378,1052,2.55,1138,1.803,1140,3.28,1141,2.8,1142,2.8,1143,2.8,1144,2.8,1145,2.8,1146,2.8,1147,2.8,1148,2.8,1149,2.8,1150,3.25,1151,3.25,1152,3.25,1154,2.747,1155,2.46,1160,2.147,1171,3.312,1172,2.046,1173,2.747,1175,1.674,1176,2.046,1179,1.876,1180,2.046,1181,2.046,1182,2.996,1183,1.803,1184,2.046,1185,1.956,1186,1.876,1193,2.747,1194,2.747,1282,2.541,1283,2.865,1288,2.76,1289,2.396,1290,2.396,1292,2.396,1293,2.046,1294,2.396,1295,2.396,1296,2.147,2597,7.31,2598,5.04,2599,5.04,2600,6.564,2601,5.04,2602,5.04,2603,5.04,2604,5.04,2605,5.963,2606,3.442,2607,3.442,2608,3.442,2609,3.442,2610,3.442,2611,5.04,2612,5.04]],["title/interfaces/TableRow.html",[432,0.158,1991,2.863]],["body/interfaces/TableRow.html",[3,0.126,4,0.115,5,0.105,9,0.147,10,0.262,11,1.477,24,0.719,30,0.01,31,0.181,32,0.186,33,0.681,47,1.232,63,0.475,65,1.29,69,1.594,84,1.189,85,0.593,93,1.198,95,1.328,96,1.857,101,0.126,102,0.496,103,1.029,104,1.036,108,1.862,112,1.984,115,1.232,125,1.27,133,0.006,134,0.006,135,0.073,141,0.778,142,0.17,145,0.7,146,0.786,147,0.451,148,0.948,149,0.719,153,0.7,166,1.118,167,1.062,207,1.367,237,0.778,260,0.93,261,1.721,262,1.911,275,1.805,276,1.437,277,1.4,278,1.294,282,1.64,296,1.911,298,2.127,300,0.819,301,1.11,302,2.206,305,1.805,308,1.029,312,1.437,313,1.437,314,1.7,316,1.815,318,1.962,321,1.437,322,1.437,335,1.518,409,1.56,413,0.593,432,0.246,434,0.93,443,1.515,537,1.677,539,1.198,540,1.635,556,1.198,557,1.198,558,1.138,559,1.554,578,1.554,583,1.594,584,1.901,585,1.635,586,1.594,587,1.677,588,1.677,605,1.861,606,1.861,608,4.158,611,3.046,620,3.046,621,4.158,624,4.735,631,3.925,772,1.198,877,2.804,1053,2.127,1055,1.922,1088,2.729,1140,2.804,1141,2.804,1142,2.804,1143,2.804,1144,2.804,1145,2.804,1146,2.804,1147,2.804,1148,2.804,1149,2.804,1155,1.805,1199,2.729,1200,4.796,1201,4.241,1202,4.77,1203,3.725,1204,2.729,1205,2.729,1206,3.725,1208,2.729,1209,2.729,1210,2.729,1211,2.601,1212,2.601,1213,2.385,1214,5.04,1220,3.725,1221,4.241,1222,2.729,1223,3.725,1224,2.729,1227,2.729,1228,2.729,1230,2.729,1231,2.729,1232,3.725,1242,2.601,1755,3.046,1864,4.158,1865,4.158,1866,4.158,1978,4.469,1979,3.046,1980,4.439,1981,4.439,1982,4.439,1983,3.925,1984,4.439,1985,3.251,1986,4.439,1987,4.439,1988,4.439,1989,4.439,1990,4.439,1991,4.802,1992,4.469,1993,3.251,1994,3.251,1995,3.251,1996,4.439,1997,4.439,1998,3.251,1999,3.251,2000,3.046,2001,3.251,2002,3.251,2003,4.439,2004,3.251,2005,3.251,2006,4.439,2007,3.251,2008,3.251,2009,3.251,2010,4.439,2011,3.251,2012,4.439,2013,3.251,2014,4.439,2015,3.251,2016,3.251,2017,3.251,2018,3.251,2019,3.251,2020,3.251,2021,3.251,2022,3.251,2023,3.251,2024,4.439,2025,3.251,2026,3.251,2027,3.251]],["title/components/TemplateEditComponent.html",[135,0.053,246,0.837]],["body/components/TemplateEditComponent.html",[3,0.105,4,0.096,5,0.087,9,0.123,10,0.231,11,1.589,13,1.824,16,0.985,24,0.864,27,1.366,29,0.666,30,0.01,31,0.336,32,0.211,33,0.568,46,1.359,47,1.403,63,0.406,69,1.801,71,1.2,84,1.161,85,0.495,98,0.911,101,0.105,102,0.414,104,1.022,115,0.887,125,1.119,133,0.006,134,0.006,135,0.075,136,0.701,137,1.011,138,1.291,140,0.738,141,0.935,142,0.325,144,0.738,145,1.457,146,1.2,147,0.542,148,0.941,149,0.864,150,0.701,153,0.841,156,0.738,165,0.738,166,1.395,167,0.935,168,0.738,169,1.364,170,0.738,171,0.738,172,0.701,173,1.037,174,0.738,175,0.701,176,0.738,177,0.701,178,0.701,179,0.738,180,0.701,181,0.985,182,0.738,183,0.684,184,1.155,185,0.701,186,0.738,187,0.684,188,0.538,189,0.738,190,0.684,191,0.738,192,0.701,193,1.643,194,0.701,195,0.738,196,0.701,197,0.701,198,1.618,199,0.701,200,0.738,201,0.701,202,0.553,203,0.701,204,0.701,205,0.738,206,0.701,207,0.632,208,0.738,209,0.701,210,0.738,211,0.701,212,0.701,213,0.738,214,0.701,215,0.738,216,0.701,217,0.72,218,0.738,219,0.701,220,0.738,221,0.701,222,0.738,223,0.701,224,0.701,225,0.701,226,0.701,227,0.701,228,0.738,229,0.701,230,0.701,231,0.701,232,0.553,233,1.063,234,0.684,235,0.616,236,0.738,237,0.649,238,0.738,239,0.701,240,0.701,241,0.701,242,0.738,243,0.701,244,0.72,245,0.701,246,1.296,247,0.701,248,0.701,249,0.738,250,0.701,251,0.738,252,0.738,253,0.649,254,0.701,255,0.738,256,0.738,260,1.119,261,1.777,278,1.995,282,1.852,289,1.279,299,1.025,300,0.684,301,0.926,304,1.025,308,0.859,316,1.646,338,1.99,347,2.868,375,2.407,397,4.789,409,1.761,410,2.739,413,0.713,456,1.269,526,2.71,527,2.139,528,2.625,529,2.545,530,2.71,531,2.469,532,2.999,535,2.896,539,1.688,540,1.847,544,2.47,546,2.47,550,1.715,551,1.339,552,1.776,553,1.302,554,1.267,555,1.267,556,1,557,1,558,0.95,559,1.369,578,1.938,582,2.082,583,1.646,584,1.998,585,1.847,586,1.801,587,1.895,588,1.732,605,1.921,606,1.921,607,3.361,622,1.841,628,2.756,772,1.44,925,1.99,926,2.622,927,3.506,928,3.361,929,2.991,930,2.991,932,4.066,935,3.836,946,2.076,947,3.836,949,2.991,952,2.928,958,2.999,959,2.756,969,3.458,970,2.4,985,1.99,992,2.076,993,2.076,994,2.076,1050,1.462,1051,2.076,1052,2.397,1053,1.776,1054,1.99,1055,1.604,1056,2.991,1057,2.991,1058,2.991,1068,2.991,1256,2.542,1257,2.928,1258,2.928,1259,2.171,1404,2.928,2484,3.216,2485,3.216,2486,3.216,2487,3.216,2489,3.216,2491,3.216,2613,7.389,2614,6.168,2615,6.749,2616,5.943,2617,6.749,2618,6.749,2619,3.652,2620,3.652,2621,3.652,2622,3.652]],["title/components/TemplateOverviewComponent.html",[135,0.053,247,0.837]],["body/components/TemplateOverviewComponent.html",[3,0.112,4,0.103,5,0.093,9,0.132,10,0.242,11,1.54,16,1.033,24,0.907,27,1.354,29,1.269,30,0.01,31,0.353,32,0.25,33,1.083,46,1.339,47,1.391,63,0.502,65,0.931,69,1.473,84,1.13,85,0.529,98,0.956,101,0.112,102,0.443,104,0.946,133,0.006,134,0.006,135,0.078,136,0.75,137,1.06,138,1.251,140,0.789,141,0.981,142,0.323,144,0.789,145,1.462,146,1.204,147,0.569,148,0.769,149,0.907,150,0.75,153,0.883,156,0.789,165,0.789,166,1.302,167,1.237,168,0.789,169,1.406,170,0.789,171,0.789,172,0.75,173,1.088,174,0.789,175,0.75,176,0.789,177,0.75,178,0.75,179,0.789,180,0.75,181,0.731,182,0.789,183,0.731,184,1.198,185,0.75,186,0.789,187,0.731,188,0.576,189,0.789,190,0.731,191,0.789,192,0.75,193,1.667,194,0.75,195,0.789,196,0.75,197,0.75,198,1.644,199,0.75,200,0.789,201,0.75,202,0.592,203,0.75,204,0.75,205,0.789,206,0.75,207,0.676,208,0.789,209,0.75,210,0.789,211,0.75,212,0.75,213,0.789,214,0.75,215,0.789,216,0.75,217,0.769,218,0.789,219,0.75,220,0.789,221,0.75,222,0.789,223,0.75,224,0.75,225,0.75,226,0.75,227,0.75,228,0.789,229,0.75,230,0.75,231,0.75,232,0.592,233,1.116,234,0.731,235,0.659,236,0.789,237,0.694,238,0.789,239,0.75,240,0.75,241,0.75,242,0.789,243,0.75,244,0.769,245,0.75,246,0.75,247,1.336,248,0.75,249,0.789,250,0.75,251,0.789,252,0.789,253,0.694,254,0.75,255,0.789,256,0.789,260,1.174,261,1.844,275,2.641,278,2.057,282,1.889,289,1.144,294,2.591,300,0.731,301,0.991,303,2.045,304,1.097,305,1.611,308,0.918,314,2.487,316,1.473,336,2.891,337,2.891,375,1.393,408,1.474,409,1.866,410,2.793,537,1.798,539,1.752,540,1.904,556,1.069,557,1.069,558,1.016,559,1.436,578,1.436,582,1.318,583,1.473,584,1.81,585,1.511,586,1.473,587,1.55,588,1.55,605,1.994,606,1.994,751,1.834,767,2.783,772,1.511,926,2.145,1050,1.563,1052,2.703,1138,2.045,1140,3.446,1141,3.006,1142,3.006,1143,3.006,1144,3.006,1145,3.006,1146,3.006,1147,3.006,1148,3.006,1149,3.006,1150,3.489,1151,3.489,1152,3.489,1154,3.008,1155,2.641,1158,6.126,1170,3.131,1173,3.008,1175,1.899,1177,4.86,1179,2.128,1193,3.008,1194,3.008,1282,2.783,1283,3.137,1293,2.321,1329,4.426,1828,3.131,2498,4.86,2500,3.439,2502,3.439,2504,3.439,2505,3.439,2506,3.439,2616,4.86,2623,7.344,2624,5.519,2625,5.519,2626,5.519,2627,5.519,2628,5.519,2629,3.905,2630,3.905]],["title/components/UnauthorizedComponent.html",[135,0.053,248,0.837]],["body/components/UnauthorizedComponent.html",[3,0.15,4,0.137,5,0.124,24,1.218,27,0.855,30,0.01,31,0.277,84,1.004,85,0.705,98,1.16,101,0.15,102,0.59,104,0.646,133,0.007,134,0.007,135,0.091,136,1,137,1.287,138,0.855,139,2.215,140,1.052,141,1.191,142,0.26,144,1.052,145,1.48,146,1.218,147,0.691,148,0.934,149,1.101,150,1,151,2.529,153,1.072,156,1.052,165,1.052,166,1.255,167,1.191,168,1.052,169,1.582,170,1.052,171,1.052,172,1,173,1.32,174,1.052,175,1,176,1.052,177,1,178,1,179,1.052,180,1,181,0.974,182,1.052,183,0.974,184,1.388,185,1,186,1.052,187,0.974,188,0.767,189,1.052,190,0.974,191,1.052,192,1,193,1.76,194,1,195,1.052,196,1,197,1,198,1.745,199,1,200,1.052,201,1,202,0.788,203,1,204,1,205,1.052,206,1,207,0.901,208,1.052,209,1,210,1.052,211,1,212,1,213,1.052,214,1,215,1.052,216,1,217,1.025,218,1.052,219,1,220,1.052,221,1,222,1.052,223,1,224,1,225,1,226,1,227,1,228,1.052,229,1,230,1,231,1,232,0.788,233,1.355,234,0.974,235,0.878,236,1.052,237,0.925,238,1.052,239,1,240,1,241,1,242,1.052,243,1,244,1.025,245,1,246,1,247,1,248,1.503,249,1.052,250,1,251,1.052,252,1.052,253,0.925,254,1,255,1.052,256,1.052,304,1.461,418,4.18,756,4.666,1708,4.666,1927,5.944,2631,4.583,2632,6.702,2633,7.413,2634,6.702,2635,5.204,2636,5.901,2637,6.702]],["title/injectables/UserService.html",[0,2.281,409,0.999]],["body/injectables/UserService.html",[0,3.501,2,3.407,3,0.149,4,0.137,5,0.124,9,0.175,10,0.294,11,1.781,15,4.968,16,1.252,24,1.215,27,1.466,29,1.476,30,0.01,31,0.348,32,0.272,33,1.259,40,3.407,46,1.476,47,1.365,63,0.539,71,2.431,84,0.906,85,0.703,93,1.419,96,1.572,99,3.61,100,3.082,101,0.149,102,0.588,103,1.903,115,0.875,125,1.103,133,0.007,134,0.007,142,0.347,346,5.152,358,4.158,409,1.533,413,1.157,938,3.501,1116,3.853,1314,6.516,1377,6.268,1649,4.566,1651,4.566,1656,3.853,2636,6.883,2638,4.158,2639,7.4,2640,7.4,2641,7.4,2642,7.4,2643,6.686,2644,8.091,2645,6.686,2646,7.4,2647,6.686,2648,6.686,2649,5.185,2650,5.185,2651,5.185,2652,5.185,2653,5.185,2654,5.185,2655,5.185,2656,5.185,2657,5.185,2658,5.185,2659,5.185,2660,5.185,2661,5.185,2662,5.185,2663,5.185,2664,5.185,2665,5.185,2666,6.686,2667,5.185,2668,5.185,2669,4.158,2670,5.185,2671,5.185,2672,7.4,2673,7.817,2674,6.686,2675,5.185,2676,5.185,2677,6.686,2678,7.4,2679,5.185,2680,5.185,2681,5.185,2682,5.185,2683,5.185,2684,5.185,2685,5.185,2686,5.185]],["title/classes/Utils.html",[102,0.494,559,1.133]],["body/classes/Utils.html",[3,0.196,4,0.179,5,0.163,9,0.229,16,1.478,18,4.206,27,1.117,29,1.241,30,0.01,31,0.281,32,0.212,33,1.059,46,1.241,63,0.502,101,0.196,102,0.771,103,1.599,115,1.147,133,0.009,134,0.009,142,0.306,289,1.41,385,4.241,559,2.054,793,3.865,2687,5.988,2688,7.895,2689,7.895,2690,6.8,2691,6.8,2692,6.8,2693,6.8]],["title/interfaces/V3_3_1.html",[432,0.158,2694,2.863]],["body/interfaces/V3_3_1.html",[3,0.148,4,0.136,5,0.123,30,0.01,32,0.161,49,1.692,63,0.559,65,1.492,71,1.693,101,0.232,133,0.007,134,0.007,142,0.2,235,0.869,375,2.631,413,1.249,432,0.282,434,1.095,435,1.447,443,1.768,455,2.062,816,2.339,818,2.505,819,2.598,822,2.125,834,2.505,836,2.698,837,2.698,841,2.598,842,2.598,845,2.698,900,2.598,2694,4.848,2695,3.587,2696,4.375,2697,4.635,2698,4.375,2699,4.131,2700,4.131,2701,4.131,2702,4.131,2703,4.131,2704,4.131,2705,4.131,2706,4.131,2707,4.131,2708,4.131,2709,4.131,2710,4.131,2711,4.131,2712,4.131,2713,4.131,2714,4.131,2715,4.131,2716,4.131,2717,4.131,2718,4.131,2719,4.131,2720,4.131,2721,4.131,2722,4.131,2723,4.131,2724,4.131,2725,4.131,2726,4.131,2727,4.131,2728,4.131,2729,4.131,2730,4.131,2731,4.131,2732,4.131,2733,4.131,2734,4.131,2735,4.131,2736,4.131,2737,4.131,2738,4.131,2739,4.131,2740,4.131,2741,4.131,2742,4.131,2743,4.131,2744,4.131,2745,4.131,2746,4.131,2747,4.131,2748,4.131,2749,4.131,2750,4.131,2751,4.131,2752,4.131,2753,4.131,2754,4.131,2755,4.131,2756,4.131,2757,4.131,2758,4.131,2759,4.131,2760,4.131,2761,4.131,2762,4.131,2763,4.131,2764,4.131,2765,4.131,2766,4.131,2767,4.131,2768,4.131,2769,4.131,2770,4.131,2771,4.131,2772,4.131,2773,4.131,2774,4.131,2775,4.131,2776,4.131,2777,4.131,2778,4.131,2779,4.131,2780,4.131,2781,4.131,2782,4.131,2783,4.131,2784,4.131,2785,4.131,2786,4.131,2787,4.131,2788,4.131,2789,4.131,2790,4.131,2791,4.131,2792,4.131,2793,4.131,2794,4.131,2795,4.131,2796,4.131,2797,4.131,2798,4.131,2799,4.131,2800,4.131,2801,4.131,2802,4.131,2803,4.131,2804,4.131,2805,4.131,2806,4.131,2807,4.131,2808,4.131,2809,4.131,2810,4.131,2811,4.131,2812,4.131,2813,4.131,2814,4.131,2815,4.131,2816,4.131,2817,4.131]],["title/interfaces/V3_3_2.html",[432,0.158,2696,2.863]],["body/interfaces/V3_3_2.html",[3,0.148,4,0.136,5,0.123,30,0.01,32,0.161,49,1.692,63,0.559,65,1.492,71,1.693,101,0.232,133,0.007,134,0.007,142,0.2,235,0.869,375,2.631,413,1.249,432,0.282,434,1.095,435,1.447,443,1.768,455,2.062,816,2.339,818,2.505,819,2.598,822,2.125,834,2.505,836,2.698,837,2.698,841,2.598,842,2.598,845,2.698,900,2.598,2694,4.375,2695,3.587,2696,4.848,2697,4.635,2698,4.375,2699,4.131,2700,4.131,2701,4.131,2702,4.131,2703,4.131,2704,4.131,2705,4.131,2706,4.131,2707,4.131,2708,4.131,2709,4.131,2710,4.131,2711,4.131,2712,4.131,2713,4.131,2714,4.131,2715,4.131,2716,4.131,2717,4.131,2718,4.131,2719,4.131,2720,4.131,2721,4.131,2722,4.131,2723,4.131,2724,4.131,2725,4.131,2726,4.131,2727,4.131,2728,4.131,2729,4.131,2730,4.131,2731,4.131,2732,4.131,2733,4.131,2734,4.131,2735,4.131,2736,4.131,2737,4.131,2738,4.131,2739,4.131,2740,4.131,2741,4.131,2742,4.131,2743,4.131,2744,4.131,2745,4.131,2746,4.131,2747,4.131,2748,4.131,2749,4.131,2750,4.131,2751,4.131,2752,4.131,2753,4.131,2754,4.131,2755,4.131,2756,4.131,2757,4.131,2758,4.131,2759,4.131,2760,4.131,2761,4.131,2762,4.131,2763,4.131,2764,4.131,2765,4.131,2766,4.131,2767,4.131,2768,4.131,2769,4.131,2770,4.131,2771,4.131,2772,4.131,2773,4.131,2774,4.131,2775,4.131,2776,4.131,2777,4.131,2778,4.131,2779,4.131,2780,4.131,2781,4.131,2782,4.131,2783,4.131,2784,4.131,2785,4.131,2786,4.131,2787,4.131,2788,4.131,2789,4.131,2790,4.131,2791,4.131,2792,4.131,2793,4.131,2794,4.131,2795,4.131,2796,4.131,2797,4.131,2798,4.131,2799,4.131,2800,4.131,2801,4.131,2802,4.131,2803,4.131,2804,4.131,2805,4.131,2806,4.131,2807,4.131,2808,4.131,2809,4.131,2810,4.131,2811,4.131,2812,4.131,2813,4.131,2814,4.131,2815,4.131,2816,4.131,2817,4.131]],["title/interfaces/V3_4_0.html",[432,0.158,2698,2.863]],["body/interfaces/V3_4_0.html",[3,0.148,4,0.136,5,0.123,30,0.01,32,0.161,49,1.692,63,0.559,65,1.492,71,1.693,101,0.232,133,0.007,134,0.007,142,0.2,235,0.869,375,2.631,413,1.249,432,0.282,434,1.095,435,1.447,443,1.768,455,2.062,816,2.339,818,2.505,819,2.598,822,2.125,834,2.505,836,2.698,837,2.698,841,2.598,842,2.598,845,2.698,900,2.598,2694,4.375,2695,3.587,2696,4.375,2697,4.635,2698,4.848,2699,4.131,2700,4.131,2701,4.131,2702,4.131,2703,4.131,2704,4.131,2705,4.131,2706,4.131,2707,4.131,2708,4.131,2709,4.131,2710,4.131,2711,4.131,2712,4.131,2713,4.131,2714,4.131,2715,4.131,2716,4.131,2717,4.131,2718,4.131,2719,4.131,2720,4.131,2721,4.131,2722,4.131,2723,4.131,2724,4.131,2725,4.131,2726,4.131,2727,4.131,2728,4.131,2729,4.131,2730,4.131,2731,4.131,2732,4.131,2733,4.131,2734,4.131,2735,4.131,2736,4.131,2737,4.131,2738,4.131,2739,4.131,2740,4.131,2741,4.131,2742,4.131,2743,4.131,2744,4.131,2745,4.131,2746,4.131,2747,4.131,2748,4.131,2749,4.131,2750,4.131,2751,4.131,2752,4.131,2753,4.131,2754,4.131,2755,4.131,2756,4.131,2757,4.131,2758,4.131,2759,4.131,2760,4.131,2761,4.131,2762,4.131,2763,4.131,2764,4.131,2765,4.131,2766,4.131,2767,4.131,2768,4.131,2769,4.131,2770,4.131,2771,4.131,2772,4.131,2773,4.131,2774,4.131,2775,4.131,2776,4.131,2777,4.131,2778,4.131,2779,4.131,2780,4.131,2781,4.131,2782,4.131,2783,4.131,2784,4.131,2785,4.131,2786,4.131,2787,4.131,2788,4.131,2789,4.131,2790,4.131,2791,4.131,2792,4.131,2793,4.131,2794,4.131,2795,4.131,2796,4.131,2797,4.131,2798,4.131,2799,4.131,2800,4.131,2801,4.131,2802,4.131,2803,4.131,2804,4.131,2805,4.131,2806,4.131,2807,4.131,2808,4.131,2809,4.131,2810,4.131,2811,4.131,2812,4.131,2813,4.131,2814,4.131,2815,4.131,2816,4.131,2817,4.131]],["title/components/ValidateAutoinstallsComponent.html",[135,0.053,250,0.837]],["body/components/ValidateAutoinstallsComponent.html",[3,0.131,4,0.12,5,0.109,9,0.153,10,0.269,11,1.566,16,1.147,24,1.007,27,1.273,29,0.829,30,0.01,31,0.287,32,0.191,33,0.708,46,1.118,47,1.252,69,1.213,84,1.139,85,0.616,93,1.244,95,1.379,98,1.061,101,0.131,102,0.515,104,0.861,115,1.034,133,0.007,134,0.007,135,0.085,136,0.873,137,1.177,138,0.747,140,0.919,141,1.089,142,0.31,144,0.919,145,1.472,146,1.212,147,0.632,148,0.854,149,1.007,150,0.873,153,0.98,156,0.919,165,0.919,166,1.298,167,1.089,168,0.919,169,1.5,170,0.919,171,0.919,172,0.873,173,1.208,174,0.919,175,0.873,176,0.919,177,0.873,178,0.873,179,0.919,180,0.873,181,0.851,182,0.919,183,0.851,184,1.298,185,0.873,186,0.919,187,0.851,188,0.67,189,0.919,190,0.851,191,0.919,192,0.873,193,1.718,194,0.873,195,0.919,196,0.873,197,0.873,198,1.7,199,0.873,200,0.919,201,0.873,202,0.689,203,0.873,204,0.873,205,0.919,206,0.873,207,0.787,208,0.919,209,0.873,210,0.919,211,0.873,212,0.873,213,0.919,214,0.873,215,0.919,216,0.873,217,0.896,218,0.919,219,0.873,220,0.919,221,0.873,222,0.919,223,0.873,224,0.873,225,0.873,226,0.873,227,0.873,228,0.919,229,0.873,230,0.873,231,0.873,232,0.689,233,1.239,234,0.851,235,0.767,236,0.919,237,0.808,238,0.919,239,0.873,240,0.873,241,0.873,242,0.919,243,0.873,244,0.896,245,0.873,246,0.873,247,0.873,248,0.873,249,0.919,250,1.426,251,1.7,252,0.919,253,0.808,254,0.873,255,0.919,256,0.919,260,1.303,262,2.218,276,2.278,277,2.374,282,1.968,289,0.942,296,2.218,300,0.851,308,1.069,312,1.493,313,1.493,316,1.213,318,1.493,321,1.493,322,1.493,375,1.621,408,1.715,409,1.929,527,2.406,537,1.947,539,1.898,540,2.032,556,1.244,557,1.244,558,1.182,559,1.595,578,1.182,583,1.213,584,1.595,585,1.244,586,1.213,587,1.276,588,1.276,594,2.835,772,1.678,1767,6.107,2818,7.031,2819,7.031,2820,4.002,2821,6.129,2822,6.129,2823,7.423,2824,6.129,2825,4.545,2826,4.545,2827,4.545,2828,4.545,2829,4.545]],["title/interfaces/Version.html",[432,0.158,441,1.077]],["body/interfaces/Version.html",[3,0.153,4,0.179,5,0.127,9,0.179,10,0.298,30,0.01,31,0.309,32,0.234,49,1.556,63,0.556,65,1.374,101,0.257,133,0.007,134,0.007,142,0.206,147,0.547,163,1.893,291,2.888,292,2.332,293,2.332,307,1.893,413,1.198,432,0.324,433,2.259,434,1.443,435,1.49,436,2.332,437,2.409,438,2.409,439,2.409,440,2.409,441,1.95,442,3.356,443,1.887,444,3.579,445,3.579,446,2.259,447,2.409,448,2.409,449,2.409,450,2.409,451,2.19,452,2.19,453,2.124,454,2.907,455,2.124,456,1.28,457,2.332,458,2.332,459,2.332,460,2.19,461,2.259,462,2.259,463,2.981,464,2.259,465,2.19,466,2.332,467,2.332,468,2.332,469,2.332,470,2.332,471,2.332,472,2.332,473,2.332,474,2.332,475,2.332,476,2.332,477,2.332,478,2.332,479,2.332,480,2.19,481,1.653,482,2.332,483,2.332,484,2.332,485,1.698,486,1.569,487,1.61,488,2.19,489,1.698,490,2.332,491,2.332,492,2.259,493,2.409,494,2.259,495,1.569,496,1.893,497,2.259,498,2.332,499,3.184,500,2.259,501,2.409,502,2.409,503,2.409,504,2.409,505,2.409,506,2.409,507,2.409,508,2.409,509,2.409,510,2.409,511,2.409,512,2.332,513,2.409,514,2.409,515,2.409,516,2.19,517,2.332,518,2.332,519,2.332,520,2.409,521,2.332,522,2.332]],["title/components/ViewableTreeComponent.html",[135,0.053,253,0.774]],["body/components/ViewableTreeComponent.html",[3,0.109,4,0.1,5,0.091,9,0.128,10,0.237,11,1.525,16,1.012,24,1.035,27,1.346,29,0.986,30,0.01,31,0.334,32,0.197,33,0.981,46,1.149,47,0.912,49,1.853,63,0.325,84,1.022,85,0.514,96,0.892,98,0.936,101,0.109,102,0.43,103,1.481,104,1.018,108,1.614,112,0.915,115,1.273,133,0.006,134,0.006,135,0.077,136,0.728,137,1.038,138,0.623,139,1.614,140,0.766,141,1.22,142,0.321,144,0.766,145,1.46,146,1.202,147,0.557,148,0.754,149,0.888,150,0.728,151,2.04,153,0.864,156,0.766,165,0.766,166,1.012,167,0.961,168,0.766,169,1.388,170,0.766,171,0.766,172,0.728,173,1.065,174,0.766,175,0.728,176,0.766,177,0.728,178,0.728,179,0.766,180,0.728,181,0.71,182,0.766,183,0.71,184,1.179,185,0.728,186,0.766,187,0.71,188,0.559,189,0.766,190,0.71,191,0.766,192,0.728,193,1.656,194,0.728,195,0.766,196,0.728,197,0.728,198,1.633,199,0.728,200,0.766,201,0.728,202,0.574,203,0.728,204,0.728,205,0.766,206,0.728,207,0.936,208,0.766,209,0.728,210,0.766,211,0.728,212,0.728,213,0.766,214,0.728,215,0.766,216,0.728,217,0.747,218,0.766,219,0.728,220,0.766,221,0.728,222,0.766,223,0.728,224,0.728,225,0.728,226,0.728,227,0.728,228,0.766,229,0.728,230,0.728,231,0.728,232,0.574,233,1.093,234,0.71,235,0.64,236,0.766,237,0.674,238,0.766,239,0.728,240,0.728,241,0.728,242,0.766,243,0.728,244,0.747,245,0.728,246,0.728,247,0.728,248,0.728,249,0.766,250,0.728,251,0.766,252,0.766,253,1.22,254,1.525,255,0.766,256,0.766,260,1.149,261,1.815,267,3.176,269,3.744,278,2.03,289,1.564,300,0.71,301,0.962,335,2.518,413,0.514,432,0.196,443,1.505,577,3.552,793,3.072,1055,1.666,1155,2.599,1195,3.763,1196,6.162,1197,5.449,1198,2.818,1199,2.365,1200,4.836,1201,3.928,1202,4.527,1203,3.928,1204,2.365,1205,3.928,1206,3.928,1207,5.051,1208,2.365,1209,2.365,1210,2.365,1211,2.254,1212,2.254,1213,2.067,1214,4.706,1215,5.053,1216,4.335,1217,5.051,1218,5.82,1219,5.051,1220,4.282,1221,4.527,1222,3.928,1223,3.928,1224,2.365,1225,5.82,1226,5.051,1227,3.928,1228,3.371,1229,4.335,1230,3.371,1231,3.928,1232,2.365,1233,6.051,1234,3.041,1235,4.335,1236,4.335,1237,3.041,1238,3.041,1239,4.335,1240,3.041,1241,3.041,1242,2.254,1243,3.041,2473,4.76,2474,4.76,2830,5.406,2831,5.406,2832,5.406,2833,3.792,2834,3.792,2835,3.792,2836,3.792,2837,3.792,2838,3.792,2839,3.792,2840,3.792,2841,5.406,2842,3.792]],["title/interfaces/XmlRpcArray.html",[58,2.374,432,0.158]],["body/interfaces/XmlRpcArray.html",[3,0.187,4,0.172,5,0.156,6,3.413,9,0.22,10,0.338,30,0.01,31,0.269,32,0.256,51,3.552,54,3.874,56,4.872,58,4.467,61,4.197,63,0.493,65,1.428,101,0.254,104,0.956,105,4.065,106,4.065,111,4.283,112,2.043,118,4.033,133,0.008,134,0.008,330,3.552,413,0.883,432,0.313,434,1.386,443,1.596,1846,3.874,1847,4.065,1848,4.065,1849,4.065]],["title/interfaces/XmlRpcStruct.html",[61,2.374,432,0.158]],["body/interfaces/XmlRpcStruct.html",[3,0.187,4,0.172,5,0.156,6,3.413,9,0.22,10,0.338,30,0.01,31,0.269,32,0.256,51,3.552,54,3.874,56,4.872,58,4.197,61,4.467,63,0.493,65,1.428,101,0.254,104,0.956,105,4.065,106,4.065,111,5.565,112,1.572,118,4.033,133,0.008,134,0.008,330,3.552,413,0.883,432,0.313,434,1.386,443,1.596,1846,3.874,1847,4.065,1848,4.065,1849,4.065]],["title/contributing.html",[2843,2.913,2844,2.7,2845,3.199]],["body/contributing.html",[30,0.009,133,0.009,134,0.009,146,0.915,1186,3.789,1345,5.254,1708,5.86,1769,5.166,1771,5.574,2844,5.942,2845,7.041,2846,7.996,2847,6.952,2848,5.574,2849,6.952,2850,6.952,2851,6.952,2852,6.121,2853,6.952,2854,6.952,2855,6.952,2856,6.952,2857,6.952]],["title/coverage.html",[2858,5.244]],["body/coverage.html",[0,3.67,1,2.469,5,0.111,6,4.63,7,4.477,8,4.477,30,0.01,32,0.096,51,1.678,58,1.678,61,1.678,88,2.469,91,2.469,97,2.469,98,1.326,102,0.756,104,0.576,115,0.519,118,1.612,133,0.005,134,0.005,135,0.11,136,0.591,142,0.357,143,2.711,150,0.591,157,2.469,163,2.378,172,0.591,175,0.591,177,0.591,180,0.591,183,0.576,185,1.194,187,0.576,188,0.983,190,0.576,192,0.591,194,0.591,196,0.591,197,0.591,199,0.591,201,0.591,202,0.466,203,0.591,204,0.591,206,0.591,209,0.591,211,0.591,212,0.591,214,0.591,216,0.591,219,0.591,221,0.591,223,0.591,224,0.591,225,0.591,226,0.591,227,0.591,229,0.591,230,0.591,231,0.591,232,0.466,234,0.576,237,0.547,239,0.591,240,0.591,241,0.591,243,0.591,244,0.607,245,0.591,246,0.591,247,0.591,248,0.591,250,0.591,253,0.547,257,2.711,258,2.711,259,2.711,282,0.743,307,1.098,310,3.23,314,1.196,335,3.208,339,2.711,340,2.711,349,2.288,384,2.469,386,2.711,399,2.144,400,2.711,401,2.711,409,0.706,432,0.326,433,1.31,435,2.478,436,3.635,441,0.762,446,1.31,451,1.27,456,0.743,460,1.27,464,1.31,465,1.27,480,1.27,488,1.27,492,1.31,494,1.31,495,0.91,497,1.31,499,1.31,512,1.353,516,1.27,523,2.711,524,2.711,525,2.711,559,0.801,601,2.711,602,2.711,603,2.711,636,2.469,637,2.711,710,6.394,740,4.37,741,3.72,749,2.288,763,2.43,764,3.72,776,2.288,791,3.448,792,3.72,801,2.288,806,4.436,853,1.678,874,1.232,901,2.339,917,1.552,922,1.353,924,2.711,925,4.253,987,2.023,990,1.83,1080,2.288,1081,3.72,1126,2.288,1137,2.711,1138,4.087,1195,2.144,1196,4.149,1197,3.669,1198,4.149,1215,2.144,1244,2.711,1281,2.711,1306,2.711,1307,2.711,1383,2.711,1394,2.711,1446,2.711,1468,2.711,1469,2.711,1470,2.711,1498,2.144,1499,2.711,1500,2.711,1518,2.711,1519,2.711,1611,2.711,1656,2.288,1743,2.711,1744,2.711,1769,2.288,1775,3.72,1776,2.711,1823,2.711,1846,1.83,1847,4.158,1848,4.158,1850,2.711,1860,2.711,1861,2.711,1925,2.711,1971,2.711,1972,2.711,1973,2.711,1978,2.023,1979,4.327,1991,2.023,1992,2.023,2028,2.711,2070,2.711,2087,2.711,2197,2.711,2213,2.711,2246,2.711,2247,2.711,2248,2.711,2302,2.711,2380,2.711,2395,2.288,2396,3.72,2397,3.72,2477,2.711,2494,2.711,2510,2.711,2542,2.711,2597,2.711,2613,2.711,2623,2.711,2631,2.711,2638,3.72,2669,2.469,2687,2.711,2694,2.023,2695,4.327,2696,2.023,2697,2.144,2698,2.023,2818,2.711,2819,2.711,2820,2.711,2858,2.711,2859,3.079,2860,3.079,2861,3.079,2862,3.079,2863,3.079,2864,3.079,2865,3.079,2866,3.079,2867,7.008,2868,4.64,2869,3.079,2870,3.079,2871,3.079,2872,3.079,2873,3.079,2874,7.485,2875,4.64,2876,7.659,2877,3.079,2878,7.008,2879,7.485,2880,6.667,2881,8.765,2882,3.079,2883,4.64,2884,3.079,2885,4.085,2886,7.485,2887,2.711,2888,4.64,2889,7.485,2890,3.079,2891,3.079,2892,5.583,2893,5.583,2894,8.444,2895,3.079,2896,3.079,2897,3.079,2898,3.079,2899,2.711,2900,2.711,2901,2.711,2902,2.711,2903,3.079,2904,3.079,2905,7.073,2906,2.711,2907,2.711,2908,6.667,2909,2.711,2910,2.711,2911,2.711,2912,2.711,2913,2.711,2914,2.711,2915,2.711,2916,2.711,2917,2.711,2918,6.872,2919,2.711,2920,2.711,2921,2.711,2922,2.711,2923,2.711,2924,2.711,2925,2.711,2926,2.711,2927,2.711,2928,3.079,2929,3.079,2930,3.079]],["title/dependencies.html",[922,1.596,2931,3.895]],["body/dependencies.html",[30,0.01,85,0.913,93,1.844,133,0.009,134,0.009,298,3.275,304,1.891,393,5.834,551,2.47,1950,6.913,2931,5.005,2932,6.735,2933,8.964,2934,6.735,2935,6.735,2936,6.735,2937,6.735,2938,6.735,2939,6.735,2940,6.735,2941,6.735,2942,6.735,2943,6.735,2944,6.735,2945,6.735,2946,6.735,2947,5.931,2948,6.735,2949,6.735,2950,6.735]],["title/miscellaneous/functions.html",[2951,2.387,2952,4.616]],["body/miscellaneous/functions.html",[6,3.196,9,0.152,29,1.636,30,0.01,31,0.371,32,0.28,33,1.396,36,4.893,37,7.018,44,4.214,45,4.812,46,1.632,47,1.398,49,1.036,51,4.035,54,4.109,56,4.109,58,3.767,61,3.767,63,0.525,64,3.485,65,1.166,66,5.543,69,2.387,70,3.976,75,5.374,77,3.976,79,7.542,88,4.893,91,4.893,104,1.054,110,2.816,118,2.365,119,3.976,125,1.298,133,0.007,134,0.007,148,0.851,167,1.6,308,1.062,330,3.326,335,1.566,397,4.311,413,0.937,443,1.265,576,2.816,584,1.175,698,3.976,821,3.196,1185,2.567,1200,4.208,1687,3.976,1846,2.684,1849,4.617,2294,3.356,2905,3.976,2906,5.374,2907,5.374,2909,5.374,2910,5.374,2911,5.374,2912,5.374,2913,5.374,2914,5.374,2915,5.374,2916,5.374,2917,5.374,2918,3.976,2919,5.374,2920,5.374,2921,5.374,2922,5.374,2923,5.374,2924,5.374,2925,5.374,2926,5.374,2927,5.374,2947,3.976,2951,2.967,2952,3.976,2953,8.489,2954,8.629,2955,4.516,2956,8.812,2957,4.516,2958,6.103,2959,6.103,2960,6.103,2961,6.103,2962,4.516,2963,4.516,2964,4.516,2965,4.516,2966,4.516,2967,5.374,2968,4.516,2969,4.516,2970,4.516,2971,4.516,2972,4.516,2973,4.516,2974,4.516,2975,4.516,2976,4.516,2977,4.516,2978,4.516,2979,4.516,2980,4.516,2981,4.516,2982,6.103,2983,4.516,2984,4.516,2985,4.516,2986,4.516,2987,4.516,2988,4.516,2989,4.516,2990,4.516,2991,4.516,2992,4.516,2993,4.516,2994,4.516,2995,4.516,2996,4.516]],["title/index.html",[9,0.122,2843,2.913,2844,2.7]],["body/index.html",[4,0.159,30,0.009,31,0.304,45,4.211,71,2.419,115,1.242,133,0.008,134,0.008,135,0.097,146,1.088,173,1.192,178,1.69,181,1.132,217,1.192,232,0.916,394,5.326,432,0.219,500,2.574,575,4.85,576,3.772,591,4.495,594,5.436,802,3.772,920,2.84,1054,3.296,1123,5.472,1125,4.495,1186,3.296,1282,3.05,1331,4.495,1345,5.217,1771,6.366,2848,5.904,2852,5.326,2931,4.495,2997,6.048,2998,6.99,2999,6.048,3000,6.048,3001,5.326,3002,6.048,3003,6.048,3004,6.048,3005,6.048,3006,7.363,3007,7.274,3008,6.484,3009,6.048,3010,6.048,3011,8.717,3012,5.326,3013,5.326,3014,6.048,3015,5.326,3016,6.048,3017,6.048,3018,6.048,3019,6.048,3020,6.624,3021,6.484,3022,6.048,3023,6.048,3024,6.048,3025,6.048,3026,5.326,3027,6.048,3028,6.048,3029,6.048,3030,5.326,3031,6.048,3032,6.048,3033,7.938,3034,6.048,3035,6.048,3036,6.048,3037,6.048,3038,6.048,3039,6.048,3040,5.326,3041,6.484,3042,7.363,3043,8.261,3044,6.048,3045,6.484,3046,6.048,3047,8.261,3048,6.048,3049,6.048,3050,7.363,3051,5.326,3052,6.048,3053,6.048]],["title/license.html",[2843,2.913,2844,2.7,3054,3.199]],["body/license.html",[30,0.008,41,5.647,133,0.008,134,0.008,146,0.844,296,2.051,307,2.287,575,5.143,645,7.169,700,5.143,910,3.234,920,3.011,1345,5.012,1347,5.647,1659,5.647,1769,4.766,2451,5.647,3020,5.143,3030,5.647,3054,5.647,3055,6.413,3056,8.141,3057,6.413,3058,6.413,3059,7.627,3060,6.413,3061,6.413,3062,6.413,3063,6.413,3064,6.413,3065,7.627,3066,8.944,3067,6.413,3068,6.413,3069,6.413,3070,7.627,3071,6.413,3072,6.413,3073,6.413,3074,6.413,3075,6.413,3076,6.413,3077,6.413,3078,6.413,3079,7.627,3080,6.413,3081,6.413,3082,6.413,3083,6.413,3084,7.627,3085,7.627,3086,6.413,3087,6.413,3088,6.413,3089,6.413,3090,6.413,3091,6.413,3092,6.413,3093,6.413,3094,5.647,3095,6.413,3096,6.413,3097,6.413,3098,6.413,3099,6.413,3100,6.413,3101,6.413,3102,6.413,3103,6.413,3104,6.413,3105,6.413,3106,6.413,3107,6.413,3108,6.413,3109,6.413,3110,6.413,3111,6.413,3112,6.413]],["title/modules.html",[3113,5.244]],["body/modules.html",[30,0.009,133,0.009,134,0.009,3113,6.316]],["title/overview.html",[1282,3.003]],["body/overview.html",[2,4.666,30,0.009,133,0.009,134,0.009,137,1.364,385,4.428,434,1.51,1122,4.943,1282,3.58,1357,6.252,3114,7.101,3115,7.101]],["title/properties.html",[10,0.23,922,1.596]],["body/properties.html",[10,0.314,30,0.009,133,0.009,134,0.009,441,1.767,3116,7.146]],["title/miscellaneous/typealiases.html",[2951,2.387,3117,5.242]],["body/miscellaneous/typealiases.html",[6,3.57,9,0.23,30,0.01,32,0.213,54,4.699,56,4.699,58,3.715,61,3.715,63,0.41,118,3.57,133,0.009,134,0.009,142,0.264,235,1.333,330,3.715,413,0.924,435,1.914,443,1.413,1847,4.252,1848,5.208,1849,4.252,2694,4.48,2695,4.746,2696,4.48,2697,4.746,2698,4.48,2951,4.48,3118,6.817,3119,7.906,3120,6.817]],["title/miscellaneous/variables.html",[2951,2.387,3121,4.616]],["body/miscellaneous/variables.html",[6,3.92,7,4.984,8,6.441,9,0.21,30,0.01,32,0.271,49,1.717,51,3.387,63,0.483,96,1.462,97,6.441,98,1.391,103,1.761,104,1.111,105,3.876,106,3.876,110,3.876,112,1.499,115,1.355,125,1.322,133,0.008,134,0.008,142,0.323,148,0.866,289,1.833,901,4.204,1656,5.969,1661,5.473,2638,4.984,2669,6.002,2885,5.473,2887,6.591,2899,5.473,2900,5.473,2901,5.473,2902,6.591,2951,4.084,3040,6.591,3121,5.473,3122,6.215,3123,7.485,3124,7.485,3125,6.215,3126,6.215,3127,6.215,3128,6.215,3129,6.215,3130,6.215,3131,6.215,3132,6.215]],["title/additional-documentation/development-setup.html",[500,1.326,3133,3.116,3134,2.744,3135,2.744]],["body/additional-documentation/development-setup.html",[12,4.524,15,3.818,30,0.009,31,0.305,45,4.627,71,1.688,100,3.951,125,1.092,133,0.007,134,0.007,146,1.196,178,1.637,181,1.379,202,1.007,308,1.733,334,4.524,346,3.577,373,3.818,393,3.818,418,3.204,576,3.204,591,4.939,594,5.372,667,2.92,700,6.246,731,4.524,756,3.577,874,2.056,896,2.92,901,2.591,922,2.92,1117,4.12,1123,5.475,1125,3.818,1200,3.778,1299,4.145,1331,4.939,1345,5.119,1352,4.524,1360,4.12,1377,4.12,1493,4.12,1511,5.852,1625,4.524,1708,5.423,1760,4.524,2292,4.12,2294,3.818,2534,4.524,2539,4.524,2848,6.246,2931,3.818,2967,4.524,2998,4.524,3001,4.524,3007,7.104,3008,7.277,3012,4.524,3013,7.405,3015,4.524,3020,4.12,3021,6.859,3026,4.524,3041,5.852,3045,5.852,3051,6.487,3094,4.524,3134,5.852,3135,7.104,3136,6.646,3137,5.138,3138,5.138,3139,5.138,3140,6.646,3141,8.523,3142,6.646,3143,6.646,3144,5.138,3145,7.367,3146,5.138,3147,5.138,3148,5.138,3149,5.138,3150,5.138,3151,5.138,3152,8.264,3153,6.646,3154,5.138,3155,5.138,3156,5.138,3157,5.138,3158,7.367,3159,5.138,3160,7.79,3161,5.138,3162,5.138,3163,5.138,3164,6.646,3165,7.79,3166,7.367,3167,7.367,3168,7.367,3169,8.264,3170,7.367,3171,7.367,3172,7.367,3173,7.367,3174,5.138,3175,7.367,3176,7.367,3177,5.138,3178,5.138,3179,6.646,3180,5.138,3181,5.138,3182,5.138,3183,5.138,3184,5.138,3185,5.138,3186,5.138,3187,5.138,3188,5.138,3189,6.646,3190,5.138,3191,5.138,3192,6.646,3193,6.646,3194,6.646,3195,6.646,3196,6.646,3197,6.646,3198,5.138,3199,5.138,3200,6.646,3201,5.138,3202,5.138,3203,5.138,3204,5.138,3205,5.138,3206,5.138,3207,7.367,3208,5.138,3209,5.138,3210,5.138,3211,5.138,3212,5.138,3213,5.138,3214,5.138,3215,5.138,3216,5.138,3217,5.138,3218,6.646,3219,5.138,3220,5.138,3221,5.138,3222,5.138]]],"invertedIndex":[["",{"_index":30,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["0",{"_index":335,"title":{},"body":{"components/AppEventsComponent.html":{},"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["0.0.0",{"_index":3116,"title":{},"body":{"properties.html":{}}}],["0.0.2",{"_index":2942,"title":{},"body":{"dependencies.html":{}}}],["0.1.1",{"_index":2944,"title":{},"body":{"dependencies.html":{}}}],["0.14.7",{"_index":2950,"title":{},"body":{"dependencies.html":{}}}],["0.5rem",{"_index":1738,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["0/1",{"_index":2881,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":2874,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":2888,"title":{},"body":{"coverage.html":{}}}],["0/13",{"_index":2894,"title":{},"body":{"coverage.html":{}}}],["0/133",{"_index":2882,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":2877,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":2896,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":2883,"title":{},"body":{"coverage.html":{}}}],["0/187",{"_index":2863,"title":{},"body":{"coverage.html":{}}}],["0/19",{"_index":2868,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":2889,"title":{},"body":{"coverage.html":{}}}],["0/20",{"_index":2891,"title":{},"body":{"coverage.html":{}}}],["0/21",{"_index":2865,"title":{},"body":{"coverage.html":{}}}],["0/22",{"_index":2870,"title":{},"body":{"coverage.html":{}}}],["0/24",{"_index":2869,"title":{},"body":{"coverage.html":{}}}],["0/27",{"_index":2864,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":2876,"title":{},"body":{"coverage.html":{}}}],["0/30",{"_index":2872,"title":{},"body":{"coverage.html":{}}}],["0/31",{"_index":2866,"title":{},"body":{"coverage.html":{}}}],["0/38",{"_index":2871,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":2880,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":2867,"title":{},"body":{"coverage.html":{}}}],["0/52",{"_index":2873,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":2878,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":2890,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":2879,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":2875,"title":{},"body":{"coverage.html":{}}}],["0s",{"_index":729,"title":{},"body":{"classes/DateFormatter.html":{}}}],["0x1",{"_index":1320,"title":{},"body":{"injectables/GetObjService.html":{}}}],["1",{"_index":110,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/GetObjService.html":{},"components/NavbarComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["1/1",{"_index":2908,"title":{},"body":{"coverage.html":{}}}],["1/2",{"_index":2884,"title":{},"body":{"coverage.html":{}}}],["1/3",{"_index":2898,"title":{},"body":{"coverage.html":{}}}],["1/4",{"_index":2893,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":510,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["100",{"_index":163,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"components/LogInFormComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SettingsViewComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["1000",{"_index":332,"title":{},"body":{"components/AppEventsComponent.html":{},"components/StatusComponent.html":{}}}],["1000).tostring",{"_index":1001,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["11",{"_index":1341,"title":{},"body":{"injectables/GetObjService.html":{}}}],["123; }",{"_index":2842,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["14px",{"_index":2456,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["150px",{"_index":597,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{}}}],["17.3.10",{"_index":2938,"title":{},"body":{"dependencies.html":{}}}],["17.3.12",{"_index":2933,"title":{},"body":{"dependencies.html":{}}}],["17.3.9",{"_index":2935,"title":{},"body":{"dependencies.html":{}}}],["18",{"_index":2928,"title":{},"body":{"coverage.html":{}}}],["187",{"_index":1761,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["1x2",{"_index":1321,"title":{},"body":{"injectables/GetObjService.html":{}}}],["2",{"_index":1348,"title":{},"body":{"injectables/GetObjService.html":{}}}],["2.4.1",{"_index":2948,"title":{},"body":{"dependencies.html":{}}}],["2.6.3",{"_index":2946,"title":{},"body":{"dependencies.html":{}}}],["2/11",{"_index":2929,"title":{},"body":{"coverage.html":{}}}],["20",{"_index":511,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["200",{"_index":513,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["2000",{"_index":580,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{}}}],["2022",{"_index":3057,"title":{},"body":{"license.html":{}}}],["25",{"_index":2892,"title":{},"body":{"coverage.html":{}}}],["250px",{"_index":1740,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["2x3",{"_index":1322,"title":{},"body":{"injectables/GetObjService.html":{}}}],["3",{"_index":1122,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"injectables/GetObjService.html":{},"components/RepoSyncComponent.html":{},"overview.html":{}}}],["32px",{"_index":1774,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["33",{"_index":2897,"title":{},"body":{"coverage.html":{}}}],["4",{"_index":1339,"title":{},"body":{"injectables/GetObjService.html":{}}}],["404",{"_index":3214,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["443:443",{"_index":3171,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["45",{"_index":3115,"title":{},"body":{"overview.html":{}}}],["46",{"_index":3114,"title":{},"body":{"overview.html":{}}}],["5",{"_index":1356,"title":{},"body":{"injectables/GetObjService.html":{}}}],["50",{"_index":512,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["500",{"_index":514,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["5px",{"_index":1966,"title":{},"body":{"components/NavbarComponent.html":{}}}],["6",{"_index":1357,"title":{},"body":{"injectables/GetObjService.html":{},"overview.html":{}}}],["6.6.6",{"_index":2940,"title":{},"body":{"dependencies.html":{}}}],["600px",{"_index":599,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{}}}],["64",{"_index":2903,"title":{},"body":{"coverage.html":{}}}],["80:80",{"_index":3170,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["8601",{"_index":691,"title":{},"body":{"classes/DateFormatter.html":{}}}],["8620",{"_index":1762,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["8646",{"_index":1768,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["9",{"_index":1136,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["9/14",{"_index":2904,"title":{},"body":{"coverage.html":{}}}],["9881",{"_index":1763,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["9888",{"_index":1727,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["9]+))?))?)(z",{"_index":685,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2",{"_index":680,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}(:?([0",{"_index":686,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2})(((:?([0",{"_index":682,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}))(t([0",{"_index":681,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}))?((:?([0",{"_index":683,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}))?(.([0",{"_index":684,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{4",{"_index":679,"title":{},"body":{"classes/DateFormatter.html":{}}}],["_",{"_index":1232,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["_active",{"_index":2639,"title":{},"body":{"injectables/UserService.html":{}}}],["_formbuilder",{"_index":535,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["_roles",{"_index":2640,"title":{},"body":{"injectables/UserService.html":{}}}],["_snackbar",{"_index":539,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["_token",{"_index":2641,"title":{},"body":{"injectables/UserService.html":{}}}],["_transformer",{"_index":1222,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["_username",{"_index":2642,"title":{},"body":{"injectables/UserService.html":{}}}],["aarch64",{"_index":1097,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["above",{"_index":3030,"title":{},"body":{"index.html":{},"license.html":{}}}],["abstractcontrol",{"_index":1572,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["accepts",{"_index":643,"title":{},"body":{"classes/DateFormatter.html":{}}}],["accessors",{"_index":938,"title":{},"body":{"components/DistroEditComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SyncComponent.html":{},"injectables/UserService.html":{}}}],["action",{"_index":910,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{},"license.html":{}}}],["actions",{"_index":294,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["activate",{"_index":1703,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["activatedroute",{"_index":947,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["active",{"_index":2645,"title":{},"body":{"injectables/UserService.html":{}}}],["active(bool",{"_index":2685,"title":{},"body":{"injectables/UserService.html":{}}}],["actual",{"_index":1342,"title":{},"body":{"injectables/GetObjService.html":{}}}],["actual_component",{"_index":256,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["actually",{"_index":894,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["add",{"_index":802,"title":{},"body":{"components/DialogTextInputComponent.html":{},"injectables/GetObjService.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{},"index.html":{}}}],["added",{"_index":2976,"title":{},"body":{"miscellaneous/functions.html":{}}}],["addgroup",{"_index":437,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["additional",{"_index":3133,"title":{"additional-documentation/development-setup.html":{}},"body":{}}],["additonal",{"_index":1362,"title":{},"body":{"injectables/GetObjService.html":{}}}],["additonal/component",{"_index":1363,"title":{},"body":{"injectables/GetObjService.html":{}}}],["addnewkeyvaluefg",{"_index":2546,"title":{},"body":{"components/SyncComponent.html":{}}}],["addnewrepofg",{"_index":2255,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["addoption",{"_index":1872,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["adduser",{"_index":438,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["advanced",{"_index":3183,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["afterviewinit",{"_index":2398,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["again",{"_index":1709,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["airgapped",{"_index":457,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["aliases",{"_index":3118,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["align",{"_index":633,"title":{},"body":{"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"components/SettingsViewComponent.html":{}}}],["allow_duplicate_hostnames",{"_index":2700,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allow_duplicate_ips",{"_index":2701,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allow_duplicate_macs",{"_index":2702,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allow_dynamic_settings",{"_index":2703,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allows",{"_index":1701,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["along",{"_index":3147,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["already",{"_index":734,"title":{},"body":{"classes/DateFormatter.html":{}}}],["always_write_dhcp_entries",{"_index":2704,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["amd64",{"_index":1108,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["anamon_enabled",{"_index":2705,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["and/or",{"_index":3077,"title":{},"body":{"license.html":{}}}],["angular",{"_index":2998,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["angular/animations",{"_index":2932,"title":{},"body":{"dependencies.html":{}}}],["angular/cdk",{"_index":2934,"title":{},"body":{"dependencies.html":{}}}],["angular/cdk/drag",{"_index":1588,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["angular/cdk/tree",{"_index":1204,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/cli",{"_index":3148,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["angular/common",{"_index":298,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/TableRow.html":{},"dependencies.html":{}}}],["angular/common/http",{"_index":87,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["angular/compiler",{"_index":2936,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":85,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":551,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{},"dependencies.html":{}}}],["angular/material",{"_index":2937,"title":{},"body":{"dependencies.html":{}}}],["angular/material/autocomplete",{"_index":1259,"title":{},"body":{"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/button",{"_index":300,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/material/card",{"_index":1589,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["angular/material/checkbox",{"_index":552,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/dialog",{"_index":306,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["angular/material/divider",{"_index":1755,"title":{},"body":{"components/ManageMenuComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["angular/material/form",{"_index":553,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/icon",{"_index":301,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/material/input",{"_index":555,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/list",{"_index":302,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/ManageMenuComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["angular/material/menu",{"_index":303,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["angular/material/paginator",{"_index":2401,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["angular/material/progress",{"_index":620,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["angular/material/select",{"_index":985,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/sidenav",{"_index":1756,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["angular/material/slide",{"_index":2226,"title":{},"body":{"components/ReplicateComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["angular/material/snack",{"_index":556,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["angular/material/sort",{"_index":2404,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["angular/material/table",{"_index":305,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["angular/material/toolbar",{"_index":1757,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{}}}],["angular/material/tooltip",{"_index":622,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/tree",{"_index":1208,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/platform",{"_index":1950,"title":{},"body":{"components/NavbarComponent.html":{},"dependencies.html":{}}}],["angular/router",{"_index":304,"title":{},"body":{"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"dependencies.html":{}}}],["angularxmlrpcservice",{"_index":1,"title":{"injectables/AngularXmlrpcService.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{}}}],["apache",{"_index":3210,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["api",{"_index":308,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["api.service.ts",{"_index":2862,"title":{},"body":{"coverage.html":{}}}],["api/src/lib/cobbler",{"_index":2861,"title":{},"body":{"coverage.html":{}}}],["api/src/lib/custom",{"_index":435,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["api/src/lib/lib.config.ts",{"_index":2885,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["apidevelopment",{"_index":3010,"title":{},"body":{"index.html":{}}}],["app",{"_index":173,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{}}}],["app.component.css",{"_index":152,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.html",{"_index":154,"title":{},"body":{"components/AppComponent.html":{}}}],["appcomponent",{"_index":136,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["append",{"_index":77,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["appendarray",{"_index":2919,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendarray(value",{"_index":2955,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendboolean",{"_index":2920,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendboolean(value",{"_index":2957,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendbuffer",{"_index":2921,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendbuffer(value",{"_index":2962,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appenddatetime",{"_index":2922,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appenddatetime(value",{"_index":2963,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appended",{"_index":2961,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendnumber",{"_index":2923,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendnumber(value",{"_index":2964,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appends",{"_index":2958,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendstring",{"_index":2924,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendstring(value",{"_index":2965,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendstruct",{"_index":2925,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendstruct(value",{"_index":2969,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appeventscomponent",{"_index":172,"title":{"components/AppEventsComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["applicationerror",{"_index":2902,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["applications",{"_index":3204,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["apply",{"_index":2670,"title":{},"body":{"injectables/UserService.html":{}}}],["applyfilter",{"_index":2438,"title":{},"body":{"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["applyfilter(event",{"_index":2429,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["appmanagecomponent",{"_index":175,"title":{"components/AppManageComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["apppage",{"_index":384,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["apt",{"_index":1113,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["apt_components",{"_index":898,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["apt_dists",{"_index":899,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["arch",{"_index":485,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["architecture",{"_index":1072,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{}}}],["arising",{"_index":3110,"title":{},"body":{"license.html":{}}}],["arm",{"_index":1094,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["arm64",{"_index":1095,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["armhfp",{"_index":1096,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["array",{"_index":65,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageOverviewComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{}}}],["array.isarray(input",{"_index":2437,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["array.isarray(inputobject[key",{"_index":1238,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["arraybuffer",{"_index":1849,"title":{},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["arraybuffertobase64",{"_index":2926,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraybuffertobase64(buffer",{"_index":2970,"title":{},"body":{"miscellaneous/functions.html":{}}}],["artifacts",{"_index":3035,"title":{},"body":{"index.html":{}}}],["associated",{"_index":3067,"title":{},"body":{"license.html":{}}}],["assumes",{"_index":3192,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["async",{"_index":387,"title":{},"body":{"classes/AppPage.html":{}}}],["asyncpipe",{"_index":1864,"title":{},"body":{"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["attribute",{"_index":1998,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["attributes",{"_index":893,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["auth_token_expiration",{"_index":2706,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["authguardservice",{"_index":399,"title":{"injectables/AuthGuardService.html":{}},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"coverage.html":{}}}],["authn_pam_service",{"_index":2707,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autho",{"_index":1501,"title":{},"body":{"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["authorization",{"_index":1372,"title":{},"body":{"injectables/GetObjService.html":{}}}],["authorize",{"_index":1620,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["authorized",{"_index":2636,"title":{},"body":{"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{}}}],["authors",{"_index":3101,"title":{},"body":{"license.html":{}}}],["authz_ownership",{"_index":1354,"title":{},"body":{"injectables/GetObjService.html":{}}}],["auto",{"_index":1739,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["auto_migrate_settings",{"_index":2699,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstall",{"_index":834,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstall_file",{"_index":483,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["autoinstall_meta",{"_index":808,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["autoinstall_meta_inherited",{"_index":963,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["autoinstall_snippets_dir",{"_index":2708,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstall_templates_dir",{"_index":2709,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstallation",{"_index":1496,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["autoinstallmetaresult",{"_index":1061,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["autoinstalls",{"_index":1767,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls'},{'name",{"_index":252,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["autoinstalls.component.html",{"_index":2821,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.scss",{"_index":2822,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts",{"_index":2820,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["autoinstalls.component.ts:19",{"_index":2824,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts:22",{"_index":2827,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts:27",{"_index":2825,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts:32",{"_index":2826,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls/validate",{"_index":2819,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["autoinstallsrun",{"_index":2829,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["automatically",{"_index":3016,"title":{},"body":{"index.html":{}}}],["available",{"_index":1495,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["available_as",{"_index":482,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["backend",{"_index":3194,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["background_buildiso(buildisooptions",{"_index":581,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["background_hardlink(this.userservice.token",{"_index":1392,"title":{},"body":{"components/HardlinkComponent.html":{},"components/MkloadersComponent.html":{}}}],["background_import(importoptions",{"_index":1494,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["background_replicate(replicateoptions",{"_index":2243,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["background_reposync(reposyncoptions",{"_index":2290,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["background_signature_update(this.userservice.token",{"_index":2021,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["background_sync(syncoptions",{"_index":2585,"title":{},"body":{"components/SyncComponent.html":{}}}],["background_syncsystems(syncoptions",{"_index":2594,"title":{},"body":{"components/SyncComponent.html":{}}}],["background_validate_autoinstall_files(this.userservice.token",{"_index":2828,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["backgroundaclsetupoptions",{"_index":433,"title":{"interfaces/BackgroundAclSetupOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundbuildisooptions",{"_index":451,"title":{"interfaces/BackgroundBuildisoOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundimportoptions",{"_index":480,"title":{"interfaces/BackgroundImportOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundpowersystem",{"_index":492,"title":{"interfaces/BackgroundPowerSystem.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundreplicateoptions",{"_index":465,"title":{"interfaces/BackgroundReplicateOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundreposyncoptions",{"_index":488,"title":{"interfaces/BackgroundReposyncOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backward",{"_index":712,"title":{},"body":{"classes/DateFormatter.html":{}}}],["bar",{"_index":557,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["base",{"_index":892,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["based",{"_index":2999,"title":{},"body":{"index.html":{}}}],["basic",{"_index":3149,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["before",{"_index":38,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/GetObjService.html":{}}}],["behave",{"_index":42,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["behaviorsubject",{"_index":1314,"title":{},"body":{"injectables/GetObjService.html":{},"injectables/UserService.html":{}}}],["behaviorsubject(false",{"_index":2676,"title":{},"body":{"injectables/UserService.html":{}}}],["between",{"_index":3187,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["bind_chroot_path",{"_index":2710,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bind_manage_ipmi",{"_index":2764,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bind_master",{"_index":2712,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bind_zonefile_path",{"_index":2711,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["blank",{"_index":1344,"title":{},"body":{"injectables/GetObjService.html":{}}}],["blank/undefined",{"_index":1366,"title":{},"body":{"injectables/GetObjService.html":{}}}],["block",{"_index":161,"title":{},"body":{"components/AppComponent.html":{}}}],["blocked",{"_index":3208,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["body",{"_index":97,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["bonding_opts",{"_index":854,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["bool",{"_index":2666,"title":{},"body":{"injectables/UserService.html":{}}}],["boolean",{"_index":413,"title":{},"body":{"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["boot",{"_index":1076,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["boot_files",{"_index":809,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["boot_files_inherited",{"_index":964,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["boot_loader_conf_template_dir",{"_index":2713,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["boot_loaders",{"_index":810,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["bootfilesresult",{"_index":1063,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["bootloader_inherited",{"_index":960,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["bootloaders_dir",{"_index":2714,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_formats",{"_index":2715,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_ipxe_folder",{"_index":2719,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_modules",{"_index":2716,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_shim_file",{"_index":2718,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_shim_folder",{"_index":2717,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["both",{"_index":3157,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["box",{"_index":185,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["branches",{"_index":3159,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["breed",{"_index":486,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["breeds",{"_index":1127,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["bridge_opts",{"_index":855,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["browser",{"_index":393,"title":{},"body":{"classes/AppPage.html":{},"components/NavbarComponent.html":{},"dependencies.html":{},"additional-documentation/development-setup.html":{}}}],["browser.get(browser.baseurl",{"_index":395,"title":{},"body":{"classes/AppPage.html":{}}}],["buffer",{"_index":2971,"title":{},"body":{"miscellaneous/functions.html":{}}}],["build",{"_index":178,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["build_reporting_email",{"_index":2726,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_enabled",{"_index":2725,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_ignorelist",{"_index":2727,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_sender",{"_index":2728,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_smtp_server",{"_index":2729,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_subject",{"_index":2730,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["builddate",{"_index":449,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["buildformgroup",{"_index":1541,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["buildformgroup(options",{"_index":1879,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["buildiso",{"_index":590,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["buildisocomponent",{"_index":177,"title":{"components/BuildISOComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["buildisodir",{"_index":455,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{}}}],["buildisoformgroup",{"_index":536,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["buildisooptions",{"_index":561,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["built",{"_index":3026,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["bundled",{"_index":3146,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["button",{"_index":635,"title":{},"body":{"components/CheckSysComponent.html":{},"components/SettingsViewComponent.html":{}}}],["c",{"_index":2451,"title":{},"body":{"components/SettingsViewComponent.html":{},"license.html":{}}}],["c.columndef",{"_index":2002,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["call",{"_index":36,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/LogInFormComponent.html":{},"miscellaneous/functions.html":{}}}],["canactivate",{"_index":404,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["cancel",{"_index":1184,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["catch",{"_index":430,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{}}}],["cbblr",{"_index":3004,"title":{},"body":{"index.html":{}}}],["cdkdrag",{"_index":1532,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["cdkdragdrop",{"_index":1558,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["cdkdroplist",{"_index":1531,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["cell",{"_index":631,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["center",{"_index":1733,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["change",{"_index":3018,"title":{},"body":{"index.html":{}}}],["changeauthorizedstate",{"_index":2643,"title":{},"body":{"injectables/UserService.html":{}}}],["changeauthorizedstate(authorized",{"_index":2648,"title":{},"body":{"injectables/UserService.html":{}}}],["changedetection",{"_index":765,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/SyncComponent.html":{}}}],["changedetectionstrategy",{"_index":783,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/SyncComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":766,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/SyncComponent.html":{}}}],["changevalues",{"_index":1873,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["changevalues(e",{"_index":1882,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["characters",{"_index":1721,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["charge",{"_index":3062,"title":{},"body":{"license.html":{}}}],["chat",{"_index":1772,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["check",{"_index":181,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["check(this.userservice.token",{"_index":625,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["checked",{"_index":1880,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["checkout",{"_index":3195,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["checksession",{"_index":405,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["checksyscomponent",{"_index":180,"title":{"components/CheckSysComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["cheetah_import_whitelist",{"_index":2731,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["chevron_right",{"_index":2474,"title":{},"body":{"components/SignaturesComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["children",{"_index":1214,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["children.push",{"_index":2018,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["claim",{"_index":3104,"title":{},"body":{"license.html":{}}}],["class",{"_index":102,"title":{"classes/AppPage.html":{},"classes/DateFormatter.html":{},"classes/Utils.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["class/edit/management",{"_index":1776,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"coverage.html":{}}}],["class/overview/management",{"_index":1823,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{},"coverage.html":{}}}],["class_name",{"_index":919,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["classes",{"_index":385,"title":{},"body":{"classes/AppPage.html":{},"classes/DateFormatter.html":{},"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"classes/Utils.html":{},"overview.html":{}}}],["clean",{"_index":3197,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["clear_all",{"_index":2452,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["cli",{"_index":3050,"title":{},"body":{"index.html":{}}}],["client_use_https",{"_index":2732,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["client_use_localhost",{"_index":2733,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["clone",{"_index":3160,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["close",{"_index":578,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["cnames",{"_index":856,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["cobbler",{"_index":146,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"contributing.html":{},"index.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["cobbler.project@gmail.com",{"_index":3058,"title":{},"body":{"license.html":{}}}],["cobbler_master",{"_index":2734,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["cobbler_url",{"_index":1656,"title":{},"body":{"components/LogInFormComponent.html":{},"injectables/UserService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["cobbler_url_key_name",{"_index":2669,"title":{},"body":{"injectables/UserService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["cobbler_version",{"_index":1930,"title":{},"body":{"components/NavbarComponent.html":{}}}],["cobblerapiservice",{"_index":282,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["cobblerevents",{"_index":274,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["cobbleritems",{"_index":1374,"title":{},"body":{"injectables/GetObjService.html":{}}}],["cobblerurlfactory",{"_index":2887,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":3031,"title":{},"body":{"index.html":{}}}],["codestreams",{"_index":3189,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["colon",{"_index":669,"title":{},"body":{"classes/DateFormatter.html":{}}}],["colons",{"_index":651,"title":{},"body":{"classes/DateFormatter.html":{}}}],["color",{"_index":1968,"title":{},"body":{"components/NavbarComponent.html":{}}}],["column",{"_index":1736,"title":{},"body":{"components/LogInFormComponent.html":{},"components/SignaturesComponent.html":{}}}],["column.cell(row",{"_index":2476,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["column.header",{"_index":2475,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["columndef",{"_index":1996,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["columns",{"_index":1995,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["command",{"_index":3052,"title":{},"body":{"index.html":{}}}],["comment",{"_index":811,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["common",{"_index":3205,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["common/dialog",{"_index":309,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["common/key",{"_index":986,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["common/multi",{"_index":989,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["common/viewable",{"_index":2409,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["commonmodule",{"_index":271,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/SyncComponent.html":{}}}],["compatibility",{"_index":713,"title":{},"body":{"classes/DateFormatter.html":{}}}],["complete",{"_index":2025,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["component",{"_index":135,"title":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"index.html":{}}}],["component_template",{"_index":170,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["components",{"_index":137,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"overview.html":{}}}],["conditions",{"_index":3083,"title":{},"body":{"license.html":{}}}],["configuration",{"_index":1760,"title":{},"body":{"components/ManageMenuComponent.html":{},"additional-documentation/development-setup.html":{}}}],["configure",{"_index":39,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["configureservice",{"_index":17,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["configureservice(url",{"_index":34,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["confirm",{"_index":311,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DistrosOverviewComponent.html":{}}}],["confirm'},{'name",{"_index":186,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["confirm.css",{"_index":746,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["confirm.html",{"_index":747,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["confirm.ts",{"_index":741,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"coverage.html":{}}}],["confirm.ts:30",{"_index":750,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["confirm.ts:31",{"_index":753,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["confirm/dialog",{"_index":310,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DistrosOverviewComponent.html":{},"coverage.html":{}}}],["connected_mode",{"_index":857,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["connection",{"_index":3111,"title":{},"body":{"license.html":{}}}],["console.log(\"saving",{"_index":372,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log('saving",{"_index":378,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log(`current",{"_index":363,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log(`item",{"_index":368,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log(message",{"_index":1382,"title":{},"body":{"injectables/GetObjService.html":{}}}],["console.log(value",{"_index":2291,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{}}}],["const",{"_index":96,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"injectables/UserService.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/variables.html":{}}}],["construction",{"_index":1370,"title":{},"body":{"injectables/GetObjService.html":{}}}],["constructor",{"_index":24,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["constructor's",{"_index":73,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":755,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["constructor(autho",{"_index":1504,"title":{},"body":{"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{}}}],["constructor(cobblerapiservice",{"_index":2552,"title":{},"body":{"components/SyncComponent.html":{}}}],["constructor(colons",{"_index":662,"title":{},"body":{"classes/DateFormatter.html":{}}}],["constructor(data",{"_index":748,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{}}}],["constructor(dialog",{"_index":280,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["constructor(http",{"_index":25,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["constructor(iconregistry",{"_index":1935,"title":{},"body":{"components/NavbarComponent.html":{}}}],["constructor(public",{"_index":1759,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["constructor(route",{"_index":946,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["constructor(router",{"_index":1752,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["constructor(service",{"_index":348,"title":{},"body":{"components/AppManageComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["constructor(userservice",{"_index":408,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["contact",{"_index":2851,"title":{},"body":{"contributing.html":{}}}],["container",{"_index":3175,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["content",{"_index":397,"title":{},"body":{"classes/AppPage.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"miscellaneous/functions.html":{}}}],["content_copy",{"_index":1068,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["continue",{"_index":2637,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["contract",{"_index":3108,"title":{},"body":{"license.html":{}}}],["contributing",{"_index":2845,"title":{"contributing.html":{}},"body":{"contributing.html":{}}}],["contributions",{"_index":2849,"title":{},"body":{"contributing.html":{}}}],["control",{"_index":1574,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["control.markastouched",{"_index":2588,"title":{},"body":{"components/SyncComponent.html":{}}}],["control.value",{"_index":1913,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["controlvalueaccessor",{"_index":1520,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["convert",{"_index":2984,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convert_server_to_ip",{"_index":2735,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["convertarray",{"_index":2906,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertarray(element",{"_index":2979,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertdomtoobject",{"_index":2907,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertdomtoobject(document",{"_index":2980,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converted",{"_index":2960,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertfault",{"_index":2909,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertfault(element",{"_index":2985,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertmember",{"_index":2910,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertmember(element",{"_index":2986,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertmethodresponse",{"_index":2911,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertmethodresponse(document",{"_index":2987,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertname",{"_index":2912,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertname(element",{"_index":2988,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertparam",{"_index":2913,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertparam(element",{"_index":2989,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertparams",{"_index":2914,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertparams(element",{"_index":2990,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converts",{"_index":698,"title":{},"body":{"classes/DateFormatter.html":{},"miscellaneous/functions.html":{}}}],["convertstruct",{"_index":2915,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertstruct(element",{"_index":2991,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertvalue",{"_index":2916,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertvalue(element",{"_index":2992,"title":{},"body":{"miscellaneous/functions.html":{}}}],["copies",{"_index":3079,"title":{},"body":{"license.html":{}}}],["copy",{"_index":3065,"title":{},"body":{"license.html":{}}}],["copy_distro",{"_index":1059,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["copy_mgmtclass",{"_index":1822,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["copy_package",{"_index":2069,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["copy_profile",{"_index":2190,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["copydistro",{"_index":933,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["copyfile",{"_index":1246,"title":{},"body":{"components/FileEditComponent.html":{}}}],["copyimage",{"_index":1396,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["copypackage",{"_index":2030,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["copyprofile",{"_index":1779,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["copyrepository",{"_index":2304,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["copyright",{"_index":3056,"title":{},"body":{"license.html":{}}}],["copysnippet",{"_index":2480,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["copytemplate",{"_index":2615,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["core.autocrlf",{"_index":3154,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["core.eol",{"_index":3155,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["correct",{"_index":3216,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["correctly",{"_index":648,"title":{},"body":{"classes/DateFormatter.html":{}}}],["cors",{"_index":3203,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["count",{"_index":1445,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["counter",{"_index":2540,"title":{},"body":{"components/StatusComponent.html":{}}}],["coverage",{"_index":2858,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["createrepo",{"_index":2379,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["createrepo_flags",{"_index":900,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["creates",{"_index":2972,"title":{},"body":{"miscellaneous/functions.html":{}}}],["creating",{"_index":664,"title":{},"body":{"classes/DateFormatter.html":{}}}],["creation",{"_index":1071,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["ctime",{"_index":830,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["current",{"_index":373,"title":{},"body":{"components/AppManageComponent.html":{},"classes/DateFormatter.html":{},"injectables/GetObjService.html":{},"additional-documentation/development-setup.html":{}}}],["currentitem",{"_index":343,"title":{},"body":{"components/AppManageComponent.html":{},"injectables/GetObjService.html":{}}}],["currently",{"_index":3022,"title":{},"body":{"index.html":{}}}],["currentobjs",{"_index":344,"title":{},"body":{"components/AppManageComponent.html":{}}}],["d",{"_index":714,"title":{},"body":{"classes/DateFormatter.html":{}}}],["damages",{"_index":3105,"title":{},"body":{"license.html":{}}}],["data",{"_index":112,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageOverviewComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Param.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/variables.html":{}}}],["data.eventlog",{"_index":758,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["data.itemtype",{"_index":789,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["data.name",{"_index":757,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["data.state",{"_index":2024,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["data[key",{"_index":2422,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["data[name",{"_index":1515,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["datasource",{"_index":1155,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["date",{"_index":330,"title":{},"body":{"components/AppEventsComponent.html":{},"classes/DateFormatter.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"components/StatusComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["date(this.distro.ctime",{"_index":1003,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["date(this.distro.mtime",{"_index":1000,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["date(this.distro.tree_build_time",{"_index":1009,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["date(this.file.ctime",{"_index":1267,"title":{},"body":{"components/FileEditComponent.html":{}}}],["date(this.file.mtime",{"_index":1265,"title":{},"body":{"components/FileEditComponent.html":{}}}],["date(this.image.ctime",{"_index":1417,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["date(this.image.mtime",{"_index":1415,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["date(this.managementclass.ctime",{"_index":1801,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["date(this.managementclass.mtime",{"_index":1799,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["date(this.package.ctime",{"_index":2049,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["date(this.package.mtime",{"_index":2047,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["date(this.profile.ctime",{"_index":2129,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["date(this.profile.mtime",{"_index":2127,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["date(this.repository.ctime",{"_index":2331,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["date(this.repository.mtime",{"_index":2329,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["dateformatter",{"_index":636,"title":{"classes/DateFormatter.html":{}},"body":{"classes/DateFormatter.html":{},"coverage.html":{}}}],["datepipe",{"_index":270,"title":{},"body":{"components/AppEventsComponent.html":{},"components/StatusComponent.html":{}}}],["deal",{"_index":3068,"title":{},"body":{"license.html":{}}}],["dealings",{"_index":3112,"title":{},"body":{"license.html":{}}}],["debug",{"_index":3221,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["decodeiso8601",{"_index":656,"title":{},"body":{"classes/DateFormatter.html":{}}}],["decodeiso8601(time",{"_index":696,"title":{},"body":{"classes/DateFormatter.html":{}}}],["decoding",{"_index":639,"title":{},"body":{"classes/DateFormatter.html":{}}}],["decoration",{"_index":1970,"title":{},"body":{"components/NavbarComponent.html":{}}}],["decorators",{"_index":751,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["default",{"_index":289,"title":{},"body":{"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/variables.html":{}}}],["default_autoinstall",{"_index":1082,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["default_name_servers",{"_index":2736,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_name_servers_search",{"_index":2737,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_ownership",{"_index":2738,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_password_crypted",{"_index":2739,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_template_type",{"_index":2740,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_bridge",{"_index":2741,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_disk_driver",{"_index":2742,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_file_size",{"_index":2743,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_ram",{"_index":2744,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_type",{"_index":2745,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["defined",{"_index":27,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["definition",{"_index":1131,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{}}}],["delete",{"_index":1052,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["deletedistro",{"_index":1156,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["deletedistro(uid",{"_index":1161,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["deletefile",{"_index":1284,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["deletefile(uid",{"_index":1287,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["deleteimage",{"_index":1447,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["deleteimage(uid",{"_index":1451,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["deletekey",{"_index":1542,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["deletekey(key",{"_index":1555,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["deletemanagementclass",{"_index":1824,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["deletemanagementclass(uid",{"_index":1829,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["deletepackage",{"_index":2071,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["deletepackage(uid",{"_index":2075,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["deleteprofile",{"_index":2198,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["deleteprofile(uid",{"_index":2202,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["deleterepository",{"_index":2381,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["deleterepository(uid",{"_index":2385,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["deletesnippet",{"_index":2495,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["deletesnippet(name",{"_index":2499,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["deletesystem",{"_index":2598,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["deletesystem(uid",{"_index":2602,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["deletetemplate",{"_index":2624,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["deletetemplate(name",{"_index":2626,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["delimited",{"_index":1355,"title":{},"body":{"injectables/GetObjService.html":{}}}],["dependencies",{"_index":2931,"title":{"dependencies.html":{}},"body":{"dependencies.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["depth",{"_index":831,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["described",{"_index":3029,"title":{},"body":{"index.html":{}}}],["description",{"_index":44,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"classes/DateFormatter.html":{},"interfaces/DistroSignatures.html":{},"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"miscellaneous/functions.html":{}}}],["deserialize",{"_index":91,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["deserialize(content",{"_index":2993,"title":{},"body":{"miscellaneous/functions.html":{}}}],["deserialize(source",{"_index":132,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["deserializer",{"_index":92,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["deserializeresponse",{"_index":2917,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["deserializeresponse(content",{"_index":2994,"title":{},"body":{"miscellaneous/functions.html":{}}}],["deserializes",{"_index":2995,"title":{},"body":{"miscellaneous/functions.html":{}}}],["details",{"_index":1194,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["dev",{"_index":3013,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["dev:release33",{"_index":3200,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["developer",{"_index":3001,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["developing",{"_index":3184,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["development",{"_index":3134,"title":{"additional-documentation/development-setup.html":{}},"body":{"additional-documentation/development-setup.html":{}}}],["dhcp",{"_index":461,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["dhcp_tag",{"_index":835,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["dialog",{"_index":184,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["dialogboxtextconfirmcomponent",{"_index":183,"title":{"components/DialogBoxTextConfirmComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["dialogclosesignal",{"_index":774,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["dialogdata",{"_index":749,"title":{"interfaces/DialogData.html":{}},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"coverage.html":{}}}],["dialogitemrenamecomponent",{"_index":187,"title":{"components/DialogItemRenameComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["dialogitemrenamedata",{"_index":776,"title":{"interfaces/DialogItemRenameData.html":{}},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"coverage.html":{}}}],["dialogref",{"_index":324,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":327,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["dialogref.afterclosed().subscribe((newitemname",{"_index":1181,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["dialogref.afterclosed().subscribe((result",{"_index":1919,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["dialogtextinputcomponent",{"_index":190,"title":{"components/DialogTextInputComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["dialogtextinputdata",{"_index":801,"title":{"interfaces/DialogTextInputData.html":{}},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"coverage.html":{}}}],["dict",{"_index":1359,"title":{},"body":{"injectables/GetObjService.html":{}}}],["different",{"_index":1117,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"additional-documentation/development-setup.html":{}}}],["digit",{"_index":732,"title":{},"body":{"classes/DateFormatter.html":{}}}],["digits",{"_index":728,"title":{},"body":{"classes/DateFormatter.html":{}}}],["direction",{"_index":1735,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["directive",{"_index":168,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["directives",{"_index":255,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["directive|pipe|service|class|guard|interface|enum|module",{"_index":3034,"title":{},"body":{"index.html":{}}}],["directory",{"_index":591,"title":{},"body":{"components/BuildISOComponent.html":{},"components/FileEditComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["disable",{"_index":736,"title":{},"body":{"classes/DateFormatter.html":{}}}],["disabled",{"_index":959,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["discuss",{"_index":2856,"title":{},"body":{"contributing.html":{}}}],["discussions",{"_index":2857,"title":{},"body":{"contributing.html":{}}}],["display",{"_index":160,"title":{},"body":{"components/AppComponent.html":{},"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/SettingsViewComponent.html":{}}}],["displayedcolumns",{"_index":275,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["dissects",{"_index":690,"title":{},"body":{"classes/DateFormatter.html":{}}}],["dist",{"_index":3037,"title":{},"body":{"index.html":{}}}],["distinctuntilchanged",{"_index":1660,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["distribute",{"_index":3075,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":2194,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["distributions",{"_index":1118,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["distro",{"_index":456,"title":{"interfaces/Distro.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/TemplateEditComponent.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["distro_patterns",{"_index":468,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["distroautoinstallmeta",{"_index":940,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distrobootfiles",{"_index":941,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distroeditcomponent",{"_index":192,"title":{"components/DistroEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["distrofetchablefiles",{"_index":942,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distroformgroup",{"_index":931,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distrohandle",{"_index":1188,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["distrokerneloptions",{"_index":943,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distrokerneloptionspost",{"_index":944,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distroowners",{"_index":939,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distros",{"_index":1139,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{}}}],["distros'},{'name",{"_index":195,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["distrosignatureosversion",{"_index":1080,"title":{"interfaces/DistroSignatureOsVersion.html":{}},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"coverage.html":{}}}],["distrosignatures",{"_index":1126,"title":{"interfaces/DistroSignatures.html":{}},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"coverage.html":{}}}],["distrosoverviewcomponent",{"_index":194,"title":{"components/DistrosOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["distrotemplatefiles",{"_index":945,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["dns",{"_index":462,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["dns_name",{"_index":858,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["docker",{"_index":3141,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["docker/develop/develop.dockerfile",{"_index":3166,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["docker/develop/scripts/setup",{"_index":3176,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["docs",{"_index":1361,"title":{},"body":{"injectables/GetObjService.html":{}}}],["document",{"_index":79,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["documentation",{"_index":1769,"title":{},"body":{"components/ManageMenuComponent.html":{},"contributing.html":{},"coverage.html":{},"license.html":{}}}],["dom",{"_index":140,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["domparser().parsefromstring(input",{"_index":2691,"title":{},"body":{"classes/Utils.html":{}}}],["domsanitizer",{"_index":1938,"title":{},"body":{"components/NavbarComponent.html":{}}}],["don't",{"_index":895,"title":{},"body":{"interfaces/Distro.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageOverviewComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["done",{"_index":2968,"title":{},"body":{"miscellaneous/functions.html":{}}}],["download",{"_index":3144,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["drop",{"_index":1543,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["drop(event",{"_index":1557,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["duration",{"_index":579,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{}}}],["dvd",{"_index":1471,"title":{},"body":{"components/ImportDVDComponent.html":{},"components/ManageMenuComponent.html":{}}}],["dvd'},{'name",{"_index":205,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["dvd.component.html",{"_index":1473,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.scss",{"_index":1472,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts",{"_index":1470,"title":{},"body":{"components/ImportDVDComponent.html":{},"coverage.html":{}}}],["dvd.component.ts:29",{"_index":1481,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:32",{"_index":1479,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:33",{"_index":1480,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:42",{"_index":1476,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:45",{"_index":1482,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:50",{"_index":1477,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:55",{"_index":1478,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd/import",{"_index":1469,"title":{},"body":{"components/ImportDVDComponent.html":{},"coverage.html":{}}}],["dynamic",{"_index":2939,"title":{},"body":{"dependencies.html":{}}}],["d{2}:\\d{2",{"_index":716,"title":{},"body":{"classes/DateFormatter.html":{}}}],["e",{"_index":1885,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["e2e",{"_index":3048,"title":{},"body":{"index.html":{}}}],["each",{"_index":1212,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["edit",{"_index":926,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["edit'},{'name",{"_index":193,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["edit.component.html",{"_index":929,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.scss",{"_index":930,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts",{"_index":925,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"coverage.html":{}}}],["edit.component.ts:103",{"_index":2484,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:105",{"_index":2098,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:108",{"_index":952,"title":{},"body":{"components/DistroEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:112",{"_index":953,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{}}}],["edit.component.ts:113",{"_index":2487,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:117",{"_index":2101,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:121",{"_index":2102,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:129",{"_index":2039,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:133",{"_index":1252,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:138",{"_index":1251,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:143",{"_index":1406,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:145",{"_index":1788,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:150",{"_index":1255,"title":{},"body":{"components/FileEditComponent.html":{},"components/PackageEditComponent.html":{}}}],["edit.component.ts:155",{"_index":2036,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:164",{"_index":1403,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:166",{"_index":1786,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:169",{"_index":1402,"title":{},"body":{"components/ImageEditComponent.html":{},"components/PackageEditComponent.html":{}}}],["edit.component.ts:171",{"_index":1785,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:173",{"_index":2041,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:177",{"_index":2316,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:181",{"_index":1407,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:185",{"_index":1409,"title":{},"body":{"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:189",{"_index":1791,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:198",{"_index":2313,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:203",{"_index":2312,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:215",{"_index":2317,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:219",{"_index":2319,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:229",{"_index":2321,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:238",{"_index":954,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:239",{"_index":2323,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:259",{"_index":951,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:264",{"_index":950,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:278",{"_index":955,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:282",{"_index":972,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:284",{"_index":2103,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:292",{"_index":974,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:302",{"_index":976,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:305",{"_index":2100,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:310",{"_index":2099,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:312",{"_index":978,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:322",{"_index":980,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:324",{"_index":2104,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:328",{"_index":2107,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:332",{"_index":982,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:338",{"_index":2109,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:342",{"_index":984,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:348",{"_index":2111,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:358",{"_index":2113,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:368",{"_index":2115,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:378",{"_index":2117,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:388",{"_index":2119,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:398",{"_index":2121,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:43",{"_index":1258,"title":{},"body":{"components/FileEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:44",{"_index":1257,"title":{},"body":{"components/FileEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:45",{"_index":1256,"title":{},"body":{"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/PackageEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:46",{"_index":970,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/PackageEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:47",{"_index":957,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:48",{"_index":956,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:49",{"_index":969,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:50",{"_index":1789,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:61",{"_index":2485,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:63",{"_index":1250,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:65",{"_index":2486,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:67",{"_index":1784,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:68",{"_index":2035,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:70",{"_index":1401,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:75",{"_index":1253,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:77",{"_index":2311,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:79",{"_index":1254,"title":{},"body":{"components/FileEditComponent.html":{},"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:80",{"_index":2037,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:82",{"_index":1404,"title":{},"body":{"components/ImageEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:83",{"_index":1787,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:84",{"_index":2038,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:86",{"_index":1405,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:89",{"_index":2314,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:93",{"_index":2315,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:96",{"_index":948,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["editable",{"_index":1335,"title":{},"body":{"injectables/GetObjService.html":{}}}],["editdistro",{"_index":934,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["editfile",{"_index":1247,"title":{},"body":{"components/FileEditComponent.html":{}}}],["editimage",{"_index":1397,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["editor",{"_index":1527,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor'},{'name",{"_index":208,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["editor.component",{"_index":988,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["editor.component.html",{"_index":1533,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.scss",{"_index":1534,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts",{"_index":1519,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"coverage.html":{}}}],["editor.component.ts:116",{"_index":1556,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:120",{"_index":1559,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:124",{"_index":1584,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:58",{"_index":1553,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:59",{"_index":1552,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:60",{"_index":1585,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:61",{"_index":1586,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:62",{"_index":1581,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:63",{"_index":1583,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:64",{"_index":1579,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:66",{"_index":1561,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:70",{"_index":1564,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:74",{"_index":1566,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:76",{"_index":1568,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:81",{"_index":1570,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:89",{"_index":1573,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:93",{"_index":1577,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:99",{"_index":1554,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor/key",{"_index":987,"title":{},"body":{"components/DistroEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"coverage.html":{}}}],["editpackage",{"_index":2031,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["editprofile",{"_index":1780,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["editrepository",{"_index":2305,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["editsnippet",{"_index":2481,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{}}}],["editsnippet(name",{"_index":2501,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["edittemplate",{"_index":2616,"title":{},"body":{"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["edittemplate(name",{"_index":2627,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["element",{"_index":167,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["element(by.css('app",{"_index":396,"title":{},"body":{"classes/AppPage.html":{}}}],["element.action",{"_index":1304,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["element.arch",{"_index":1467,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["element.breed",{"_index":1191,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{}}}],["element.class_name",{"_index":1844,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["element.distro",{"_index":2211,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["element.image",{"_index":2612,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["element.installer",{"_index":2085,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["element.ip",{"_index":2530,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.is_definition",{"_index":1845,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["element.key",{"_index":1999,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["element.mirror_type",{"_index":2394,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["element.mostrecentstart",{"_index":2535,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.mostrecentstop",{"_index":2538,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.mostrecenttarget.split(\":\")[0",{"_index":2531,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.mostrecenttarget.split(\":\")[1",{"_index":2532,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.name",{"_index":328,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["element.os_version",{"_index":1192,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["element.path",{"_index":1305,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["element.profile",{"_index":2611,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["element.seenstop",{"_index":2541,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.server",{"_index":2212,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["element.state",{"_index":329,"title":{},"body":{"components/AppEventsComponent.html":{},"components/StatusComponent.html":{}}}],["element.statetime",{"_index":331,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["element.type",{"_index":2449,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["element.value",{"_index":2000,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["element.version",{"_index":2086,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["empty",{"_index":1608,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["enable",{"_index":738,"title":{},"body":{"classes/DateFormatter.html":{}}}],["enable/disable",{"_index":665,"title":{},"body":{"classes/DateFormatter.html":{}}}],["enable_ipxe",{"_index":836,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["enable_menu",{"_index":837,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["encode",{"_index":585,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["encodeiso8601",{"_index":657,"title":{},"body":{"classes/DateFormatter.html":{}}}],["encodeiso8601(date",{"_index":705,"title":{},"body":{"classes/DateFormatter.html":{}}}],["encoding",{"_index":66,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"miscellaneous/functions.html":{}}}],["end",{"_index":3047,"title":{},"body":{"index.html":{}}}],["end_item",{"_index":507,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["ensure",{"_index":3150,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["environment",{"_index":901,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["errmsgpassword",{"_index":1614,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["errmsgserver",{"_index":1615,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["errmsguser",{"_index":1616,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["error",{"_index":584,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"miscellaneous/functions.html":{}}}],["error('requested",{"_index":1517,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["escaping",{"_index":2966,"title":{},"body":{"miscellaneous/functions.html":{}}}],["eslint",{"_index":735,"title":{},"body":{"classes/DateFormatter.html":{}}}],["etc/apache2/vhosts.d/cobbler.conf",{"_index":3212,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["event",{"_index":307,"title":{"interfaces/Event.html":{}},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"components/KeyValueEditorComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{},"license.html":{}}}],["event.currentindex",{"_index":1606,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["event.previousindex",{"_index":1605,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["event.target",{"_index":2431,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["eventemitter",{"_index":1941,"title":{},"body":{"components/NavbarComponent.html":{}}}],["eventid",{"_index":288,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["eventlog",{"_index":326,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["events",{"_index":263,"title":{},"body":{"components/AppEventsComponent.html":{},"components/ManageMenuComponent.html":{}}}],["events'},{'name",{"_index":174,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["events.component.css",{"_index":272,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.html",{"_index":273,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts",{"_index":259,"title":{},"body":{"components/AppEventsComponent.html":{},"coverage.html":{}}}],["events.component.ts:33",{"_index":297,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:36",{"_index":295,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:43",{"_index":283,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:50",{"_index":285,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:59",{"_index":284,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:64",{"_index":287,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events/app",{"_index":258,"title":{},"body":{"components/AppEventsComponent.html":{},"coverage.html":{}}}],["ex",{"_index":1350,"title":{},"body":{"injectables/GetObjService.html":{}}}],["example",{"_index":1331,"title":{},"body":{"injectables/GetObjService.html":{},"components/LogInFormComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["exampleflatnode",{"_index":1195,"title":{"interfaces/ExampleFlatNode.html":{}},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["examples",{"_index":3191,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["exclude",{"_index":593,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["excludedns",{"_index":458,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["execute",{"_index":3045,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["expand_more",{"_index":2473,"title":{},"body":{"components/SignaturesComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["expandable",{"_index":1201,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["export",{"_index":101,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}}}],["express",{"_index":3092,"title":{},"body":{"license.html":{}}}],["expression",{"_index":689,"title":{},"body":{"classes/DateFormatter.html":{}}}],["extended_version",{"_index":1959,"title":{},"body":{"components/NavbarComponent.html":{}}}],["extendedversion",{"_index":446,"title":{"interfaces/ExtendedVersion.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["extends",{"_index":807,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["f",{"_index":3165,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["f10",{"_index":1351,"title":{},"body":{"injectables/GetObjService.html":{}}}],["fail",{"_index":2300,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["failed",{"_index":1053,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{}}}],["failrun",{"_index":2301,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["false",{"_index":125,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["faultcode",{"_index":105,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/variables.html":{}}}],["faultstring",{"_index":106,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/variables.html":{}}}],["feedback",{"_index":2854,"title":{},"body":{"contributing.html":{}}}],["fetchable_files",{"_index":812,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["fetchable_files_inherited",{"_index":965,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["fetchablefilesresult",{"_index":1064,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["few",{"_index":3190,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["fg",{"_index":2295,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["field",{"_index":554,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/TemplateEditComponent.html":{}}}],["fields",{"_index":1333,"title":{},"body":{"injectables/GetObjService.html":{}}}],["fields[0",{"_index":1338,"title":{},"body":{"injectables/GetObjService.html":{}}}],["fields[5",{"_index":1340,"title":{},"body":{"injectables/GetObjService.html":{}}}],["file",{"_index":5,"title":{"interfaces/File.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{}}}],["file_patterns",{"_index":475,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["fileeditcomponent",{"_index":196,"title":{"components/FileEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["fileformgroup",{"_index":1245,"title":{},"body":{"components/FileEditComponent.html":{}}}],["filehandle",{"_index":1301,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["filename",{"_index":843,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["fileoverviewcomponent",{"_index":197,"title":{"components/FileOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["files",{"_index":920,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"index.html":{},"license.html":{}}}],["fill",{"_index":574,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["filter",{"_index":1983,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"interfaces/TableRow.html":{}}}],["filtervalue",{"_index":2430,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["filtervalue.trim().tolowercase",{"_index":2434,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["find",{"_index":376,"title":{},"body":{"components/AppManageComponent.html":{}}}],["fitness",{"_index":3097,"title":{},"body":{"license.html":{}}}],["flag",{"_index":3039,"title":{},"body":{"index.html":{}}}],["flags",{"_index":1497,"title":{},"body":{"components/ImportDVDComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["flat",{"_index":1199,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["flattreecontrol",{"_index":1203,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["flex",{"_index":1734,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["fn",{"_index":1562,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["folder",{"_index":3193,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["follow",{"_index":3142,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["following",{"_index":700,"title":{},"body":{"classes/DateFormatter.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["font",{"_index":2455,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["food",{"_index":1209,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["foreground",{"_index":3178,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["form",{"_index":560,"title":{},"body":{"components/BuildISOComponent.html":{},"injectables/GetObjService.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{}}}],["formarray",{"_index":2268,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["format",{"_index":701,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatcurrentoffset",{"_index":658,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatcurrentoffset(d",{"_index":707,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formats",{"_index":644,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatted",{"_index":641,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatting",{"_index":666,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formbuilder",{"_index":550,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["formcontrol",{"_index":958,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["formcontrol(null",{"_index":2280,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["formdata",{"_index":1684,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formdata.password",{"_index":1688,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formdata.server",{"_index":1690,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formdata.username",{"_index":1686,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formgroup",{"_index":1582,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["formgroup(formgroupcontrols",{"_index":1602,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["formgroupcontrols",{"_index":1599,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["formsmodule",{"_index":526,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["found",{"_index":369,"title":{},"body":{"components/AppManageComponent.html":{},"injectables/ItemSettingsService.html":{},"components/NotFoundComponent.html":{}}}],["found'},{'name",{"_index":222,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["found.component.css",{"_index":1974,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["found.component.html",{"_index":1975,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["found.component.ts",{"_index":1973,"title":{},"body":{"components/NotFoundComponent.html":{},"coverage.html":{}}}],["found.component.ts:12",{"_index":1976,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["found/not",{"_index":1972,"title":{},"body":{"components/NotFoundComponent.html":{},"coverage.html":{}}}],["free",{"_index":1347,"title":{},"body":{"injectables/GetObjService.html":{},"license.html":{}}}],["frontend",{"_index":3021,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["frontend/e2e/src/app.po.ts",{"_index":386,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["frontend/e2e/src/app.po.ts:4",{"_index":392,"title":{},"body":{"classes/AppPage.html":{}}}],["frontend/e2e/src/app.po.ts:8",{"_index":390,"title":{},"body":{"classes/AppPage.html":{}}}],["frontend/src/app/actions/build",{"_index":523,"title":{},"body":{"components/BuildISOComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/check",{"_index":601,"title":{},"body":{"components/CheckSysComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts",{"_index":1383,"title":{},"body":{"components/HardlinkComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:19",{"_index":1388,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:22",{"_index":1391,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:27",{"_index":1389,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:32",{"_index":1390,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/import",{"_index":1468,"title":{},"body":{"components/ImportDVDComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts",{"_index":1850,"title":{},"body":{"components/MkloadersComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:19",{"_index":1854,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:22",{"_index":1857,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:27",{"_index":1855,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:32",{"_index":1856,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts",{"_index":2213,"title":{},"body":{"components/ReplicateComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:31",{"_index":2223,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:34",{"_index":2222,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:35",{"_index":2224,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:50",{"_index":2219,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:53",{"_index":2225,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:58",{"_index":2220,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:63",{"_index":2221,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/repo",{"_index":2246,"title":{},"body":{"components/RepoSyncComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/status/status.component.ts",{"_index":2510,"title":{},"body":{"components/StatusComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/status/status.component.ts:35",{"_index":2521,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:38",{"_index":2520,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:48",{"_index":2518,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:52",{"_index":2522,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:53",{"_index":2513,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:56",{"_index":2523,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:60",{"_index":2517,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:70",{"_index":2516,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:75",{"_index":2515,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:80",{"_index":2514,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts",{"_index":2542,"title":{},"body":{"components/SyncComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:103",{"_index":2558,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:126",{"_index":2559,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:57",{"_index":2566,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:60",{"_index":2560,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:61",{"_index":2564,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:67",{"_index":2565,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:69",{"_index":2570,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:72",{"_index":2553,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:80",{"_index":2555,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:85",{"_index":2572,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:91",{"_index":2574,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:95",{"_index":2554,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:99",{"_index":2557,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/validate",{"_index":2818,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["frontend/src/app/app",{"_index":257,"title":{},"body":{"components/AppEventsComponent.html":{},"coverage.html":{}}}],["frontend/src/app/app.component.ts",{"_index":143,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["frontend/src/app/app.component.ts:11",{"_index":155,"title":{},"body":{"components/AppComponent.html":{}}}],["frontend/src/app/appmanage/app",{"_index":339,"title":{},"body":{"components/AppManageComponent.html":{},"coverage.html":{}}}],["frontend/src/app/common/dialog",{"_index":740,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"coverage.html":{}}}],["frontend/src/app/common/key",{"_index":1518,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"coverage.html":{}}}],["frontend/src/app/common/multi",{"_index":1860,"title":{},"body":{"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["frontend/src/app/common/viewable",{"_index":1196,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/distro/edit/distro",{"_index":924,"title":{},"body":{"components/DistroEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/distro/overview/distros",{"_index":1137,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/file/edit/file",{"_index":1244,"title":{},"body":{"components/FileEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/file/overview/file",{"_index":1281,"title":{},"body":{"components/FileOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/image/edit/image",{"_index":1394,"title":{},"body":{"components/ImageEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/image/overview/image",{"_index":1446,"title":{},"body":{"components/ImageOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/management",{"_index":1775,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/package/edit/package",{"_index":2028,"title":{},"body":{"components/PackageEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/package/overview/package",{"_index":2070,"title":{},"body":{"components/PackageOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/profile/edit/profile",{"_index":2087,"title":{},"body":{"components/ProfileEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/profile/overview/profile",{"_index":2197,"title":{},"body":{"components/ProfileOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/repository/edit/repository",{"_index":2302,"title":{},"body":{"components/RepositoryEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/repository/overview/repository",{"_index":2380,"title":{},"body":{"components/RepositoryOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/snippet/edit/snippet",{"_index":2477,"title":{},"body":{"components/SnippetEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/snippet/overview/snippet",{"_index":2494,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/system/edit/system",{"_index":2895,"title":{},"body":{"coverage.html":{}}}],["frontend/src/app/items/system/overview/system",{"_index":2597,"title":{},"body":{"components/SystemOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/template/edit/template",{"_index":2613,"title":{},"body":{"components/TemplateEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/template/overview/template",{"_index":2623,"title":{},"body":{"components/TemplateOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/login/login.component.ts",{"_index":1611,"title":{},"body":{"components/LogInFormComponent.html":{},"coverage.html":{}}}],["frontend/src/app/login/login.component.ts:104",{"_index":1629,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:108",{"_index":1650,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:112",{"_index":1652,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:116",{"_index":1654,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:120",{"_index":1628,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:147",{"_index":1631,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:157",{"_index":1632,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:171",{"_index":1630,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:36",{"_index":1648,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:37",{"_index":1638,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:38",{"_index":1639,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:39",{"_index":1637,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:41",{"_index":1647,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:42",{"_index":1646,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:43",{"_index":1645,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:55",{"_index":1634,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:64",{"_index":1627,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:67",{"_index":1635,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/manage",{"_index":1743,"title":{},"body":{"components/ManageMenuComponent.html":{},"coverage.html":{}}}],["frontend/src/app/navbar/navbar.component.ts",{"_index":1925,"title":{},"body":{"components/NavbarComponent.html":{},"coverage.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:30",{"_index":1948,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:33",{"_index":1942,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:34",{"_index":1946,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:35",{"_index":1947,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:36",{"_index":1939,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:41",{"_index":1945,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:42",{"_index":1949,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:77",{"_index":1944,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:82",{"_index":1943,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/not",{"_index":1971,"title":{},"body":{"components/NotFoundComponent.html":{},"coverage.html":{}}}],["frontend/src/app/services/auth",{"_index":400,"title":{},"body":{"injectables/AuthGuardService.html":{},"coverage.html":{}}}],["frontend/src/app/services/get",{"_index":1306,"title":{},"body":{"injectables/GetObjService.html":{},"coverage.html":{}}}],["frontend/src/app/services/item",{"_index":1499,"title":{},"body":{"injectables/ItemSettingsService.html":{},"coverage.html":{}}}],["frontend/src/app/services/user.service.ts",{"_index":2638,"title":{},"body":{"injectables/UserService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["frontend/src/app/services/user.service.ts:10",{"_index":2653,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:11",{"_index":2652,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:12",{"_index":2650,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:13",{"_index":2651,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:14",{"_index":2647,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:25",{"_index":2654,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:33",{"_index":2656,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:37",{"_index":2657,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:41",{"_index":2661,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:45",{"_index":2663,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:49",{"_index":2659,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:54",{"_index":2665,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:58",{"_index":2668,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:62",{"_index":2649,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/settings/view/settings",{"_index":2396,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/signatures/signatures.component.ts",{"_index":1979,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:108",{"_index":2465,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:111",{"_index":2462,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:119",{"_index":2469,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:124",{"_index":2470,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:130",{"_index":2464,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:133",{"_index":2457,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:136",{"_index":2471,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:141",{"_index":2460,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:145",{"_index":2459,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:150",{"_index":2466,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:152",{"_index":2467,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:155",{"_index":2458,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:186",{"_index":2461,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:92",{"_index":2468,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:95",{"_index":2463,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/unauthorized/unauthorized.component.ts",{"_index":2631,"title":{},"body":{"components/UnauthorizedComponent.html":{},"coverage.html":{}}}],["frontend/src/app/unauthorized/unauthorized.component.ts:11",{"_index":2635,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["frontend/src/app/utils.ts",{"_index":2687,"title":{},"body":{"classes/Utils.html":{},"coverage.html":{}}}],["frontend/src/app/utils.ts:2",{"_index":2690,"title":{},"body":{"classes/Utils.html":{}}}],["frontend/src/environments/environment.prod.ts",{"_index":2899,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["frontend/src/environments/environment.ts",{"_index":2900,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["full",{"_index":600,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/SyncComponent.html":{}}}],["fullsync",{"_index":2543,"title":{},"body":{"components/SyncComponent.html":{}}}],["fullsyncdhcp",{"_index":2561,"title":{},"body":{"components/SyncComponent.html":{}}}],["fullsyncdns",{"_index":2562,"title":{},"body":{"components/SyncComponent.html":{}}}],["fullsyncverbose",{"_index":2563,"title":{},"body":{"components/SyncComponent.html":{}}}],["function",{"_index":710,"title":{},"body":{"classes/DateFormatter.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["functions",{"_index":2952,"title":{"miscellaneous/functions.html":{}},"body":{"miscellaneous/functions.html":{}}}],["furnished",{"_index":3082,"title":{},"body":{"license.html":{}}}],["further",{"_index":3049,"title":{},"body":{"index.html":{}}}],["gap",{"_index":1737,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["gateway",{"_index":878,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["generate",{"_index":3033,"title":{},"body":{"index.html":{}}}],["generated",{"_index":78,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["generatesignatureuidata",{"_index":2008,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["get_autoinstall_snippets(this.userservice.token",{"_index":2508,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["get_autoinstall_templates(this.userservice.token",{"_index":2629,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["get_distro(this.name",{"_index":995,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["get_distro_handle(name",{"_index":1187,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["get_distros",{"_index":1178,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["get_event_log(eventid",{"_index":323,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["get_events",{"_index":317,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["get_file(this.name",{"_index":1260,"title":{},"body":{"components/FileEditComponent.html":{}}}],["get_file_handle(name",{"_index":1300,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["get_files",{"_index":1298,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["get_image(this.name",{"_index":1410,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["get_image_handle(name",{"_index":1464,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["get_images",{"_index":1463,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["get_mgmtclass(this.name",{"_index":1792,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["get_mgmtclass_handle(name",{"_index":1840,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["get_mgmtclasses",{"_index":1839,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["get_package(this.name",{"_index":2042,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["get_package_handle(name",{"_index":2081,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["get_packages",{"_index":2080,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["get_profile(this.name",{"_index":2122,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["get_profile_handle(name",{"_index":2207,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["get_profiles",{"_index":2206,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["get_repo(this.name",{"_index":2324,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["get_repo_handle(name",{"_index":2390,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["get_repos",{"_index":2389,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["get_signatures(this.userservice.token",{"_index":2009,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["get_status('normal",{"_index":2524,"title":{},"body":{"components/StatusComponent.html":{}}}],["get_system_handle(name",{"_index":2607,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["get_systems",{"_index":2606,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["get_task_status(value",{"_index":2022,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["getall",{"_index":1502,"title":{},"body":{"injectables/ItemSettingsService.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["getdistroautoinstallmeta",{"_index":973,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrobootfiles",{"_index":975,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrofetchablefiles",{"_index":977,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrokerneloptions",{"_index":979,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrokerneloptionspost",{"_index":981,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistroowners",{"_index":971,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrotemplatefiles",{"_index":983,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getimageowners",{"_index":1408,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["getitem",{"_index":1503,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["getitem(name",{"_index":1507,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["getitems",{"_index":1311,"title":{},"body":{"injectables/GetObjService.html":{}}}],["getkeyvaluearrayfgcontrols",{"_index":2573,"title":{},"body":{"components/SyncComponent.html":{}}}],["getlocaldateparts",{"_index":659,"title":{},"body":{"classes/DateFormatter.html":{}}}],["getlocaldateparts(date",{"_index":717,"title":{},"body":{"classes/DateFormatter.html":{}}}],["getmgmtclassowners",{"_index":1790,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["getnewkeyvaluefg",{"_index":2571,"title":{},"body":{"components/SyncComponent.html":{}}}],["getnewrepositoryformgroup",{"_index":2276,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["getobjservice",{"_index":349,"title":{"injectables/GetObjService.html":{}},"body":{"components/AppManageComponent.html":{},"injectables/GetObjService.html":{},"coverage.html":{}}}],["getpackageowners",{"_index":2040,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["getpassword",{"_index":1653,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["getprofileautoinstallmeta",{"_index":2108,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilebootfiles",{"_index":2114,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilefetchablefiles",{"_index":2116,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilekerneloptions",{"_index":2110,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilekerneloptionspost",{"_index":2112,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilemgmtparameters",{"_index":2118,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofileowners",{"_index":2106,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofiletemplatefiles",{"_index":2120,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getrepositoryarrayfgcontrols",{"_index":2278,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["getrepositoryowners",{"_index":2318,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["getrepositoryrsyncopts",{"_index":2322,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["getrepositoryyumopts",{"_index":2320,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["getroles",{"_index":2667,"title":{},"body":{"injectables/UserService.html":{}}}],["getserver",{"_index":1649,"title":{},"body":{"components/LogInFormComponent.html":{},"injectables/UserService.html":{}}}],["getstatus",{"_index":406,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["getting",{"_index":2843,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{}}],["gettitletext",{"_index":388,"title":{},"body":{"classes/AppPage.html":{}}}],["gettoken",{"_index":2660,"title":{},"body":{"injectables/UserService.html":{}}}],["getusername",{"_index":1651,"title":{},"body":{"components/LogInFormComponent.html":{},"injectables/UserService.html":{}}}],["getutcdateparts",{"_index":660,"title":{},"body":{"classes/DateFormatter.html":{}}}],["getutcdateparts(date",{"_index":722,"title":{},"body":{"classes/DateFormatter.html":{}}}],["git",{"_index":3152,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["git@github.com:cobbler/cobbler",{"_index":3162,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["git@github.com:cobbler/cobbler.git",{"_index":3161,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["gitdate",{"_index":447,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["github",{"_index":2846,"title":{},"body":{"contributing.html":{}}}],["gitstamp",{"_index":448,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["give",{"_index":1493,"title":{},"body":{"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{},"additional-documentation/development-setup.html":{}}}],["go",{"_index":3051,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["goes",{"_index":1682,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["granted",{"_index":3061,"title":{},"body":{"license.html":{}}}],["group",{"_index":911,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{}}}],["grub",{"_index":1077,"title":{},"body":{"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["grub2_mod_dir",{"_index":2723,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["grubconfig_dir",{"_index":2724,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["guard",{"_index":1626,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["guard.service",{"_index":1658,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["guard.service.ts",{"_index":401,"title":{},"body":{"injectables/AuthGuardService.html":{},"coverage.html":{}}}],["guard.service.ts:10",{"_index":419,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:11",{"_index":411,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:18",{"_index":412,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:41",{"_index":414,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:50",{"_index":417,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:55",{"_index":415,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guide",{"_index":3140,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["guiding",{"_index":3217,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["handling",{"_index":3202,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["hardlink",{"_index":1384,"title":{},"body":{"components/HardlinkComponent.html":{},"components/ManageMenuComponent.html":{}}}],["hardlink'},{'name",{"_index":200,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["hardlink.component.html",{"_index":1385,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["hardlink.component.scss",{"_index":1386,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["hardlinkcomponent",{"_index":199,"title":{"components/HardlinkComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["hardlinkhardlink",{"_index":1393,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["haschild",{"_index":1231,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["hasosversion",{"_index":2007,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["header",{"_index":1997,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["headers",{"_index":12,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"additional-documentation/development-setup.html":{}}}],["hear",{"_index":1367,"title":{},"body":{"injectables/GetObjService.html":{}}}],["height",{"_index":164,"title":{},"body":{"components/AppComponent.html":{},"components/LogInFormComponent.html":{}}}],["help",{"_index":1771,"title":{},"body":{"components/ManageMenuComponent.html":{},"contributing.html":{},"index.html":{}}}],["helper",{"_index":709,"title":{},"body":{"classes/DateFormatter.html":{}}}],["here",{"_index":1511,"title":{},"body":{"injectables/ItemSettingsService.html":{},"additional-documentation/development-setup.html":{}}}],["hereby",{"_index":3060,"title":{},"body":{"license.html":{}}}],["holders",{"_index":3102,"title":{},"body":{"license.html":{}}}],["host",{"_index":159,"title":{},"body":{"components/AppComponent.html":{}}}],["hostname",{"_index":496,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["houses",{"_index":1327,"title":{},"body":{"injectables/GetObjService.html":{}}}],["html",{"_index":166,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["htmlinputelement).value",{"_index":2432,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["http",{"_index":14,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["http://localhost/cobbler_api",{"_index":2680,"title":{},"body":{"injectables/UserService.html":{}}}],["http://localhost:4200",{"_index":3015,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["http_port",{"_index":2746,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["httpclient",{"_index":26,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpheaders",{"_index":86,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpoptions",{"_index":120,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpoptions.set('accept",{"_index":123,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpoptions.set('content",{"_index":121,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["https://cobbler.github.io/images/logo",{"_index":1954,"title":{},"body":{"components/NavbarComponent.html":{}}}],["https://github.com/nelliesnoodles/angular",{"_index":3003,"title":{},"body":{"index.html":{}}}],["https://stackoverflow.com/a/50067730/4730773",{"_index":2671,"title":{},"body":{"injectables/UserService.html":{}}}],["https://transform.tools/json",{"_index":1124,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["hyphen",{"_index":671,"title":{},"body":{"classes/DateFormatter.html":{}}}],["hyphen/colon",{"_index":646,"title":{},"body":{"classes/DateFormatter.html":{}}}],["hyphens",{"_index":652,"title":{},"body":{"classes/DateFormatter.html":{}}}],["i386",{"_index":1098,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"injectables/GetObjService.html":{}}}],["i586",{"_index":1099,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ia64",{"_index":1100,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["iconregistry",{"_index":1940,"title":{},"body":{"components/NavbarComponent.html":{}}}],["iconregistry.addsvgicon",{"_index":1951,"title":{},"body":{"components/NavbarComponent.html":{}}}],["id",{"_index":515,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["identifier",{"_index":2859,"title":{},"body":{"coverage.html":{}}}],["if_gateway",{"_index":859,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["image",{"_index":202,"title":{"interfaces/Image.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"additional-documentation/development-setup.html":{}}}],["image_patterns",{"_index":472,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["image_type",{"_index":915,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["imageeditcomponent",{"_index":201,"title":{"components/ImageEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["imageformgroup",{"_index":1395,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["imagehandle",{"_index":1465,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["imageoverviewcomponent",{"_index":203,"title":{"components/ImageOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["imageowners",{"_index":1400,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["images",{"_index":589,"title":{},"body":{"components/BuildISOComponent.html":{},"injectables/GetObjService.html":{},"components/ImageOverviewComponent.html":{},"components/ManageMenuComponent.html":{}}}],["implemented",{"_index":1057,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["implements",{"_index":260,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["implied",{"_index":3093,"title":{},"body":{"license.html":{}}}],["import",{"_index":84,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["importdvdcomponent",{"_index":204,"title":{"components/ImportDVDComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["importformgroup",{"_index":1474,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["importoptions",{"_index":1483,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["imports",{"_index":149,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["include",{"_index":2747,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["included",{"_index":3086,"title":{},"body":{"license.html":{}}}],["including",{"_index":3070,"title":{},"body":{"license.html":{}}}],["incorrectly",{"_index":43,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["index",{"_index":9,"title":{"index.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}}}],["information",{"_index":1055,"title":{},"body":{"components/DistroEditComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["inherit",{"_index":1969,"title":{},"body":{"components/NavbarComponent.html":{}}}],["inherited",{"_index":1074,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["initial",{"_index":3000,"title":{},"body":{"index.html":{}}}],["initrd",{"_index":813,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["initrd_file",{"_index":1083,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["inject",{"_index":299,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{}}}],["inject(cobbler_url",{"_index":1663,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["inject(formbuilder",{"_index":544,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["inject(mat_dialog_data",{"_index":752,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["inject(matdialog",{"_index":315,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["inject(matdialogref",{"_index":781,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["injectable",{"_index":0,"title":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{},"coverage.html":{}}}],["injectables",{"_index":2,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{},"overview.html":{}}}],["injectiontoken('cobbler_url",{"_index":3130,"title":{},"body":{"miscellaneous/variables.html":{}}}],["input",{"_index":793,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/ExampleFlatNode.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"components/SettingsViewComponent.html":{},"classes/Utils.html":{},"components/ViewableTreeComponent.html":{}}}],["input'},{'name",{"_index":191,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["input.component",{"_index":1901,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["input.component.html",{"_index":794,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["input.component.scss",{"_index":795,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["input.component.ts",{"_index":792,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"coverage.html":{}}}],["input.component.ts:37",{"_index":800,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.component.ts:38",{"_index":797,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.component.ts:39",{"_index":799,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.component.ts:41",{"_index":796,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.value",{"_index":2453,"title":{},"body":{"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["input/dialog",{"_index":791,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["inputlength",{"_index":2830,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["inputlength(inputobject",{"_index":1233,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["inputobject",{"_index":1218,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["inputobject[key",{"_index":1239,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["inputs",{"_index":577,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/SyncComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["install",{"_index":3008,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["installation",{"_index":2529,"title":{},"body":{"components/StatusComponent.html":{}}}],["installationstatus",{"_index":516,"title":{"interfaces/InstallationStatus.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["installer",{"_index":923,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Repo.html":{}}}],["instanceof",{"_index":1912,"title":{},"body":{"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["instanceofmethodfault",{"_index":19,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofmethodfault(object",{"_index":48,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofmethodresponse",{"_index":20,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofmethodresponse(object",{"_index":52,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcarray",{"_index":21,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcarray(object",{"_index":55,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcstruct",{"_index":22,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcstruct(object",{"_index":59,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instead",{"_index":672,"title":{},"body":{"classes/DateFormatter.html":{}}}],["interface",{"_index":432,"title":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/DialogData.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"index.html":{}}}],["interface_master",{"_index":860,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["interface_type",{"_index":861,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["interfaces",{"_index":434,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/DialogData.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"overview.html":{}}}],["internal",{"_index":1337,"title":{},"body":{"injectables/GetObjService.html":{}}}],["ip",{"_index":517,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["ip_address",{"_index":862,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv4",{"_index":2195,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["ipv6",{"_index":2196,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["ipv6_address",{"_index":863,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_autoconfiguration",{"_index":875,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_default_device",{"_index":879,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_default_gateway",{"_index":864,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_mtu",{"_index":865,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_prefix",{"_index":866,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_secondaries",{"_index":867,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_static_routes",{"_index":868,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipxe",{"_index":1115,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["is_definition",{"_index":918,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["is_dir",{"_index":912,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["is_subobject",{"_index":814,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["isarray",{"_index":2439,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["isarray(element.value",{"_index":2450,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["isarray(input",{"_index":2436,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["isdisabled",{"_index":1535,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["iseditmode",{"_index":932,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["isloading",{"_index":611,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["islogged",{"_index":1931,"title":{},"body":{"components/NavbarComponent.html":{}}}],["iso",{"_index":452,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"classes/DateFormatter.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"components/ManageMenuComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["iso'},{'name",{"_index":179,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["iso.component.html",{"_index":534,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.scss",{"_index":533,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts",{"_index":525,"title":{},"body":{"components/BuildISOComponent.html":{},"coverage.html":{}}}],["iso.component.ts:33",{"_index":548,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:36",{"_index":545,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:37",{"_index":547,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:48",{"_index":541,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:51",{"_index":549,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:56",{"_index":542,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:61",{"_index":543,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso/build",{"_index":524,"title":{},"body":{"components/BuildISOComponent.html":{},"coverage.html":{}}}],["iso8601",{"_index":640,"title":{},"body":{"classes/DateFormatter.html":{}}}],["iso_template_dir",{"_index":2748,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["isolinux_ok",{"_index":1084,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["issue",{"_index":3206,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["item",{"_index":188,"title":{"interfaces/Item.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["itemname",{"_index":786,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["items",{"_index":498,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"components/LogInFormComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["items_per_page",{"_index":508,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["items_per_page_list",{"_index":509,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["itemsettingsservice",{"_index":1498,"title":{"injectables/ItemSettingsService.html":{}},"body":{"injectables/ItemSettingsService.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["itemtype",{"_index":785,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["itemuid",{"_index":787,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["j",{"_index":2012,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["javascript",{"_index":702,"title":{},"body":{"classes/DateFormatter.html":{}}}],["jinja2_includedir",{"_index":2749,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["json",{"_index":1130,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/LogInFormComponent.html":{}}}],["json.stringify(this.mockvalues",{"_index":1375,"title":{},"body":{"injectables/GetObjService.html":{}}}],["justify",{"_index":1732,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["k",{"_index":877,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["karma",{"_index":3046,"title":{},"body":{"index.html":{}}}],["keep",{"_index":2376,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["keep_updated",{"_index":902,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["kernel",{"_index":815,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["kernel_arch",{"_index":1085,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["kernel_arch_regex",{"_index":1086,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["kernel_file",{"_index":1087,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["kernel_options",{"_index":816,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["kernel_options_inherited",{"_index":966,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["kernel_options_post",{"_index":817,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["kernel_options_post_inherited",{"_index":967,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["kerneloptionspost",{"_index":2191,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["kerneloptionspostresult",{"_index":1066,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["kerneloptionsresult",{"_index":1065,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["key",{"_index":207,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["keyorder",{"_index":1536,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["keyorderformgroup",{"_index":1537,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["keyvalue",{"_index":2567,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvaluearrayfgcontrols",{"_index":2551,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvaluearrayfgcontrols.length",{"_index":2595,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvalueeditorcomponent",{"_index":206,"title":{"components/KeyValueEditorComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["keyvaluefa",{"_index":2544,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvalueoptions",{"_index":1550,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["kind",{"_index":3091,"title":{},"body":{"license.html":{}}}],["label",{"_index":1551,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["lacking",{"_index":3209,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["last",{"_index":1069,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["ldap_anonymous_bind",{"_index":2750,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_base_dn",{"_index":2751,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_port",{"_index":2752,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_search_bind_dn",{"_index":2753,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_search_passwd",{"_index":2754,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_search_prefix",{"_index":2755,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_server",{"_index":2756,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls",{"_index":2757,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_cacertdir",{"_index":2758,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_cacertfile",{"_index":2759,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_certfile",{"_index":2760,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_cipher_suite",{"_index":2763,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_keyfile",{"_index":2761,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_reqcert",{"_index":2762,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["leave",{"_index":1343,"title":{},"body":{"injectables/GetObjService.html":{}}}],["left",{"_index":1365,"title":{},"body":{"injectables/GetObjService.html":{},"components/NavbarComponent.html":{}}}],["legend",{"_index":165,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["len",{"_index":737,"title":{},"body":{"classes/DateFormatter.html":{}}}],["length",{"_index":725,"title":{},"body":{"classes/DateFormatter.html":{}}}],["level",{"_index":1202,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["lf",{"_index":3156,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["liability",{"_index":3106,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3103,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3028,"title":{},"body":{"index.html":{}}}],["license",{"_index":3054,"title":{"license.html":{}},"body":{"license.html":{}}}],["limitation",{"_index":3071,"title":{},"body":{"license.html":{}}}],["limited",{"_index":3094,"title":{},"body":{"license.html":{},"additional-documentation/development-setup.html":{}}}],["line",{"_index":762,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["link",{"_index":3145,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["links/components",{"_index":1704,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["list",{"_index":1213,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["literal",{"_index":1093,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["local",{"_index":653,"title":{},"body":{"classes/DateFormatter.html":{}}}],["locally",{"_index":2378,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["localstorage.getitem('cobbler_url",{"_index":3131,"title":{},"body":{"miscellaneous/variables.html":{}}}],["localstorage.getitem(cobbler_url_key_name",{"_index":2679,"title":{},"body":{"injectables/UserService.html":{}}}],["log",{"_index":756,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/LogInFormComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{},"additional-documentation/development-setup.html":{}}}],["loggedin",{"_index":402,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["login",{"_index":418,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{},"additional-documentation/development-setup.html":{}}}],["login'},{'name",{"_index":210,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["login.component.css",{"_index":1612,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["login.component.html",{"_index":1613,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["login_form",{"_index":1617,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["loginformcomponent",{"_index":209,"title":{"components/LogInFormComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["loginformcomponent.urlvalidator",{"_index":1643,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["logo",{"_index":1952,"title":{},"body":{"components/NavbarComponent.html":{}}}],["logout",{"_index":1932,"title":{},"body":{"components/NavbarComponent.html":{}}}],["logs",{"_index":338,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["long",{"_index":333,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["mac_address",{"_index":869,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["main",{"_index":3158,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["major",{"_index":442,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["make",{"_index":3196,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["makes",{"_index":68,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["manage",{"_index":156,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["manage'},{'name",{"_index":176,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["manage.component.css",{"_index":341,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.html",{"_index":342,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts",{"_index":340,"title":{},"body":{"components/AppManageComponent.html":{},"coverage.html":{}}}],["manage.component.ts:11",{"_index":355,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:12",{"_index":353,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:13",{"_index":354,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:14",{"_index":350,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:38",{"_index":352,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage_dhcp",{"_index":2765,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_dhcp_v4",{"_index":2766,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_dhcp_v6",{"_index":2767,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_dns",{"_index":2768,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_forward_zones",{"_index":2769,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_genders",{"_index":2771,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_reverse_zones",{"_index":2770,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_rsync",{"_index":2772,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_tftpd",{"_index":2773,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["management",{"_index":870,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{}}}],["managementclass",{"_index":1777,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["managementclasseditcomponent",{"_index":211,"title":{"components/ManagementClassEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["managementclassformgroup",{"_index":1778,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["managementclassoverviewcomponent",{"_index":212,"title":{"components/ManagementClassOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["managemenucomponent",{"_index":150,"title":{"components/ManageMenuComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["manager",{"_index":3143,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["map",{"_index":94,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/ItemSettingsService.html":{}}}],["map((data",{"_index":1514,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["map((source",{"_index":131,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["margin",{"_index":1742,"title":{},"body":{"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{}}}],["master",{"_index":466,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mat",{"_index":2454,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["mat_dialog_data",{"_index":754,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matbutton",{"_index":527,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["matbuttonmodule",{"_index":267,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/ExampleFlatNode.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["matcard",{"_index":1528,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["matcardheader",{"_index":1529,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["matcardtitle",{"_index":1530,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["matcell",{"_index":1142,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matcelldef",{"_index":1145,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matcheckbox",{"_index":532,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matcheckboxchange",{"_index":1883,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matching",{"_index":134,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["matcolumndef",{"_index":1143,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matdialog",{"_index":281,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["matdialogactions",{"_index":742,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdialogclose",{"_index":743,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/SyncComponent.html":{}}}],["matdialogcontent",{"_index":745,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdialogmodule",{"_index":768,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["matdialogref",{"_index":784,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdialogtitle",{"_index":744,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdivider",{"_index":1981,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matdividermodule",{"_index":1747,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["matfabbutton",{"_index":1867,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matformfield",{"_index":528,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matformfieldmodule",{"_index":769,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matheadercell",{"_index":1141,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matheadercelldef",{"_index":1144,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matheaderrow",{"_index":1146,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matheaderrowdef",{"_index":1149,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["maticon",{"_index":606,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["maticonbutton",{"_index":605,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["maticonmodule",{"_index":269,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["maticonregistry",{"_index":1936,"title":{},"body":{"components/NavbarComponent.html":{}}}],["matinput",{"_index":529,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matinputmodule",{"_index":770,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matlabel",{"_index":530,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matlist",{"_index":1982,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matlistitem",{"_index":1865,"title":{},"body":{"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matlistmodule",{"_index":265,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/ManageMenuComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["matmenu",{"_index":1150,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["matmenuitem",{"_index":1151,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["matmenumodule",{"_index":268,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["matmenutrigger",{"_index":1152,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["matnavlist",{"_index":1749,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["matoption",{"_index":928,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matpaginator",{"_index":2399,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matpaginatormodule",{"_index":2400,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matprefix",{"_index":2249,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["matprogressspinner",{"_index":608,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matrow",{"_index":1147,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matrowdef",{"_index":1148,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matselect",{"_index":927,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matselectmodule",{"_index":1863,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matselectoptionsformgroup",{"_index":1870,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matsidenavmodule",{"_index":1746,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["matslidetoggle",{"_index":2214,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["matslidetogglemodule",{"_index":2408,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["matsnackbar",{"_index":540,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["matsort",{"_index":2402,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matsortmodule",{"_index":2403,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["matsuffix",{"_index":2250,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["mattable",{"_index":1140,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["mattabledatasource",{"_index":290,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["mattablemodule",{"_index":266,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["mattoolbarmodule",{"_index":1748,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{}}}],["mattooltip",{"_index":607,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["mattooltipmodule",{"_index":2411,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["mattree",{"_index":1986,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreeflatdatasource",{"_index":1205,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["mattreeflatdatasource(this.treecontrol",{"_index":2005,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreeflattener",{"_index":1206,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["mattreemodule",{"_index":1207,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["mattreenode",{"_index":1987,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreenodedef",{"_index":1988,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreenodepadding",{"_index":1989,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreenodetoggle",{"_index":1990,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["max",{"_index":598,"title":{},"body":{"components/BuildISOComponent.html":{},"classes/DateFormatter.html":{},"components/ImportDVDComponent.html":{}}}],["meaningful",{"_index":2981,"title":{},"body":{"miscellaneous/functions.html":{}}}],["means",{"_index":1185,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"miscellaneous/functions.html":{}}}],["meet",{"_index":730,"title":{},"body":{"classes/DateFormatter.html":{}}}],["member",{"_index":1846,"title":{"interfaces/Member.html":{}},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["members",{"_index":111,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}}}],["menu",{"_index":838,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/ManageMenuComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["menu'},{'name",{"_index":213,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["menu.component",{"_index":158,"title":{},"body":{"components/AppComponent.html":{}}}],["menu.component.css",{"_index":1750,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu.component.html",{"_index":1751,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu.component.ts",{"_index":1744,"title":{},"body":{"components/ManageMenuComponent.html":{},"coverage.html":{}}}],["menu.component.ts:29",{"_index":1753,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu.component.ts:30",{"_index":1754,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu/manage",{"_index":157,"title":{},"body":{"components/AppComponent.html":{},"components/ManageMenuComponent.html":{},"coverage.html":{}}}],["merchantability",{"_index":3096,"title":{},"body":{"license.html":{}}}],["merge",{"_index":1659,"title":{},"body":{"components/LogInFormComponent.html":{},"license.html":{}}}],["message",{"_index":586,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["metadata",{"_index":144,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["method",{"_index":37,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["methodcall",{"_index":23,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["methodcall(method",{"_index":62,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["methodfault",{"_index":51,"title":{"interfaces/MethodFault.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["methodresponse",{"_index":54,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["methods",{"_index":16,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["mgmgtclass",{"_index":917,"title":{"interfaces/Mgmgtclass.html":{}},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"coverage.html":{}}}],["mgmt_classes",{"_index":818,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["mgmt_classes_inherited",{"_index":962,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["mgmt_parameters",{"_index":819,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["mgmt_parameters_inherited",{"_index":2105,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["mgmtclass_patterns",{"_index":473,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mgmtclasshandle",{"_index":1841,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["mgmtclassowners",{"_index":1783,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["mgmtparametersresult",{"_index":2192,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["middle",{"_index":634,"title":{},"body":{"components/CheckSysComponent.html":{},"components/NavbarComponent.html":{},"components/SettingsViewComponent.html":{}}}],["milliseconds",{"_index":675,"title":{},"body":{"classes/DateFormatter.html":{}}}],["min",{"_index":596,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{}}}],["minimum",{"_index":1719,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["minor",{"_index":444,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mirror",{"_index":903,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{}}}],["mirror_locally",{"_index":905,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["mirror_type",{"_index":904,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{}}}],["miscellaneous",{"_index":2951,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["mit",{"_index":3055,"title":{},"body":{"license.html":{}}}],["mkloaders",{"_index":1766,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/MkloadersComponent.html":{}}}],["mkloaders'},{'name",{"_index":215,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["mkloaders.component.html",{"_index":1851,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["mkloaders.component.scss",{"_index":1852,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["mkloaderscomponent",{"_index":214,"title":{"components/MkloadersComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["mkloadersmkloaders",{"_index":1859,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["mngclassesservice",{"_index":1332,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mock",{"_index":1328,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mockobject",{"_index":1308,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mockobjname",{"_index":1309,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mockvalues",{"_index":1310,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mode",{"_index":913,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{}}}],["model",{"_index":780,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["model(this.data.text",{"_index":798,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["modified",{"_index":1070,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["modify",{"_index":3073,"title":{},"body":{"license.html":{}}}],["modules",{"_index":3113,"title":{"modules.html":{}},"body":{"modules.html":{}}}],["moment",{"_index":1058,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["more",{"_index":1054,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"index.html":{}}}],["more_vert",{"_index":336,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["mostrecentstart",{"_index":518,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mostrecentstop",{"_index":519,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mostrecenttarget",{"_index":520,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["moveiteminarray",{"_index":1587,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["moveiteminarray(this.keyorder",{"_index":1604,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["ms",{"_index":654,"title":{},"body":{"classes/DateFormatter.html":{}}}],["mtime",{"_index":832,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["mtu",{"_index":871,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["multi",{"_index":217,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{}}}],["multiselectcomponent",{"_index":216,"title":{"components/MultiSelectComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["multiselectoptions",{"_index":1875,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["multiselectoptions.length",{"_index":1923,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["name",{"_index":31,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["name(item",{"_index":1378,"title":{},"body":{"injectables/GetObjService.html":{}}}],["name_servers",{"_index":839,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["name_servers_search",{"_index":840,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["navbar",{"_index":1926,"title":{},"body":{"components/NavbarComponent.html":{}}}],["navbar'},{'name",{"_index":220,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["navbar.component.css",{"_index":1928,"title":{},"body":{"components/NavbarComponent.html":{}}}],["navbar.component.html",{"_index":1929,"title":{},"body":{"components/NavbarComponent.html":{}}}],["navbar/navbar.component",{"_index":1758,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["navbarcomponent",{"_index":219,"title":{"components/NavbarComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["navigate",{"_index":3014,"title":{},"body":{"index.html":{}}}],["navigateto",{"_index":389,"title":{},"body":{"classes/AppPage.html":{}}}],["nbsp",{"_index":2296,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["nbsp;= ",{"_index":1610,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["need",{"_index":1186,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"contributing.html":{},"index.html":{}}}],["needed",{"_index":2967,"title":{},"body":{"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["nelliesnoodles",{"_index":3002,"title":{},"body":{"index.html":{}}}],["nested",{"_index":1210,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["netboot_enabled",{"_index":880,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["netmask",{"_index":872,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["network",{"_index":1444,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["network_count",{"_index":916,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["networkinterface",{"_index":853,"title":{"interfaces/NetworkInterface.html":{}},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"coverage.html":{}}}],["new",{"_index":115,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["new.svg",{"_index":1955,"title":{},"body":{"components/NavbarComponent.html":{}}}],["newdata",{"_index":2010,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["newdata.push",{"_index":2019,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["newitemname",{"_index":1182,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["newkeyvaluefg",{"_index":2550,"title":{},"body":{"components/SyncComponent.html":{}}}],["newrepositoryformgroup",{"_index":2258,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["next",{"_index":1858,"title":{},"body":{"components/MkloadersComponent.html":{},"components/ProfileEditComponent.html":{}}}],["next_page",{"_index":502,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["next_server_v4",{"_index":841,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["next_server_v6",{"_index":842,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ng",{"_index":3011,"title":{},"body":{"index.html":{}}}],["ng_validators",{"_index":1526,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["ng_value_accessor",{"_index":1524,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["ngafterviewinit",{"_index":2424,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["ngforof",{"_index":1866,"title":{},"body":{"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["ngif",{"_index":1980,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["ngondestroy",{"_index":277,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["ngoninit",{"_index":278,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["ngunsubscribe",{"_index":276,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["node",{"_index":1200,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["node.children",{"_index":1223,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.children.length",{"_index":1224,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.data",{"_index":2003,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["node.expandable",{"_index":1221,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.js",{"_index":3006,"title":{},"body":{"index.html":{}}}],["node.level",{"_index":1220,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.name",{"_index":1225,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["node.value",{"_index":1226,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["nofail",{"_index":490,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["non",{"_index":1334,"title":{},"body":{"injectables/GetObjService.html":{}}}],["none",{"_index":2973,"title":{},"body":{"miscellaneous/functions.html":{}}}],["noninfringement",{"_index":3100,"title":{},"body":{"license.html":{}}}],["nopxe_with_triggers",{"_index":2788,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["note",{"_index":3019,"title":{},"body":{"index.html":{}}}],["notfoundcomponent",{"_index":221,"title":{"components/NotFoundComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["nothing",{"_index":1510,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["notice",{"_index":3084,"title":{},"body":{"license.html":{}}}],["npm",{"_index":3007,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["nsupdate_enabled",{"_index":2774,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["nsupdate_log",{"_index":2775,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["nsupdate_tsig_algorithm",{"_index":2776,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["nsupdate_tsig_key",{"_index":2777,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["null",{"_index":107,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["num_items",{"_index":505,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["num_pages",{"_index":504,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["number",{"_index":443,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["obj",{"_index":1578,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["obj.service",{"_index":357,"title":{},"body":{"components/AppManageComponent.html":{}}}],["obj.service.ts",{"_index":1307,"title":{},"body":{"injectables/GetObjService.html":{},"coverage.html":{}}}],["obj.service.ts:39",{"_index":1318,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:40",{"_index":1323,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:42",{"_index":1319,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:46",{"_index":1316,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:49",{"_index":1312,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:65",{"_index":1313,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:69",{"_index":1325,"title":{},"body":{"injectables/GetObjService.html":{}}}],["object",{"_index":49,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["object.keys(inputobject).foreach((key",{"_index":1237,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["object.keys(inputobject).length",{"_index":1234,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["object.keys(object).length",{"_index":109,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["object.keys(this.keyvalueoptions",{"_index":1580,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["object.keys(this.keyvalueoptions).length",{"_index":1607,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["object.keys(this.matselectoptionsformgroup.controls).foreach((key",{"_index":1910,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["objectnode",{"_index":1215,"title":{"interfaces/ObjectNode.html":{}},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["objects",{"_index":364,"title":{},"body":{"components/AppManageComponent.html":{}}}],["objtype",{"_index":2519,"title":{},"body":{"components/StatusComponent.html":{}}}],["observable",{"_index":80,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/CheckSysComponent.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{}}}],["observe",{"_index":126,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["obtaining",{"_index":3064,"title":{},"body":{"license.html":{}}}],["of(data",{"_index":627,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["offset",{"_index":655,"title":{},"body":{"classes/DateFormatter.html":{}}}],["ok",{"_index":805,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["old",{"_index":790,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["omit",{"_index":2244,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["omit_data",{"_index":477,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["onchange",{"_index":1539,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["ondestroy",{"_index":262,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["oninit",{"_index":261,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["online",{"_index":1770,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["onnoclick",{"_index":775,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["ontouched",{"_index":1540,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["operating",{"_index":1078,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["opinions",{"_index":2853,"title":{},"body":{"contributing.html":{}}}],["option",{"_index":803,"title":{},"body":{"components/DialogTextInputComponent.html":{},"components/MultiSelectComponent.html":{}}}],["optional",{"_index":33,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":74,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/BuildISOComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["options).pipe",{"_index":130,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["options.foreach((value",{"_index":1903,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["options.push(key",{"_index":1914,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["optionsignal",{"_index":1871,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["originates",{"_index":587,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["os_version",{"_index":487,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["osbreedflatnode",{"_index":1978,"title":{"interfaces/OsBreedFlatNode.html":{}},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["osnode",{"_index":1992,"title":{"interfaces/OsNode.html":{}},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["osversiondata",{"_index":2014,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["osversiondata.push",{"_index":2016,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["otherwise",{"_index":41,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"license.html":{}}}],["out",{"_index":575,"title":{},"body":{"components/BuildISOComponent.html":{},"index.html":{},"license.html":{}}}],["output",{"_index":674,"title":{},"body":{"classes/DateFormatter.html":{},"components/NavbarComponent.html":{}}}],["outputs",{"_index":1933,"title":{},"body":{"components/NavbarComponent.html":{}}}],["overrides",{"_index":1368,"title":{},"body":{"injectables/GetObjService.html":{}}}],["overview",{"_index":1282,"title":{"overview.html":{}},"body":{"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{},"index.html":{},"overview.html":{}}}],["overview'},{'name",{"_index":198,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["overview.component.css",{"_index":1153,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.html",{"_index":1154,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.scss",{"_index":1283,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts",{"_index":1138,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{},"coverage.html":{}}}],["overview.component.ts:101",{"_index":1833,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:102",{"_index":1456,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:136",{"_index":1288,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:139",{"_index":1162,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:140",{"_index":2076,"title":{},"body":{"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{}}}],["overview.component.ts:142",{"_index":1452,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:145",{"_index":1830,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:47",{"_index":2505,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:48",{"_index":2504,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:50",{"_index":2498,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:52",{"_index":1296,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:53",{"_index":2506,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:55",{"_index":1172,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:56",{"_index":1295,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:58",{"_index":1171,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:59",{"_index":1170,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:61",{"_index":1160,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:62",{"_index":1460,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:63",{"_index":1828,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:64",{"_index":1174,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:66",{"_index":1837,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:67",{"_index":1461,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:68",{"_index":1290,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:71",{"_index":1164,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:72",{"_index":1289,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:73",{"_index":1831,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:74",{"_index":1454,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:75",{"_index":1163,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:77",{"_index":1293,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:78",{"_index":1453,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:80",{"_index":1167,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:81",{"_index":2502,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:82",{"_index":1834,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:83",{"_index":1457,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:85",{"_index":2500,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:92",{"_index":1294,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:95",{"_index":1169,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:96",{"_index":1292,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:97",{"_index":1836,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:98",{"_index":1459,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:99",{"_index":1166,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["owner",{"_index":914,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{}}}],["owners",{"_index":820,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["owners_inherited",{"_index":961,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["ownersresult",{"_index":1060,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["p",{"_index":3169,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["package",{"_index":922,"title":{"interfaces/Package.html":{},"dependencies.html":{},"properties.html":{}},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Repo.html":{},"coverage.html":{},"additional-documentation/development-setup.html":{}}}],["package_patterns",{"_index":474,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["packageeditcomponent",{"_index":223,"title":{"components/PackageEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["packageformgroup",{"_index":2029,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["packagehandle",{"_index":2082,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["packageoverviewcomponent",{"_index":224,"title":{"components/PackageOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["packageowners",{"_index":2034,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["packages",{"_index":921,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Repo.html":{}}}],["pad",{"_index":727,"title":{},"body":{"classes/DateFormatter.html":{},"components/NavbarComponent.html":{}}}],["padded",{"_index":720,"title":{},"body":{"classes/DateFormatter.html":{}}}],["padded.length",{"_index":739,"title":{},"body":{"classes/DateFormatter.html":{}}}],["padding",{"_index":1741,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["page",{"_index":500,"title":{"additional-documentation/development-setup.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"index.html":{}}}],["pageinfo",{"_index":499,"title":{"interfaces/PageInfo.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["pages",{"_index":503,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["pagesitemsresult",{"_index":497,"title":{"interfaces/PagesItemsResult.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["paginator",{"_index":2416,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["param",{"_index":118,"title":{"interfaces/Param.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["parameter",{"_index":2974,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parameters",{"_index":29,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["parameters/variables",{"_index":1358,"title":{},"body":{"injectables/GetObjService.html":{}}}],["params",{"_index":64,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"miscellaneous/functions.html":{}}}],["parent",{"_index":821,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"miscellaneous/functions.html":{}}}],["parsed",{"_index":2996,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parses",{"_index":649,"title":{},"body":{"classes/DateFormatter.html":{}}}],["particular",{"_index":3098,"title":{},"body":{"license.html":{}}}],["parts",{"_index":692,"title":{},"body":{"classes/DateFormatter.html":{}}}],["pass",{"_index":1687,"title":{},"body":{"components/LogInFormComponent.html":{},"miscellaneous/functions.html":{}}}],["pass).subscribe",{"_index":1694,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["password",{"_index":1625,"title":{},"body":{"components/LogInFormComponent.html":{},"additional-documentation/development-setup.html":{}}}],["password.invalid",{"_index":1731,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["password.touched",{"_index":1730,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["patch",{"_index":445,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["path",{"_index":481,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["pattern",{"_index":1662,"title":{},"body":{"components/LogInFormComponent.html":{},"components/ReplicateComponent.html":{}}}],["patternproperty",{"_index":1132,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["permission",{"_index":3059,"title":{},"body":{"license.html":{}}}],["permit",{"_index":3080,"title":{},"body":{"license.html":{}}}],["person",{"_index":3063,"title":{},"body":{"license.html":{}}}],["personal",{"_index":2850,"title":{},"body":{"contributing.html":{}}}],["persons",{"_index":3081,"title":{},"body":{"license.html":{}}}],["pipe",{"_index":2023,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["pipe(distinctuntilchanged",{"_index":1670,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["pipe(takeuntil(this.ngunsubscribe",{"_index":318,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["please",{"_index":1708,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{},"contributing.html":{},"additional-documentation/development-setup.html":{}}}],["port",{"_index":467,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["portion",{"_index":668,"title":{},"body":{"classes/DateFormatter.html":{}}}],["portions",{"_index":3088,"title":{},"body":{"license.html":{}}}],["power",{"_index":493,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["power_address",{"_index":881,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_id",{"_index":882,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_identity_file",{"_index":887,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_management_default_type",{"_index":2778,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["power_options",{"_index":886,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_pass",{"_index":883,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_type",{"_index":884,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_user",{"_index":885,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ppc",{"_index":1101,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ppc64",{"_index":1102,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ppc64el",{"_index":1104,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ppc64le",{"_index":1103,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["pre",{"_index":761,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["prefix",{"_index":733,"title":{},"body":{"classes/DateFormatter.html":{}}}],["prerequisites",{"_index":3005,"title":{},"body":{"index.html":{}}}],["prev_page",{"_index":501,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["prior",{"_index":3138,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["priority",{"_index":906,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["private",{"_index":11,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["problem",{"_index":3128,"title":{},"body":{"miscellaneous/variables.html":{}}}],["processing",{"_index":3129,"title":{},"body":{"miscellaneous/variables.html":{}}}],["prod",{"_index":3038,"title":{},"body":{"index.html":{}}}],["production",{"_index":3040,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":495,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/SnippetEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["profile_patterns",{"_index":469,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["profileautoinstallmeta",{"_index":2091,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilebootfiles",{"_index":2094,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profileeditcomponent",{"_index":225,"title":{"components/ProfileEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["profilefetchablefiles",{"_index":2095,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profileformgroup",{"_index":2088,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilehandle",{"_index":2208,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["profilekerneloptions",{"_index":2092,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilekerneloptionspost",{"_index":2093,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilemgmtparameters",{"_index":2096,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profileoverviewcomponent",{"_index":226,"title":{"components/ProfileOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["profileowners",{"_index":2090,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profiles",{"_index":453,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"injectables/GetObjService.html":{},"interfaces/InstallationStatus.html":{},"components/ManageMenuComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["profiletemplatefiles",{"_index":2097,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["project",{"_index":3020,"title":{},"body":{"index.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["projects",{"_index":3009,"title":{},"body":{"index.html":{}}}],["projects/.../constants.ts",{"_index":3122,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../deserializer.ts",{"_index":2954,"title":{},"body":{"miscellaneous/functions.html":{}}}],["projects/.../environment.prod.ts",{"_index":3126,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../environment.ts",{"_index":3127,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../lib.config.ts",{"_index":3124,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../serializer.ts",{"_index":2953,"title":{},"body":{"miscellaneous/functions.html":{}}}],["projects/.../settings.ts",{"_index":3120,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["projects/.../typescript",{"_index":3123,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../user.service.ts",{"_index":3125,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../xmlrpc",{"_index":3119,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["projects/cobbler",{"_index":142,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["projects/typescript",{"_index":6,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["promise",{"_index":391,"title":{},"body":{"classes/AppPage.html":{}}}],["properties",{"_index":10,"title":{"properties.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"properties.html":{}}}],["protected",{"_index":1538,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["protractor",{"_index":394,"title":{},"body":{"classes/AppPage.html":{},"index.html":{}}}],["provide",{"_index":1523,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["provided",{"_index":3089,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":99,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{}}}],["providers",{"_index":1522,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["provides",{"_index":1700,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["proxies",{"_index":2779,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["proxy",{"_index":844,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["proxy.conf.json",{"_index":3215,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["proxy_url_ext",{"_index":2780,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["proxy_url_int",{"_index":2781,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["prune",{"_index":476,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["public",{"_index":537,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["publish",{"_index":3074,"title":{},"body":{"license.html":{}}}],["puppet_auto_setup",{"_index":2782,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppet_parameterized_classes",{"_index":2783,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppet_server",{"_index":2784,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppet_version",{"_index":2785,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppetca_path",{"_index":2786,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["purpose",{"_index":3099,"title":{},"body":{"license.html":{}}}],["pwd}:/code",{"_index":3173,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["pxe",{"_index":1114,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["pxe_just_once",{"_index":2787,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["random",{"_index":3219,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["reactiveformsmodule",{"_index":531,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["read",{"_index":334,"title":{},"body":{"components/AppEventsComponent.html":{},"additional-documentation/development-setup.html":{}}}],["read_autoinstall_snippet(this.name",{"_index":2488,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["read_autoinstall_template(this.name",{"_index":2619,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["readbywho",{"_index":293,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["readonly",{"_index":13,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{}}}],["real",{"_index":897,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/LogInFormComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["recent",{"_index":2533,"title":{},"body":{"components/StatusComponent.html":{}}}],["redhat",{"_index":1079,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["redhat_management_key",{"_index":822,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["redhat_management_permissive",{"_index":2789,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["redhat_management_server",{"_index":2790,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["redhat|debian|ubuntu|suse|vmware|freebsd|xen|unix|windows|powerkvm|generic",{"_index":1133,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["reference",{"_index":3053,"title":{},"body":{"index.html":{}}}],["referenced",{"_index":1128,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["refresh",{"_index":628,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["refreshdata",{"_index":935,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["regexp",{"_index":678,"title":{},"body":{"classes/DateFormatter.html":{}}}],["register_new_installs",{"_index":2791,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["registeronchange",{"_index":1544,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeronchange(fn",{"_index":1560,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registerontouched",{"_index":1545,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registerontouched(fn",{"_index":1563,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeronvalidatorchange",{"_index":1546,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeronvalidatorchange(fn",{"_index":1565,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeroptions",{"_index":494,"title":{"interfaces/RegisterOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["regular",{"_index":688,"title":{},"body":{"classes/DateFormatter.html":{}}}],["release",{"_index":3188,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["release33",{"_index":3199,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["reload",{"_index":3017,"title":{},"body":{"index.html":{}}}],["remote",{"_index":1075,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["remote_boot_initrd",{"_index":823,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remote_boot_kernel",{"_index":824,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remote_grub_initrd",{"_index":825,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remote_grub_kernel",{"_index":826,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remove",{"_index":2297,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["remove_autoinstall_snippet(name",{"_index":2509,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["remove_autoinstall_snippet(this.name",{"_index":2492,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["remove_autoinstall_template(name",{"_index":2630,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["remove_autoinstall_template(this.name",{"_index":2621,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["remove_distro(name",{"_index":1190,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["remove_distro(this.name",{"_index":1049,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["remove_file(name",{"_index":1303,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["remove_file(this.name",{"_index":1278,"title":{},"body":{"components/FileEditComponent.html":{}}}],["remove_image(this.name",{"_index":1442,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["remove_mgmtclass(name",{"_index":1843,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["remove_mgmtclass(this.name",{"_index":1821,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["remove_old_puppet_certs_automatically",{"_index":2792,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["remove_package(name",{"_index":2084,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["remove_package(this.name",{"_index":2068,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["remove_profile(name",{"_index":2210,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["remove_profile(this.name",{"_index":2189,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["remove_repo(name",{"_index":2393,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["remove_repo(this.name",{"_index":2372,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["remove_system(name",{"_index":2610,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["removedistro",{"_index":936,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["removefile",{"_index":1248,"title":{},"body":{"components/FileEditComponent.html":{}}}],["removegroup",{"_index":439,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["removeimage",{"_index":1398,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["removemanagementclass",{"_index":1781,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["removenewkeyvaluefg",{"_index":2547,"title":{},"body":{"components/SyncComponent.html":{}}}],["removenewkeyvaluefg(index",{"_index":2556,"title":{},"body":{"components/SyncComponent.html":{}}}],["removenewrepofg",{"_index":2256,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["removenewrepofg(index",{"_index":2263,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["removepackage",{"_index":2032,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["removeprofile",{"_index":2089,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["removerepository",{"_index":2306,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["removesnippet",{"_index":2482,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["removetemplate",{"_index":2617,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["removeuser",{"_index":440,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["rename",{"_index":767,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["rename'},{'name",{"_index":189,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["rename.component",{"_index":1176,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["rename.component.html",{"_index":771,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["rename.component.scss",{"_index":773,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["rename.component.ts",{"_index":764,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"coverage.html":{}}}],["rename.component.ts:40",{"_index":782,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename.component.ts:41",{"_index":777,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename.component.ts:43",{"_index":779,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename.component.ts:45",{"_index":778,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename/dialog",{"_index":763,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"coverage.html":{}}}],["rename_distro(distrohandle",{"_index":1189,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["rename_file(filehandle",{"_index":1302,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["rename_image(imagehandle",{"_index":1466,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["rename_mgmtclass",{"_index":1842,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["rename_package",{"_index":2083,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["rename_profile",{"_index":2209,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["rename_repo(repohandle",{"_index":2392,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["rename_system(systemhandle",{"_index":2609,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["renamedistro",{"_index":1157,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["renamedistro(uid",{"_index":1165,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["renamefile",{"_index":1285,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["renamefile(uid",{"_index":1291,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["renameimage",{"_index":1448,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["renameimage(uid",{"_index":1455,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["renamemanagementclass",{"_index":1825,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["renamemanagementclass(uid",{"_index":1832,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["renamepackage",{"_index":2072,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["renamepackage(uid",{"_index":2077,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["renameprofile",{"_index":2199,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["renameprofile(uid",{"_index":2203,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["renamerepository",{"_index":2382,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["renamerepository(uid",{"_index":2386,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["renamesystem",{"_index":2599,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["renamesystem(uid",{"_index":2603,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["repeat",{"_index":1984,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["replicate",{"_index":595,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManageMenuComponent.html":{},"components/ReplicateComponent.html":{}}}],["replicate'},{'name",{"_index":228,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["replicate.component.html",{"_index":2215,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["replicate.component.scss",{"_index":2216,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["replicate_repo_rsync_options",{"_index":2793,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["replicate_rsync_options",{"_index":2794,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["replicatecomponent",{"_index":227,"title":{"components/ReplicateComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["replicateformgroup",{"_index":2217,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["replicateoptions",{"_index":2228,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["repo",{"_index":232,"title":{"interfaces/Repo.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"index.html":{}}}],["repo_patterns",{"_index":471,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["repohandle",{"_index":2391,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["reponame",{"_index":2270,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reponames",{"_index":2284,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reponames.push(control.value.reponame",{"_index":2286,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reportprogress",{"_index":124,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["repos",{"_index":489,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["repos_enabled",{"_index":876,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["repositories",{"_index":2292,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"additional-documentation/development-setup.html":{}}}],["repository",{"_index":1299,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"additional-documentation/development-setup.html":{}}}],["repositoryarrayfgcontrols",{"_index":2259,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["repositoryarrayfgcontrols.length",{"_index":2293,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["repositoryeditcomponent",{"_index":229,"title":{"components/RepositoryEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["repositoryformarray",{"_index":2253,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["repositoryformgroup",{"_index":2303,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["repositoryoverviewcomponent",{"_index":230,"title":{"components/RepositoryOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["repositoryowners",{"_index":2308,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["repositoryrsyncopts",{"_index":2310,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["repositoryyumopts",{"_index":2309,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["reposync",{"_index":1765,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["reposync_flags",{"_index":2795,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["reposync_rsync_flags",{"_index":2796,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["reposynccomponent",{"_index":231,"title":{"components/RepoSyncComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["reposyncformgroup",{"_index":2254,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposyncformgroup.controls.reponame.controls[i].haserror(\"required",{"_index":2298,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposyncnofail",{"_index":2272,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposyncoptions",{"_index":2287,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposynctries",{"_index":2273,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["representation",{"_index":703,"title":{},"body":{"classes/DateFormatter.html":{}}}],["request",{"_index":3207,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["required",{"_index":576,"title":{},"body":{"components/BuildISOComponent.html":{},"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["requirements",{"_index":731,"title":{},"body":{"classes/DateFormatter.html":{},"additional-documentation/development-setup.html":{}}}],["resources",{"_index":1349,"title":{},"body":{"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{}}}],["response",{"_index":2982,"title":{},"body":{"miscellaneous/functions.html":{}}}],["responsetype",{"_index":127,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["restart_dhcp",{"_index":2797,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["restart_dns",{"_index":2798,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["restriction",{"_index":3069,"title":{},"body":{"license.html":{}}}],["result",{"_index":1920,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["resulting",{"_index":3213,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["results",{"_index":133,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["resultstructure",{"_index":1236,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["resultstructure.push",{"_index":1241,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["retrievedistros",{"_index":1158,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["retrievefiles",{"_index":1286,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["retrieveimages",{"_index":1449,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["retrievemanagementclasses",{"_index":1826,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["retrievepackages",{"_index":2073,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["retrieveprofiles",{"_index":2200,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["retrieverepositories",{"_index":2383,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["retrievesnippets",{"_index":2496,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["retrievesystems",{"_index":2600,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["return",{"_index":103,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/variables.html":{}}}],["returned",{"_index":1326,"title":{},"body":{"injectables/GetObjService.html":{}}}],["returns",{"_index":46,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["rhn",{"_index":1111,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["right",{"_index":1967,"title":{},"body":{"components/NavbarComponent.html":{}}}],["rights",{"_index":3072,"title":{},"body":{"license.html":{}}}],["rm",{"_index":3168,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["roles",{"_index":2646,"title":{},"body":{"injectables/UserService.html":{}}}],["root",{"_index":100,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["root'},{'name",{"_index":171,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["route",{"_index":949,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["router",{"_index":410,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["router.url",{"_index":1773,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["routerlink",{"_index":1927,"title":{},"body":{"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{}}}],["routermodule",{"_index":1745,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["routeroutlet",{"_index":264,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/ManageMenuComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{}}}],["row",{"_index":630,"title":{},"body":{"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/SettingsViewComponent.html":{}}}],["rpc",{"_index":70,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["rpm_list",{"_index":907,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["rsync",{"_index":1110,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/ImportDVDComponent.html":{}}}],["rsync_flags",{"_index":484,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["rsyncopts",{"_index":909,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["rsyncoptsresult",{"_index":2375,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["run",{"_index":594,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["run_install_triggers",{"_index":2799,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["runbuildiso",{"_index":538,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["runhardlink",{"_index":1387,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["runimport",{"_index":1475,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["runmkloaders",{"_index":1853,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["running",{"_index":3041,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["runreplicate",{"_index":2218,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["runreposync",{"_index":2257,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["runtime",{"_index":3181,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["runvalidateautoinstalls",{"_index":2823,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["rxjs",{"_index":93,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"dependencies.html":{}}}],["rxjs/operators",{"_index":95,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["s390",{"_index":1105,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["s390x",{"_index":1106,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["samba_distro_share",{"_index":2817,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["sanitizer",{"_index":1937,"title":{},"body":{"components/NavbarComponent.html":{}}}],["sanitizer.bypasssecuritytrustresourceurl",{"_index":1953,"title":{},"body":{"components/NavbarComponent.html":{}}}],["save",{"_index":347,"title":{},"body":{"components/AppManageComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["save(index",{"_index":351,"title":{},"body":{"components/AppManageComponent.html":{}}}],["savedistro",{"_index":937,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["savefile",{"_index":1249,"title":{},"body":{"components/FileEditComponent.html":{}}}],["saveimage",{"_index":1399,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["saveobj",{"_index":345,"title":{},"body":{"components/AppManageComponent.html":{}}}],["savepackage",{"_index":2033,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["saveprofile",{"_index":1782,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["saverepository",{"_index":2307,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["savesnippet",{"_index":2483,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["savetemplate",{"_index":2618,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["scaffolding",{"_index":3032,"title":{},"body":{"index.html":{}}}],["schema",{"_index":1120,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["schema.md",{"_index":1364,"title":{},"body":{"injectables/GetObjService.html":{}}}],["schoolguy",{"_index":2852,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["scm_push_script",{"_index":2803,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["scm_track_author",{"_index":2802,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["scm_track_enabled",{"_index":2800,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["scm_track_mode",{"_index":2801,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["script",{"_index":3174,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["search",{"_index":1924,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["see",{"_index":1360,"title":{},"body":{"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"additional-documentation/development-setup.html":{}}}],["seen",{"_index":2539,"title":{},"body":{"components/StatusComponent.html":{},"additional-documentation/development-setup.html":{}}}],["seenstart",{"_index":521,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["seenstop",{"_index":522,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["select",{"_index":1862,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select'},{'name",{"_index":218,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["select.component",{"_index":991,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["select.component.html",{"_index":1868,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.scss",{"_index":1869,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts",{"_index":1861,"title":{},"body":{"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["select.component.ts:101",{"_index":1888,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:105",{"_index":1890,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:114",{"_index":1894,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:119",{"_index":1889,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:121",{"_index":1893,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:125",{"_index":1884,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:140",{"_index":1878,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:69",{"_index":1877,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:70",{"_index":1876,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:71",{"_index":1897,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:72",{"_index":1898,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:73",{"_index":1899,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:74",{"_index":1895,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:75",{"_index":1900,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:76",{"_index":1896,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:78",{"_index":1886,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:82",{"_index":1881,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:91",{"_index":1892,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:97",{"_index":1887,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select/multi",{"_index":990,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"coverage.html":{}}}],["selected",{"_index":370,"title":{},"body":{"components/AppManageComponent.html":{}}}],["selector",{"_index":145,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["sell",{"_index":3078,"title":{},"body":{"license.html":{}}}],["send",{"_index":76,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["separate",{"_index":2997,"title":{},"body":{"index.html":{}}}],["separator",{"_index":670,"title":{},"body":{"classes/DateFormatter.html":{}}}],["separators",{"_index":647,"title":{},"body":{"classes/DateFormatter.html":{}}}],["serial_baud_rate",{"_index":891,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["serial_device",{"_index":890,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["serializemethodcall",{"_index":88,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["serializemethodcall(method",{"_index":119,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["serializer",{"_index":89,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["serializer_pretty_json",{"_index":2804,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["serializevalue",{"_index":2927,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["serializevalue(value",{"_index":2978,"title":{},"body":{"miscellaneous/functions.html":{}}}],["serve",{"_index":3012,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["server",{"_index":71,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["server(url",{"_index":2681,"title":{},"body":{"injectables/UserService.html":{}}}],["server.invalid",{"_index":1726,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["server.touched",{"_index":1725,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["server_prefilled",{"_index":1618,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["server_value",{"_index":2678,"title":{},"body":{"injectables/UserService.html":{}}}],["service",{"_index":40,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppManageComponent.html":{},"components/LogInFormComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"injectables/UserService.html":{}}}],["service.getitems",{"_index":362,"title":{},"body":{"components/AppManageComponent.html":{}}}],["service.name",{"_index":374,"title":{},"body":{"components/AppManageComponent.html":{}}}],["services/auth",{"_index":1657,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["services/get",{"_index":356,"title":{},"body":{"components/AppManageComponent.html":{}}}],["services/item",{"_index":2406,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["services/user.service",{"_index":558,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["serving",{"_index":3024,"title":{},"body":{"index.html":{}}}],["session",{"_index":1369,"title":{},"body":{"injectables/GetObjService.html":{},"components/LogInFormComponent.html":{}}}],["sessionitem",{"_index":1380,"title":{},"body":{"injectables/GetObjService.html":{}}}],["sessionlive",{"_index":421,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["set",{"_index":1377,"title":{},"body":{"injectables/GetObjService.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["setactive(bool",{"_index":2664,"title":{},"body":{"injectables/UserService.html":{}}}],["setbool",{"_index":407,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["setbool(login",{"_index":416,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["setdisabledstate",{"_index":1547,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["setdisabledstate(isdisabled",{"_index":1567,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["setformgroupdisabledstate",{"_index":1548,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["setformgroupdisabledstate(isdisabled",{"_index":1569,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["setname(item",{"_index":1324,"title":{},"body":{"injectables/GetObjService.html":{}}}],["sets",{"_index":1696,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["setserver(url",{"_index":2655,"title":{},"body":{"injectables/UserService.html":{}}}],["setting",{"_index":3153,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["settings",{"_index":235,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/typealiases.html":{}}}],["settings.service",{"_index":2407,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["settings.service.ts",{"_index":1500,"title":{},"body":{"injectables/ItemSettingsService.html":{},"coverage.html":{}}}],["settings.service.ts:11",{"_index":1505,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings.service.ts:13",{"_index":1509,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings.service.ts:19",{"_index":1506,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings.service.ts:23",{"_index":1508,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings:default_ownership",{"_index":1353,"title":{},"body":{"injectables/GetObjService.html":{}}}],["settings_data",{"_index":2420,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["settings_data.push",{"_index":2421,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["settingstablerowdata",{"_index":2395,"title":{"interfaces/SettingsTableRowData.html":{}},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["settingsviewcomponent",{"_index":234,"title":{"components/SettingsViewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["settoken(token",{"_index":2662,"title":{},"body":{"injectables/UserService.html":{}}}],["setup",{"_index":3135,"title":{"additional-documentation/development-setup.html":{}},"body":{"additional-documentation/development-setup.html":{}}}],["setusername(name",{"_index":2658,"title":{},"body":{"injectables/UserService.html":{}}}],["shall",{"_index":3085,"title":{},"body":{"license.html":{}}}],["short",{"_index":2536,"title":{},"body":{"components/StatusComponent.html":{}}}],["show",{"_index":337,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["showdistro",{"_index":1159,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{}}}],["showdistro(uid",{"_index":1168,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{}}}],["showimage",{"_index":1450,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["showimage(uid",{"_index":1458,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["showlogs",{"_index":279,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["showlogs(eventid",{"_index":286,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["showmanagementclass",{"_index":1827,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["showmanagementclass(uid",{"_index":1835,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["showpackage",{"_index":2074,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["showpackage(uid",{"_index":2078,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["showprofile",{"_index":2201,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["showprofile(uid",{"_index":2204,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["showrepository",{"_index":2384,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["showrepository(uid",{"_index":2387,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["showsnippet",{"_index":2497,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["showsnippet(name",{"_index":2503,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["showsystem",{"_index":2601,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["showsystem(uid",{"_index":2604,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["showtemplate",{"_index":2625,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["showtemplate(name",{"_index":2628,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["sign_puppet_certs_automatically",{"_index":2805,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["signal",{"_index":1636,"title":{},"body":{"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["signature_path",{"_index":2806,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["signature_url",{"_index":2807,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["signatures",{"_index":1088,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/ManageMenuComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["signatures'},{'name",{"_index":238,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["signatures.component.html",{"_index":1993,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["signatures.component.scss",{"_index":1994,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["signaturescomponent",{"_index":237,"title":{"components/SignaturesComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["size",{"_index":379,"title":{},"body":{"components/AppManageComponent.html":{},"components/SettingsViewComponent.html":{}}}],["skip",{"_index":2977,"title":{},"body":{"miscellaneous/functions.html":{}}}],["skipped",{"_index":2975,"title":{},"body":{"miscellaneous/functions.html":{}}}],["snippet",{"_index":2478,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{}}}],["snippeteditcomponent",{"_index":239,"title":{"components/SnippetEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["snippetformgroup",{"_index":2479,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["snippetoverviewcomponent",{"_index":240,"title":{"components/SnippetOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["snippets",{"_index":1330,"title":{},"body":{"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{},"components/SnippetOverviewComponent.html":{}}}],["software",{"_index":3066,"title":{},"body":{"license.html":{}}}],["sometimes",{"_index":3185,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["sort",{"_index":2418,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["source",{"_index":4,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"index.html":{}}}],["source_repos",{"_index":827,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["space",{"_index":760,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"injectables/GetObjService.html":{}}}],["spacer",{"_index":1965,"title":{},"body":{"components/NavbarComponent.html":{}}}],["span')).gettext",{"_index":398,"title":{},"body":{"classes/AppPage.html":{}}}],["specific",{"_index":2294,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{},"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["specified",{"_index":72,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["spinner",{"_index":621,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["ssl",{"_index":2245,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["stackoverflow",{"_index":3220,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["stamp",{"_index":699,"title":{},"body":{"classes/DateFormatter.html":{}}}],["standalone",{"_index":147,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{}}}],["start",{"_index":2534,"title":{},"body":{"components/StatusComponent.html":{},"additional-documentation/development-setup.html":{}}}],["start_item",{"_index":506,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["started",{"_index":2844,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{"contributing.html":{}}}],["state",{"_index":291,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["statements",{"_index":2860,"title":{},"body":{"coverage.html":{}}}],["statetime",{"_index":292,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["static",{"_index":18,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/LogInFormComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"classes/Utils.html":{}}}],["static_routes",{"_index":873,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["status",{"_index":888,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/StatusComponent.html":{}}}],["status'},{'name",{"_index":242,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["status.component.html",{"_index":2511,"title":{},"body":{"components/StatusComponent.html":{}}}],["status.component.scss",{"_index":2512,"title":{},"body":{"components/StatusComponent.html":{}}}],["statuscomponent",{"_index":241,"title":{"components/StatusComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["steps",{"_index":3164,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["stop",{"_index":2537,"title":{},"body":{"components/StatusComponent.html":{}}}],["storage",{"_index":1697,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["stored",{"_index":3036,"title":{},"body":{"index.html":{}}}],["str",{"_index":1346,"title":{},"body":{"injectables/GetObjService.html":{}}}],["stream",{"_index":2941,"title":{},"body":{"dependencies.html":{}}}],["string",{"_index":63,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["strings",{"_index":642,"title":{},"body":{"classes/DateFormatter.html":{}}}],["structure",{"_index":1211,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["style",{"_index":2959,"title":{},"body":{"miscellaneous/functions.html":{}}}],["styles",{"_index":139,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["styleurl",{"_index":772,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["styleurls",{"_index":151,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["subject",{"_index":296,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{},"license.html":{}}}],["sublicense",{"_index":3076,"title":{},"body":{"license.html":{}}}],["subobject",{"_index":1073,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["subs",{"_index":1619,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["subscribe",{"_index":583,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["subscribe((data",{"_index":2419,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["subscribe((value",{"_index":319,"title":{},"body":{"components/AppEventsComponent.html":{},"components/NavbarComponent.html":{},"components/StatusComponent.html":{}}}],["subscribe((value1",{"_index":2027,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["subscription",{"_index":403,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{}}}],["substantial",{"_index":3087,"title":{},"body":{"license.html":{}}}],["supervisor.sh",{"_index":3177,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["supervisor.sherror",{"_index":3201,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["supervisor.shrelease33",{"_index":3198,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["supported",{"_index":1119,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["supported_arches",{"_index":1089,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["supported_repo_breeds",{"_index":1090,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["supports",{"_index":638,"title":{},"body":{"classes/DateFormatter.html":{}}}],["switch",{"_index":3186,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["sync",{"_index":1764,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["sync'},{'name",{"_index":233,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["sync.component.css",{"_index":2251,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["sync.component.html",{"_index":2252,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["sync.component.ts",{"_index":2248,"title":{},"body":{"components/RepoSyncComponent.html":{},"coverage.html":{}}}],["sync.component.ts:57",{"_index":2267,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:60",{"_index":2266,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:61",{"_index":2269,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:63",{"_index":2274,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:67",{"_index":2260,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:69",{"_index":2275,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:74",{"_index":2262,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:79",{"_index":2277,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:85",{"_index":2279,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:89",{"_index":2261,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:93",{"_index":2264,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:97",{"_index":2265,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync/repo",{"_index":2247,"title":{},"body":{"components/RepoSyncComponent.html":{},"coverage.html":{}}}],["sync_all",{"_index":478,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["synccomponent",{"_index":243,"title":{"components/SyncComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["syncfullsubmit",{"_index":2548,"title":{},"body":{"components/SyncComponent.html":{}}}],["syncing",{"_index":2299,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["syncoptions",{"_index":460,"title":{"interfaces/SyncOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["syncsystemsoptions",{"_index":464,"title":{"interfaces/SyncSystemsOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["syncsystemssubmit",{"_index":2549,"title":{},"body":{"components/SyncComponent.html":{}}}],["sys",{"_index":604,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys'},{'name",{"_index":182,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["sys.component.html",{"_index":610,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.scss",{"_index":609,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts",{"_index":603,"title":{},"body":{"components/CheckSysComponent.html":{},"coverage.html":{}}}],["sys.component.ts:34",{"_index":618,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:37",{"_index":617,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:38",{"_index":613,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:41",{"_index":619,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:46",{"_index":615,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:50",{"_index":614,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:55",{"_index":616,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys/check",{"_index":602,"title":{},"body":{"components/CheckSysComponent.html":{},"coverage.html":{}}}],["syslinux_dir",{"_index":2720,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["syslinux_memdisk_folder",{"_index":2721,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["syslinux_pxelinux_folder",{"_index":2722,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["system",{"_index":874,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"coverage.html":{},"additional-documentation/development-setup.html":{}}}],["system_patterns",{"_index":470,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["systemeditcomponent",{"_index":244,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["systemhandle",{"_index":2608,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["systemname",{"_index":2575,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemnames",{"_index":2589,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemnames.push(control.value.systemname",{"_index":2590,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemoverviewcomponent",{"_index":245,"title":{"components/SystemOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["systems",{"_index":454,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"injectables/GetObjService.html":{},"interfaces/InstallationStatus.html":{},"components/ManageMenuComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/Version.html":{}}}],["systemssync",{"_index":2545,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemssync.controls.keyvalue.controls[i].haserror(\"required",{"_index":2596,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemssyncverbose",{"_index":2569,"title":{},"body":{"components/SyncComponent.html":{}}}],["t",{"_index":3167,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["table",{"_index":314,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"coverage.html":{}}}],["tablerow",{"_index":1991,"title":{"interfaces/TableRow.html":{}},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":2930,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2193,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["tail",{"_index":3179,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["take",{"_index":1985,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["take(1",{"_index":2026,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["takeuntil",{"_index":312,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["talks",{"_index":1683,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["template",{"_index":138,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["template_files",{"_index":828,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["template_files_inherited",{"_index":968,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["templateeditcomponent",{"_index":246,"title":{"components/TemplateEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["templatefilesresult",{"_index":1067,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["templateformgroup",{"_index":2614,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["templateoverviewcomponent",{"_index":247,"title":{"components/TemplateOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["templates",{"_index":1329,"title":{},"body":{"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["templateurl",{"_index":153,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["test",{"_index":3044,"title":{},"body":{"index.html":{}}}],["testing",{"_index":3211,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["tests",{"_index":3043,"title":{},"body":{"index.html":{}}}],["text",{"_index":98,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["text/html').documentelement",{"_index":2692,"title":{},"body":{"classes/Utils.html":{}}}],["text/xml",{"_index":122,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["textcontent",{"_index":2693,"title":{},"body":{"classes/Utils.html":{}}}],["tftpboot_location",{"_index":2808,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["thanks",{"_index":804,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["things",{"_index":3136,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["this._active",{"_index":2674,"title":{},"body":{"injectables/UserService.html":{}}}],["this._formbuilder.group",{"_index":546,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this._roles",{"_index":2677,"title":{},"body":{"injectables/UserService.html":{}}}],["this._snackbar.open",{"_index":1051,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this._snackbar.open('not",{"_index":1056,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this._snackbar.open('please",{"_index":573,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{}}}],["this._snackbar.open(error.message",{"_index":1962,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this._snackbar.open(utils.tohtml(error.message",{"_index":588,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this._token",{"_index":2673,"title":{},"body":{"injectables/UserService.html":{}}}],["this._transformer",{"_index":1228,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["this._username",{"_index":2672,"title":{},"body":{"injectables/UserService.html":{}}}],["this.autho.authorized",{"_index":1957,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.autho.changeauthorizedstate(false",{"_index":1963,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.autho.changeauthorizedstate(true",{"_index":1695,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.autho.server",{"_index":1689,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.autho.token",{"_index":1699,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["this.autho.username",{"_index":1698,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["this.authorized",{"_index":2675,"title":{},"body":{"injectables/UserService.html":{}}}],["this.authorized.next(authorized",{"_index":2686,"title":{},"body":{"injectables/UserService.html":{}}}],["this.buildformgroup",{"_index":1598,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.buildformgroup(obj",{"_index":1908,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.buildformgroup(this.multiselectoptions",{"_index":1902,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.buildisoformgroup.controls.airgapped.value",{"_index":568,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.buildisodir.value",{"_index":565,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.distro.value",{"_index":566,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.excludedns.value",{"_index":570,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.iso.value",{"_index":562,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.profiles.value",{"_index":563,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.source.value",{"_index":569,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.standalone.value",{"_index":567,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.systems.value",{"_index":564,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.xorrisofsopts.value",{"_index":571,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.invalid",{"_index":572,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.checksession",{"_index":422,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.cobbler_version",{"_index":1960,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.cobblerapiservice",{"_index":316,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this.cobblerapiservice.copy_file",{"_index":1279,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.cobblerapiservice.copy_image",{"_index":1443,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.cobblerapiservice.copy_repo",{"_index":2373,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.cobblerapiservice.get_settings(this.autho.token",{"_index":1512,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["this.cobblerapiservice.get_settings(this.autho.token).pipe",{"_index":1513,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["this.cobblerapiservice.login(user",{"_index":1693,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.cobblerapiservice.reconfigureservice(new",{"_index":1691,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.cobblerevents.data",{"_index":320,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["this.columns.map((c",{"_index":2001,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["this.content",{"_index":2489,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.current_objs",{"_index":365,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.current_objs.length",{"_index":380,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.currentitem",{"_index":367,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.currentitem.asobservable",{"_index":1317,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.currentitem.next(item",{"_index":1381,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.currentobjs",{"_index":361,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.currentobjs[index",{"_index":381,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.data",{"_index":626,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["this.data.data",{"_index":2423,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.filter",{"_index":2433,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.paginator",{"_index":2425,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.paginator.firstpage",{"_index":2435,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.sort",{"_index":2427,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.datasource",{"_index":1179,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.datasource.data",{"_index":1242,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["this.datasource.filter",{"_index":2527,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.datasource.paginator",{"_index":2525,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.datasource.paginator.firstpage",{"_index":2528,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.datasource.sort",{"_index":2526,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.dialog.open(dialogboxtextconfirmcomponent",{"_index":325,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["this.dialog.open(dialogitemrenamecomponent",{"_index":1180,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["this.dialog.open(dialogtextinputcomponent",{"_index":1917,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.dialogref.close",{"_index":788,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["this.distro",{"_index":996,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.autoinstall_meta",{"_index":1034,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.boot_files",{"_index":1062,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.boot_loaders",{"_index":1026,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.fetchable_files",{"_index":1037,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.is_subobject",{"_index":1007,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.kernel_options",{"_index":1040,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.kernel_options_post",{"_index":1043,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.os_version",{"_index":1023,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.owners",{"_index":1030,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.redhat_management_key",{"_index":1025,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_boot_initrd",{"_index":1015,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_boot_kernel",{"_index":1017,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_grub_initrd",{"_index":1019,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_grub_kernel",{"_index":1021,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.template_files",{"_index":1046,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.arch.setvalue(this.distro.arch",{"_index":1005,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.autoinstall_meta.setvalue",{"_index":1036,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.autoinstall_meta_inherited.setvalue",{"_index":1035,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.boot_loaders.setvalue",{"_index":1029,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.bootloader_inherited.setvalue(false",{"_index":1028,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.bootloader_inherited.setvalue(true",{"_index":1027,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.breed.setvalue(this.distro.breed",{"_index":1010,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.comment.setvalue(this.distro.comment",{"_index":1011,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.ctime.setvalue",{"_index":1002,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.depth.setvalue(this.distro.depth",{"_index":1004,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.fetchable_files.setvalue",{"_index":1039,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.fetchable_files_inherited.setvalue",{"_index":1038,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.initrd.setvalue(this.distro.initrd",{"_index":1013,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.is_subobject.setvalue",{"_index":1006,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel.setvalue(this.distro.kernel",{"_index":1012,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options.setvalue",{"_index":1042,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options_inherited.setvalue",{"_index":1041,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options_post.setvalue",{"_index":1045,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options_post_inherited.setvalue",{"_index":1044,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.mtime.setvalue",{"_index":999,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.name.setvalue(this.distro.name",{"_index":997,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.os_version.setvalue",{"_index":1022,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.owners.setvalue(this.distro.owners",{"_index":1033,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.owners_inherited.setvalue(false",{"_index":1032,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.owners_inherited.setvalue(true",{"_index":1031,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.redhat_management_key.setvalue",{"_index":1024,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_boot_initrd.setvalue",{"_index":1014,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_boot_kernel.setvalue",{"_index":1016,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_grub_initrd.setvalue",{"_index":1018,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_grub_kernel.setvalue",{"_index":1020,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.template_files.setvalue",{"_index":1048,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.template_files_inherited.setvalue",{"_index":1047,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.tree_build_time.setvalue",{"_index":1008,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.uid.setvalue(this.distro.uid",{"_index":998,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.errmsgpassword.set('password",{"_index":1724,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsgserver.set",{"_index":1713,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsgserver.set('server",{"_index":1711,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsguser.set",{"_index":1722,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsguser.set('username",{"_index":1716,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsguser.set(`username",{"_index":1718,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.file",{"_index":1261,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.file.is_subobject",{"_index":1270,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.action.setvalue(this.file.action",{"_index":1272,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.comment.setvalue(this.file.comment",{"_index":1271,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.ctime.setvalue",{"_index":1266,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.depth.setvalue(this.file.depth",{"_index":1268,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.group.setvalue(this.file.group",{"_index":1273,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.is_subobject.setvalue",{"_index":1269,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.mode.setvalue(this.file.mode",{"_index":1274,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.mtime.setvalue",{"_index":1264,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.name.setvalue(this.file.name",{"_index":1262,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.owner.setvalue(this.file.owner",{"_index":1275,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.path.setvalue(this.file.path",{"_index":1276,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.template.setvalue(this.file.template",{"_index":1277,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.uid.setvalue(this.file.uid",{"_index":1263,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fullsync.controls.fullsyncdhcp.reset(false",{"_index":2582,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncdhcp.value",{"_index":2579,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncdns.reset(false",{"_index":2583,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncdns.value",{"_index":2580,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncverbose.reset(false",{"_index":2584,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncverbose.value",{"_index":2581,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.generatesignatureuidata",{"_index":2006,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["this.guard.setbool(false",{"_index":1964,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.guard.setbool(true",{"_index":1705,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.headers",{"_index":113,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.http",{"_index":117,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.http.post(this.url.tostring",{"_index":129,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.image",{"_index":1411,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.autoinstall",{"_index":1427,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.boot_loaders",{"_index":1434,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.image_type",{"_index":1431,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.is_subobject",{"_index":1422,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.network_count",{"_index":1420,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.os_version",{"_index":1433,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.owners",{"_index":1438,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.arch.setvalue(this.image.arch",{"_index":1425,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.autoinstall.setvalue",{"_index":1426,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.boot_loaders.setvalue",{"_index":1437,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.bootloader_inherited.setvalue(false",{"_index":1436,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.bootloader_inherited.setvalue(true",{"_index":1435,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.breed.setvalue(this.image.breed",{"_index":1428,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.comment.setvalue(this.image.comment",{"_index":1423,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.ctime.setvalue",{"_index":1416,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.depth.setvalue(this.image.depth",{"_index":1418,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.file.setvalue(this.image.file",{"_index":1429,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.image_type.setvalue",{"_index":1430,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.is_subobject.setvalue",{"_index":1421,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.mtime.setvalue",{"_index":1414,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.name.setvalue(this.image.name",{"_index":1412,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.network_count.setvalue",{"_index":1419,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.os_version.setvalue",{"_index":1432,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.owners.setvalue(this.image.owners",{"_index":1441,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.owners_inherited.setvalue(false",{"_index":1440,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.owners_inherited.setvalue(true",{"_index":1439,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.parent.setvalue(this.image.parent",{"_index":1424,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.uid.setvalue(this.image.uid",{"_index":1413,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.importformgroup.controls.arch.value",{"_index":1489,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.autoinstall_file.value",{"_index":1487,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.available_as.value",{"_index":1486,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.breed.value",{"_index":1490,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.name.value",{"_index":1485,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.os_version.value",{"_index":1491,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.path.value",{"_index":1484,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.rsync_flags.value",{"_index":1488,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.invalid",{"_index":1492,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.isdisabled",{"_index":1592,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["this.isloading",{"_index":624,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["this.islogged",{"_index":1958,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.keyorder",{"_index":1597,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyorderformgroup.addcontrol",{"_index":1601,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyorderformgroup.disable",{"_index":1594,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyorderformgroup.enable",{"_index":1595,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyvaluefa",{"_index":2568,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvaluefa.controls",{"_index":2576,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvaluefa.push(this.newkeyvaluefg",{"_index":2577,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvaluefa.removeat(index",{"_index":2578,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvalueoptions",{"_index":1596,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyvalueoptions[key",{"_index":1600,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.loggedin",{"_index":423,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.login_form.controls['password'].haserror('required",{"_index":1723,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['password'].statuschanges",{"_index":1675,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['password'].valuechanges",{"_index":1676,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].haserror('pattern",{"_index":1712,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].haserror('required",{"_index":1710,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].statuschanges",{"_index":1668,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].valuechanges",{"_index":1669,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].errors.minlength.requiredlength",{"_index":1720,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].haserror('minlength",{"_index":1717,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].haserror('required",{"_index":1714,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].statuschanges",{"_index":1672,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].touched",{"_index":1715,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].valuechanges",{"_index":1673,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('password",{"_index":1681,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('server",{"_index":1679,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('server').setvalue(this.server_prefilled",{"_index":1666,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('username",{"_index":1680,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.value",{"_index":1685,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.managementclass",{"_index":1793,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.class_name",{"_index":1811,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.comment",{"_index":1809,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.depth",{"_index":1803,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.files",{"_index":1818,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.is_definition",{"_index":1807,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.is_subobject",{"_index":1805,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.name",{"_index":1795,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.owners",{"_index":1812,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.packages",{"_index":1820,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.params",{"_index":1816,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.uid",{"_index":1797,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.class_name.setvalue",{"_index":1810,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.comment.setvalue",{"_index":1808,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.ctime.setvalue",{"_index":1800,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.depth.setvalue",{"_index":1802,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.files.setvalue",{"_index":1817,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.is_definition.setvalue",{"_index":1806,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.is_subobject.setvalue",{"_index":1804,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.mtime.setvalue",{"_index":1798,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.name.setvalue",{"_index":1794,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.owners.setvalue",{"_index":1814,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.owners_inherited.setvalue",{"_index":1813,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.packages.setvalue",{"_index":1819,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.params.setvalue",{"_index":1815,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.uid.setvalue",{"_index":1796,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.matselectoptionsformgroup.addcontrol",{"_index":1904,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.disable",{"_index":1906,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.enable",{"_index":1907,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.get(key",{"_index":1911,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.get(value).setvalue(checked",{"_index":1905,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.message",{"_index":1707,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.mockobjname",{"_index":1315,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.mockvalues",{"_index":1376,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.multiselectoptions.push(result",{"_index":1922,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.name",{"_index":992,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.ngunsubscribe.complete",{"_index":322,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this.ngunsubscribe.next",{"_index":321,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this.onchange",{"_index":1590,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["this.onchange(options",{"_index":1916,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.ontouched",{"_index":1591,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["this.ontouched(options",{"_index":1915,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.optionsignal",{"_index":1918,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.optionsignal.set(result",{"_index":1921,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.package",{"_index":2043,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.installer",{"_index":2062,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.is_subobject",{"_index":2052,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.owners",{"_index":2064,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.template",{"_index":2059,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.action.setvalue(this.package.action",{"_index":2060,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.comment.setvalue(this.package.comment",{"_index":2053,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.ctime.setvalue",{"_index":2048,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.depth.setvalue(this.package.depth",{"_index":2050,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.group.setvalue(this.package.group",{"_index":2056,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.installer.setvalue",{"_index":2061,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.is_subobject.setvalue",{"_index":2051,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.mode.setvalue(this.package.mode",{"_index":2054,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.mtime.setvalue",{"_index":2046,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.name.setvalue(this.package.name",{"_index":2044,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owner.setvalue(this.package.owner",{"_index":2055,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owners.setvalue(this.package.owners",{"_index":2067,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owners_inherited.setvalue(false",{"_index":2066,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owners_inherited.setvalue(true",{"_index":2065,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.path.setvalue(this.package.path",{"_index":2057,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.template.setvalue",{"_index":2058,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.uid.setvalue(this.package.uid",{"_index":2045,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.version.setvalue(this.package.version",{"_index":2063,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.paginator",{"_index":2426,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["this.profile",{"_index":2123,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.autoinstall",{"_index":2137,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.autoinstall_meta",{"_index":2164,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.boot_files",{"_index":2167,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.boot_loaders",{"_index":2156,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.dhcp_tag",{"_index":2139,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.fetchable_files",{"_index":2171,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.filename",{"_index":2147,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.is_subobject",{"_index":2132,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.kernel_options",{"_index":2174,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.kernel_options_post",{"_index":2177,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.mgmt_classes",{"_index":2180,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.mgmt_parameters",{"_index":2183,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.name_servers",{"_index":2152,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.name_servers_search",{"_index":2154,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.next_server_v4",{"_index":2143,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.next_server_v6",{"_index":2145,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.owners",{"_index":2160,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.redhat_management_key",{"_index":2135,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.template_files",{"_index":2186,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.autoinstall.setvalue",{"_index":2136,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.autoinstall_meta.setvalue",{"_index":2166,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.autoinstall_meta_inherited.setvalue",{"_index":2165,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_files.setvalue",{"_index":2170,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_files_inherited.setvalue(false",{"_index":2169,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_files_inherited.setvalue(true",{"_index":2168,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_loaders.setvalue",{"_index":2159,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.bootloader_inherited.setvalue(false",{"_index":2158,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.bootloader_inherited.setvalue(true",{"_index":2157,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.comment.setvalue(this.profile.comment",{"_index":2133,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.ctime.setvalue",{"_index":2128,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.depth.setvalue(this.profile.depth",{"_index":2130,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.dhcp_tag.setvalue",{"_index":2138,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.distro.setvalue(this.profile.distro",{"_index":2140,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.fetchable_files.setvalue",{"_index":2173,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.fetchable_files_inherited.setvalue",{"_index":2172,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.filename.setvalue",{"_index":2146,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.is_subobject.setvalue",{"_index":2131,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options.setvalue",{"_index":2176,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options_inherited.setvalue",{"_index":2175,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options_post.setvalue",{"_index":2179,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options_post_inherited.setvalue",{"_index":2178,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.menu.setvalue(this.profile.menu",{"_index":2141,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_classes.setvalue",{"_index":2182,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_classes_inherited.setvalue",{"_index":2181,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_parameters.setvalue",{"_index":2185,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_parameters_inherited.setvalue",{"_index":2184,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mtime.setvalue",{"_index":2126,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.name.setvalue(this.profile.name",{"_index":2124,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.name_servers.setvalue",{"_index":2151,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.name_servers_search.setvalue",{"_index":2153,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.next_server_v4.setvalue",{"_index":2142,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.next_server_v6.setvalue",{"_index":2144,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.owners.setvalue(this.profile.owners",{"_index":2163,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.owners_inherited.setvalue(false",{"_index":2162,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.owners_inherited.setvalue(true",{"_index":2161,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.parent.setvalue(this.profile.parent",{"_index":2148,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.proxy.setvalue(this.profile.proxy",{"_index":2149,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.redhat_management_key.setvalue",{"_index":2134,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.repos.setvalue(this.profile.repos",{"_index":2155,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.server.setvalue(this.profile.server",{"_index":2150,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.template_files.setvalue",{"_index":2188,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.template_files_inherited.setvalue",{"_index":2187,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.uid.setvalue(this.profile.uid",{"_index":2125,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.refreshdata",{"_index":994,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.replicateformgroup.controls.distro_patterns.value",{"_index":2231,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.file_patterns.value",{"_index":2238,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.image_patterns.value",{"_index":2235,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.master.value",{"_index":2229,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.mgmtclass_patterns.value",{"_index":2236,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.omit_data.value",{"_index":2240,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.package_patterns.value",{"_index":2237,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.port.value",{"_index":2230,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.profile_patterns.value",{"_index":2232,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.prune.value",{"_index":2239,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.repo_patterns.value",{"_index":2234,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.sync_all.value",{"_index":2241,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.system_patterns.value",{"_index":2233,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.use_ssl.value",{"_index":2242,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.repository",{"_index":2325,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.apt_components",{"_index":2361,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.apt_dists",{"_index":2359,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.breed",{"_index":2351,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.comment",{"_index":2343,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.createrepo_flags",{"_index":2355,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.depth",{"_index":2333,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.environment",{"_index":2367,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.is_subobject",{"_index":2337,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.keep_updated",{"_index":2339,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.mirror",{"_index":2349,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.mirror_locally",{"_index":2341,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.mirror_type",{"_index":2347,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.os_version",{"_index":2353,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.owners",{"_index":2362,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.priority",{"_index":2335,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.proxy",{"_index":2345,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.rpm_list",{"_index":2357,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.rsyncopts",{"_index":2371,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.yumopts",{"_index":2369,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformarray",{"_index":2271,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformarray.controls",{"_index":2281,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformarray.push(this.newrepositoryformgroup",{"_index":2282,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformarray.removeat(index",{"_index":2283,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformgroup.controls.apt_components.setvalue",{"_index":2360,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.apt_dists.setvalue",{"_index":2358,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.breed.setvalue",{"_index":2350,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.comment.setvalue",{"_index":2342,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.createrepo_flags.setvalue",{"_index":2354,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.ctime.setvalue",{"_index":2330,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.depth.setvalue",{"_index":2332,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.environment.setvalue",{"_index":2366,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.is_subobject.setvalue",{"_index":2336,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.keep_updated.setvalue",{"_index":2338,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mirror.setvalue",{"_index":2348,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mirror_locally.setvalue",{"_index":2340,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mirror_type.setvalue",{"_index":2346,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mtime.setvalue",{"_index":2328,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.name.setvalue(this.repository.name",{"_index":2326,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.os_version.setvalue",{"_index":2352,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.owners.setvalue",{"_index":2365,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.owners_inherited.setvalue(false",{"_index":2364,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.owners_inherited.setvalue(true",{"_index":2363,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.priority.setvalue",{"_index":2334,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.proxy.setvalue",{"_index":2344,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.rpm_list.setvalue",{"_index":2356,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.rsyncopts.setvalue",{"_index":2370,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.uid.setvalue(this.repository.uid",{"_index":2327,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.yumopts.setvalue",{"_index":2368,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.reposyncformgroup.controls.reponame.controls",{"_index":2285,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.reposyncformgroup.controls.reposyncnofail.value",{"_index":2289,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.reposyncformgroup.controls.reposynctries.value",{"_index":2288,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.retrievedistros",{"_index":1177,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.retrievefiles",{"_index":1297,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["this.retrieveimages",{"_index":1462,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["this.retrievemanagementclasses",{"_index":1838,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["this.retrievepackages",{"_index":2079,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["this.retrieveprofiles",{"_index":2205,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["this.retrieverepositories",{"_index":2388,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["this.retrievesnippets",{"_index":2507,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["this.retrievesystems",{"_index":2605,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["this.route.snapshot.parammap.get('name",{"_index":993,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.router.navigate(['/items",{"_index":1050,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.router.navigate(['/manage",{"_index":1706,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.router.navigate(['/unauthorized",{"_index":425,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.saveobj",{"_index":371,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.saveobj(current",{"_index":382,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.server_prefilled",{"_index":1664,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.setformgroupdisabledstate(isdisabled",{"_index":1593,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.setformgroupdisabledstate(this.isdisabled",{"_index":1603,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.snippetformgroup.controls.content.setvalue",{"_index":2490,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["this.sort",{"_index":2428,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["this.subs.add",{"_index":1667,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.subs.unsubscribe",{"_index":1678,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.subscription",{"_index":1956,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.systemssync.controls.keyvalue.controls",{"_index":2587,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.controls.keyvalue.reset",{"_index":2593,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.controls.systemssyncverbose.reset(false",{"_index":2592,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.controls.systemssyncverbose.value",{"_index":2591,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.invalid",{"_index":2586,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.templateformgroup.controls.content.setvalue",{"_index":2620,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["this.transformobject(inputobject[key",{"_index":1240,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["this.transformobject(this.inputobject",{"_index":1243,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["this.treeflattener",{"_index":1230,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["this.updatechecks",{"_index":623,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["this.updateerrpassword",{"_index":1677,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.updateerrserver",{"_index":1671,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.updateerruser",{"_index":1674,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.updateformgroup(obj",{"_index":1909,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.url",{"_index":114,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.username",{"_index":366,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.userservice.changeauthorizedstate(false",{"_index":424,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.userservice.changeauthorizedstate(this.loggedin",{"_index":427,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.userservice.changeauthorizedstate(true",{"_index":426,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.userservice.token",{"_index":582,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.userservice.token).subscribe",{"_index":1280,"title":{},"body":{"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["this.viewabletreecontrol",{"_index":1229,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["though",{"_index":3023,"title":{},"body":{"index.html":{}}}],["throw",{"_index":1516,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["thrown",{"_index":1371,"title":{},"body":{"injectables/GetObjService.html":{}}}],["throws",{"_index":2983,"title":{},"body":{"miscellaneous/functions.html":{}}}],["time",{"_index":667,"title":{},"body":{"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"additional-documentation/development-setup.html":{}}}],["timers",{"_index":2943,"title":{},"body":{"dependencies.html":{}}}],["timestamp",{"_index":704,"title":{},"body":{"classes/DateFormatter.html":{}}}],["timezone",{"_index":711,"title":{},"body":{"classes/DateFormatter.html":{}}}],["title",{"_index":629,"title":{},"body":{"components/CheckSysComponent.html":{},"components/SettingsViewComponent.html":{}}}],["todo",{"_index":375,"title":{},"body":{"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MkloadersComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["toggle",{"_index":2227,"title":{},"body":{"components/ReplicateComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["togglesidenav",{"_index":1934,"title":{},"body":{"components/NavbarComponent.html":{}}}],["tohtml",{"_index":2688,"title":{},"body":{"classes/Utils.html":{}}}],["tohtml(input",{"_index":2689,"title":{},"body":{"classes/Utils.html":{}}}],["token",{"_index":2644,"title":{},"body":{"injectables/UserService.html":{}}}],["token(token",{"_index":2683,"title":{},"body":{"injectables/UserService.html":{}}}],["topics",{"_index":2855,"title":{},"body":{"contributing.html":{}}}],["tort",{"_index":3109,"title":{},"body":{"license.html":{}}}],["track",{"_index":1609,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{}}}],["transformobject",{"_index":2831,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["transformobject(inputobject",{"_index":1235,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["tree",{"_index":141,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["tree.component",{"_index":2410,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["tree.component.html",{"_index":1216,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["tree.component.scss",{"_index":1217,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["tree.component.ts",{"_index":1198,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["tree.component.ts:36",{"_index":2833,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:37",{"_index":2840,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:42",{"_index":2837,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:51",{"_index":2839,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:58",{"_index":2838,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:63",{"_index":2832,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:67",{"_index":2834,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:71",{"_index":2836,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:90",{"_index":2835,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree/viewable",{"_index":1197,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["tree_build_time",{"_index":829,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["treecontrol",{"_index":2004,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["treecontrol.isexpanded(node",{"_index":2472,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["treeflattener",{"_index":1227,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["tries",{"_index":491,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["true",{"_index":148,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["try",{"_index":428,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{}}}],["ts",{"_index":3182,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["tslib",{"_index":2945,"title":{},"body":{"dependencies.html":{}}}],["two",{"_index":3027,"title":{},"body":{"index.html":{}}}],["type",{"_index":32,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["typealiases",{"_index":3117,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeof",{"_index":108,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppManageComponent.html":{},"components/DistroEditComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["types",{"_index":90,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["types.ts",{"_index":1848,"title":{},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["types/items.ts",{"_index":806,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"coverage.html":{}}}],["types/misc.ts",{"_index":436,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["types/settings",{"_index":2405,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["types/settings.ts",{"_index":2695,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["types/signatures.ts",{"_index":1081,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"coverage.html":{}}}],["typescript",{"_index":1125,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["ui",{"_index":1336,"title":{},"body":{"injectables/GetObjService.html":{}}}],["uid",{"_index":833,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["unauthorized",{"_index":2632,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["unauthorized'},{'name",{"_index":249,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["unauthorized.component.css",{"_index":2633,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["unauthorized.component.html",{"_index":2634,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["unauthorizedcomponent",{"_index":248,"title":{"components/UnauthorizedComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["unavailable",{"_index":1977,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["undefined",{"_index":1183,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["undefined`'s",{"_index":1129,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["unit",{"_index":3042,"title":{},"body":{"index.html":{}}}],["unknown",{"_index":1116,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/NavbarComponent.html":{},"injectables/UserService.html":{}}}],["unsubscribe",{"_index":313,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["untypedformcontrol",{"_index":1641,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["untypedformgroup",{"_index":1640,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updatechecks",{"_index":612,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["updated",{"_index":2377,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["updateerrpassword",{"_index":1621,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updateerrserver",{"_index":1622,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updateerruser",{"_index":1623,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updateformgroup",{"_index":1874,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["updateformgroup(options",{"_index":1891,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["updatesignatures",{"_index":2020,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["url",{"_index":15,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/LogInFormComponent.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["url('http://localhost",{"_index":116,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["url('http://localhost/cobbler_api",{"_index":3132,"title":{},"body":{"miscellaneous/variables.html":{}}}],["url(formdata.server",{"_index":1692,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["url(value",{"_index":1661,"title":{},"body":{"components/LogInFormComponent.html":{},"miscellaneous/variables.html":{}}}],["url.tostring",{"_index":1665,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["urlvalidator",{"_index":1624,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["urlvalidator(undefined",{"_index":1633,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["use",{"_index":1345,"title":{},"body":{"injectables/GetObjService.html":{},"components/ReplicateComponent.html":{},"contributing.html":{},"index.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["use_ssl",{"_index":479,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["useexisting",{"_index":1525,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["user",{"_index":358,"title":{},"body":{"components/AppManageComponent.html":{},"components/LogInFormComponent.html":{},"injectables/UserService.html":{}}}],["user.service",{"_index":420,"title":{},"body":{"injectables/AuthGuardService.html":{},"injectables/ItemSettingsService.html":{}}}],["username",{"_index":346,"title":{},"body":{"components/AppManageComponent.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["username(name",{"_index":2684,"title":{},"body":{"injectables/UserService.html":{}}}],["username.invalid",{"_index":1729,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["username.touched",{"_index":1728,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["users",{"_index":1702,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["userservice",{"_index":409,"title":{"injectables/UserService.html":{}},"body":{"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["utc",{"_index":673,"title":{},"body":{"classes/DateFormatter.html":{}}}],["utils",{"_index":559,"title":{"classes/Utils.html":{}},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["utils.tohtml(this.content",{"_index":2491,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["v",{"_index":3172,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["v3_3_1",{"_index":2694,"title":{"interfaces/V3_3_1.html":{}},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["v3_3_2",{"_index":2696,"title":{"interfaces/V3_3_2.html":{}},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["v3_3_3",{"_index":2697,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["v3_4_0",{"_index":2698,"title":{"interfaces/V3_4_0.html":{}},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["valid",{"_index":1121,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/LogInFormComponent.html":{}}}],["validate",{"_index":251,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["validate(control",{"_index":1571,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["validateautoinstallscomponent",{"_index":250,"title":{"components/ValidateAutoinstallsComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["validationerrors",{"_index":1575,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["validator",{"_index":1521,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["validators",{"_index":1655,"title":{},"body":{"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["validators.minlength(2",{"_index":1644,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["validators.required",{"_index":1642,"title":{},"body":{"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["value",{"_index":104,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["value.breeds",{"_index":2011,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.breeds[k",{"_index":2013,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.breeds[k][j",{"_index":2015,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.breeds[k][j][i",{"_index":2017,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.version",{"_index":1961,"title":{},"body":{"components/NavbarComponent.html":{}}}],["var",{"_index":169,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["var/log/cobbler/cobbler.log",{"_index":3180,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["variable",{"_index":2886,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3121,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["verbose",{"_index":463,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["version",{"_index":441,"title":{"interfaces/Version.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{},"properties.html":{}}}],["version_file",{"_index":1091,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["version_file_regex",{"_index":1092,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["versiontuple",{"_index":450,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["vertical",{"_index":632,"title":{},"body":{"components/CheckSysComponent.html":{},"components/NavbarComponent.html":{},"components/SettingsViewComponent.html":{}}}],["very",{"_index":3218,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["via",{"_index":1123,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["view",{"_index":2412,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["view'},{'name",{"_index":236,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["view.component.css",{"_index":2414,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["view.component.html",{"_index":2413,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["view.component.ts",{"_index":2397,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["view.component.ts:48",{"_index":2447,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:51",{"_index":2445,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:52",{"_index":2446,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:54",{"_index":2448,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:55",{"_index":2440,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:74",{"_index":2443,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:79",{"_index":2444,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:84",{"_index":2441,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:93",{"_index":2442,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["viewable",{"_index":254,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["viewabletreecomponent",{"_index":253,"title":{"components/ViewableTreeComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["viewabletreecontrol",{"_index":1219,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["viewabletreecontrol.isexpanded(node",{"_index":2841,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["viewchild",{"_index":1175,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["viewchild(matpaginator",{"_index":2415,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["viewchild(matsort",{"_index":2417,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["viewchild(mattable",{"_index":1173,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["virt_auto_boot",{"_index":845,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["virt_bridge",{"_index":846,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_cpus",{"_index":847,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_disk_driver",{"_index":848,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_file_size",{"_index":849,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_path",{"_index":850,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_pxe_boot",{"_index":889,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_ram",{"_index":851,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_type",{"_index":852,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["visibility",{"_index":1193,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["void",{"_index":47,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["want",{"_index":896,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"additional-documentation/development-setup.html":{}}}],["warranties",{"_index":3095,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3090,"title":{},"body":{"license.html":{}}}],["way",{"_index":377,"title":{},"body":{"components/AppManageComponent.html":{}}}],["web",{"_index":2848,"title":{},"body":{"contributing.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["web.git",{"_index":3163,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["webdir",{"_index":2809,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["webdir_whitelist",{"_index":2810,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["webserver",{"_index":1352,"title":{},"body":{"injectables/GetObjService.html":{},"additional-documentation/development-setup.html":{}}}],["welcome",{"_index":383,"title":{},"body":{"components/AppManageComponent.html":{}}}],["whether",{"_index":3107,"title":{},"body":{"license.html":{}}}],["white",{"_index":759,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["wide",{"_index":3137,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["width",{"_index":162,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/SettingsViewComponent.html":{}}}],["wiki",{"_index":2847,"title":{},"body":{"contributing.html":{}}}],["window.localstorage.setitem(cobbler_url_key_name",{"_index":2682,"title":{},"body":{"injectables/UserService.html":{}}}],["window.sessionstorage.getitem('currentitem",{"_index":360,"title":{},"body":{"components/AppManageComponent.html":{},"injectables/GetObjService.html":{}}}],["window.sessionstorage.getitem('loggedin",{"_index":429,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["window.sessionstorage.getitem('user",{"_index":359,"title":{},"body":{"components/AppManageComponent.html":{}}}],["window.sessionstorage.loggedin",{"_index":431,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["window.sessionstorage.setitem",{"_index":1373,"title":{},"body":{"injectables/GetObjService.html":{}}}],["window.sessionstorage.setitem('currentitem",{"_index":1379,"title":{},"body":{"injectables/GetObjService.html":{}}}],["windows",{"_index":3151,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["windows_enabled",{"_index":2815,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["windows_template_dir",{"_index":2816,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["withcredentials",{"_index":128,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["without",{"_index":645,"title":{},"body":{"classes/DateFormatter.html":{},"license.html":{}}}],["work",{"_index":3025,"title":{},"body":{"index.html":{}}}],["working",{"_index":3139,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["write_autoinstall_snippet(this.name",{"_index":2493,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["write_autoinstall_template(this.name",{"_index":2622,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["writevalue",{"_index":1549,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["writevalue(obj",{"_index":1576,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["x86",{"_index":1109,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["x86_64",{"_index":1107,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["xml",{"_index":69,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"miscellaneous/functions.html":{}}}],["xmlbuilder",{"_index":2956,"title":{},"body":{"miscellaneous/functions.html":{}}}],["xmlbuilder2",{"_index":2947,"title":{},"body":{"dependencies.html":{},"miscellaneous/functions.html":{}}}],["xmlrpc",{"_index":45,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/GetObjService.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["xmlrpc.service.ts",{"_index":8,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["xmlrpc.service.ts:23",{"_index":82,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:24",{"_index":83,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:25",{"_index":81,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:27",{"_index":53,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:31",{"_index":50,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:35",{"_index":60,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:44",{"_index":57,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:51",{"_index":28,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:64",{"_index":35,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:75",{"_index":67,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc/src/lib/constants.ts",{"_index":2901,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["xmlrpc/src/lib/date_formatter.ts",{"_index":637,"title":{},"body":{"classes/DateFormatter.html":{},"coverage.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:10",{"_index":687,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:110",{"_index":718,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:122",{"_index":663,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:15",{"_index":676,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:153",{"_index":706,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:16",{"_index":677,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:17",{"_index":693,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:18",{"_index":694,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:19",{"_index":695,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:29",{"_index":726,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:42",{"_index":723,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:61",{"_index":708,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:80",{"_index":697,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/deserializer.ts",{"_index":2905,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["xmlrpc/src/lib/serializer.ts",{"_index":2918,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["xmlrpc/src/lib/typescript",{"_index":7,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["xmlrpc/src/lib/xmlrpc",{"_index":1847,"title":{},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["xmlrpc_port",{"_index":2811,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["xmlrpcarray",{"_index":58,"title":{"interfaces/XmlRpcArray.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["xmlrpcstruct",{"_index":61,"title":{"interfaces/XmlRpcStruct.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["xmlrpctypes",{"_index":56,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["xorrisofs",{"_index":592,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["xorrisofsopts",{"_index":459,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["yes",{"_index":75,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["yourself",{"_index":3222,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["yum",{"_index":1112,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["yum_distro_priority",{"_index":2812,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["yum_post_install_mirror",{"_index":2813,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["yumdownloader_flags",{"_index":2814,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["yumopts",{"_index":908,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["yumoptsresult",{"_index":2374,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["z",{"_index":715,"title":{},"body":{"classes/DateFormatter.html":{}}}],["z0",{"_index":1135,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["za",{"_index":1134,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["zero",{"_index":719,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zeropad",{"_index":661,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zeropad(digit",{"_index":724,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zone",{"_index":721,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zone.js",{"_index":2949,"title":{},"body":{"dependencies.html":{}}}],["zoning",{"_index":650,"title":{},"body":{"classes/DateFormatter.html":{}}}]],"pipeline":["stemmer"]}, - "store": {"injectables/AngularXmlrpcService.html":{"url":"injectables/AngularXmlrpcService.html","title":"injectable - AngularXmlrpcService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n AngularXmlrpcService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n headers\n \n \n Private\n Readonly\n http\n \n \n Private\n url\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n configureService\n \n \n Static\n instanceOfMethodFault\n \n \n Static\n instanceOfMethodResponse\n \n \n Static\n instanceOfXmlRpcArray\n \n \n Static\n instanceOfXmlRpcStruct\n \n \n methodCall\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(http: HttpClient)\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:51\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n http\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n configureService\n \n \n \n \n \n \nconfigureService(url: URL)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:64\n \n \n\n\n \n \n Call this method before any other to configure the service. Otherwise other methods may behave incorrectly.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n url\n \n URL\n \n\n \n No\n \n\n\n \n The URL of the XMLRPC Service.\n\n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfMethodFault\n \n \n \n \n \n \n \n instanceOfMethodFault(object: object)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:31\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfMethodResponse\n \n \n \n \n \n \n \n instanceOfMethodResponse(object: object)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:27\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodResponse\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfXmlRpcArray\n \n \n \n \n \n \n \n instanceOfXmlRpcArray(object: XmlRpcTypes)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:44\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n XmlRpcTypes\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcArray\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfXmlRpcStruct\n \n \n \n \n \n \n \n instanceOfXmlRpcStruct(object: XmlRpcTypes)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n XmlRpcTypes\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcStruct\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n methodCall\n \n \n \n \n \n \nmethodCall(method: string, params?: Array, encoding?: string)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:75\n \n \n\n\n \n \n Makes an XML-RPC call to the server specified by the constructor's options.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n method\n \n string\n \n\n \n No\n \n\n\n \n The method name.\n\n \n \n \n params\n \n Array\n \n\n \n Yes\n \n\n\n \n Params to send in the call.\n\n \n \n \n encoding\n \n string\n \n\n \n Yes\n \n\n\n \n The encoding to append to the generated XML document.\n\n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n headers\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n Readonly\n http\n \n \n \n \n \n \n Type : HttpClient\n\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n url\n \n \n \n \n \n \n Type : URL\n\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:24\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\n\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { serializeMethodCall } from './serializer';\nimport {\n MethodFault,\n MethodResponse,\n XmlRpcArray,\n XmlRpcStruct,\n XmlRpcTypes,\n} from './xmlrpc-types';\nimport { deserialize } from './deserializer';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nconst BODY = 'body';\nconst TEXT = 'text';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AngularXmlrpcService {\n private readonly http: HttpClient;\n private url: URL;\n private headers: object;\n\n static instanceOfMethodResponse(object: object): object is MethodResponse {\n return 'value' in object;\n }\n\n static instanceOfMethodFault(object: object): object is MethodFault {\n return 'faultCode' in object && 'faultString' in object;\n }\n\n static instanceOfXmlRpcStruct(object: XmlRpcTypes): object is XmlRpcStruct {\n return (\n object !== null &&\n typeof object === 'object' &&\n Object.keys(object).length === 1 &&\n 'members' in object\n );\n }\n\n static instanceOfXmlRpcArray(object: XmlRpcTypes): object is XmlRpcArray {\n return (\n object !== null &&\n typeof object === 'object' &&\n Object.keys(object).length === 1 &&\n 'data' in object\n );\n }\n\n constructor(http: HttpClient) {\n this.headers = {};\n this.url = new URL('http://localhost');\n this.http = http;\n }\n\n /**\n * Call this method before any other to configure the service. Otherwise other methods may behave incorrectly.\n *\n * @param url The URL of the XMLRPC Service.\n */\n configureService(url: URL): void {\n this.url = url;\n }\n\n /**\n * Makes an XML-RPC call to the server specified by the constructor's options.\n *\n * @param method The method name.\n * @param params Params to send in the call.\n * @param encoding The encoding to append to the generated XML document.\n */\n methodCall(\n method: string,\n params?: Array,\n encoding?: string,\n ): Observable {\n const xml = serializeMethodCall(method, params, encoding);\n const httpOptions = new HttpHeaders();\n httpOptions.set('Content-Type', 'text/xml');\n httpOptions.set('Accept', 'text/xml');\n const options: object = {\n headers: httpOptions,\n reportProgress: false,\n observe: BODY,\n responseType: TEXT,\n withCredentials: false,\n };\n\n return this.http.post(this.url.toString(), xml, options).pipe(\n map((source: string) => {\n return deserialize(source);\n }),\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n \n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/app.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-root\n \n\n \n standalone\n true\n \n\n \n imports\n \n ManageMenuComponent\n \n \n\n \n styleUrls\n ./app.component.css\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app.component.ts:11\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { ManageMenuComponent } from './manage-menu/manage-menu.component';\n\n@Component({\n selector: 'cobbler-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.css'],\n imports: [ManageMenuComponent],\n standalone: true,\n})\nexport class AppComponent {\n constructor() {}\n}\n\n \n\n \n \n \n\n\n \n\n \n \n ./app.component.css\n \n :host {\n display: block;\n width: 100%;\n height: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppEventsComponent.html":{"url":"components/AppEventsComponent.html","title":"component - AppEventsComponent","body":"\n \n\n\n\n\n\n Components\n \n AppEventsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/app-events/app-events.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-app-events\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatListModule\n MatTableModule\n MatButtonModule\n MatMenuModule\n MatIconModule\n DatePipe\n CommonModule\n \n \n\n \n styleUrls\n ./app-events.component.css\n \n\n\n\n \n templateUrl\n ./app-events.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n cobblerEvents\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n showLogs\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(dialog: MatDialog, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:43\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:59\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showLogs\n \n \n \n \n \n \nshowLogs(eventId: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:64\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n eventId\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n cobblerEvents\n \n \n \n \n \n \n Default value : new MatTableDataSource([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'name',\n 'state',\n 'statetime',\n 'readByWho',\n 'actions',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:36\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:33\n \n \n\n\n \n \n\n\n\n\n\n \n import { CommonModule, DatePipe } from '@angular/common';\nimport { Component, Inject, OnDestroy, OnInit } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatListModule } from '@angular/material/list';\nimport { MatMenuModule } from '@angular/material/menu';\nimport { RouterOutlet } from '@angular/router';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { MatDialog } from '@angular/material/dialog';\nimport { CobblerApiService, Event } from 'cobbler-api';\nimport { DialogBoxTextConfirmComponent } from '../common/dialog-box-text-confirm/dialog-box-text-confirm';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\n\n@Component({\n selector: 'cobbler-app-events',\n templateUrl: './app-events.component.html',\n styleUrls: ['./app-events.component.css'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatListModule,\n MatTableModule,\n MatButtonModule,\n MatMenuModule,\n MatIconModule,\n DatePipe,\n CommonModule,\n ],\n})\nexport class AppEventsComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'name',\n 'state',\n 'statetime',\n 'readByWho',\n 'actions',\n ];\n cobblerEvents = new MatTableDataSource([]);\n\n constructor(\n @Inject(MatDialog) readonly dialog: MatDialog,\n private cobblerApiService: CobblerApiService,\n ) {}\n\n ngOnInit(): void {\n this.cobblerApiService\n .get_events('')\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value: Array) => {\n this.cobblerEvents.data = value;\n });\n }\n\n ngOnDestroy() {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n showLogs(eventId: string, name: string) {\n this.cobblerApiService\n .get_event_log(eventId)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value: string) => {\n const dialogRef = this.dialog.open(DialogBoxTextConfirmComponent, {\n data: {\n eventId: eventId,\n name: name,\n eventLog: value,\n },\n });\n\n dialogRef.afterClosed().subscribe();\n });\n }\n}\n\n \n\n \n \n \n \n EVENTS\n\n \n \n Name\n {{ element.name }}\n \n\n \n State\n {{ element.state }}\n \n\n \n Date\n \n {{ element.statetime * 1000 | date: \"long\" }}\n \n \n\n \n Read by\n \n 0\">\n -\n \n {{ item }} -\n \n -\n \n \n -\n \n \n \n\n \n \n \n \n more_vert\n \n \n \n description\n Show Logs\n \n \n \n \n\n \n \n \n \n\n\n \n\n \n \n ./app-events.component.css\n \n table {\n width: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' EVENTS Name {{ element.name }} State {{ element.state }} Date {{ element.statetime * 1000 | date: \"long\" }} Read by 0\"> - {{ item }} - - - more_vert description Show Logs '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppEventsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppManageComponent.html":{"url":"components/AppManageComponent.html","title":"component - AppManageComponent","body":"\n \n\n\n\n\n\n Components\n \n AppManageComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/appManage/app-manage.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-app-manage\n \n\n \n standalone\n true\n \n\n\n \n styleUrls\n ./app-manage.component.css\n \n\n\n\n \n templateUrl\n ./app-manage.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n currentItem\n \n \n currentObjs\n \n \n saveObj\n \n \n username\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n save\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(service: GetObjService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n service\n \n \n GetObjService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n save\n \n \n \n \n \n \nsave(index)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:38\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Optional\n \n \n \n \n index\n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n currentItem\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n currentObjs\n \n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n saveObj\n \n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n username\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:11\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { GetObjService } from '../services/get-obj.service';\n\n@Component({\n selector: 'cobbler-app-manage',\n templateUrl: './app-manage.component.html',\n styleUrls: ['./app-manage.component.css'],\n standalone: true,\n})\nexport class AppManageComponent {\n username: string;\n currentItem: string;\n currentObjs;\n saveObj;\n\n constructor(service: GetObjService) {\n const user = window.sessionStorage.getItem('user');\n const item = window.sessionStorage.getItem('CurrentItem');\n this.currentObjs = service.getITEMS();\n // console.log(`Current objects: ${this.current_objs}. Type=`, typeof this.current_objs)\n if (user) {\n this.username = user;\n }\n\n if (item) {\n this.currentItem = item;\n } else {\n // console.log(`item not found: ${item}`)\n this.currentItem = 'No Item has been selected.';\n }\n this.saveObj = (value) => {\n // console.log(\"saving current value in service\")\n service.name = value;\n };\n }\n\n // TODO: Find a way to also save this in current service\n save(index): void {\n // console.log('saving item')\n // let size = this.current_objs.length\n const current = this.currentObjs[index];\n this.currentItem = current;\n this.saveObj(current);\n }\n}\n\n \n\n \n \n \n WELCOME!\n \n\n\n \n\n \n \n ./app-manage.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' WELCOME! '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppManageComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/e2e/src/app.po.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Async\n getTitleText\n \n \n Async\n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Async\n getTitleText\n \n \n \n \n \n \n \n getTitleText()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/e2e/src/app.po.ts:8\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n Async\n navigateTo\n \n \n \n \n \n \n \n navigateTo()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/e2e/src/app.po.ts:4\n \n \n\n\n \n \n\n \n Returns : Promise<>\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n async navigateTo(): Promise {\n return browser.get(browser.baseUrl);\n }\n\n async getTitleText(): Promise {\n return element(by.css('app-root .content span')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/AuthGuardService.html":{"url":"injectables/AuthGuardService.html","title":"injectable - AuthGuardService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n AuthGuardService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/auth-guard.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loggedIN\n \n \n subscription\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n checkSession\n \n \n getstatus\n \n \n setBool\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \ncanActivate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:18\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n checkSession\n \n \n \n \n \n \ncheckSession()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:41\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n getstatus\n \n \n \n \n \n \ngetstatus()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:55\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n setBool\n \n \n \n \n \n \nsetBool(login: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:50\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n login\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n loggedIN\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n subscription\n \n \n \n \n \n \n Type : Subscription\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:11\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { Subscription } from 'rxjs';\nimport { UserService } from './user.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthGuardService {\n loggedIN = false;\n subscription: Subscription;\n\n constructor(\n private userService: UserService,\n private router: Router,\n ) {}\n\n canActivate(): boolean {\n const sessionLIVE = this.checkSession();\n if (sessionLIVE != null) {\n if (!sessionLIVE) {\n this.loggedIN = false;\n this.userService.changeAuthorizedState(false);\n this.router.navigate(['/Unauthorized']);\n return false;\n }\n if (sessionLIVE) {\n this.loggedIN = true;\n this.userService.changeAuthorizedState(true);\n return true;\n }\n }\n if (!this.loggedIN) {\n this.userService.changeAuthorizedState(this.loggedIN);\n this.router.navigate(['/Unauthorized']);\n }\n this.userService.changeAuthorizedState(this.loggedIN);\n return this.loggedIN;\n }\n\n checkSession(): boolean {\n try {\n const value = window.sessionStorage.getItem('loggedIn');\n return value === 'true';\n } catch {\n return false;\n }\n }\n\n setBool(login: boolean): void {\n this.loggedIN = login;\n window.sessionStorage.loggedIn = login;\n }\n\n getstatus(): boolean {\n const sessionLIVE = this.checkSession();\n if (sessionLIVE != null) {\n return sessionLIVE;\n }\n return this.loggedIN;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundAclSetupOptions.html":{"url":"interfaces/BackgroundAclSetupOptions.html","title":"interface - BackgroundAclSetupOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundAclSetupOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n addgroup\n \n \n \n \n adduser\n \n \n \n \n removegroup\n \n \n \n \n removeuser\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n addgroup\n \n \n \n \n \n \n \n \n addgroup: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n adduser\n \n \n \n \n \n \n \n \n adduser: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n removegroup\n \n \n \n \n \n \n \n \n removegroup: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n removeuser\n \n \n \n \n \n \n \n \n removeuser: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundBuildisoOptions.html":{"url":"interfaces/BackgroundBuildisoOptions.html","title":"interface - BackgroundBuildisoOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundBuildisoOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n airgapped\n \n \n \n \n buildisodir\n \n \n \n \n distro\n \n \n \n \n excludeDNS\n \n \n \n \n iso\n \n \n \n \n profiles\n \n \n \n \n source\n \n \n \n \n standalone\n \n \n \n \n systems\n \n \n \n \n xorrisofsOpts\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n airgapped\n \n \n \n \n \n \n \n \n airgapped: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n buildisodir\n \n \n \n \n \n \n \n \n buildisodir: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n distro\n \n \n \n \n \n \n \n \n distro: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n excludeDNS\n \n \n \n \n \n \n \n \n excludeDNS: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n iso\n \n \n \n \n \n \n \n \n iso: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n profiles\n \n \n \n \n \n \n \n \n profiles: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n source\n \n \n \n \n \n \n \n \n source: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n standalone\n \n \n \n \n \n \n \n \n standalone: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n systems\n \n \n \n \n \n \n \n \n systems: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n xorrisofsOpts\n \n \n \n \n \n \n \n \n xorrisofsOpts: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundImportOptions.html":{"url":"interfaces/BackgroundImportOptions.html","title":"interface - BackgroundImportOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundImportOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n arch\n \n \n \n \n autoinstall_file\n \n \n \n \n available_as\n \n \n \n \n breed\n \n \n \n \n name\n \n \n \n \n os_version\n \n \n \n \n path\n \n \n \n \n rsync_flags\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_file\n \n \n \n \n \n \n \n \n autoinstall_file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n available_as\n \n \n \n \n \n \n \n \n available_as: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n rsync_flags\n \n \n \n \n \n \n \n \n rsync_flags: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundPowerSystem.html":{"url":"interfaces/BackgroundPowerSystem.html","title":"interface - BackgroundPowerSystem","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundPowerSystem\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n power\n \n \n \n \n systems\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n power\n \n \n \n \n \n \n \n \n power: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n systems\n \n \n \n \n \n \n \n \n systems: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundReplicateOptions.html":{"url":"interfaces/BackgroundReplicateOptions.html","title":"interface - BackgroundReplicateOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundReplicateOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n distro_patterns\n \n \n \n \n file_patterns\n \n \n \n \n image_patterns\n \n \n \n \n master\n \n \n \n \n mgmtclass_patterns\n \n \n \n \n omit_data\n \n \n \n \n package_patterns\n \n \n \n \n port\n \n \n \n \n profile_patterns\n \n \n \n \n prune\n \n \n \n \n repo_patterns\n \n \n \n \n sync_all\n \n \n \n \n system_patterns\n \n \n \n \n use_ssl\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n distro_patterns\n \n \n \n \n \n \n \n \n distro_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n file_patterns\n \n \n \n \n \n \n \n \n file_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n image_patterns\n \n \n \n \n \n \n \n \n image_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n master\n \n \n \n \n \n \n \n \n master: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmtclass_patterns\n \n \n \n \n \n \n \n \n mgmtclass_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n omit_data\n \n \n \n \n \n \n \n \n omit_data: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n package_patterns\n \n \n \n \n \n \n \n \n package_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n port\n \n \n \n \n \n \n \n \n port: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n profile_patterns\n \n \n \n \n \n \n \n \n profile_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n prune\n \n \n \n \n \n \n \n \n prune: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n repo_patterns\n \n \n \n \n \n \n \n \n repo_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n sync_all\n \n \n \n \n \n \n \n \n sync_all: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n system_patterns\n \n \n \n \n \n \n \n \n system_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n use_ssl\n \n \n \n \n \n \n \n \n use_ssl: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundReposyncOptions.html":{"url":"interfaces/BackgroundReposyncOptions.html","title":"interface - BackgroundReposyncOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundReposyncOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n nofail\n \n \n \n \n only\n \n \n \n \n repos\n \n \n \n \n tries\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n nofail\n \n \n \n \n \n \n \n \n nofail: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n only\n \n \n \n \n \n \n \n \n only: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n repos\n \n \n \n \n \n \n \n \n repos: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tries\n \n \n \n \n \n \n \n \n tries: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/BuildISOComponent.html":{"url":"components/BuildISOComponent.html","title":"component - BuildISOComponent","body":"\n \n\n\n\n\n\n Components\n \n BuildISOComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-build-iso\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatListModule\n FormsModule\n MatButton\n MatFormField\n MatInput\n MatLabel\n ReactiveFormsModule\n MatCheckbox\n \n \n\n \n styleUrls\n ./build-iso.component.scss\n \n\n\n\n \n templateUrl\n ./build-iso.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n buildisoFormGroup\n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runBuildiso\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:48\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:56\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runBuildiso\n \n \n \n \n \n \nrunBuildiso()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:36\n \n \n\n\n \n \n \n \n \n \n \n \n buildisoFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n iso: '',\n profiles: '',\n systems: '',\n buildisodir: '',\n distro: '',\n standalone: false,\n airgapped: false,\n source: '',\n excludeDNS: false,\n xorrisofsOpts: '',\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:51\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { FormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\nimport { MatListModule } from '@angular/material/list';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { BackgroundBuildisoOptions, CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-build-iso',\n templateUrl: './build-iso.component.html',\n styleUrls: ['./build-iso.component.scss'],\n standalone: true,\n imports: [\n MatListModule,\n FormsModule,\n MatButton,\n MatFormField,\n MatInput,\n MatLabel,\n ReactiveFormsModule,\n MatCheckbox,\n ],\n})\nexport class BuildISOComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n buildisoFormGroup = this._formBuilder.group({\n iso: '',\n profiles: '',\n systems: '',\n buildisodir: '',\n distro: '',\n standalone: false,\n airgapped: false,\n source: '',\n excludeDNS: false,\n xorrisofsOpts: '',\n });\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runBuildiso(): void {\n const buildisoOptions: BackgroundBuildisoOptions = {\n iso: this.buildisoFormGroup.controls.iso.value,\n profiles: this.buildisoFormGroup.controls.profiles.value,\n systems: this.buildisoFormGroup.controls.systems.value,\n buildisodir: this.buildisoFormGroup.controls.buildisodir.value,\n distro: this.buildisoFormGroup.controls.distro.value,\n standalone: this.buildisoFormGroup.controls.standalone.value,\n airgapped: this.buildisoFormGroup.controls.airgapped.value,\n source: this.buildisoFormGroup.controls.source.value,\n excludeDNS: this.buildisoFormGroup.controls.excludeDNS.value,\n xorrisofsOpts: this.buildisoFormGroup.controls.xorrisofsOpts.value,\n };\n if (this.buildisoFormGroup.invalid) {\n this._snackBar.open('Please fill out all required inputs!', 'Close', {\n duration: 2000,\n });\n return;\n }\n this.cobblerApiService\n .background_buildiso(buildisoOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n BUILD ISO IMAGES\n\n\n \n Distro\n \n \n \n ISO\n \n \n \n Profiles\n \n \n \n Systems\n \n \n \n Buildiso directory\n \n \n \n Source\n \n \n \n xorrisofs Options\n \n \n Standalone\n Airgapped\n Exclude DNS\n Run\n\n\n \n\n \n \n ./build-iso.component.scss\n \n .form-replicate {\n min-width: 150px;\n max-width: 600px;\n width: 100%;\n}\n\n.form-field-full-width {\n width: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'BUILD ISO IMAGES Distro ISO Profiles Systems Buildiso directory Source xorrisofs Options Standalone Airgapped Exclude DNS Run'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'BuildISOComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/CheckSysComponent.html":{"url":"components/CheckSysComponent.html","title":"component - CheckSysComponent","body":"\n \n\n\n\n\n\n Components\n \n CheckSysComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-check-sys\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatListModule\n CommonModule\n MatButton\n MatIconButton\n MatIcon\n MatTooltip\n MatProgressSpinner\n \n \n\n \n styleUrls\n ./check-sys.component.scss\n \n\n\n\n \n templateUrl\n ./check-sys.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n data\n \n \n Public\n isLoading\n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n updateChecks\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:38\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:46\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateChecks\n \n \n \n \n \n \nupdateChecks()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:55\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : of([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n isLoading\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:41\n \n \n\n\n \n \n\n\n\n\n\n \n import { CommonModule } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatListModule } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { RouterOutlet } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Observable, of, Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-check-sys',\n templateUrl: './check-sys.component.html',\n styleUrls: ['./check-sys.component.scss'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatListModule,\n CommonModule,\n MatButton,\n MatIconButton,\n MatIcon,\n MatTooltip,\n MatProgressSpinner,\n ],\n})\nexport class CheckSysComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Data\n public data: Observable> = of([]);\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.updateChecks();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n updateChecks(): void {\n this.isLoading = true;\n this.cobblerApiService\n .check(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (data) => {\n this.data = of(data);\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n this.isLoading = false;\n },\n );\n }\n}\n\n \n\n \n \n \n \n \n \n CHECK\n \n \n refresh\n \n \n \n \n \n \n \n \n \n {{ element }}\n \n \n \n \n \n\n\n \n\n \n \n ./check-sys.component.scss\n \n .title-table {\n display: table;\n width: 100%;\n}\n\n.title-row {\n display: table-cell;\n width: 100%;\n}\n\n.title-cell-text {\n display: table-cell;\n width: 100%;\n vertical-align: middle;\n}\n\n.title-cell-button {\n display: table-cell;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' CHECK refresh {{ element }} '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'CheckSysComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/DateFormatter.html":{"url":"classes/DateFormatter.html","title":"class - DateFormatter","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n DateFormatter\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/date_formatter.ts\n \n\n\n \n Description\n \n \n The DateFormatter supports decoding from and encoding to ISO8601 formatted strings. Accepts formats with and without\nhyphen/colon separators and correctly parses zoning info.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n colons\n \n \n hyphens\n \n \n Static\n ISO8601\n \n \n local\n \n \n ms\n \n \n offset\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n decodeIso8601\n \n \n encodeIso8601\n \n \n Static\n formatCurrentOffset\n \n \n Static\n getLocalDateParts\n \n \n Static\n getUTCDateParts\n \n \n Static\n zeroPad\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(colons: boolean, hyphens: boolean, local: boolean, ms: boolean, offset: boolean)\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:122\n \n \n\n \n \n Constructor for creating a DateFormatter.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n colons\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/disable formatting the time portion with a colon as separator\n\n \n \n \n hyphens\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/disable formatting the date portion with a hyphen as separator\n\n \n \n \n local\n \n \n boolean\n \n \n \n No\n \n \n \n Encode as local time instead of UTC\n\n \n \n \n ms\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/Disable output of milliseconds\n\n \n \n \n offset\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/Disable output of UTC offset\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n colons\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n hyphens\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n Static\n ISO8601\n \n \n \n \n \n \n Default value : new RegExp(\n '([0-9]{4})([-]?([0-9]{2}))([-]?([0-9]{2}))(T([0-9]{2})(((:?([0-9]{2}))?((:?([0-9]{2}))?(.([0-9]+))?))?)(Z|([+-]([0-9]{2}(:?([0-9]{2}))?)))?)?',\n )\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:10\n \n \n\n \n \n Regular Expression that dissects ISO 8601 formatted strings into an array of parts.\n\n \n \n\n \n \n \n \n \n \n \n \n local\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n ms\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n offset\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:19\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n decodeIso8601\n \n \n \n \n \n \n \n decodeIso8601(time: string)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:80\n \n \n\n\n \n \n Converts a date time stamp following the ISO8601 format to a JavaScript Date\nobject.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n time\n \n string\n \n\n \n No\n \n\n\n \n \nString representation of timestamp.\n\n\n \n \n \n \n \n \n Returns : Date\n\n \n \n Date object from timestamp.\n\n \n \n \n \n \n \n \n \n \n \n \n encodeIso8601\n \n \n \n \n \n \nencodeIso8601(date: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:153\n \n \n\n\n \n \n Converts a JavaScript Date object to an ISO8601 timestamp.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n date\n \n Date\n \n\n \n No\n \n\n\n \n \nDate object.\n\n\n \n \n \n \n \n \n Returns : string\n\n \n \n String representation of timestamp.\n\n \n \n \n \n \n \n \n \n \n \n \n Static\n formatCurrentOffset\n \n \n \n \n \n \n \n formatCurrentOffset(d: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:61\n \n \n\n\n \n \n Helper function to get the current timezone to default decoding to rather than UTC. (for backward compatibility)\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n d\n \n Date\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : string\n\n \n \n in the format /Z|[+-]\\d{2}:\\d{2}/\n\n \n \n \n \n \n \n \n \n \n \n \n Static\n getLocalDateParts\n \n \n \n \n \n \n \n getLocalDateParts(date: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:110\n \n \n\n\n \n \n Helper function to get an array of zero-padded date parts, in the local time zone\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n date\n \n Date\n \n\n \n No\n \n\n\n \n \nDate Object\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n getUTCDateParts\n \n \n \n \n \n \n \n getUTCDateParts(date: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:42\n \n \n\n\n \n \n Helper function to get an array of zero-padded date parts, in UTC\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n date\n \n Date\n \n\n \n No\n \n\n\n \n \nDate Object\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n zeroPad\n \n \n \n \n \n \n \n zeroPad(digit: number, length: number)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:29\n \n \n\n\n \n \n Helper function to pad the digits with 0s to meet date formatting\nrequirements.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digit\n \n number\n \n\n \n No\n \n\n\n \n \nThe number to pad.\n\n\n \n \n \n length\n \n number\n \n\n \n No\n \n\n\n \n \nLength of digit string, prefix with 0s if not already length.\n\n\n \n \n \n \n \n \n Returns : string\n\n \n \n String with the padded digit\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export class DateFormatter {\n /**\n * Regular Expression that dissects ISO 8601 formatted strings into an array of parts.\n */\n /* eslint-disable max-len */\n static ISO8601 = new RegExp(\n '([0-9]{4})([-]?([0-9]{2}))([-]?([0-9]{2}))(T([0-9]{2})(((:?([0-9]{2}))?((:?([0-9]{2}))?(.([0-9]+))?))?)(Z|([+-]([0-9]{2}(:?([0-9]{2}))?)))?)?',\n );\n /* eslint-enable max-len */\n\n colons = true;\n hyphens = false;\n local = true;\n ms = false;\n offset = false;\n\n /**\n * Helper function to pad the digits with 0s to meet date formatting\n * requirements.\n *\n * @param digit - The number to pad.\n * @param length - Length of digit string, prefix with 0s if not already length.\n * @return String with the padded digit\n */\n static zeroPad(digit: number, length: number): string {\n let padded = '' + digit;\n while (padded.length \n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DialogBoxTextConfirmComponent.html":{"url":"components/DialogBoxTextConfirmComponent.html","title":"component - DialogBoxTextConfirmComponent","body":"\n \n\n\n\n\n\n Components\n \n DialogBoxTextConfirmComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-dialog-box-text-confirm\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButtonModule\n MatDialogActions\n MatDialogClose\n MatDialogTitle\n MatDialogContent\n \n \n\n \n styleUrls\n ./dialog-box-text-confirm.css\n \n\n\n\n \n templateUrl\n ./dialog-box-text-confirm.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(data: DialogData)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts:30\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n \n DialogData\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : DialogData\n\n \n \n \n \n Decorators : \n \n \n @Inject(MAT_DIALOG_DATA)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts:31\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\nexport interface DialogData {\n eventId: string;\n name: string;\n eventLog: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-box-text-confirm',\n templateUrl: './dialog-box-text-confirm.html',\n styleUrls: ['./dialog-box-text-confirm.css'],\n standalone: true,\n imports: [\n MatButtonModule,\n MatDialogActions,\n MatDialogClose,\n MatDialogTitle,\n MatDialogContent,\n ],\n})\nexport class DialogBoxTextConfirmComponent {\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogData) {}\n}\n\n \n\n \n Log for: {{ data.name }}\n{{ data.eventLog }}\n\n Close\n\n\n \n\n \n \n ./dialog-box-text-confirm.css\n \n .content {\n white-space: pre-line;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Log for: {{ data.name }}{{ data.eventLog }} Close'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DialogBoxTextConfirmComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DialogData.html":{"url":"interfaces/DialogData.html","title":"interface - DialogData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DialogData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n eventId\n \n \n \n \n eventLog\n \n \n \n \n name\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n eventId\n \n \n \n \n \n \n \n \n eventId: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n eventLog\n \n \n \n \n \n \n \n \n eventLog: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, Inject } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\nexport interface DialogData {\n eventId: string;\n name: string;\n eventLog: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-box-text-confirm',\n templateUrl: './dialog-box-text-confirm.html',\n styleUrls: ['./dialog-box-text-confirm.css'],\n standalone: true,\n imports: [\n MatButtonModule,\n MatDialogActions,\n MatDialogClose,\n MatDialogTitle,\n MatDialogContent,\n ],\n})\nexport class DialogBoxTextConfirmComponent {\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogData) {}\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DialogItemRenameComponent.html":{"url":"components/DialogItemRenameComponent.html","title":"component - DialogItemRenameComponent","body":"\n \n\n\n\n\n\n Components\n \n DialogItemRenameComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-dialog-item-rename\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatDialogModule\n MatButtonModule\n ReactiveFormsModule\n MatFormFieldModule\n MatInputModule\n FormsModule\n \n \n\n\n\n\n \n templateUrl\n ./dialog-item-rename.component.html\n \n\n\n\n \n styleUrl\n ./dialog-item-rename.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n data\n \n \n Readonly\n dialogCloseSignal\n \n \n Readonly\n dialogRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n onNoClick\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(data: DialogItemRenameData)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:41\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n \n DialogItemRenameData\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n onNoClick\n \n \n \n \n \n \nonNoClick()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:45\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : DialogItemRenameData\n\n \n \n \n \n Decorators : \n \n \n @Inject(MAT_DIALOG_DATA)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogCloseSignal\n \n \n \n \n \n \n Default value : model('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogRef\n \n \n \n \n \n \n Default value : inject(MatDialogRef)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:40\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n inject,\n Inject,\n model,\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton, MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogModule,\n MatDialogRef,\n} from '@angular/material/dialog';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n\nexport interface DialogItemRenameData {\n itemType: string;\n itemName: string;\n itemUid: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-item-rename',\n standalone: true,\n imports: [\n MatDialogModule,\n MatButtonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ],\n templateUrl: './dialog-item-rename.component.html',\n styleUrl: './dialog-item-rename.component.scss',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogItemRenameComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly dialogCloseSignal = model('');\n\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemRenameData) {}\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n \n Rename {{ data.itemType }}\n\n \n Old name\n \n \n\n \n New name\n \n \n\n\n Close\n Rename\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Rename {{ data.itemType }} Old name New name Close Rename'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DialogItemRenameComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DialogItemRenameData.html":{"url":"interfaces/DialogItemRenameData.html","title":"interface - DialogItemRenameData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DialogItemRenameData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n itemName\n \n \n \n \n itemType\n \n \n \n \n itemUid\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n itemName\n \n \n \n \n \n \n \n \n itemName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n itemType\n \n \n \n \n \n \n \n \n itemType: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n itemUid\n \n \n \n \n \n \n \n \n itemUid: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n inject,\n Inject,\n model,\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton, MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogModule,\n MatDialogRef,\n} from '@angular/material/dialog';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n\nexport interface DialogItemRenameData {\n itemType: string;\n itemName: string;\n itemUid: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-item-rename',\n standalone: true,\n imports: [\n MatDialogModule,\n MatButtonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ],\n templateUrl: './dialog-item-rename.component.html',\n styleUrl: './dialog-item-rename.component.scss',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogItemRenameComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly dialogCloseSignal = model('');\n\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemRenameData) {}\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DialogTextInputComponent.html":{"url":"components/DialogTextInputComponent.html","title":"component - DialogTextInputComponent","body":"\n \n\n\n\n\n\n Components\n \n DialogTextInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-dialog-text-input\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatDialogContent\n MatDialogTitle\n MatFormField\n MatDialogActions\n MatButton\n MatDialogClose\n MatInput\n MatLabel\n FormsModule\n \n \n\n\n\n\n \n templateUrl\n ./dialog-text-input.component.html\n \n\n\n\n \n styleUrl\n ./dialog-text-input.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n data\n \n \n Readonly\n dialogCloseSignal\n \n \n Readonly\n dialogRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n onNoClick\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n onNoClick\n \n \n \n \n \n \nonNoClick()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:41\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Readonly\n data\n \n \n \n \n \n \n Default value : inject(MAT_DIALOG_DATA)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogCloseSignal\n \n \n \n \n \n \n Default value : model(this.data.text)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogRef\n \n \n \n \n \n \n Default value : inject(MatDialogRef)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:37\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, model } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\n\nexport interface DialogTextInputData {\n text: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-text-input',\n standalone: true,\n imports: [\n MatDialogContent,\n MatDialogTitle,\n MatFormField,\n MatDialogActions,\n MatButton,\n MatDialogClose,\n MatInput,\n MatLabel,\n FormsModule,\n ],\n templateUrl: './dialog-text-input.component.html',\n styleUrl: './dialog-text-input.component.scss',\n})\nexport class DialogTextInputComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly data = inject(MAT_DIALOG_DATA);\n readonly dialogCloseSignal = model(this.data.text);\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n \n Add new Option:\n\n \n New Option\n \n \n\n\n No Thanks\n \n Ok\n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Add new Option: New Option No Thanks Ok '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DialogTextInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DialogTextInputData.html":{"url":"interfaces/DialogTextInputData.html","title":"interface - DialogTextInputData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DialogTextInputData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n text\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n text\n \n \n \n \n \n \n \n \n text: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, inject, model } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\n\nexport interface DialogTextInputData {\n text: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-text-input',\n standalone: true,\n imports: [\n MatDialogContent,\n MatDialogTitle,\n MatFormField,\n MatDialogActions,\n MatButton,\n MatDialogClose,\n MatInput,\n MatLabel,\n FormsModule,\n ],\n templateUrl: './dialog-text-input.component.html',\n styleUrl: './dialog-text-input.component.scss',\n})\nexport class DialogTextInputComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly data = inject(MAT_DIALOG_DATA);\n readonly dialogCloseSignal = model(this.data.text);\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Distro.html":{"url":"interfaces/Distro.html","title":"interface - Distro","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Distro\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n arch\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n boot_loaders\n \n \n \n \n breed\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n initrd\n \n \n \n \n is_subobject\n \n \n \n \n kernel\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n name\n \n \n \n \n os_version\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n redhat_management_key\n \n \n \n \n remote_boot_initrd\n \n \n \n \n remote_boot_kernel\n \n \n \n \n remote_grub_initrd\n \n \n \n \n remote_grub_kernel\n \n \n \n \n source_repos\n \n \n \n \n template_files\n \n \n \n \n tree_build_time\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_loaders\n \n \n \n \n \n \n \n \n boot_loaders: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n initrd\n \n \n \n \n \n \n \n \n initrd: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel\n \n \n \n \n \n \n \n \n kernel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n redhat_management_key\n \n \n \n \n \n \n \n \n redhat_management_key: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_boot_initrd\n \n \n \n \n \n \n \n \n remote_boot_initrd: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_boot_kernel\n \n \n \n \n \n \n \n \n remote_boot_kernel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_grub_initrd\n \n \n \n \n \n \n \n \n remote_grub_initrd: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_grub_kernel\n \n \n \n \n \n \n \n \n remote_grub_kernel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n source_repos\n \n \n \n \n \n \n \n \n source_repos: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tree_build_time\n \n \n \n \n \n \n \n \n tree_build_time: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DistroEditComponent.html":{"url":"components/DistroEditComponent.html","title":"component - DistroEditComponent","body":"\n \n\n\n\n\n\n Components\n \n DistroEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatIcon\n MatIconButton\n ReactiveFormsModule\n MatFormField\n MatInput\n MatLabel\n FormsModule\n MatTooltip\n MatButton\n MatCheckbox\n MatSelect\n MatOption\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./distro-edit.component.html\n \n\n\n\n \n styleUrl\n ./distro-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n distro\n \n \n distroFormGroup\n \n \n isEditMode\n \n \n name\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyDistro\n \n \n editDistro\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeDistro\n \n \n saveDistro\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n distroOwners\n \n \n distroAutoinstallMeta\n \n \n distroBootFiles\n \n \n distroFetchableFiles\n \n \n distroKernelOptions\n \n \n distroKernelOptionsPost\n \n \n distroTemplateFiles\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:96\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyDistro\n \n \n \n \n \n \ncopyDistro()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:264\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editDistro\n \n \n \n \n \n \neditDistro()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:259\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:108\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:112\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeDistro\n \n \n \n \n \n \nremoveDistro()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:238\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveDistro\n \n \n \n \n \n \nsaveDistro()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:278\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n distro\n \n \n \n \n \n \n Type : Distro\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n distroFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n tree_build_time: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n kernel: new FormControl({ value: '', disabled: true }),\n initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_kernel: new FormControl({ value: '', disabled: true }),\n remote_grub_initrd: new FormControl({ value: '', disabled: true }),\n remote_grub_kernel: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:96\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:46\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n distroOwners\n \n \n\n \n \n getdistroOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:282\n \n \n\n \n \n \n \n \n \n \n distroAutoinstallMeta\n \n \n\n \n \n getdistroAutoinstallMeta()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:292\n \n \n\n \n \n \n \n \n \n \n distroBootFiles\n \n \n\n \n \n getdistroBootFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:302\n \n \n\n \n \n \n \n \n \n \n distroFetchableFiles\n \n \n\n \n \n getdistroFetchableFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:312\n \n \n\n \n \n \n \n \n \n \n distroKernelOptions\n \n \n\n \n \n getdistroKernelOptions()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:322\n \n \n\n \n \n \n \n \n \n \n distroKernelOptionsPost\n \n \n\n \n \n getdistroKernelOptionsPost()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:332\n \n \n\n \n \n \n \n \n \n \n distroTemplateFiles\n \n \n\n \n \n getdistroTemplateFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:342\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatOption, MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Distro } from 'cobbler-api';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n MatIcon,\n MatIconButton,\n ReactiveFormsModule,\n MatFormField,\n MatInput,\n MatLabel,\n FormsModule,\n MatTooltip,\n MatButton,\n MatCheckbox,\n MatSelect,\n MatOption,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './distro-edit.component.html',\n styleUrl: './distro-edit.component.scss',\n})\nexport class DistroEditComponent implements OnInit {\n name: string;\n distro: Distro;\n private readonly _formBuilder = inject(FormBuilder);\n distroFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n tree_build_time: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n kernel: new FormControl({ value: '', disabled: true }),\n initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_kernel: new FormControl({ value: '', disabled: true }),\n remote_grub_initrd: new FormControl({ value: '', disabled: true }),\n remote_grub_kernel: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_distro(this.name, false, false, this.userService.token)\n .subscribe(\n (value) => {\n this.distro = value;\n this.distroFormGroup.controls.name.setValue(this.distro.name);\n this.distroFormGroup.controls.uid.setValue(this.distro.uid);\n this.distroFormGroup.controls.mtime.setValue(\n new Date(this.distro.mtime * 1000).toString(),\n );\n this.distroFormGroup.controls.ctime.setValue(\n new Date(this.distro.ctime * 1000).toString(),\n );\n this.distroFormGroup.controls.depth.setValue(this.distro.depth);\n this.distroFormGroup.controls.arch.setValue(this.distro.arch);\n this.distroFormGroup.controls.is_subobject.setValue(\n this.distro.is_subobject,\n );\n this.distroFormGroup.controls.tree_build_time.setValue(\n new Date(this.distro.tree_build_time * 1000).toString(),\n );\n this.distroFormGroup.controls.breed.setValue(this.distro.breed);\n this.distroFormGroup.controls.comment.setValue(this.distro.comment);\n this.distroFormGroup.controls.kernel.setValue(this.distro.kernel);\n this.distroFormGroup.controls.initrd.setValue(this.distro.initrd);\n this.distroFormGroup.controls.remote_boot_initrd.setValue(\n this.distro.remote_boot_initrd,\n );\n this.distroFormGroup.controls.remote_boot_kernel.setValue(\n this.distro.remote_boot_kernel,\n );\n this.distroFormGroup.controls.remote_grub_initrd.setValue(\n this.distro.remote_grub_initrd,\n );\n this.distroFormGroup.controls.remote_grub_kernel.setValue(\n this.distro.remote_grub_kernel,\n );\n this.distroFormGroup.controls.os_version.setValue(\n this.distro.os_version,\n );\n this.distroFormGroup.controls.redhat_management_key.setValue(\n this.distro.redhat_management_key,\n );\n if (typeof this.distro.boot_loaders === 'string') {\n this.distroFormGroup.controls.bootloader_inherited.setValue(true);\n } else {\n this.distroFormGroup.controls.bootloader_inherited.setValue(false);\n this.distroFormGroup.controls.boot_loaders.setValue(\n this.distro.boot_loaders,\n );\n }\n if (typeof this.distro.owners === 'string') {\n this.distroFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.distroFormGroup.controls.owners_inherited.setValue(false);\n this.distroFormGroup.controls.owners.setValue(this.distro.owners);\n }\n if (typeof this.distro.autoinstall_meta === 'string') {\n this.distroFormGroup.controls.autoinstall_meta_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.autoinstall_meta_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.autoinstall_meta.setValue(\n this.distro.autoinstall_meta,\n );\n }\n if (typeof this.distro.fetchable_files === 'string') {\n this.distroFormGroup.controls.fetchable_files_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.fetchable_files_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.fetchable_files.setValue(\n this.distro.fetchable_files,\n );\n }\n if (typeof this.distro.kernel_options === 'string') {\n this.distroFormGroup.controls.kernel_options_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.kernel_options_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.kernel_options.setValue(\n this.distro.kernel_options,\n );\n }\n if (typeof this.distro.kernel_options_post === 'string') {\n this.distroFormGroup.controls.kernel_options_post_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.kernel_options_post_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.kernel_options_post.setValue(\n this.distro.kernel_options_post,\n );\n }\n if (typeof this.distro.template_files === 'string') {\n this.distroFormGroup.controls.template_files_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.template_files_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.template_files.setValue(\n this.distro.template_files,\n );\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeDistro(): void {\n this.cobblerApiService\n .remove_distro(this.name, this.userService.token, false)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'distro']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editDistro(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyDistro(): void {\n this.cobblerApiService\n .copy_distro('', '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n saveDistro(): void {\n // TODO\n }\n\n get distroOwners(): string[] {\n if (this.distro && this.distro.owners) {\n const ownersResult = this.distro.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n\n get distroAutoinstallMeta(): object {\n if (this.distro && this.distro.autoinstall_meta) {\n const autoinstallMetaResult = this.distro.autoinstall_meta;\n if (typeof autoinstallMetaResult !== 'string') {\n return autoinstallMetaResult;\n }\n }\n return {};\n }\n\n get distroBootFiles(): object {\n if (this.distro && this.distro.boot_files) {\n const bootFilesResult = this.distro.boot_files;\n if (typeof bootFilesResult !== 'string') {\n return bootFilesResult;\n }\n }\n return {};\n }\n\n get distroFetchableFiles(): object {\n if (this.distro && this.distro.fetchable_files) {\n const fetchableFilesResult = this.distro.fetchable_files;\n if (typeof fetchableFilesResult !== 'string') {\n return fetchableFilesResult;\n }\n }\n return {};\n }\n\n get distroKernelOptions(): object {\n if (this.distro && this.distro.kernel_options) {\n const kernelOptionsResult = this.distro.kernel_options;\n if (typeof kernelOptionsResult !== 'string') {\n return kernelOptionsResult;\n }\n }\n return {};\n }\n\n get distroKernelOptionsPost(): object {\n if (this.distro && this.distro.kernel_options_post) {\n const kernelOptionsPostResult = this.distro.kernel_options_post;\n if (typeof kernelOptionsPostResult !== 'string') {\n return kernelOptionsPostResult;\n }\n }\n return {};\n }\n\n get distroTemplateFiles(): object {\n if (this.distro && this.distro.template_files) {\n const templateFilesResult = this.distro.template_files;\n if (typeof templateFilesResult !== 'string') {\n return templateFilesResult;\n }\n }\n return {};\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n \n Architecture\n \n \n Is Subobject?\n \n Tree Build Time\n \n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n Breed\n \n \n \n Comment\n \n \n \n \n Inherited\n \n \n kernel\n \n \n \n initrd\n \n \n \n Remote Boot Initrd\n \n \n \n Remote Boot Kernel\n \n \n \n Remote GRUB Initrd\n \n \n \n Remote GRUB Kernel\n \n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n Operating System Version\n \n \n \n \n Inherited\n \n \n RedHat Management Key\n \n \n \n \n Inherited\n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Architecture Is Subobject? Tree Build Time Inherited Inherited Inherited Breed Comment Inherited kernel initrd Remote Boot Initrd Remote Boot Kernel Remote GRUB Initrd Remote GRUB Kernel Inherited Inherited Inherited Operating System Version Inherited RedHat Management Key Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DistroEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DistroSignatureOsVersion.html":{"url":"interfaces/DistroSignatureOsVersion.html","title":"interface - DistroSignatureOsVersion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DistroSignatureOsVersion\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n boot_files\n \n \n \n Optional\n \n boot_loaders\n \n \n \n \n default_autoinstall\n \n \n \n \n initrd_file\n \n \n \n Optional\n \n isolinux_ok\n \n \n \n \n kernel_arch\n \n \n \n Optional\n \n kernel_arch_regex\n \n \n \n \n kernel_file\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n signatures\n \n \n \n \n supported_arches\n \n \n \n \n supported_repo_breeds\n \n \n \n Optional\n \n template_files\n \n \n \n \n version_file\n \n \n \n Optional\n \n version_file_regex\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n boot_loaders\n \n \n \n \n \n \n \n \n boot_loaders: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n default_autoinstall\n \n \n \n \n \n \n \n \n default_autoinstall: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n initrd_file\n \n \n \n \n \n \n \n \n initrd_file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n isolinux_ok\n \n \n \n \n \n \n \n \n isolinux_ok: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n kernel_arch\n \n \n \n \n \n \n \n \n kernel_arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_arch_regex\n \n \n \n \n \n \n \n \n kernel_arch_regex: string | null\n\n \n \n\n\n \n \n Type : string | null\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n kernel_file\n \n \n \n \n \n \n \n \n kernel_file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n signatures\n \n \n \n \n \n \n \n \n signatures: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n supported_arches\n \n \n \n \n \n \n \n \n supported_arches: (\"arm\" | \"ARM64\" | \"armhfp\" | \"aarch64\" | \"i386\" | \"i586\" | \"ia64\" | \"ppc\" | \"ppc64\" | \"ppc64le\" | \"ppc64el\" | \"s390\" | \"s390x\" | \"x86_64\" | \"amd64\" | \"AMD64\" | \"x86\")[]\n\n \n \n\n\n \n \n Type : (\"arm\" | \"ARM64\" | \"armhfp\" | \"aarch64\" | \"i386\" | \"i586\" | \"ia64\" | \"ppc\" | \"ppc64\" | \"ppc64le\" | \"ppc64el\" | \"s390\" | \"s390x\" | \"x86_64\" | \"amd64\" | \"AMD64\" | \"x86\")[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n supported_repo_breeds\n \n \n \n \n \n \n \n \n supported_repo_breeds: (\"rsync\" | \"rhn\" | \"yum\" | \"apt\")[]\n\n \n \n\n\n \n \n Type : (\"rsync\" | \"rhn\" | \"yum\" | \"apt\")[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n version_file\n \n \n \n \n \n \n \n \n version_file: string | null\n\n \n \n\n\n \n \n Type : string | null\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n version_file_regex\n \n \n \n \n \n \n \n \n version_file_regex: string | null\n\n \n \n\n\n \n \n Type : string | null\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n\n\n \n export interface DistroSignatureOsVersion {\n signatures: string[];\n version_file: string | null;\n version_file_regex?: string | null;\n kernel_arch: string;\n kernel_arch_regex?: string | null;\n supported_arches: (\n | 'arm'\n | 'ARM64'\n | 'armhfp'\n | 'aarch64'\n | 'i386'\n | 'i586'\n | 'ia64'\n | 'ppc'\n | 'ppc64'\n | 'ppc64le'\n | 'ppc64el'\n | 's390'\n | 's390x'\n | 'x86_64'\n | 'amd64'\n | 'AMD64'\n | 'x86'\n )[];\n supported_repo_breeds: ('rsync' | 'rhn' | 'yum' | 'apt')[];\n kernel_file: string;\n initrd_file: string;\n isolinux_ok?: boolean;\n default_autoinstall: string;\n kernel_options: string;\n kernel_options_post: string;\n template_files?: string;\n boot_files?: string[];\n boot_loaders?: {\n arm?: ('pxe' | 'ipxe' | 'grub')[];\n armhfp?: ('pxe' | 'ipxe' | 'grub')[];\n aarch64?: ('pxe' | 'ipxe' | 'grub')[];\n i386?: ('pxe' | 'ipxe' | 'grub')[];\n ia64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64le?: ('pxe' | 'ipxe' | 'grub')[];\n s390?: ('pxe' | 'ipxe' | 'grub')[];\n s390x?: ('pxe' | 'ipxe' | 'grub')[];\n x86_64?: ('pxe' | 'ipxe' | 'grub')[];\n [k: string]: unknown;\n };\n}\n\n/**\n * The different distributions supported by Cobbler. This schema is valid for Cobbler with major version 3.\n *\n * Generated via: https://transform.tools/json-schema-to-typescript\n */\nexport interface DistroSignatures {\n breeds: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"redhat|debian|ubuntu|suse|vmware|freebsd|xen|unix|windows|powerkvm|generic\".\n */\n [k: string]: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"^[a-zA-Z0-9]*$\".\n */\n [k: string]: DistroSignatureOsVersion;\n };\n };\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DistroSignatures.html":{"url":"interfaces/DistroSignatures.html","title":"interface - DistroSignatures","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DistroSignatures\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n\n\n \n Description\n \n \n The different distributions supported by Cobbler. This schema is valid for Cobbler with major version 3.\nGenerated via: https://transform.tools/json-schema-to-typescript\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n breeds\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n breeds\n \n \n \n \n \n \n \n \n breeds: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface DistroSignatureOsVersion {\n signatures: string[];\n version_file: string | null;\n version_file_regex?: string | null;\n kernel_arch: string;\n kernel_arch_regex?: string | null;\n supported_arches: (\n | 'arm'\n | 'ARM64'\n | 'armhfp'\n | 'aarch64'\n | 'i386'\n | 'i586'\n | 'ia64'\n | 'ppc'\n | 'ppc64'\n | 'ppc64le'\n | 'ppc64el'\n | 's390'\n | 's390x'\n | 'x86_64'\n | 'amd64'\n | 'AMD64'\n | 'x86'\n )[];\n supported_repo_breeds: ('rsync' | 'rhn' | 'yum' | 'apt')[];\n kernel_file: string;\n initrd_file: string;\n isolinux_ok?: boolean;\n default_autoinstall: string;\n kernel_options: string;\n kernel_options_post: string;\n template_files?: string;\n boot_files?: string[];\n boot_loaders?: {\n arm?: ('pxe' | 'ipxe' | 'grub')[];\n armhfp?: ('pxe' | 'ipxe' | 'grub')[];\n aarch64?: ('pxe' | 'ipxe' | 'grub')[];\n i386?: ('pxe' | 'ipxe' | 'grub')[];\n ia64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64le?: ('pxe' | 'ipxe' | 'grub')[];\n s390?: ('pxe' | 'ipxe' | 'grub')[];\n s390x?: ('pxe' | 'ipxe' | 'grub')[];\n x86_64?: ('pxe' | 'ipxe' | 'grub')[];\n [k: string]: unknown;\n };\n}\n\n/**\n * The different distributions supported by Cobbler. This schema is valid for Cobbler with major version 3.\n *\n * Generated via: https://transform.tools/json-schema-to-typescript\n */\nexport interface DistroSignatures {\n breeds: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"redhat|debian|ubuntu|suse|vmware|freebsd|xen|unix|windows|powerkvm|generic\".\n */\n [k: string]: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"^[a-zA-Z0-9]*$\".\n */\n [k: string]: DistroSignatureOsVersion;\n };\n };\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DistrosOverviewComponent.html":{"url":"components/DistrosOverviewComponent.html","title":"component - DistrosOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n DistrosOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-distros\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n MatTable\n MatHeaderCell\n MatCell\n MatColumnDef\n MatHeaderCellDef\n MatCellDef\n MatHeaderRow\n MatRow\n MatRowDef\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatMenuTrigger\n \n \n\n \n styleUrls\n ./distros-overview.component.css\n \n\n\n\n \n templateUrl\n ./distros-overview.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteDistro\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameDistro\n \n \n Private\n retrieveDistros\n \n \n showDistro\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:61\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteDistro\n \n \n \n \n \n \ndeleteDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:139\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:75\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:71\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameDistro\n \n \n \n \n \n \nrenameDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:99\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveDistros\n \n \n \n \n \n \n \n retrieveDistros()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:80\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showDistro\n \n \n \n \n \n \nshowDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:95\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:59\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'breed', 'os_version', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:64\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Distro } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogBoxTextConfirmComponent } from '../../../common/dialog-box-text-confirm/dialog-box-text-confirm';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-distros',\n templateUrl: './distros-overview.component.html',\n styleUrls: ['./distros-overview.component.css'],\n\n standalone: true,\n imports: [\n MatButton,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRow,\n MatRow,\n MatRowDef,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatMenuTrigger,\n ],\n})\nexport class DistrosOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'breed', 'os_version', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveDistros();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveDistros(): void {\n this.cobblerApiService\n .get_distros()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showDistro(uid: string, name: string): void {\n this.router.navigate(['/items', 'distro', name]);\n }\n\n renameDistro(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Distro',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the distro\n return;\n }\n this.cobblerApiService\n .get_distro_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (distroHandle) => {\n this.cobblerApiService\n .rename_distro(distroHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveDistros();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteDistro(uid: string, name: string): void {\n this.cobblerApiService\n .remove_distro(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveDistros();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n DISTROS\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Breed\n {{ element.breed }}\n \n\n \n \n Operating System Version\n {{ element.os_version }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n \n \n ./distros-overview.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'DISTROS Name {{ element.name }} Breed {{ element.breed }} Operating System Version {{ element.os_version }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DistrosOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Event.html":{"url":"interfaces/Event.html","title":"interface - Event","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Event\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n id\n \n \n \n \n name\n \n \n \n \n readByWho\n \n \n \n \n state\n \n \n \n \n statetime\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n id\n \n \n \n \n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n readByWho\n \n \n \n \n \n \n \n \n readByWho: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n state\n \n \n \n \n \n \n \n \n state: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n statetime\n \n \n \n \n \n \n \n \n statetime: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ExampleFlatNode.html":{"url":"interfaces/ExampleFlatNode.html","title":"interface - ExampleFlatNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ExampleFlatNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n\n\n \n Description\n \n \n Flat node with expandable and level information\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n expandable\n \n \n \n \n level\n \n \n \n \n name\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n expandable\n \n \n \n \n \n \n \n \n expandable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n level\n \n \n \n \n \n \n \n \n level: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { FlatTreeControl } from '@angular/cdk/tree';\nimport { Component, Input, OnInit } from '@angular/core';\nimport {\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeModule,\n} from '@angular/material/tree';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface ObjectNode {\n name: string;\n value: any;\n children?: ObjectNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-viewable-tree',\n templateUrl: './viewable-tree.component.html',\n styleUrls: ['./viewable-tree.component.scss'],\n standalone: true,\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n})\nexport class ViewableTreeComponent implements OnInit {\n @Input() inputObject: object = {};\n viewableTreeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n private _transformer = (node: ObjectNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n value: node.value,\n level: level,\n };\n };\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n );\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n constructor() {}\n\n inputLength(inputObject: object): number {\n return Object.keys(inputObject).length;\n }\n\n private transformObject(inputObject: object): ObjectNode[] {\n const resultStructure = [];\n let children = [];\n Object.keys(inputObject).forEach((key) => {\n if (\n !Array.isArray(inputObject[key]) &&\n typeof inputObject[key] === 'object'\n ) {\n children = this.transformObject(inputObject[key]);\n }\n resultStructure.push({\n name: key,\n value: inputObject[key],\n children: children,\n });\n });\n return resultStructure;\n }\n\n ngOnInit(): void {\n this.dataSource.data = this.transformObject(this.inputObject);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ExtendedVersion.html":{"url":"interfaces/ExtendedVersion.html","title":"interface - ExtendedVersion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ExtendedVersion\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n builddate\n \n \n \n \n gitdate\n \n \n \n \n gitstamp\n \n \n \n \n version\n \n \n \n \n versionTuple\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n builddate\n \n \n \n \n \n \n \n \n builddate: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n gitdate\n \n \n \n \n \n \n \n \n gitdate: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n gitstamp\n \n \n \n \n \n \n \n \n gitstamp: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n version\n \n \n \n \n \n \n \n \n version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n versionTuple\n \n \n \n \n \n \n \n \n versionTuple: Version\n\n \n \n\n\n \n \n Type : Version\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/File.html":{"url":"interfaces/File.html","title":"interface - File","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n File\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n action\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n group\n \n \n \n \n is_dir\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n mode\n \n \n \n \n name\n \n \n \n \n owner\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n path\n \n \n \n \n template\n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n \n \n \n \n action: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n group\n \n \n \n \n \n \n \n \n group: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_dir\n \n \n \n \n \n \n \n \n is_dir: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mode\n \n \n \n \n \n \n \n \n mode: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owner\n \n \n \n \n \n \n \n \n owner: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template\n \n \n \n \n \n \n \n \n template: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FileEditComponent.html":{"url":"components/FileEditComponent.html","title":"component - FileEditComponent","body":"\n \n\n\n\n\n\n Components\n \n FileEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./file-edit.component.html\n \n\n\n\n \n styleUrl\n ./file-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n file\n \n \n fileFormGroup\n \n \n isEditMode\n \n \n name\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyFile\n \n \n editFile\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeFile\n \n \n saveFile\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:63\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyFile\n \n \n \n \n \n \ncopyFile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:138\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editFile\n \n \n \n \n \n \neditFile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:133\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:75\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:79\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeFile\n \n \n \n \n \n \nremoveFile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:112\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveFile\n \n \n \n \n \n \nsaveFile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:150\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n file\n \n \n \n \n \n \n Type : File\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:44\n \n \n\n\n \n \n \n \n \n \n \n \n fileFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_dir: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:43\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, File } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n ],\n templateUrl: './file-edit.component.html',\n styleUrl: './file-edit.component.scss',\n})\nexport class FileEditComponent implements OnInit {\n name: string;\n file: File;\n private readonly _formBuilder = inject(FormBuilder);\n fileFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_dir: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_file(this.name, false, false, this.userService.token)\n .subscribe(\n (value) => {\n this.file = value;\n this.fileFormGroup.controls.name.setValue(this.file.name);\n this.fileFormGroup.controls.uid.setValue(this.file.uid);\n this.fileFormGroup.controls.mtime.setValue(\n new Date(this.file.mtime * 1000).toString(),\n );\n this.fileFormGroup.controls.ctime.setValue(\n new Date(this.file.ctime * 1000).toString(),\n );\n this.fileFormGroup.controls.depth.setValue(this.file.depth);\n this.fileFormGroup.controls.is_subobject.setValue(\n this.file.is_subobject,\n );\n this.fileFormGroup.controls.comment.setValue(this.file.comment);\n this.fileFormGroup.controls.action.setValue(this.file.action);\n this.fileFormGroup.controls.group.setValue(this.file.group);\n this.fileFormGroup.controls.mode.setValue(this.file.mode);\n this.fileFormGroup.controls.owner.setValue(this.file.owner);\n this.fileFormGroup.controls.path.setValue(this.file.path);\n this.fileFormGroup.controls.template.setValue(this.file.template);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeFile(): void {\n this.cobblerApiService\n .remove_file(this.name, this.userService.token, false)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'file']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editFile(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyFile(): void {\n this.cobblerApiService.copy_file('', '', this.userService.token).subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n saveFile(): void {\n // TODO\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n \n Action\n \n \n \n Group\n \n \n \n Mode\n \n \n \n Owner\n \n \n \n Path\n \n \n \n Template\n \n \n Is Directory?\n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Action Group Mode Owner Path Template Is Directory? @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'FileEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FileOverviewComponent.html":{"url":"components/FileOverviewComponent.html","title":"component - FileOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n FileOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./file-overview.component.html\n \n\n\n\n \n styleUrl\n ./file-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteFile\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameFile\n \n \n Private\n retrieveFiles\n \n \n showDistro\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteFile\n \n \n \n \n \n \ndeleteFile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:136\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameFile\n \n \n \n \n \n \nrenameFile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveFiles\n \n \n \n \n \n \n \n retrieveFiles()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showDistro\n \n \n \n \n \n \nshowDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'action', 'path', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, File } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './file-overview.component.html',\n styleUrl: './file-overview.component.scss',\n})\nexport class FileOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'action', 'path', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveFiles();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveFiles(): void {\n this.cobblerApiService\n .get_files()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showDistro(uid: string, name: string): void {\n this.router.navigate(['/items', 'file', name]);\n }\n\n renameFile(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Repository',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the file\n return;\n }\n this.cobblerApiService\n .get_file_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (fileHandle) => {\n this.cobblerApiService\n .rename_file(fileHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveFiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteFile(uid: string, name: string): void {\n this.cobblerApiService\n .remove_file(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveFiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n FILES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Action\n {{ element.action }}\n \n\n \n \n Path\n {{ element.path }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'FILES Name {{ element.name }} Action {{ element.action }} Path {{ element.path }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'FileOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GetObjService.html":{"url":"injectables/GetObjService.html","title":"injectable - GetObjService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n GetObjService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/get-obj.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n CurrentITEM\n \n \n CurrentITEM$\n \n \n MockObject\n \n \n MockObjname\n \n \n MockValues\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getITEMS\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n name\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:49\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getITEMS\n \n \n \n \n \n \ngetITEMS()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:65\n \n \n\n\n \n \n\n \n Returns : string[]\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n CurrentITEM\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(\n this.MockObjname,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n CurrentITEM$\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.CurrentITEM.asObservable()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n MockObject\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n MockObjname\n \n \n \n \n \n \n Default value : window.sessionStorage.getItem('CurrentItem')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n MockValues\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : ['Item 0x1', 'Item 1x2', 'Item 2x3']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:40\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n name\n \n \n\n\n \n \n setname(item: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:69\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\nimport { Observable } from 'rxjs';\n\n/*\nItem returned from XMLrpc will be an object that\nhouses a list of all the current mock data.\n Each item will have ['Distros', 'Profiles', 'Systems',\n 'Repos', 'Images', 'Templates',\n 'Snippets', 'Management Classes',\n 'Settings', 'Packages', 'Files']\n Example of component data:\n Management Classes : { MngclassesService }\n FIELDS = [\n # non-editable in UI (internal)\n FIELDS[0-4]\n\n FIELDS[5-11]\n # editable in UI\n 0-[\"class_name\", \"\", 0, \"Class Name\", True, \"Actual Class Name (leave blank to use the name field)\", 0, \"str\"],\n 1-[\"comment\", \"\", 0, \"Comment\", True, \"Free form text description\", 0, \"str\"],\n 2-[\"files\", [], 0, \"Files\", True, \"File resources\", 0, \"list\"],\n 3-[\"name\", \"\", 0, \"Name\", True, \"Ex: F10-i386-webserver\", 0, \"str\"],\n 4-[\"owners\", \"SETTINGS:default_ownership\", \"SETTINGS:default_ownership\", \"Owners\", True, \"Owners list for\n authz_ownership (space delimited)\", 0, \"list\"],\n 5-[\"packages\", [], 0, \"Packages\", True, \"Package resources\", 0, \"list\"],\n 6-[\"params\", {}, 0, \"Parameters/Variables\", True, \"List of parameters/variables\", 0, \"dict\"],\n]\n\nSee docs-additonal for each components data structure.\n\"../docs-additonal/component-schema.md\"\n\n*/\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GetObjService {\n MockObject = [];\n MockValues = ['Item 0x1', 'Item 1x2', 'Item 2x3'];\n // If MockObjname is not left blank/undefined, the value hear overrides the session value on construction.\n MockObjname = window.sessionStorage.getItem('CurrentItem');\n\n // ERROR is thrown if MockObjname is Left undefined before constructor\n\n public CurrentITEM: BehaviorSubject = new BehaviorSubject(\n this.MockObjname,\n );\n CurrentITEM$: Observable = this.CurrentITEM.asObservable();\n\n constructor() {\n // Add authorization check??\n const current = window.sessionStorage.getItem('CurrentItem');\n\n if (current) {\n this.MockObjname = current;\n }\n\n window.sessionStorage.setItem(\n 'CobblerITEMS',\n JSON.stringify(this.MockValues),\n );\n }\n\n getITEMS(): string[] {\n return this.MockValues;\n }\n\n set name(item: string) {\n window.sessionStorage.setItem('CurrentItem', item);\n const sessionItem = window.sessionStorage.getItem('CurrentItem');\n if (sessionItem) {\n this.MockObjname = sessionItem;\n }\n this.CurrentITEM.next(item);\n // let message = `Current Item is set to: ${this.MockObjname}`\n /// console.log(message)\n // window.sessionStorage.setItem('CurrentItem', this.MockObjname)\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/HardlinkComponent.html":{"url":"components/HardlinkComponent.html","title":"component - HardlinkComponent","body":"\n \n\n\n\n\n\n Components\n \n HardlinkComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-hardlink\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./hardlink.component.html\n \n\n\n\n \n styleUrl\n ./hardlink.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runHardlink\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runHardlink\n \n \n \n \n \n \nrunHardlink()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnDestroy } from '@angular/core';\nimport { MatButton } from '@angular/material/button';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-hardlink',\n standalone: true,\n imports: [MatButton],\n templateUrl: './hardlink.component.html',\n styleUrl: './hardlink.component.scss',\n})\nexport class HardlinkComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runHardlink(): void {\n this.cobblerApiService\n .background_hardlink(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n HARDLINK\n\nHardlink\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'HARDLINKHardlink'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'HardlinkComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Image.html":{"url":"interfaces/Image.html","title":"interface - Image","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Image\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n arch\n \n \n \n \n autoinstall\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n boot_loaders\n \n \n \n \n breed\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n file\n \n \n \n \n image_type\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n menu\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n name\n \n \n \n \n network_count\n \n \n \n \n os_version\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n template_files\n \n \n \n \n virt_auto_boot\n \n \n \n \n virt_bridge\n \n \n \n \n virt_cpus\n \n \n \n \n virt_disk_driver\n \n \n \n \n virt_file_size\n \n \n \n \n virt_path\n \n \n \n \n virt_ram\n \n \n \n \n virt_type\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall\n \n \n \n \n \n \n \n \n autoinstall: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_loaders\n \n \n \n \n \n \n \n \n boot_loaders: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n file\n \n \n \n \n \n \n \n \n file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n image_type\n \n \n \n \n \n \n \n \n image_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n menu\n \n \n \n \n \n \n \n \n menu: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n network_count\n \n \n \n \n \n \n \n \n network_count: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_auto_boot\n \n \n \n \n \n \n \n \n virt_auto_boot: string | boolean\n\n \n \n\n\n \n \n Type : string | boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_bridge\n \n \n \n \n \n \n \n \n virt_bridge: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_cpus\n \n \n \n \n \n \n \n \n virt_cpus: string | number\n\n \n \n\n\n \n \n Type : string | number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_disk_driver\n \n \n \n \n \n \n \n \n virt_disk_driver: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_file_size\n \n \n \n \n \n \n \n \n virt_file_size: string | number\n\n \n \n\n\n \n \n Type : string | number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_path\n \n \n \n \n \n \n \n \n virt_path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_ram\n \n \n \n \n \n \n \n \n virt_ram: string | number\n\n \n \n\n\n \n \n Type : string | number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_type\n \n \n \n \n \n \n \n \n virt_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImageEditComponent.html":{"url":"components/ImageEditComponent.html","title":"component - ImageEditComponent","body":"\n \n\n\n\n\n\n Components\n \n ImageEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-image-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n \n \n\n\n\n\n \n templateUrl\n ./image-edit.component.html\n \n\n\n\n \n styleUrl\n ./image-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n image\n \n \n imageFormGroup\n \n \n isEditMode\n \n \n name\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyImage\n \n \n editImage\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeImage\n \n \n saveImage\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n imageOwners\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:70\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyImage\n \n \n \n \n \n \ncopyImage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:169\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editImage\n \n \n \n \n \n \neditImage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:164\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:86\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeImage\n \n \n \n \n \n \nremoveImage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:143\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveImage\n \n \n \n \n \n \nsaveImage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:181\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n image\n \n \n \n \n \n \n Type : Image\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n imageFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n network_count: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n file: new FormControl({ value: '', disabled: true }),\n image_type: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:70\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:45\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n imageOwners\n \n \n\n \n \n getimageOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:185\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Image } from 'cobbler-api';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-image-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n ],\n templateUrl: './image-edit.component.html',\n styleUrl: './image-edit.component.scss',\n})\nexport class ImageEditComponent implements OnInit {\n name: string;\n image: Image;\n private readonly _formBuilder = inject(FormBuilder);\n imageFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n network_count: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n file: new FormControl({ value: '', disabled: true }),\n image_type: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_image(this.name, false, false, this.userService.token)\n .subscribe(\n (value) => {\n this.image = value;\n this.imageFormGroup.controls.name.setValue(this.image.name);\n this.imageFormGroup.controls.uid.setValue(this.image.uid);\n this.imageFormGroup.controls.mtime.setValue(\n new Date(this.image.mtime * 1000).toString(),\n );\n this.imageFormGroup.controls.ctime.setValue(\n new Date(this.image.ctime * 1000).toString(),\n );\n this.imageFormGroup.controls.depth.setValue(this.image.depth);\n this.imageFormGroup.controls.network_count.setValue(\n this.image.network_count,\n );\n this.imageFormGroup.controls.is_subobject.setValue(\n this.image.is_subobject,\n );\n this.imageFormGroup.controls.comment.setValue(this.image.comment);\n this.imageFormGroup.controls.parent.setValue(this.image.parent);\n this.imageFormGroup.controls.arch.setValue(this.image.arch);\n this.imageFormGroup.controls.autoinstall.setValue(\n this.image.autoinstall,\n );\n this.imageFormGroup.controls.breed.setValue(this.image.breed);\n this.imageFormGroup.controls.file.setValue(this.image.file);\n this.imageFormGroup.controls.image_type.setValue(\n this.image.image_type,\n );\n this.imageFormGroup.controls.os_version.setValue(\n this.image.os_version,\n );\n if (typeof this.image.boot_loaders === 'string') {\n this.imageFormGroup.controls.bootloader_inherited.setValue(true);\n } else {\n this.imageFormGroup.controls.bootloader_inherited.setValue(false);\n this.imageFormGroup.controls.boot_loaders.setValue(\n this.image.boot_loaders,\n );\n }\n if (typeof this.image.owners === 'string') {\n this.imageFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.imageFormGroup.controls.owners_inherited.setValue(false);\n this.imageFormGroup.controls.owners.setValue(this.image.owners);\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeImage(): void {\n this.cobblerApiService\n .remove_image(this.name, this.userService.token, false)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'image']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editImage(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyImage(): void {\n this.cobblerApiService.copy_image('', '', this.userService.token).subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n saveImage(): void {\n // TODO\n }\n\n get imageOwners(): string[] {\n if (this.image && this.image.owners) {\n const ownersResult = this.image.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n \n Inherited\n \n \n Comment\n \n \n \n Network Count\n \n \n \n Parent\n \n \n \n Arch\n \n \n \n Autoinstall\n \n \n \n Operating System Breed\n \n \n \n Image File\n \n \n \n Image Type\n \n \n \n Operating System Version\n \n \n \n \n Inherited\n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Inherited Comment Network Count Parent Arch Autoinstall Operating System Breed Image File Image Type Operating System Version Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ImageEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImageOverviewComponent.html":{"url":"components/ImageOverviewComponent.html","title":"component - ImageOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n ImageOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./image-overview.component.html\n \n\n\n\n \n styleUrl\n ./image-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteImage\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameImage\n \n \n Private\n retrieveImages\n \n \n showImage\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:64\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteImage\n \n \n \n \n \n \ndeleteImage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:142\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:78\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:74\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameImage\n \n \n \n \n \n \nrenameImage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:102\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveImages\n \n \n \n \n \n \n \n retrieveImages()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:83\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showImage\n \n \n \n \n \n \nshowImage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:98\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:62\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'name',\n 'arch',\n 'breed',\n 'os_version',\n 'actions',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:64\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:67\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Image } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './image-overview.component.html',\n styleUrl: './image-overview.component.scss',\n})\nexport class ImageOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'name',\n 'arch',\n 'breed',\n 'os_version',\n 'actions',\n ];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveImages();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveImages(): void {\n this.cobblerApiService\n .get_images()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showImage(uid: string, name: string): void {\n this.router.navigate(['/items', 'image', name]);\n }\n\n renameImage(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Image',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the image\n return;\n }\n this.cobblerApiService\n .get_image_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (imageHandle) => {\n this.cobblerApiService\n .rename_image(imageHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveImages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteImage(uid: string, name: string): void {\n this.cobblerApiService\n .remove_distro(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveImages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n IMAGES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Architecture\n {{ element.arch }}\n \n\n \n \n Breed\n {{ element.breed }}\n \n\n \n \n Operating System Version\n {{ element.os_version }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'IMAGES Name {{ element.name }} Architecture {{ element.arch }} Breed {{ element.breed }} Operating System Version {{ element.os_version }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ImageOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImportDVDComponent.html":{"url":"components/ImportDVDComponent.html","title":"component - ImportDVDComponent","body":"\n \n\n\n\n\n\n Components\n \n ImportDVDComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-import-dvd\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatFormField\n MatInput\n MatLabel\n ReactiveFormsModule\n MatButton\n \n \n\n \n styleUrls\n ./import-dvd.component.scss\n \n\n\n\n \n templateUrl\n ./import-dvd.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n importFormGroup\n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runImport\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:42\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runImport\n \n \n \n \n \n \nrunImport()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:55\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n importFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n path: '',\n name: '',\n available_as: '',\n autoinstall_file: '',\n rsync_flags: '',\n arch: '',\n breed: '',\n os_version: '',\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:45\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { FormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { CobblerApiService, BackgroundImportOptions } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-import-dvd',\n templateUrl: './import-dvd.component.html',\n styleUrls: ['./import-dvd.component.scss'],\n standalone: true,\n imports: [\n FormsModule,\n MatFormField,\n MatInput,\n MatLabel,\n ReactiveFormsModule,\n MatButton,\n ],\n})\nexport class ImportDVDComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n importFormGroup = this._formBuilder.group({\n path: '',\n name: '',\n available_as: '',\n autoinstall_file: '',\n rsync_flags: '',\n arch: '',\n breed: '',\n os_version: '',\n });\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runImport(): void {\n const importOptions: BackgroundImportOptions = {\n path: this.importFormGroup.controls.path.value,\n name: this.importFormGroup.controls.name.value,\n available_as: this.importFormGroup.controls.available_as.value,\n autoinstall_file: this.importFormGroup.controls.autoinstall_file.value,\n rsync_flags: this.importFormGroup.controls.rsync_flags.value,\n arch: this.importFormGroup.controls.arch.value,\n breed: this.importFormGroup.controls.breed.value,\n os_version: this.importFormGroup.controls.os_version.value,\n };\n if (this.importFormGroup.invalid) {\n this._snackBar.open('Please give all inputs a system name!', 'Close', {\n duration: 2000,\n });\n return;\n }\n this.cobblerApiService\n .background_import(importOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n IMPORT DVD\n\n\n \n Path\n \n \n \n Name\n \n \n \n Available as\n \n \n \n Autoinstallation file\n \n \n \n rsync flags\n \n \n \n Architecture\n \n \n \n Operating System Breed\n \n \n \n Operating System Version\n \n \n Run\n\n\n \n\n \n \n ./import-dvd.component.scss\n \n .form-replicate {\n min-width: 150px;\n max-width: 600px;\n width: 100%;\n}\n\n.form-field-full-width {\n width: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'IMPORT DVD Path Name Available as Autoinstallation file rsync flags Architecture Operating System Breed Operating System Version Run'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ImportDVDComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/InstallationStatus.html":{"url":"interfaces/InstallationStatus.html","title":"interface - InstallationStatus","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n InstallationStatus\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n ip\n \n \n \n \n mostRecentStart\n \n \n \n \n mostRecentStop\n \n \n \n \n mostRecentTarget\n \n \n \n \n seenStart\n \n \n \n \n seenStop\n \n \n \n \n state\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n ip\n \n \n \n \n \n \n \n \n ip: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mostRecentStart\n \n \n \n \n \n \n \n \n mostRecentStart: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mostRecentStop\n \n \n \n \n \n \n \n \n mostRecentStop: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mostRecentTarget\n \n \n \n \n \n \n \n \n mostRecentTarget: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n seenStart\n \n \n \n \n \n \n \n \n seenStart: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n seenStop\n \n \n \n \n \n \n \n \n seenStop: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n state\n \n \n \n \n \n \n \n \n state: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Item.html":{"url":"interfaces/Item.html","title":"interface - Item","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Item\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n ctime\n \n \n \n \n depth\n \n \n \n \n mtime\n \n \n \n \n uid\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n ctime\n \n \n \n \n \n \n \n \n ctime: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n depth\n \n \n \n \n \n \n \n \n depth: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mtime\n \n \n \n \n \n \n \n \n mtime: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n uid\n \n \n \n \n \n \n \n \n uid: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ItemSettingsService.html":{"url":"injectables/ItemSettingsService.html","title":"injectable - ItemSettingsService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n ItemSettingsService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/item-settings.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n authO\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAll\n \n \n getitem\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authO: UserService, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authO\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getAll\n \n \n \n \n \n \ngetAll()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:19\n \n \n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n getitem\n \n \n \n \n \n \ngetitem(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n authO\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:13\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\nimport { Settings } from 'cobbler-api';\nimport { UserService } from './user.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ItemSettingsService {\n constructor(\n public authO: UserService,\n private cobblerApiService: CobblerApiService,\n ) {\n // Nothing to see here\n }\n\n getAll(): Observable {\n return this.cobblerApiService.get_settings(this.authO.token);\n }\n\n getitem(name: string): Observable {\n return this.cobblerApiService.get_settings(this.authO.token).pipe(\n map((data: Settings) => {\n if (name in data) {\n return data[name];\n }\n throw new Error('Requested name not found in the settings!');\n }),\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/KeyValueEditorComponent.html":{"url":"components/KeyValueEditorComponent.html","title":"component - KeyValueEditorComponent","body":"\n \n\n\n\n\n\n Components\n \n KeyValueEditorComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts\n\n\n\n\n\n \n Implements\n \n \n ControlValueAccessor\n Validator\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, multi: true, useExisting: KeyValueEditorComponent,\n}\n {\n provide: NG_VALIDATORS, multi: true, useExisting: KeyValueEditorComponent,\n}\n \n \n\n\n \n selector\n cobbler-key-value-editor\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCard\n MatCardHeader\n MatCardTitle\n CdkDropList\n CdkDrag\n MatFormField\n MatInput\n MatIconButton\n MatIcon\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./key-value-editor.component.html\n \n\n\n\n \n styleUrl\n ./key-value-editor.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n isDisabled\n \n \n keyOrder\n \n \n keyOrderFormGroup\n \n \n Protected\n Readonly\n Object\n \n \n onChange\n \n \n onTouched\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n buildFormGroup\n \n \n deleteKey\n \n \n drop\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n registerOnValidatorChange\n \n \n setDisabledState\n \n \n setFormGroupDisabledState\n \n \n validate\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n keyValueOptions\n \n \n label\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n keyValueOptions\n \n \n \n \n Type : {}\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:59\n \n \n \n \n \n \n \n \n \n label\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:58\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n buildFormGroup\n \n \n \n \n \n \nbuildFormGroup()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:99\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n deleteKey\n \n \n \n \n \n \ndeleteKey(key: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:116\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n drop\n \n \n \n \n \n \ndrop(event: CdkDragDrop)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:120\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n CdkDragDrop\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \nregisterOnChange(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:66\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \nregisterOnTouched(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:70\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnValidatorChange\n \n \n \n \n \n \nregisterOnValidatorChange(fn: () => void)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:74\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n function\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setDisabledState\n \n \n \n \n \n \nsetDisabledState(isDisabled: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:76\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n isDisabled\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setFormGroupDisabledState\n \n \n \n \n \n \nsetFormGroupDisabledState(isDisabled: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n isDisabled\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n validate\n \n \n \n \n \n \nvalidate(control: AbstractControl)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:89\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n control\n \n AbstractControl\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \nwriteValue(obj: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:93\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n obj\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n isDisabled\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:64\n \n \n\n\n \n \n \n \n \n \n \n \n keyOrder\n \n \n \n \n \n \n Default value : Object.keys(this.keyValueOptions)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:62\n \n \n\n\n \n \n \n \n \n \n \n \n keyOrderFormGroup\n \n \n \n \n \n \n Default value : new FormGroup({})\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n Protected\n Readonly\n Object\n \n \n \n \n \n \n Default value : Object\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:124\n \n \n\n\n \n \n \n \n \n \n \n \n onChange\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n onTouched\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n CdkDrag,\n CdkDragDrop,\n CdkDropList,\n moveItemInArray,\n} from '@angular/cdk/drag-drop';\nimport { Component, Input } from '@angular/core';\nimport {\n AbstractControl,\n ControlValueAccessor,\n FormControl,\n FormGroup,\n NG_VALIDATORS,\n NG_VALUE_ACCESSOR,\n ReactiveFormsModule,\n ValidationErrors,\n Validator,\n} from '@angular/forms';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatCard, MatCardHeader, MatCardTitle } from '@angular/material/card';\nimport { MatFormField } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\n\n@Component({\n selector: 'cobbler-key-value-editor',\n standalone: true,\n imports: [\n MatCard,\n MatCardHeader,\n MatCardTitle,\n CdkDropList,\n CdkDrag,\n MatFormField,\n MatInput,\n MatIconButton,\n MatIcon,\n ReactiveFormsModule,\n ],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n multi: true,\n useExisting: KeyValueEditorComponent,\n },\n {\n provide: NG_VALIDATORS,\n multi: true,\n useExisting: KeyValueEditorComponent,\n },\n ],\n templateUrl: './key-value-editor.component.html',\n styleUrl: './key-value-editor.component.scss',\n})\nexport class KeyValueEditorComponent\n implements ControlValueAccessor, Validator\n{\n @Input() label = '';\n @Input() keyValueOptions = {};\n onChange = (options: string[]) => {};\n onTouched = (options: string[]) => {};\n keyOrder = Object.keys(this.keyValueOptions);\n keyOrderFormGroup = new FormGroup({});\n isDisabled = true;\n\n registerOnChange(fn: any): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any): void {\n this.onTouched = fn;\n }\n\n registerOnValidatorChange(fn: () => void): void {}\n\n setDisabledState(isDisabled: boolean): void {\n this.isDisabled = isDisabled;\n this.setFormGroupDisabledState(isDisabled);\n }\n\n setFormGroupDisabledState(isDisabled: boolean): void {\n if (isDisabled) {\n this.keyOrderFormGroup.disable();\n } else {\n this.keyOrderFormGroup.enable();\n }\n }\n\n validate(control: AbstractControl): ValidationErrors | null {\n return undefined;\n }\n\n writeValue(obj: any): void {\n this.keyValueOptions = obj;\n this.keyOrder = Object.keys(this.keyValueOptions);\n this.buildFormGroup();\n }\n\n buildFormGroup(): void {\n for (let key of this.keyOrder) {\n const formGroupControls = {\n key: new FormControl({ value: key, disabled: true }),\n value: new FormControl({\n value: this.keyValueOptions[key],\n disabled: true,\n }),\n };\n this.keyOrderFormGroup.addControl(\n key + 'FormGroup',\n new FormGroup(formGroupControls),\n );\n }\n this.setFormGroupDisabledState(this.isDisabled);\n }\n\n deleteKey(key: string): void {\n // TODO: Delete key\n }\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.keyOrder, event.previousIndex, event.currentIndex);\n }\n\n protected readonly Object = Object;\n}\n\n \n\n \n \n \n {{ label }}\n \n @if (Object.keys(this.keyValueOptions).length === 0) {\n Empty list of options\n } @else {\n \n @for (key of keyOrder; track key) {\n \n \n \n \n  = \n \n \n \n \n delete\n \n \n menu\n \n \n }\n \n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{ label }} @if (Object.keys(this.keyValueOptions).length === 0) { Empty list of options } @else { @for (key of keyOrder; track key) {  =  delete menu } }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'KeyValueEditorComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LogInFormComponent.html":{"url":"components/LogInFormComponent.html","title":"component - LogInFormComponent","body":"\n \n\n\n\n\n\n Components\n \n LogInFormComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/login/login.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-login\n \n\n \n standalone\n true\n \n\n \n imports\n \n CommonModule\n ReactiveFormsModule\n MatFormFieldModule\n MatInputModule\n MatButtonModule\n \n \n\n \n styleUrls\n ./login.component.css\n \n\n\n\n \n templateUrl\n ./login.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n authO\n \n \n errMsgPassword\n \n \n errMsgServer\n \n \n errMsgUser\n \n \n login_form\n \n \n message\n \n \n server_prefilled\n \n \n subs\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Authorize\n \n \n ngOnDestroy\n \n \n updateErrPassword\n \n \n updateErrServer\n \n \n updateErrUser\n \n \n Private\n Static\n urlValidator\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n username\n \n \n password\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authO: UserService, router: Router, guard: AuthGuardService, url: URL, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:64\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authO\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n guard\n \n \n AuthGuardService\n \n \n \n No\n \n \n \n \n url\n \n \n URL\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Authorize\n \n \n \n \n \n \nAuthorize()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:120\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:104\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateErrPassword\n \n \n \n \n \n \nupdateErrPassword()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:171\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateErrServer\n \n \n \n \n \n \nupdateErrServer()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:147\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateErrUser\n \n \n \n \n \n \nupdateErrUser()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:157\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n Static\n urlValidator\n \n \n \n \n \n \n \n urlValidator(undefined: AbstractControl)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:55\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n \n AbstractControl\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : null | ValidationErrors\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n authO\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:67\n \n \n\n\n \n \n \n \n \n \n \n \n errMsgPassword\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n errMsgServer\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n errMsgUser\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n login_form\n \n \n \n \n \n \n Default value : new UntypedFormGroup({\n server: new UntypedFormControl('', [\n Validators.required,\n LogInFormComponent.urlValidator,\n ]),\n username: new UntypedFormControl('', [\n Validators.required,\n Validators.minLength(2),\n ]),\n password: new UntypedFormControl('', Validators.required),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n message\n \n \n \n \n \n \n Type : null\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n server_prefilled\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n subs\n \n \n \n \n \n \n Default value : new Subscription()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:36\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n\n \n \n getserver()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:108\n \n \n\n \n \n \n \n \n \n \n username\n \n \n\n \n \n getusername()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:112\n \n \n\n \n \n \n \n \n \n \n password\n \n \n\n \n \n getpassword()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:116\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, OnDestroy, signal } from '@angular/core';\nimport {\n AbstractControl,\n ReactiveFormsModule,\n UntypedFormControl,\n UntypedFormGroup,\n ValidationErrors,\n Validators,\n} from '@angular/forms';\nimport { Router } from '@angular/router';\nimport { COBBLER_URL, CobblerApiService } from 'cobbler-api';\n\nimport { CommonModule } from '@angular/common';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { AuthGuardService } from '../services/auth-guard.service';\nimport { UserService } from '../services/user.service';\nimport { merge, Subscription } from 'rxjs';\nimport { distinctUntilChanged } from 'rxjs/operators';\nimport { MatButtonModule } from '@angular/material/button';\n\n@Component({\n selector: 'cobbler-login',\n templateUrl: './login.component.html',\n styleUrls: ['./login.component.css'],\n standalone: true,\n imports: [\n CommonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class LogInFormComponent implements OnDestroy {\n subs = new Subscription();\n errMsgServer = signal('');\n errMsgUser = signal('');\n errMsgPassword = signal('');\n\n server_prefilled: string;\n message = null;\n login_form = new UntypedFormGroup({\n server: new UntypedFormControl('', [\n Validators.required,\n LogInFormComponent.urlValidator,\n ]),\n username: new UntypedFormControl('', [\n Validators.required,\n Validators.minLength(2),\n ]),\n password: new UntypedFormControl('', Validators.required),\n });\n\n private static urlValidator({\n value,\n }: AbstractControl): null | ValidationErrors {\n try {\n new URL(value);\n return null;\n } catch {\n return { pattern: true };\n }\n }\n\n constructor(\n public authO: UserService,\n private router: Router,\n private guard: AuthGuardService,\n @Inject(COBBLER_URL) url: URL,\n private cobblerApiService: CobblerApiService,\n ) {\n this.server_prefilled = url.toString();\n this.login_form.get('server').setValue(this.server_prefilled);\n\n this.subs.add(\n merge(\n this.login_form.controls['server'].statusChanges,\n this.login_form.controls['server'].valueChanges,\n )\n .pipe(distinctUntilChanged())\n .subscribe(() => this.updateErrServer()),\n );\n this.subs.add(\n merge(\n this.login_form.controls['username'].statusChanges,\n this.login_form.controls['username'].valueChanges,\n )\n .pipe(distinctUntilChanged())\n .subscribe(() => {\n this.updateErrUser();\n }),\n );\n this.subs.add(\n merge(\n this.login_form.controls['password'].statusChanges,\n this.login_form.controls['password'].valueChanges,\n )\n .pipe(distinctUntilChanged())\n .subscribe(() => this.updateErrPassword()),\n );\n }\n\n ngOnDestroy(): void {\n this.subs.unsubscribe();\n }\n\n get server(): AbstractControl {\n return this.login_form.get('server');\n }\n\n get username(): AbstractControl {\n return this.login_form.get('username');\n }\n\n get password(): AbstractControl {\n return this.login_form.get('password');\n }\n\n Authorize(): void {\n // Real data call goes to service which talks to server for that json data\n const formData = this.login_form.value;\n const user = formData.username;\n const pass = formData.password;\n this.authO.server = formData.server;\n this.cobblerApiService.reconfigureService(new URL(formData.server));\n\n this.subs.add(\n this.cobblerApiService.login(user, pass).subscribe(\n (data) => {\n this.authO.changeAuthorizedState(true);\n // sets username in session storage\n this.authO.username = user;\n this.authO.token = data;\n\n // AuthGuardService provides the boolean that allows users to activate links/components\n this.guard.setBool(true);\n this.router.navigate(['/manage']);\n },\n () =>\n (this.message =\n 'Server, Username or Password did not Validate. Please try again.'),\n ),\n );\n }\n\n updateErrServer() {\n if (this.login_form.controls['server'].hasError('required')) {\n this.errMsgServer.set('Server is required');\n } else if (this.login_form.controls['server'].hasError('pattern')) {\n this.errMsgServer.set('Server must be a valid URL.');\n } else {\n this.errMsgServer.set('');\n }\n }\n\n updateErrUser() {\n if (\n this.login_form.controls['username'].hasError('required') ||\n this.login_form.controls['username'].touched\n ) {\n this.errMsgUser.set('Username is required');\n } else if (this.login_form.controls['username'].hasError('minlength')) {\n this.errMsgUser.set(`Username must be minimum\n ${this.login_form.controls['username'].errors.minlength.requiredLength} characters.`);\n } else {\n this.errMsgUser.set('');\n }\n }\n\n updateErrPassword() {\n if (this.login_form.controls['password'].hasError('required')) {\n this.errMsgPassword.set('Password is required');\n } else {\n this.errMsgServer.set('');\n }\n }\n}\n\n \n\n \n \n \n Cobbler\n\n \n \n Server\n \n @if (server.touched && server.invalid) {\n ⚠ {{ errMsgServer() }}\n }\n \n \n\n \n \n Username\n \n @if (username.touched && username.invalid) {\n ⚠ {{ errMsgUser() }}\n }\n \n \n\n \n \n Password\n \n @if (password.touched && password.invalid) {\n ⚠ {{ errMsgPassword() }}\n }\n \n \n \n \n Log in\n \n \n @if (message) {\n \n {{ message }}\n \n }\n \n\n\n \n\n \n \n ./login.component.css\n \n .form-login {\n justify-content: center;\n display: flex;\n flex-direction: column;\n column-gap: 0.5rem;\n}\n\n.example-full-width {\n width: 100%;\n}\n\n.row {\n width: auto;\n min-width: 250px;\n}\n\n.login {\n height: 100%;\n padding: 0;\n margin: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Cobbler Server @if (server.touched && server.invalid) { ⚠ {{ errMsgServer() }} } Username @if (username.touched && username.invalid) { ⚠ {{ errMsgUser() }} } Password @if (password.touched && password.invalid) { ⚠ {{ errMsgPassword() }} } Log in @if (message) { {{ message }} } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'LogInFormComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ManageMenuComponent.html":{"url":"components/ManageMenuComponent.html","title":"component - ManageMenuComponent","body":"\n \n\n\n\n\n\n Components\n \n ManageMenuComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-manage-menu\n \n\n \n standalone\n true\n \n\n \n imports\n \n CommonModule\n RouterModule\n RouterOutlet\n MatSidenavModule\n MatDividerModule\n MatToolbarModule\n MatNavList\n NavbarComponent\n MatListModule\n MatIconModule\n \n \n\n \n styleUrls\n ./manage-menu.component.css\n \n\n\n\n \n templateUrl\n ./manage-menu.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n router\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts:29\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n Type : Router\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts:30\n \n \n\n\n \n \n\n\n\n\n\n \n import { CommonModule } from '@angular/common';\nimport { Component } from '@angular/core';\nimport { MatDividerModule } from '@angular/material/divider';\nimport { MatListModule, MatNavList } from '@angular/material/list';\nimport { MatSidenavModule } from '@angular/material/sidenav';\nimport { MatToolbarModule } from '@angular/material/toolbar';\nimport { Router, RouterModule, RouterOutlet } from '@angular/router';\nimport { NavbarComponent } from '../navbar/navbar.component';\nimport { MatIconModule } from '@angular/material/icon';\n\n@Component({\n selector: 'cobbler-manage-menu',\n templateUrl: './manage-menu.component.html',\n styleUrls: ['./manage-menu.component.css'],\n standalone: true,\n imports: [\n CommonModule,\n RouterModule,\n RouterOutlet,\n MatSidenavModule,\n MatDividerModule,\n MatToolbarModule,\n MatNavList,\n NavbarComponent,\n MatListModule,\n MatIconModule,\n ],\n})\nexport class ManageMenuComponent {\n constructor(public router: Router) {}\n}\n\n \n\n \n \n \n \n \n Cobbler\n \n \n\n \n Configuration\n \n »\n Distros\n \n \n »\n Profiles\n \n \n »\n Systems\n \n \n »\n Repos\n \n \n »\n Images\n \n \n »\n Templates\n \n \n »\n Snippets\n \n \n »\n Management Classes\n \n \n »\n Settings\n \n \n Resources\n \n ↬\n Packages\n \n \n ↬\n Files\n \n \n Actions\n \n ⚙\n Import DVD\n \n \n ⚙\n Sync\n \n ⚙\n Reposync\n \n ⚙\n Build ISO\n \n \n ⚙\n Hardlink\n \n \n ⚙\n Mkloaders\n \n \n ⚙\n Validate Autoinstalls\n \n \n ⚙\n Replicate\n \n \n Cobbler\n \n ⇆\n Check\n \n \n ⇆\n Status\n \n \n ⇆\n Events\n \n \n ⇆\n Signatures\n \n \n ⇆\n Documentation\n \n \n ⇆\n Online Help Chat\n \n \n \n \n\n \n @if (router.url !== \"/login\") {\n \n }\n\n \n \n \n \n\n\n \n\n \n \n ./manage-menu.component.css\n \n .content {\n margin: 32px;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Cobbler Configuration » Distros » Profiles » Systems » Repos » Images » Templates » Snippets » Management Classes » Settings Resources ↬ Packages ↬ Files Actions ⚙ Import DVD ⚙ Sync ⚙ Reposync ⚙ Build ISO ⚙ Hardlink ⚙ Mkloaders ⚙ Validate Autoinstalls ⚙ Replicate Cobbler ⇆ Check ⇆ Status ⇆ Events ⇆ Signatures ⇆ Documentation ⇆ Online Help Chat @if (router.url !== \"/login\") { } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ManageMenuComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ManagementClassEditComponent.html":{"url":"components/ManagementClassEditComponent.html","title":"component - ManagementClassEditComponent","body":"\n \n\n\n\n\n\n Components\n \n ManagementClassEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./management-class-edit.component.html\n \n\n\n\n \n styleUrl\n ./management-class-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n managementClass\n \n \n managementClassFormGroup\n \n \n name\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyProfile\n \n \n editProfile\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeManagementClass\n \n \n saveProfile\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n mgmtClassOwners\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:67\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyProfile\n \n \n \n \n \n \ncopyProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:171\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editProfile\n \n \n \n \n \n \neditProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:166\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:79\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:83\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeManagementClass\n \n \n \n \n \n \nremoveManagementClass()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:145\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveProfile\n \n \n \n \n \n \nsaveProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:185\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:67\n \n \n\n\n \n \n \n \n \n \n \n \n managementClass\n \n \n \n \n \n \n Type : Mgmgtclass\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n managementClassFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_definition: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n class_name: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n params: new FormControl({ value: {}, disabled: true }),\n files: new FormControl({ value: [], disabled: true }),\n packages: new FormControl({ value: [], disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:50\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:47\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n mgmtClassOwners\n \n \n\n \n \n getmgmtClassOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:189\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Mgmgtclass } from 'cobbler-api';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './management-class-edit.component.html',\n styleUrl: './management-class-edit.component.scss',\n})\nexport class ManagementClassEditComponent implements OnInit {\n name: string;\n managementClass: Mgmgtclass;\n private readonly _formBuilder = inject(FormBuilder);\n managementClassFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_definition: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n class_name: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n params: new FormControl({ value: {}, disabled: true }),\n files: new FormControl({ value: [], disabled: true }),\n packages: new FormControl({ value: [], disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_mgmtclass(this.name, false, false, this.userService.token)\n .subscribe(\n (value) => {\n this.managementClass = value;\n this.managementClassFormGroup.controls.name.setValue(\n this.managementClass.name,\n );\n this.managementClassFormGroup.controls.uid.setValue(\n this.managementClass.uid,\n );\n this.managementClassFormGroup.controls.mtime.setValue(\n new Date(this.managementClass.mtime * 1000).toString(),\n );\n this.managementClassFormGroup.controls.ctime.setValue(\n new Date(this.managementClass.ctime * 1000).toString(),\n );\n this.managementClassFormGroup.controls.depth.setValue(\n this.managementClass.depth,\n );\n this.managementClassFormGroup.controls.is_subobject.setValue(\n this.managementClass.is_subobject,\n );\n this.managementClassFormGroup.controls.is_definition.setValue(\n this.managementClass.is_definition,\n );\n this.managementClassFormGroup.controls.comment.setValue(\n this.managementClass.comment,\n );\n this.managementClassFormGroup.controls.class_name.setValue(\n this.managementClass.class_name,\n );\n if (typeof this.managementClass.owners === 'string') {\n this.managementClassFormGroup.controls.owners_inherited.setValue(\n true,\n );\n } else {\n this.managementClassFormGroup.controls.owners_inherited.setValue(\n false,\n );\n this.managementClassFormGroup.controls.owners.setValue(\n this.managementClass.owners,\n );\n }\n this.managementClassFormGroup.controls.params.setValue(\n this.managementClass.params,\n );\n this.managementClassFormGroup.controls.files.setValue(\n this.managementClass.files,\n );\n this.managementClassFormGroup.controls.packages.setValue(\n this.managementClass.packages,\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeManagementClass(): void {\n this.cobblerApiService\n .remove_mgmtclass(this.name, this.userService.token, false)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'profile']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editProfile(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyProfile(): void {\n this.cobblerApiService\n .copy_mgmtclass('', '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n saveProfile(): void {\n // TODO\n }\n\n get mgmtClassOwners(): string[] {\n if (this.managementClass && this.managementClass.owners) {\n const ownersResult = this.managementClass.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n Is Definition?\n \n Class Name\n \n \n \n \n \n \n \n Inherited\n \n \n \n \n \n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Is Definition? Class Name Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ManagementClassEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ManagementClassOverviewComponent.html":{"url":"components/ManagementClassOverviewComponent.html","title":"component - ManagementClassOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n ManagementClassOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./management-class-overview.component.html\n \n\n\n\n \n styleUrl\n ./management-class-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteManagementClass\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameManagementClass\n \n \n Private\n retrieveManagementClasses\n \n \n showManagementClass\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:63\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteManagementClass\n \n \n \n \n \n \ndeleteManagementClass(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:145\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:73\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameManagementClass\n \n \n \n \n \n \nrenameManagementClass(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:101\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveManagementClasses\n \n \n \n \n \n \n \n retrieveManagementClasses()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showManagementClass\n \n \n \n \n \n \nshowManagementClass(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:97\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'name',\n 'class_name',\n 'is_definition',\n 'actions',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:66\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Mgmgtclass } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './management-class-overview.component.html',\n styleUrl: './management-class-overview.component.scss',\n})\nexport class ManagementClassOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'name',\n 'class_name',\n 'is_definition',\n 'actions',\n ];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveManagementClasses();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveManagementClasses(): void {\n this.cobblerApiService\n .get_mgmtclasses()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showManagementClass(uid: string, name: string): void {\n this.router.navigate(['/items', 'management-class', name]);\n }\n\n renameManagementClass(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Management Class',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the management class\n return;\n }\n this.cobblerApiService\n .get_mgmtclass_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (mgmtclassHandle) => {\n this.cobblerApiService\n .rename_mgmtclass(\n mgmtclassHandle,\n newItemName,\n this.userService.token,\n )\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveManagementClasses();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteManagementClass(uid: string, name: string): void {\n this.cobblerApiService\n .remove_mgmtclass(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveManagementClasses();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n MANAGEMENT CLASSES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Class Name\n {{ element.class_name }}\n \n\n \n \n Is Definition?\n {{ element.is_definition }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'MANAGEMENT CLASSES Name {{ element.name }} Class Name {{ element.class_name }} Is Definition? {{ element.is_definition }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ManagementClassOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Member.html":{"url":"interfaces/Member.html","title":"interface - Member","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Member\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n name\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: XmlRpcTypes\n\n \n \n\n\n \n \n Type : XmlRpcTypes\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/MethodFault.html":{"url":"interfaces/MethodFault.html","title":"interface - MethodFault","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n MethodFault\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n faultCode\n \n \n \n \n faultString\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n faultCode\n \n \n \n \n \n \n \n \n faultCode: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n faultString\n \n \n \n \n \n \n \n \n faultString: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Mgmgtclass.html":{"url":"interfaces/Mgmgtclass.html","title":"interface - Mgmgtclass","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Mgmgtclass\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n class_name\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n files\n \n \n \n \n is_definition\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n name\n \n \n \n \n owners\n \n \n \n \n packages\n \n \n \n \n params\n \n \n \n \n parent\n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n class_name\n \n \n \n \n \n \n \n \n class_name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n files\n \n \n \n \n \n \n \n \n files: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_definition\n \n \n \n \n \n \n \n \n is_definition: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n packages\n \n \n \n \n \n \n \n \n packages: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n params\n \n \n \n \n \n \n \n \n params: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MkloadersComponent.html":{"url":"components/MkloadersComponent.html","title":"component - MkloadersComponent","body":"\n \n\n\n\n\n\n Components\n \n MkloadersComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-mkloaders\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./mkloaders.component.html\n \n\n\n\n \n styleUrl\n ./mkloaders.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runMkloaders\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runMkloaders\n \n \n \n \n \n \nrunMkloaders()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject, Subscription } from 'rxjs';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatButton } from '@angular/material/button';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-mkloaders',\n standalone: true,\n imports: [MatButton],\n templateUrl: './mkloaders.component.html',\n styleUrl: './mkloaders.component.scss',\n})\nexport class MkloadersComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runMkloaders(): void {\n this.cobblerApiService\n .background_hardlink(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe({\n next: (value) => {\n // TODO\n },\n error: (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n });\n }\n}\n\n \n\n \n MKLOADERS\n\nMkloaders\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'MKLOADERSMkloaders'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'MkloadersComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MultiSelectComponent.html":{"url":"components/MultiSelectComponent.html","title":"component - MultiSelectComponent","body":"\n \n\n\n\n\n\n Components\n \n MultiSelectComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n ControlValueAccessor\n Validator\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, multi: true, useExisting: MultiSelectComponent,\n}\n {\n provide: NG_VALIDATORS, multi: true, useExisting: MultiSelectComponent,\n}\n \n \n\n\n \n selector\n cobbler-multi-select\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatFormFieldModule\n MatSelectModule\n MatOption\n MatLabel\n ReactiveFormsModule\n AsyncPipe\n MatListItem\n NgForOf\n MatCheckbox\n MatButton\n MatIconButton\n MatIcon\n MatCard\n MatCardHeader\n MatCardTitle\n MatFabButton\n MatInput\n \n \n\n\n\n\n \n templateUrl\n ./multi-select.component.html\n \n\n\n\n \n styleUrl\n ./multi-select.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n dialog\n \n \n isDisabled\n \n \n matSelectOptionsFormGroup\n \n \n onChange\n \n \n onTouched\n \n \n Readonly\n optionSignal\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addOption\n \n \n buildFormGroup\n \n \n changeValues\n \n \n ngOnInit\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n registerOnValidatorChange\n \n \n setDisabledState\n \n \n updateFormGroup\n \n \n validate\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n label\n \n \n multiSelectOptions\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n label\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:70\n \n \n \n \n \n \n \n \n \n multiSelectOptions\n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:69\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addOption\n \n \n \n \n \n \naddOption()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:140\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n buildFormGroup\n \n \n \n \n \n \nbuildFormGroup(options: string[], checked)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:82\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n options\n \n string[]\n \n\n \n No\n \n\n \n \n\n \n \n checked\n \n \n\n \n No\n \n\n \n false\n \n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n changeValues\n \n \n \n \n \n \nchangeValues(e: MatCheckboxChange)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:125\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n e\n \n MatCheckboxChange\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:78\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \nregisterOnChange(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:97\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \nregisterOnTouched(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:101\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnValidatorChange\n \n \n \n \n \n \nregisterOnValidatorChange(fn: () => void)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:119\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n function\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setDisabledState\n \n \n \n \n \n \nsetDisabledState(isDisabled: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:105\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n isDisabled\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateFormGroup\n \n \n \n \n \n \nupdateFormGroup(options: string[], checked)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:91\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n options\n \n string[]\n \n\n \n No\n \n\n \n \n\n \n \n checked\n \n \n\n \n No\n \n\n \n false\n \n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n validate\n \n \n \n \n \n \nvalidate(control: AbstractControl)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:121\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n control\n \n AbstractControl\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \nwriteValue(obj: string[])\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:114\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n obj\n \n string[]\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Readonly\n dialog\n \n \n \n \n \n \n Default value : inject(MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:74\n \n \n\n\n \n \n \n \n \n \n \n \n isDisabled\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:76\n \n \n\n\n \n \n \n \n \n \n \n \n matSelectOptionsFormGroup\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Default value : new FormGroup({})\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:71\n \n \n\n\n \n \n \n \n \n \n \n \n onChange\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:72\n \n \n\n\n \n \n \n \n \n \n \n \n onTouched\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:73\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n optionSignal\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:75\n \n \n\n\n \n \n\n\n\n\n\n \n import { AsyncPipe, NgForOf } from '@angular/common';\nimport { Component, inject, Input, OnInit, signal } from '@angular/core';\nimport {\n AbstractControl,\n ControlValueAccessor,\n FormControl,\n FormGroup,\n NG_VALIDATORS,\n NG_VALUE_ACCESSOR,\n ReactiveFormsModule,\n ValidationErrors,\n Validator,\n} from '@angular/forms';\nimport {\n MatButton,\n MatFabButton,\n MatIconButton,\n} from '@angular/material/button';\nimport { MatCard, MatCardHeader, MatCardTitle } from '@angular/material/card';\nimport { MatCheckbox, MatCheckboxChange } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormFieldModule, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatListItem } from '@angular/material/list';\nimport { MatOption, MatSelectModule } from '@angular/material/select';\nimport { DialogTextInputComponent } from '../dialog-text-input/dialog-text-input.component';\n\n@Component({\n selector: 'cobbler-multi-select',\n standalone: true,\n imports: [\n MatFormFieldModule,\n MatSelectModule,\n MatOption,\n MatLabel,\n ReactiveFormsModule,\n AsyncPipe,\n MatListItem,\n NgForOf,\n MatCheckbox,\n MatButton,\n MatIconButton,\n MatIcon,\n MatCard,\n MatCardHeader,\n MatCardTitle,\n MatFabButton,\n MatInput,\n ],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n multi: true,\n useExisting: MultiSelectComponent,\n },\n {\n provide: NG_VALIDATORS,\n multi: true,\n useExisting: MultiSelectComponent,\n },\n ],\n templateUrl: './multi-select.component.html',\n styleUrl: './multi-select.component.scss',\n})\nexport class MultiSelectComponent\n implements OnInit, ControlValueAccessor, Validator\n{\n @Input() multiSelectOptions: Array = [];\n @Input() label = '';\n matSelectOptionsFormGroup: FormGroup = new FormGroup({});\n onChange = (options: string[]) => {};\n onTouched = (options: string[]) => {};\n readonly dialog = inject(MatDialog);\n readonly optionSignal = signal('');\n isDisabled = true;\n\n ngOnInit(): void {\n this.buildFormGroup(this.multiSelectOptions);\n }\n\n buildFormGroup(options: string[], checked = false): void {\n options.forEach((value) => {\n this.matSelectOptionsFormGroup.addControl(\n value,\n new FormControl({ value: checked, disabled: this.isDisabled }),\n );\n });\n }\n\n updateFormGroup(options: string[], checked = false): void {\n options.forEach((value) => {\n this.matSelectOptionsFormGroup.get(value).setValue(checked);\n });\n }\n\n registerOnChange(fn: any): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this.isDisabled = isDisabled;\n if (this.isDisabled) {\n this.matSelectOptionsFormGroup.disable();\n } else {\n this.matSelectOptionsFormGroup.enable();\n }\n }\n\n writeValue(obj: string[]): void {\n this.buildFormGroup(obj);\n this.updateFormGroup(obj, true);\n }\n\n registerOnValidatorChange(fn: () => void): void {}\n\n validate(control: AbstractControl): ValidationErrors | null {\n return undefined;\n }\n\n changeValues(e: MatCheckboxChange) {\n let options: string[] = [];\n Object.keys(this.matSelectOptionsFormGroup.controls).forEach((key) => {\n const control = this.matSelectOptionsFormGroup.get(key);\n if (control instanceof FormControl) {\n if (control.value) {\n options.push(key);\n }\n }\n });\n\n this.onTouched(options);\n this.onChange(options);\n }\n\n addOption(): void {\n const dialogRef = this.dialog.open(DialogTextInputComponent, {\n data: { data: this.optionSignal() },\n });\n\n dialogRef.afterClosed().subscribe((result) => {\n if (result !== undefined) {\n this.optionSignal.set(result);\n this.multiSelectOptions.push(result);\n this.buildFormGroup(this.multiSelectOptions);\n }\n });\n }\n}\n\n \n\n \n \n \n {{ label }}\n \n @if (multiSelectOptions.length === 0) {\n Empty list of options\n } @else {\n \n Search for option\n \n \n -->\n \n {{ option }}\n \n }\n \n Add option\n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{ label }} @if (multiSelectOptions.length === 0) { Empty list of options } @else { Search for option --> {{ option }} } Add option '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'MultiSelectComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NavbarComponent.html":{"url":"components/NavbarComponent.html","title":"component - NavbarComponent","body":"\n \n\n\n\n\n\n Components\n \n NavbarComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/navbar/navbar.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-navbar\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterLink\n MatToolbarModule\n MatIconModule\n CommonModule\n MatButtonModule\n \n \n\n \n styleUrls\n ./navbar.component.css\n \n\n\n\n \n templateUrl\n ./navbar.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n authO\n \n \n cobbler_version\n \n \n islogged\n \n \n Private\n ngUnsubscribe\n \n \n Public\n router\n \n \n subscription\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n logout\n \n \n ngOnDestroy\n \n \n \n \n\n\n \n \n Outputs\n \n \n \n \n \n \n toggleSidenav\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer, authO: UserService, router: Router, guard: AuthGuardService, _snackBar: MatSnackBar, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:36\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n iconRegistry\n \n \n MatIconRegistry\n \n \n \n No\n \n \n \n \n sanitizer\n \n \n DomSanitizer\n \n \n \n No\n \n \n \n \n authO\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n guard\n \n \n AuthGuardService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n \n Outputs\n \n \n \n \n \n toggleSidenav\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:33\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \nlogout()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n authO\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n cobbler_version\n \n \n \n \n \n \n Type : String\n\n \n \n \n \n Default value : 'Unknown'\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n islogged\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n Type : Router\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n subscription\n \n \n \n \n \n \n Type : Subscription\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:36\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, OnDestroy, Output } from '@angular/core';\nimport { MatIconModule, MatIconRegistry } from '@angular/material/icon';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { DomSanitizer } from '@angular/platform-browser';\nimport { Router, RouterLink } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject, Subscription } from 'rxjs';\nimport { AuthGuardService } from '../services/auth-guard.service';\nimport { UserService } from '../services/user.service';\nimport { MatToolbarModule } from '@angular/material/toolbar';\nimport { CommonModule } from '@angular/common';\nimport { MatButtonModule } from '@angular/material/button';\nimport { takeUntil } from 'rxjs/operators';\n\n@Component({\n selector: 'cobbler-navbar',\n templateUrl: './navbar.component.html',\n styleUrls: ['./navbar.component.css'],\n standalone: true,\n imports: [\n RouterLink,\n MatToolbarModule,\n MatIconModule,\n CommonModule,\n MatButtonModule,\n ],\n})\nexport class NavbarComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Navbar\n @Output() toggleSidenav = new EventEmitter();\n cobbler_version: String = 'Unknown';\n islogged: boolean = false;\n subscription: Subscription;\n\n constructor(\n iconRegistry: MatIconRegistry,\n sanitizer: DomSanitizer,\n public authO: UserService,\n public router: Router,\n private guard: AuthGuardService,\n private _snackBar: MatSnackBar,\n private cobblerApiService: CobblerApiService,\n ) {\n iconRegistry.addSvgIcon(\n 'cobbler-logo',\n sanitizer.bypassSecurityTrustResourceUrl(\n 'https://cobbler.github.io/images/logo-cobbler-new.svg',\n ),\n );\n\n this.subscription = this.authO.authorized\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value) => {\n if (value) {\n this.islogged = value;\n } else {\n this.islogged = false;\n }\n });\n cobblerApiService\n .extended_version()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobbler_version = value.version;\n },\n (error) => {\n this.cobbler_version = 'Error';\n this._snackBar.open(error.message, 'Close');\n },\n );\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n logout(): void {\n this.authO.changeAuthorizedState(false);\n this.authO.username = 'username';\n this.authO.token = '';\n this.guard.setBool(false);\n }\n}\n\n \n\n \n \n \n menu\n \n \n \n \n Cobbler\n \n \n \n \n Version: {{ cobbler_version }}\n @if (!islogged) {\n \n login\n \n }\n @if (islogged) {\n \n \n logout\n \n \n }\n \n\n\n \n\n \n \n ./navbar.component.css\n \n .navbar-spacer {\n flex: 1 1 auto;\n}\n\n.pad {\n padding-left: 5px;\n padding-right: 5px;\n}\n\n.align-center {\n vertical-align: middle;\n}\n\na {\n color: inherit;\n text-decoration: inherit;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' menu Cobbler Version: {{ cobbler_version }} @if (!islogged) { login } @if (islogged) { logout } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'NavbarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/NetworkInterface.html":{"url":"interfaces/NetworkInterface.html","title":"interface - NetworkInterface","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n NetworkInterface\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n bonding_opts\n \n \n \n \n bridge_opts\n \n \n \n \n cnames\n \n \n \n \n connected_mode\n \n \n \n \n dhcp_tag\n \n \n \n \n dns_name\n \n \n \n \n if_gateway\n \n \n \n \n interface_master\n \n \n \n \n interface_type\n \n \n \n \n ip_address\n \n \n \n \n ipv6_address\n \n \n \n \n ipv6_default_gateway\n \n \n \n \n ipv6_mtu\n \n \n \n \n ipv6_prefix\n \n \n \n \n ipv6_secondaries\n \n \n \n \n ipv6_static_routes\n \n \n \n \n mac_address\n \n \n \n \n management\n \n \n \n \n mtu\n \n \n \n \n netmask\n \n \n \n \n static\n \n \n \n \n static_routes\n \n \n \n \n virt_bridge\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n bonding_opts\n \n \n \n \n \n \n \n \n bonding_opts: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n bridge_opts\n \n \n \n \n \n \n \n \n bridge_opts: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n cnames\n \n \n \n \n \n \n \n \n cnames: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n connected_mode\n \n \n \n \n \n \n \n \n connected_mode: \n\n \n \n\n\n\n\n\n\n\n \n \n \n \n \n \n \n dhcp_tag\n \n \n \n \n \n \n \n \n dhcp_tag: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n dns_name\n \n \n \n \n \n \n \n \n dns_name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n if_gateway\n \n \n \n \n \n \n \n \n if_gateway: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n interface_master\n \n \n \n \n \n \n \n \n interface_master: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n interface_type\n \n \n \n \n \n \n \n \n interface_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ip_address\n \n \n \n \n \n \n \n \n ip_address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_address\n \n \n \n \n \n \n \n \n ipv6_address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_default_gateway\n \n \n \n \n \n \n \n \n ipv6_default_gateway: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_mtu\n \n \n \n \n \n \n \n \n ipv6_mtu: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_prefix\n \n \n \n \n \n \n \n \n ipv6_prefix: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_secondaries\n \n \n \n \n \n \n \n \n ipv6_secondaries: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_static_routes\n \n \n \n \n \n \n \n \n ipv6_static_routes: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mac_address\n \n \n \n \n \n \n \n \n mac_address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n management\n \n \n \n \n \n \n \n \n management: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mtu\n \n \n \n \n \n \n \n \n mtu: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n netmask\n \n \n \n \n \n \n \n \n netmask: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n static\n \n \n \n \n \n \n \n \n static: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n static_routes\n \n \n \n \n \n \n \n \n static_routes: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_bridge\n \n \n \n \n \n \n \n \n virt_bridge: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NotFoundComponent.html":{"url":"components/NotFoundComponent.html","title":"component - NotFoundComponent","body":"\n \n\n\n\n\n\n Components\n \n NotFoundComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/not-found/not-found.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-not-found\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterLink\n \n \n\n \n styleUrls\n ./not-found.component.css\n \n\n\n\n \n templateUrl\n ./not-found.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/not-found/not-found.component.ts:12\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { RouterLink } from '@angular/router';\n\n@Component({\n selector: 'cobbler-not-found',\n templateUrl: './not-found.component.html',\n styleUrls: ['./not-found.component.css'],\n\n standalone: true,\n imports: [RouterLink],\n})\nexport class NotFoundComponent {\n constructor() {}\n}\n\n \n\n \n \n Path not found, Or unavailable.\n Please Log in.\n Login\n\n\n \n\n \n \n ./not-found.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Path not found, Or unavailable. Please Log in. Login'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'NotFoundComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ObjectNode.html":{"url":"interfaces/ObjectNode.html","title":"interface - ObjectNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ObjectNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n\n\n \n Description\n \n \n Food data with nested structure.\nEach node has a name and an optional list of children.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n children\n \n \n \n \n name\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n children\n \n \n \n \n \n \n \n \n children: ObjectNode[]\n\n \n \n\n\n \n \n Type : ObjectNode[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { FlatTreeControl } from '@angular/cdk/tree';\nimport { Component, Input, OnInit } from '@angular/core';\nimport {\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeModule,\n} from '@angular/material/tree';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface ObjectNode {\n name: string;\n value: any;\n children?: ObjectNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-viewable-tree',\n templateUrl: './viewable-tree.component.html',\n styleUrls: ['./viewable-tree.component.scss'],\n standalone: true,\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n})\nexport class ViewableTreeComponent implements OnInit {\n @Input() inputObject: object = {};\n viewableTreeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n private _transformer = (node: ObjectNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n value: node.value,\n level: level,\n };\n };\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n );\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n constructor() {}\n\n inputLength(inputObject: object): number {\n return Object.keys(inputObject).length;\n }\n\n private transformObject(inputObject: object): ObjectNode[] {\n const resultStructure = [];\n let children = [];\n Object.keys(inputObject).forEach((key) => {\n if (\n !Array.isArray(inputObject[key]) &&\n typeof inputObject[key] === 'object'\n ) {\n children = this.transformObject(inputObject[key]);\n }\n resultStructure.push({\n name: key,\n value: inputObject[key],\n children: children,\n });\n });\n return resultStructure;\n }\n\n ngOnInit(): void {\n this.dataSource.data = this.transformObject(this.inputObject);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/OsBreedFlatNode.html":{"url":"interfaces/OsBreedFlatNode.html","title":"interface - OsBreedFlatNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n OsBreedFlatNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n\n\n \n Description\n \n \n Flat node with expandable and level information\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n data\n \n \n \n \n expandable\n \n \n \n \n level\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n data: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n expandable\n \n \n \n \n \n \n \n \n expandable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n level\n \n \n \n \n \n \n \n \n level: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/OsNode.html":{"url":"interfaces/OsNode.html","title":"interface - OsNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n OsNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n\n\n \n Description\n \n \n Food data with nested structure.\nEach node has a name and an optional list of children.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n children\n \n \n \n \n data\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n children\n \n \n \n \n \n \n \n \n children: OsNode[]\n\n \n \n\n\n \n \n Type : OsNode[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n data: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Package.html":{"url":"interfaces/Package.html","title":"interface - Package","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Package\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n action\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n group\n \n \n \n \n installer\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n mode\n \n \n \n \n name\n \n \n \n \n owner\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n path\n \n \n \n \n template\n \n \n \n \n template_files\n \n \n \n \n version\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n \n \n \n \n action: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n group\n \n \n \n \n \n \n \n \n group: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n installer\n \n \n \n \n \n \n \n \n installer: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mode\n \n \n \n \n \n \n \n \n mode: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owner\n \n \n \n \n \n \n \n \n owner: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template\n \n \n \n \n \n \n \n \n template: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n version\n \n \n \n \n \n \n \n \n version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PackageEditComponent.html":{"url":"components/PackageEditComponent.html","title":"component - PackageEditComponent","body":"\n \n\n\n\n\n\n Components\n \n PackageEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n \n \n\n\n\n\n \n templateUrl\n ./package-edit.component.html\n \n\n\n\n \n styleUrl\n ./package-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n name\n \n \n package\n \n \n packageFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyPackage\n \n \n editPackage\n \n \n ngOnInit\n \n \n refreshData\n \n \n removePackage\n \n \n savePackage\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n packageOwners\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:68\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyPackage\n \n \n \n \n \n \ncopyPackage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:155\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editPackage\n \n \n \n \n \n \neditPackage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:150\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:80\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:84\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removePackage\n \n \n \n \n \n \nremovePackage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:129\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n savePackage\n \n \n \n \n \n \nsavePackage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:169\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:68\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n package\n \n \n \n \n \n \n Type : Package\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n packageFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n installer: new FormControl({ value: '', disabled: true }),\n version: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:48\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n packageOwners\n \n \n\n \n \n getpackageOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:173\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Package } from 'cobbler-api';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n ],\n templateUrl: './package-edit.component.html',\n styleUrl: './package-edit.component.scss',\n})\nexport class PackageEditComponent implements OnInit {\n name: string;\n package: Package;\n private readonly _formBuilder = inject(FormBuilder);\n packageFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n installer: new FormControl({ value: '', disabled: true }),\n version: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_package(this.name, false, false, this.userService.token)\n .subscribe(\n (value) => {\n this.package = value;\n this.packageFormGroup.controls.name.setValue(this.package.name);\n this.packageFormGroup.controls.uid.setValue(this.package.uid);\n this.packageFormGroup.controls.mtime.setValue(\n new Date(this.package.mtime * 1000).toString(),\n );\n this.packageFormGroup.controls.ctime.setValue(\n new Date(this.package.ctime * 1000).toString(),\n );\n this.packageFormGroup.controls.depth.setValue(this.package.depth);\n this.packageFormGroup.controls.is_subobject.setValue(\n this.package.is_subobject,\n );\n this.packageFormGroup.controls.comment.setValue(this.package.comment);\n this.packageFormGroup.controls.mode.setValue(this.package.mode);\n this.packageFormGroup.controls.owner.setValue(this.package.owner);\n this.packageFormGroup.controls.group.setValue(this.package.group);\n this.packageFormGroup.controls.path.setValue(this.package.path);\n this.packageFormGroup.controls.template.setValue(\n this.package.template,\n );\n this.packageFormGroup.controls.action.setValue(this.package.action);\n this.packageFormGroup.controls.installer.setValue(\n this.package.installer,\n );\n this.packageFormGroup.controls.version.setValue(this.package.version);\n if (typeof this.package.owners === 'string') {\n this.packageFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.packageFormGroup.controls.owners_inherited.setValue(false);\n this.packageFormGroup.controls.owners.setValue(this.package.owners);\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removePackage(): void {\n this.cobblerApiService\n .remove_package(this.name, this.userService.token, false)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'package']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editPackage(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyPackage(): void {\n this.cobblerApiService\n .copy_package('', '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n savePackage(): void {\n // TODO\n }\n\n get packageOwners(): string[] {\n if (this.package && this.package.owners) {\n const ownersResult = this.package.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n \n Mode\n \n \n \n Owner\n \n \n \n Group\n \n \n \n Path\n \n \n \n Template\n \n \n \n Action\n \n \n \n Installer\n \n \n \n Version\n \n \n \n \n Inherited\n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Mode Owner Group Path Template Action Installer Version Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'PackageEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PackageOverviewComponent.html":{"url":"components/PackageOverviewComponent.html","title":"component - PackageOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n PackageOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./package-overview.component.html\n \n\n\n\n \n styleUrl\n ./package-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deletePackage\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renamePackage\n \n \n Private\n retrievePackages\n \n \n showPackage\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deletePackage\n \n \n \n \n \n \ndeletePackage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:140\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renamePackage\n \n \n \n \n \n \nrenamePackage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrievePackages\n \n \n \n \n \n \n \n retrievePackages()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showPackage\n \n \n \n \n \n \nshowPackage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'installer', 'version', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Package } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './package-overview.component.html',\n styleUrl: './package-overview.component.scss',\n})\nexport class PackageOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'installer', 'version', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrievePackages();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrievePackages(): void {\n this.cobblerApiService\n .get_packages()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showPackage(uid: string, name: string): void {\n this.router.navigate(['/items', 'package', name]);\n }\n\n renamePackage(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Repository',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the package\n return;\n }\n this.cobblerApiService\n .get_package_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (packageHandle) => {\n this.cobblerApiService\n .rename_package(\n packageHandle,\n newItemName,\n this.userService.token,\n )\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrievePackages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deletePackage(uid: string, name: string): void {\n this.cobblerApiService\n .remove_package(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrievePackages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n PACKAGES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Installer\n {{ element.installer }}\n \n\n \n \n Version\n {{ element.version }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'PACKAGES Name {{ element.name }} Installer {{ element.installer }} Version {{ element.version }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'PackageOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/PageInfo.html":{"url":"interfaces/PageInfo.html","title":"interface - PageInfo","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n PageInfo\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n end_item\n \n \n \n \n items_per_page\n \n \n \n \n items_per_page_list\n \n \n \n \n next_page\n \n \n \n \n num_items\n \n \n \n \n num_pages\n \n \n \n \n page\n \n \n \n \n pages\n \n \n \n \n prev_page\n \n \n \n \n start_item\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n end_item\n \n \n \n \n \n \n \n \n end_item: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n items_per_page\n \n \n \n \n \n \n \n \n items_per_page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n items_per_page_list\n \n \n \n \n \n \n \n \n items_per_page_list: [\"10\", \"20\", \"50\", \"100\", \"200\", \"500\"]\n\n \n \n\n\n \n \n Type : [\"10\", \"20\", \"50\", \"100\", \"200\", \"500\"]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n next_page\n \n \n \n \n \n \n \n \n next_page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n num_items\n \n \n \n \n \n \n \n \n num_items: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n num_pages\n \n \n \n \n \n \n \n \n num_pages: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n page\n \n \n \n \n \n \n \n \n page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n pages\n \n \n \n \n \n \n \n \n pages: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n prev_page\n \n \n \n \n \n \n \n \n prev_page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n start_item\n \n \n \n \n \n \n \n \n start_item: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/PagesItemsResult.html":{"url":"interfaces/PagesItemsResult.html","title":"interface - PagesItemsResult","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n PagesItemsResult\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n items\n \n \n \n \n pageinfo\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n items\n \n \n \n \n \n \n \n \n items: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n pageinfo\n \n \n \n \n \n \n \n \n pageinfo: PageInfo\n\n \n \n\n\n \n \n Type : PageInfo\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Param.html":{"url":"interfaces/Param.html","title":"interface - Param","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Param\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: XmlRpcTypes\n\n \n \n\n\n \n \n Type : XmlRpcTypes\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ProfileEditComponent.html":{"url":"components/ProfileEditComponent.html","title":"component - ProfileEditComponent","body":"\n \n\n\n\n\n\n Components\n \n ProfileEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatIcon\n MatIconButton\n MatTooltip\n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatInput\n MatLabel\n MatOption\n MatSelect\n ReactiveFormsModule\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./profile-edit.component.html\n \n\n\n\n \n styleUrl\n ./profile-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n name\n \n \n profile\n \n \n profileFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyProfile\n \n \n editProfile\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeProfile\n \n \n saveProfile\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n profileOwners\n \n \n profileAutoinstallMeta\n \n \n profileKernelOptions\n \n \n profileKernelOptionsPost\n \n \n profileBootFiles\n \n \n profileFetchableFiles\n \n \n profileMgmtParameters\n \n \n profileTemplateFiles\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:105\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyProfile\n \n \n \n \n \n \ncopyProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:310\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editProfile\n \n \n \n \n \n \neditProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:305\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:117\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:121\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeProfile\n \n \n \n \n \n \nremoveProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:284\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveProfile\n \n \n \n \n \n \nsaveProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:324\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:105\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n profile\n \n \n \n \n \n \n Type : Profile\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n profileFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n dhcp_tag: new FormControl({ value: '', disabled: true }),\n distro: new FormControl({ value: '', disabled: true }),\n menu: new FormControl({ value: '', disabled: true }),\n next_server_v4: new FormControl({ value: '', disabled: true }),\n next_server_v6: new FormControl({ value: '', disabled: true }),\n filename: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n server: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_parameters: new FormControl({ value: {}, disabled: true }),\n mgmt_parameters_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n name_servers: new FormControl({ value: [], disabled: true }),\n name_servers_search: new FormControl({ value: [], disabled: true }),\n repos: new FormControl({ value: [], disabled: true }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:50\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n profileOwners\n \n \n\n \n \n getprofileOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:328\n \n \n\n \n \n \n \n \n \n \n profileAutoinstallMeta\n \n \n\n \n \n getprofileAutoinstallMeta()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:338\n \n \n\n \n \n \n \n \n \n \n profileKernelOptions\n \n \n\n \n \n getprofileKernelOptions()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:348\n \n \n\n \n \n \n \n \n \n \n profileKernelOptionsPost\n \n \n\n \n \n getprofileKernelOptionsPost()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:358\n \n \n\n \n \n \n \n \n \n \n profileBootFiles\n \n \n\n \n \n getprofileBootFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:368\n \n \n\n \n \n \n \n \n \n \n profileFetchableFiles\n \n \n\n \n \n getprofileFetchableFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:378\n \n \n\n \n \n \n \n \n \n \n profileMgmtParameters\n \n \n\n \n \n getprofileMgmtParameters()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:388\n \n \n\n \n \n \n \n \n \n \n profileTemplateFiles\n \n \n\n \n \n getprofileTemplateFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:398\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Profile } from 'cobbler-api';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n MatIcon,\n MatIconButton,\n MatTooltip,\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n ReactiveFormsModule,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './profile-edit.component.html',\n styleUrl: './profile-edit.component.scss',\n})\nexport class ProfileEditComponent implements OnInit {\n name: string;\n profile: Profile;\n private readonly _formBuilder = inject(FormBuilder);\n profileFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n dhcp_tag: new FormControl({ value: '', disabled: true }),\n distro: new FormControl({ value: '', disabled: true }),\n menu: new FormControl({ value: '', disabled: true }),\n next_server_v4: new FormControl({ value: '', disabled: true }),\n next_server_v6: new FormControl({ value: '', disabled: true }),\n filename: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n server: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_parameters: new FormControl({ value: {}, disabled: true }),\n mgmt_parameters_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n name_servers: new FormControl({ value: [], disabled: true }),\n name_servers_search: new FormControl({ value: [], disabled: true }),\n repos: new FormControl({ value: [], disabled: true }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_profile(this.name, false, false, this.userService.token)\n .subscribe(\n (value) => {\n this.profile = value;\n this.profileFormGroup.controls.name.setValue(this.profile.name);\n this.profileFormGroup.controls.uid.setValue(this.profile.uid);\n this.profileFormGroup.controls.mtime.setValue(\n new Date(this.profile.mtime * 1000).toString(),\n );\n this.profileFormGroup.controls.ctime.setValue(\n new Date(this.profile.ctime * 1000).toString(),\n );\n this.profileFormGroup.controls.depth.setValue(this.profile.depth);\n this.profileFormGroup.controls.is_subobject.setValue(\n this.profile.is_subobject,\n );\n this.profileFormGroup.controls.comment.setValue(this.profile.comment);\n this.profileFormGroup.controls.redhat_management_key.setValue(\n this.profile.redhat_management_key,\n );\n this.profileFormGroup.controls.autoinstall.setValue(\n this.profile.autoinstall,\n );\n this.profileFormGroup.controls.dhcp_tag.setValue(\n this.profile.dhcp_tag,\n );\n this.profileFormGroup.controls.distro.setValue(this.profile.distro);\n this.profileFormGroup.controls.menu.setValue(this.profile.menu);\n this.profileFormGroup.controls.next_server_v4.setValue(\n this.profile.next_server_v4,\n );\n this.profileFormGroup.controls.next_server_v6.setValue(\n this.profile.next_server_v6,\n );\n this.profileFormGroup.controls.filename.setValue(\n this.profile.filename,\n );\n this.profileFormGroup.controls.parent.setValue(this.profile.parent);\n this.profileFormGroup.controls.proxy.setValue(this.profile.proxy);\n this.profileFormGroup.controls.server.setValue(this.profile.server);\n this.profileFormGroup.controls.name_servers.setValue(\n this.profile.name_servers,\n );\n this.profileFormGroup.controls.name_servers_search.setValue(\n this.profile.name_servers_search,\n );\n this.profileFormGroup.controls.repos.setValue(this.profile.repos);\n if (typeof this.profile.boot_loaders === 'string') {\n this.profileFormGroup.controls.bootloader_inherited.setValue(true);\n } else {\n this.profileFormGroup.controls.bootloader_inherited.setValue(false);\n this.profileFormGroup.controls.boot_loaders.setValue(\n this.profile.boot_loaders,\n );\n }\n if (typeof this.profile.owners === 'string') {\n this.profileFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.profileFormGroup.controls.owners_inherited.setValue(false);\n this.profileFormGroup.controls.owners.setValue(this.profile.owners);\n }\n if (typeof this.profile.autoinstall_meta === 'string') {\n this.profileFormGroup.controls.autoinstall_meta_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.autoinstall_meta_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.autoinstall_meta.setValue(\n this.profile.autoinstall_meta,\n );\n }\n if (typeof this.profile.boot_files === 'string') {\n this.profileFormGroup.controls.boot_files_inherited.setValue(true);\n } else {\n this.profileFormGroup.controls.boot_files_inherited.setValue(false);\n this.profileFormGroup.controls.boot_files.setValue(\n this.profile.boot_files,\n );\n }\n if (typeof this.profile.fetchable_files === 'string') {\n this.profileFormGroup.controls.fetchable_files_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.fetchable_files_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.fetchable_files.setValue(\n this.profile.fetchable_files,\n );\n }\n if (typeof this.profile.kernel_options === 'string') {\n this.profileFormGroup.controls.kernel_options_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.kernel_options_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.kernel_options.setValue(\n this.profile.kernel_options,\n );\n }\n if (typeof this.profile.kernel_options_post === 'string') {\n this.profileFormGroup.controls.kernel_options_post_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.kernel_options_post_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.kernel_options_post.setValue(\n this.profile.kernel_options_post,\n );\n }\n if (typeof this.profile.mgmt_classes === 'string') {\n this.profileFormGroup.controls.mgmt_classes_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.mgmt_classes_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.mgmt_classes.setValue(\n this.profile.mgmt_classes,\n );\n }\n if (typeof this.profile.mgmt_parameters === 'string') {\n this.profileFormGroup.controls.mgmt_parameters_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.mgmt_parameters_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.mgmt_parameters.setValue(\n this.profile.mgmt_parameters,\n );\n }\n if (typeof this.profile.template_files === 'string') {\n this.profileFormGroup.controls.template_files_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.template_files_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.template_files.setValue(\n this.profile.template_files,\n );\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeProfile(): void {\n this.cobblerApiService\n .remove_profile(this.name, this.userService.token, false)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'profile']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editProfile(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyProfile(): void {\n this.cobblerApiService\n .copy_profile('', '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n saveProfile(): void {\n // TODO\n }\n\n get profileOwners(): string[] {\n if (this.profile && this.profile.owners) {\n const ownersResult = this.profile.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n\n get profileAutoinstallMeta(): object {\n if (this.profile && this.profile.autoinstall_meta) {\n const autoinstallMetaResult = this.profile.autoinstall_meta;\n if (typeof autoinstallMetaResult !== 'string') {\n return autoinstallMetaResult;\n }\n }\n return {};\n }\n\n get profileKernelOptions(): object {\n if (this.profile && this.profile.kernel_options) {\n const kernelOptionsResult = this.profile.kernel_options;\n if (typeof kernelOptionsResult !== 'string') {\n return kernelOptionsResult;\n }\n }\n return {};\n }\n\n get profileKernelOptionsPost(): object {\n if (this.profile && this.profile.kernel_options_post) {\n const kernelOptionsPost = this.profile.kernel_options_post;\n if (typeof kernelOptionsPost !== 'string') {\n return kernelOptionsPost;\n }\n }\n return {};\n }\n\n get profileBootFiles(): object {\n if (this.profile && this.profile.boot_files) {\n const bootFilesResult = this.profile.boot_files;\n if (typeof bootFilesResult !== 'string') {\n return bootFilesResult;\n }\n }\n return {};\n }\n\n get profileFetchableFiles(): object {\n if (this.profile && this.profile.fetchable_files) {\n const fetchableFilesResult = this.profile.fetchable_files;\n if (typeof fetchableFilesResult !== 'string') {\n return fetchableFilesResult;\n }\n }\n return {};\n }\n\n get profileMgmtParameters(): object {\n if (this.profile && this.profile.mgmt_parameters) {\n const mgmtParametersResult = this.profile.mgmt_parameters;\n if (typeof mgmtParametersResult !== 'string') {\n return mgmtParametersResult;\n }\n }\n return {};\n }\n\n get profileTemplateFiles(): object {\n if (this.profile && this.profile.template_files) {\n const templateFilesResult = this.profile.template_files;\n if (typeof templateFilesResult !== 'string') {\n return templateFilesResult;\n }\n }\n return {};\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n \n Inherited\n \n \n Comment\n \n \n \n Autoinstall\n \n \n \n DHCP Tag\n \n \n \n Distribution\n \n \n \n Menu\n \n \n \n Next-Server IPv4\n \n \n \n Next-Server IPv6\n \n \n \n Filename\n \n \n \n Parent\n \n \n \n Proxy\n \n \n \n RedHat Management Key\n \n \n \n Server\n \n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n \n \n \n \n \n \n Inherited\n \n \n \n \n \n \n Inherited\n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Inherited Comment Autoinstall DHCP Tag Distribution Menu Next-Server IPv4 Next-Server IPv6 Filename Parent Proxy RedHat Management Key Server Inherited Inherited Inherited Inherited Inherited Inherited Inherited Inherited Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ProfileEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ProfileOverviewComponent.html":{"url":"components/ProfileOverviewComponent.html","title":"component - ProfileOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n ProfileOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./profile-overview.component.html\n \n\n\n\n \n styleUrl\n ./profile-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteProfile\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameProfile\n \n \n Private\n retrieveProfiles\n \n \n showProfile\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteProfile\n \n \n \n \n \n \ndeleteProfile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:140\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameProfile\n \n \n \n \n \n \nrenameProfile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveProfiles\n \n \n \n \n \n \n \n retrieveProfiles()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showProfile\n \n \n \n \n \n \nshowProfile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'distro', 'server', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Profile } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './profile-overview.component.html',\n styleUrl: './profile-overview.component.scss',\n})\nexport class ProfileOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'distro', 'server', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveProfiles();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveProfiles(): void {\n this.cobblerApiService\n .get_profiles()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showProfile(uid: string, name: string): void {\n this.router.navigate(['/items', 'profile', name]);\n }\n\n renameProfile(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Profile',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the profile\n return;\n }\n this.cobblerApiService\n .get_profile_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (profileHandle) => {\n this.cobblerApiService\n .rename_profile(\n profileHandle,\n newItemName,\n this.userService.token,\n )\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveProfiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteProfile(uid: string, name: string): void {\n this.cobblerApiService\n .remove_profile(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveProfiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n PROFILES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Distro\n {{ element.distro }}\n \n\n \n \n Server\n {{ element.server }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'PROFILES Name {{ element.name }} Distro {{ element.distro }} Server {{ element.server }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ProfileOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/RegisterOptions.html":{"url":"interfaces/RegisterOptions.html","title":"interface - RegisterOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n RegisterOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n hostname\n \n \n \n \n interfaces\n \n \n \n \n name\n \n \n \n \n profile\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n hostname\n \n \n \n \n \n \n \n \n hostname: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n interfaces\n \n \n \n \n \n \n \n \n interfaces: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n profile\n \n \n \n \n \n \n \n \n profile: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ReplicateComponent.html":{"url":"components/ReplicateComponent.html","title":"component - ReplicateComponent","body":"\n \n\n\n\n\n\n Components\n \n ReplicateComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-replicate\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatFormField\n ReactiveFormsModule\n MatLabel\n MatFormFieldModule\n MatInput\n MatSlideToggle\n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./replicate.component.html\n \n\n\n\n \n styleUrl\n ./replicate.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n Private\n ngUnsubscribe\n \n \n replicateFormGroup\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runReplicate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:50\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:58\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runReplicate\n \n \n \n \n \n \nrunReplicate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n replicateFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n master: '',\n port: '',\n distro_patterns: '',\n profile_patterns: '',\n system_patterns: '',\n repo_patterns: '',\n image_patterns: '',\n mgmtclass_patterns: '',\n package_patterns: '',\n file_patterns: '',\n prune: false,\n omit_data: false,\n sync_all: false,\n use_ssl: false,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy, OnInit } from '@angular/core';\nimport { FormBuilder, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport { MatFormFieldModule, MatLabel } from '@angular/material/form-field';\nimport { MatFormField, MatInput } from '@angular/material/input';\nimport { MatSlideToggle } from '@angular/material/slide-toggle';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { BackgroundReplicateOptions, CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-replicate',\n standalone: true,\n imports: [\n MatFormField,\n ReactiveFormsModule,\n MatLabel,\n MatFormFieldModule,\n MatInput,\n MatSlideToggle,\n MatButton,\n ],\n templateUrl: './replicate.component.html',\n styleUrl: './replicate.component.scss',\n})\nexport class ReplicateComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n replicateFormGroup = this._formBuilder.group({\n master: '',\n port: '',\n distro_patterns: '',\n profile_patterns: '',\n system_patterns: '',\n repo_patterns: '',\n image_patterns: '',\n mgmtclass_patterns: '',\n package_patterns: '',\n file_patterns: '',\n prune: false,\n omit_data: false,\n sync_all: false,\n use_ssl: false,\n });\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runReplicate(): void {\n const replicateOptions: BackgroundReplicateOptions = {\n master: this.replicateFormGroup.controls.master.value,\n port: this.replicateFormGroup.controls.port.value,\n distro_patterns: this.replicateFormGroup.controls.distro_patterns.value,\n profile_patterns: this.replicateFormGroup.controls.profile_patterns.value,\n system_patterns: this.replicateFormGroup.controls.system_patterns.value,\n repo_patterns: this.replicateFormGroup.controls.repo_patterns.value,\n image_patterns: this.replicateFormGroup.controls.image_patterns.value,\n mgmtclass_patterns:\n this.replicateFormGroup.controls.mgmtclass_patterns.value,\n package_patterns: this.replicateFormGroup.controls.package_patterns.value,\n file_patterns: this.replicateFormGroup.controls.file_patterns.value,\n prune: this.replicateFormGroup.controls.prune.value,\n omit_data: this.replicateFormGroup.controls.omit_data.value,\n sync_all: this.replicateFormGroup.controls.sync_all.value,\n use_ssl: this.replicateFormGroup.controls.use_ssl.value,\n };\n this.cobblerApiService\n .background_replicate(replicateOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n REPLICATE\n\n\n \n Master\n \n \n \n Port\n \n \n \n Distro Pattern\n \n \n \n Profile Pattern\n \n \n \n System Pattern\n \n \n \n Repository Pattern\n \n \n \n Image Pattern\n \n \n \n Management-Class Pattern\n \n \n \n File Pattern\n \n \n Prune\n Omit data\n Sync all\n Use SSL\n Run\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'REPLICATE Master Port Distro Pattern Profile Pattern System Pattern Repository Pattern Image Pattern Management-Class Pattern File Pattern Prune Omit data Sync all Use SSL Run'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ReplicateComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Repo.html":{"url":"interfaces/Repo.html","title":"interface - Repo","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Repo\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n apt_components\n \n \n \n \n apt_dists\n \n \n \n \n arch\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n breed\n \n \n \n \n comment\n \n \n \n \n createrepo_flags\n \n \n \n \n environment\n \n \n \n \n fetchable_files\n \n \n \n \n is_subobject\n \n \n \n \n keep_updated\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n mirror\n \n \n \n \n mirror_locally\n \n \n \n \n mirror_type\n \n \n \n \n name\n \n \n \n \n os_version\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n priority\n \n \n \n \n proxy\n \n \n \n \n rpm_list\n \n \n \n \n rsyncopts\n \n \n \n \n template_files\n \n \n \n \n yumopts\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n apt_components\n \n \n \n \n \n \n \n \n apt_components: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n apt_dists\n \n \n \n \n \n \n \n \n apt_dists: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n createrepo_flags\n \n \n \n \n \n \n \n \n createrepo_flags: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n \n environment: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n keep_updated\n \n \n \n \n \n \n \n \n keep_updated: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mirror\n \n \n \n \n \n \n \n \n mirror: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mirror_locally\n \n \n \n \n \n \n \n \n mirror_locally: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mirror_type\n \n \n \n \n \n \n \n \n mirror_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n priority\n \n \n \n \n \n \n \n \n priority: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n proxy\n \n \n \n \n \n \n \n \n proxy: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n rpm_list\n \n \n \n \n \n \n \n \n rpm_list: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n rsyncopts\n \n \n \n \n \n \n \n \n rsyncopts: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n yumopts\n \n \n \n \n \n \n \n \n yumopts: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/RepoSyncComponent.html":{"url":"components/RepoSyncComponent.html","title":"component - RepoSyncComponent","body":"\n \n\n\n\n\n\n Components\n \n RepoSyncComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-repo-sync\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatListModule\n MatButton\n FormsModule\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatPrefix\n MatSuffix\n MatLabel\n MatInputModule\n MatFormFieldModule\n ReactiveFormsModule\n \n \n\n \n styleUrls\n ./repo-sync.component.css\n \n\n\n\n \n templateUrl\n ./repo-sync.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n Private\n ngUnsubscribe\n \n \n repositoryFormArray\n \n \n reposyncFormGroup\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addNewRepoFG\n \n \n ngOnDestroy\n \n \n removeNewRepoFG\n \n \n runReposync\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n newRepositoryFormGroup\n \n \n repositoryArrayFGControls\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:67\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addNewRepoFG\n \n \n \n \n \n \naddNewRepoFG()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:89\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:74\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeNewRepoFG\n \n \n \n \n \n \nremoveNewRepoFG(index: number)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:93\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n index\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n runReposync\n \n \n \n \n \n \nrunReposync()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:97\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n repositoryFormArray\n \n \n \n \n \n \n Default value : new FormArray([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n reposyncFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n repoName: this.repositoryFormArray,\n reposyncNoFail: false,\n reposyncTries: 3,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:69\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n newRepositoryFormGroup\n \n \n\n \n \n getnewRepositoryFormGroup()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:79\n \n \n\n \n \n \n \n \n \n \n repositoryArrayFGControls\n \n \n\n \n \n getrepositoryArrayFGControls()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:85\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { MatListModule } from '@angular/material/list';\nimport { RouterOutlet } from '@angular/router';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { BackgroundReposyncOptions } from 'cobbler-api';\nimport {\n FormArray,\n FormBuilder,\n FormControl,\n FormGroup,\n FormsModule,\n ReactiveFormsModule,\n Validators,\n} from '@angular/forms';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport {\n MatFormField,\n MatFormFieldModule,\n MatLabel,\n MatPrefix,\n MatSuffix,\n} from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput, MatInputModule } from '@angular/material/input';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-repo-sync',\n templateUrl: './repo-sync.component.html',\n styleUrls: ['./repo-sync.component.css'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatListModule,\n MatButton,\n FormsModule,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatPrefix,\n MatSuffix,\n MatLabel,\n MatInputModule,\n MatFormFieldModule,\n ReactiveFormsModule,\n ],\n})\nexport class RepoSyncComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n repositoryFormArray = new FormArray([]);\n\n reposyncFormGroup = this._formBuilder.group({\n repoName: this.repositoryFormArray,\n reposyncNoFail: false,\n reposyncTries: 3,\n });\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n get newRepositoryFormGroup(): FormGroup {\n return new FormGroup({\n repoName: new FormControl(null, [Validators.required]),\n });\n }\n\n get repositoryArrayFGControls(): FormGroup[] {\n return this.repositoryFormArray.controls as FormGroup[];\n }\n\n addNewRepoFG(): void {\n this.repositoryFormArray.push(this.newRepositoryFormGroup);\n }\n\n removeNewRepoFG(index: number): void {\n this.repositoryFormArray.removeAt(index);\n }\n\n runReposync(): void {\n let repoNames: Array = [];\n for (let control of this.reposyncFormGroup.controls.repoName.controls) {\n if (control instanceof FormGroup) {\n repoNames.push(control.value.repoName);\n }\n }\n const reposyncOptions: BackgroundReposyncOptions = {\n repos: repoNames,\n only: '',\n tries: this.reposyncFormGroup.controls.reposyncTries.value,\n nofail: this.reposyncFormGroup.controls.reposyncNoFail.value,\n };\n this.cobblerApiService\n .background_reposync(reposyncOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n console.log(value);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n SYNC REPOSITORIES\n\n\n \n @if (repositoryArrayFGControls.length === 0) {\n Sync specific Repositories\n }\n @if (repositoryArrayFGControls.length > 0) {\n Add repository\n }\n \n @for (fg of repositoryArrayFGControls; track fg; let i = $index) {\n \n \n \n {{ i + 1 }}. \n \n \n remove\n \n @if (\n reposyncFormGroup.controls.repoName.controls[i].hasError(\"required\")\n ) {\n Repository name is required\n }\n \n \n \n } @empty {\n Syncing All Repositories\n }\n \n Tries\n \n \n No Fail\n\nRUN\n\n \n\n \n \n ./repo-sync.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'SYNC REPOSITORIES @if (repositoryArrayFGControls.length === 0) { Sync specific Repositories } @if (repositoryArrayFGControls.length > 0) { Add repository } @for (fg of repositoryArrayFGControls; track fg; let i = $index) { {{ i + 1 }}.  remove @if ( reposyncFormGroup.controls.repoName.controls[i].hasError(\"required\") ) { Repository name is required } } @empty { Syncing All Repositories } Tries No FailRUN'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'RepoSyncComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/RepositoryEditComponent.html":{"url":"components/RepositoryEditComponent.html","title":"component - RepositoryEditComponent","body":"\n \n\n\n\n\n\n Components\n \n RepositoryEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./repository-edit.component.html\n \n\n\n\n \n styleUrl\n ./repository-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n name\n \n \n repository\n \n \n repositoryFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyRepository\n \n \n editRepository\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeRepository\n \n \n saveRepository\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n repositoryOwners\n \n \n repositoryYumopts\n \n \n repositoryRsyncopts\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:77\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyRepository\n \n \n \n \n \n \ncopyRepository()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:203\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editRepository\n \n \n \n \n \n \neditRepository()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:198\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:89\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:93\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeRepository\n \n \n \n \n \n \nremoveRepository()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:177\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveRepository\n \n \n \n \n \n \nsaveRepository()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:215\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:77\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n repository\n \n \n \n \n \n \n Type : Repo\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n repositoryFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n priority: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n keep_updated: new FormControl({ value: false, disabled: true }),\n mirror_locally: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mirror_type: new FormControl({ value: '', disabled: true }),\n mirror: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n createrepo_flags: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n apt_components: new FormControl({ value: [], disabled: true }),\n apt_dists: new FormControl({ value: [], disabled: true }),\n rpm_list: new FormControl({ value: [], disabled: true }),\n environment: new FormControl({ value: {}, disabled: true }),\n yumopts: new FormControl({ value: {}, disabled: true }),\n rsyncopts: new FormControl({ value: {}, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:50\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n repositoryOwners\n \n \n\n \n \n getrepositoryOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:219\n \n \n\n \n \n \n \n \n \n \n repositoryYumopts\n \n \n\n \n \n getrepositoryYumopts()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:229\n \n \n\n \n \n \n \n \n \n \n repositoryRsyncopts\n \n \n\n \n \n getrepositoryRsyncopts()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:239\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Repo } from 'cobbler-api';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './repository-edit.component.html',\n styleUrl: './repository-edit.component.scss',\n})\nexport class RepositoryEditComponent implements OnInit {\n name: string;\n repository: Repo;\n private readonly _formBuilder = inject(FormBuilder);\n repositoryFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n priority: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n keep_updated: new FormControl({ value: false, disabled: true }),\n mirror_locally: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mirror_type: new FormControl({ value: '', disabled: true }),\n mirror: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n createrepo_flags: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n apt_components: new FormControl({ value: [], disabled: true }),\n apt_dists: new FormControl({ value: [], disabled: true }),\n rpm_list: new FormControl({ value: [], disabled: true }),\n environment: new FormControl({ value: {}, disabled: true }),\n yumopts: new FormControl({ value: {}, disabled: true }),\n rsyncopts: new FormControl({ value: {}, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_repo(this.name, false, false, this.userService.token)\n .subscribe(\n (value) => {\n this.repository = value;\n this.repositoryFormGroup.controls.name.setValue(this.repository.name);\n this.repositoryFormGroup.controls.uid.setValue(this.repository.uid);\n this.repositoryFormGroup.controls.mtime.setValue(\n new Date(this.repository.mtime * 1000).toString(),\n );\n this.repositoryFormGroup.controls.ctime.setValue(\n new Date(this.repository.ctime * 1000).toString(),\n );\n this.repositoryFormGroup.controls.depth.setValue(\n this.repository.depth,\n );\n this.repositoryFormGroup.controls.priority.setValue(\n this.repository.priority,\n );\n this.repositoryFormGroup.controls.is_subobject.setValue(\n this.repository.is_subobject,\n );\n this.repositoryFormGroup.controls.keep_updated.setValue(\n this.repository.keep_updated,\n );\n this.repositoryFormGroup.controls.mirror_locally.setValue(\n this.repository.mirror_locally,\n );\n this.repositoryFormGroup.controls.comment.setValue(\n this.repository.comment,\n );\n this.repositoryFormGroup.controls.proxy.setValue(\n this.repository.proxy,\n );\n this.repositoryFormGroup.controls.mirror_type.setValue(\n this.repository.mirror_type,\n );\n this.repositoryFormGroup.controls.mirror.setValue(\n this.repository.mirror,\n );\n this.repositoryFormGroup.controls.breed.setValue(\n this.repository.breed,\n );\n this.repositoryFormGroup.controls.os_version.setValue(\n this.repository.os_version,\n );\n this.repositoryFormGroup.controls.createrepo_flags.setValue(\n this.repository.createrepo_flags,\n );\n this.repositoryFormGroup.controls.rpm_list.setValue(\n this.repository.rpm_list,\n );\n this.repositoryFormGroup.controls.apt_dists.setValue(\n this.repository.apt_dists,\n );\n this.repositoryFormGroup.controls.apt_components.setValue(\n this.repository.apt_components,\n );\n if (typeof this.repository.owners === 'string') {\n this.repositoryFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.repositoryFormGroup.controls.owners_inherited.setValue(false);\n this.repositoryFormGroup.controls.owners.setValue(\n this.repository.owners,\n );\n }\n this.repositoryFormGroup.controls.environment.setValue(\n this.repository.environment,\n );\n this.repositoryFormGroup.controls.yumopts.setValue(\n this.repository.yumopts,\n );\n this.repositoryFormGroup.controls.rsyncopts.setValue(\n this.repository.rsyncopts,\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeRepository(): void {\n this.cobblerApiService\n .remove_repo(this.name, this.userService.token, false)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'repository']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editRepository(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyRepository(): void {\n this.cobblerApiService.copy_repo('', '', this.userService.token).subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n saveRepository(): void {\n // TODO\n }\n\n get repositoryOwners(): string[] {\n if (this.repository && this.repository.owners) {\n const ownersResult = this.repository.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n\n get repositoryYumopts(): object {\n if (this.repository && this.repository.yumopts) {\n const yumoptsResult = this.repository.yumopts;\n if (typeof yumoptsResult !== 'string') {\n return yumoptsResult;\n }\n }\n return {};\n }\n\n get repositoryRsyncopts(): object {\n if (this.repository && this.repository.rsyncopts) {\n const rsyncoptsResult = this.repository.rsyncopts;\n if (typeof rsyncoptsResult !== 'string') {\n return rsyncoptsResult;\n }\n }\n return {};\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n \n Operating System Version\n \n \n \n Operating System Breed\n \n \n \n Mirror\n \n \n \n Mirror Type\n \n \n \n Proxy\n \n \n \n Priority\n \n \n Keep updated?\n Mirror Locally?\n \n \n \n \n \n \n \n \n \n \n Createrepo Flags\n \n \n \n \n \n \n \n \n \n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Operating System Version Operating System Breed Mirror Mirror Type Proxy Priority Keep updated? Mirror Locally? Createrepo Flags @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'RepositoryEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/RepositoryOverviewComponent.html":{"url":"components/RepositoryOverviewComponent.html","title":"component - RepositoryOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n RepositoryOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./repository-overview.component.html\n \n\n\n\n \n styleUrl\n ./repository-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteRepository\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameRepository\n \n \n Private\n retrieveRepositories\n \n \n showRepository\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteRepository\n \n \n \n \n \n \ndeleteRepository(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:136\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameRepository\n \n \n \n \n \n \nrenameRepository(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveRepositories\n \n \n \n \n \n \n \n retrieveRepositories()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showRepository\n \n \n \n \n \n \nshowRepository(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'breed', 'mirror_type', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Repo } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './repository-overview.component.html',\n styleUrl: './repository-overview.component.scss',\n})\nexport class RepositoryOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'breed', 'mirror_type', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveRepositories();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveRepositories(): void {\n this.cobblerApiService\n .get_repos()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showRepository(uid: string, name: string): void {\n this.router.navigate(['/items', 'repository', name]);\n }\n\n renameRepository(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Repository',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the repository\n return;\n }\n this.cobblerApiService\n .get_repo_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (repoHandle) => {\n this.cobblerApiService\n .rename_repo(repoHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveRepositories();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteRepository(uid: string, name: string): void {\n this.cobblerApiService\n .remove_repo(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveRepositories();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n REPOSITORIES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Breed\n {{ element.breed }}\n \n\n \n \n Mirror Type\n {{ element.mirror_type }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'REPOSITORIES Name {{ element.name }} Breed {{ element.breed }} Mirror Type {{ element.mirror_type }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'RepositoryOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SettingsTableRowData.html":{"url":"interfaces/SettingsTableRowData.html","title":"interface - SettingsTableRowData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n SettingsTableRowData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n name\n \n \n \n \n type\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n \n \n type: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AfterViewInit, Component, OnDestroy, ViewChild } from '@angular/core';\nimport { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { MatSort, MatSortModule } from '@angular/material/sort';\nimport { Settings } from '../../../../../cobbler-api/src/lib/custom-types/settings';\nimport { ItemSettingsService } from '../../services/item-settings.service';\nimport { RouterOutlet } from '@angular/router';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\nimport { MatListModule } from '@angular/material/list';\nimport { ViewableTreeComponent } from '../../common/viewable-tree/viewable-tree.component';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatTooltipModule } from '@angular/material/tooltip';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\n\ninterface SettingsTableRowData {\n name: string;\n value: any;\n type: any;\n}\n\n@Component({\n selector: 'cobbler-settings-view',\n templateUrl: './settings-view.component.html',\n styleUrls: ['./settings-view.component.css'],\n\n standalone: true,\n imports: [\n RouterOutlet,\n MatFormFieldModule,\n MatPaginatorModule,\n MatIconModule,\n MatSlideToggleModule,\n MatListModule,\n MatInputModule,\n MatTableModule,\n MatButtonModule,\n ViewableTreeComponent,\n MatTooltipModule,\n MatSortModule,\n ],\n})\nexport class SettingsViewComponent implements AfterViewInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n data = new MatTableDataSource([]);\n displayedColumns: string[] = ['name', 'value', 'actions'];\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(service: ItemSettingsService) {\n service\n .getAll()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((data: Settings) => {\n const settings_data: SettingsTableRowData[] = [];\n for (const key in data) {\n settings_data.push({\n name: key,\n value: data[key],\n type: typeof data[key],\n });\n }\n this.data.data = settings_data;\n });\n }\n\n ngAfterViewInit() {\n this.data.paginator = this.paginator;\n this.data.sort = this.sort;\n }\n\n ngOnDestroy() {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.data.filter = filterValue.trim().toLowerCase();\n\n if (this.data.paginator) {\n this.data.paginator.firstPage();\n }\n }\n\n isArray(input: any): boolean {\n return Array.isArray(input);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SettingsViewComponent.html":{"url":"components/SettingsViewComponent.html","title":"component - SettingsViewComponent","body":"\n \n\n\n\n\n\n Components\n \n SettingsViewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n\n\n\n\n\n \n Implements\n \n \n AfterViewInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-settings-view\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatFormFieldModule\n MatPaginatorModule\n MatIconModule\n MatSlideToggleModule\n MatListModule\n MatInputModule\n MatTableModule\n MatButtonModule\n ViewableTreeComponent\n MatTooltipModule\n MatSortModule\n \n \n\n \n styleUrls\n ./settings-view.component.css\n \n\n\n\n \n templateUrl\n ./settings-view.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n data\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n paginator\n \n \n \n sort\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyFilter\n \n \n isArray\n \n \n ngAfterViewInit\n \n \n ngOnDestroy\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(service: ItemSettingsService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:55\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n service\n \n \n ItemSettingsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n applyFilter\n \n \n \n \n \n \napplyFilter(event: Event)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:84\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n Event\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isArray\n \n \n \n \n \n \nisArray(input: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:93\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n input\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:74\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:79\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n data\n \n \n \n \n \n \n Default value : new MatTableDataSource([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:51\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'value', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { AfterViewInit, Component, OnDestroy, ViewChild } from '@angular/core';\nimport { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { MatSort, MatSortModule } from '@angular/material/sort';\nimport { Settings } from '../../../../../cobbler-api/src/lib/custom-types/settings';\nimport { ItemSettingsService } from '../../services/item-settings.service';\nimport { RouterOutlet } from '@angular/router';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\nimport { MatListModule } from '@angular/material/list';\nimport { ViewableTreeComponent } from '../../common/viewable-tree/viewable-tree.component';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatTooltipModule } from '@angular/material/tooltip';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\n\ninterface SettingsTableRowData {\n name: string;\n value: any;\n type: any;\n}\n\n@Component({\n selector: 'cobbler-settings-view',\n templateUrl: './settings-view.component.html',\n styleUrls: ['./settings-view.component.css'],\n\n standalone: true,\n imports: [\n RouterOutlet,\n MatFormFieldModule,\n MatPaginatorModule,\n MatIconModule,\n MatSlideToggleModule,\n MatListModule,\n MatInputModule,\n MatTableModule,\n MatButtonModule,\n ViewableTreeComponent,\n MatTooltipModule,\n MatSortModule,\n ],\n})\nexport class SettingsViewComponent implements AfterViewInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n data = new MatTableDataSource([]);\n displayedColumns: string[] = ['name', 'value', 'actions'];\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(service: ItemSettingsService) {\n service\n .getAll()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((data: Settings) => {\n const settings_data: SettingsTableRowData[] = [];\n for (const key in data) {\n settings_data.push({\n name: key,\n value: data[key],\n type: typeof data[key],\n });\n }\n this.data.data = settings_data;\n });\n }\n\n ngAfterViewInit() {\n this.data.paginator = this.paginator;\n this.data.sort = this.sort;\n }\n\n ngOnDestroy() {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.data.filter = filterValue.trim().toLowerCase();\n\n if (this.data.paginator) {\n this.data.paginator.firstPage();\n }\n }\n\n isArray(input: any): boolean {\n return Array.isArray(input);\n }\n}\n\n \n\n \n \n \n \n \n \n Settings\n \n \n add\n \n \n \n \n \n \n Filter\n \n \n \n \n \n \n Name\n {{ element.name }}\n \n\n \n \n Value\n \n \n @if (element.type === \"string\" || element.type === \"number\") {\n \"{{ element.value }}\" \n }\n\n \n @if (element.type === \"boolean\") {\n \n \n }\n\n \n @if (isArray(element.value)) {\n \n @for (c of element.value; track c) {\n {{ c }} \n }\n \n }\n\n \n @if (element.type === \"object\" && !isArray(element.value)) {\n \n }\n \n \n\n \n \n Actions\n \n \n \n edit\n \n \n clear_all\n \n \n \n \n\n \n \n\n \n \n \n No data matching the filter \"{{ input.value }}\"\n \n \n \n \n \n \n\n\n \n\n \n \n ./settings-view.component.css\n \n table {\n width: 100%;\n}\n\n.mat-form-field {\n font-size: 14px;\n width: 100%;\n}\n\n.title-table {\n display: table;\n width: 100%;\n}\n\n.title-row {\n display: table-cell;\n width: 100%;\n}\n\n.title-cell-text {\n display: table-cell;\n width: 100%;\n vertical-align: middle;\n}\n\n.title-cell-button {\n display: table-cell;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Settings add Filter Name {{ element.name }} Value @if (element.type === \"string\" || element.type === \"number\") { \"{{ element.value }}\" } @if (element.type === \"boolean\") { } @if (isArray(element.value)) { @for (c of element.value; track c) { {{ c }} } } @if (element.type === \"object\" && !isArray(element.value)) { } Actions edit clear_all No data matching the filter \"{{ input.value }}\" '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SettingsViewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SignaturesComponent.html":{"url":"components/SignaturesComponent.html","title":"component - SignaturesComponent","body":"\n \n\n\n\n\n\n Components\n \n SignaturesComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-signatures\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatTree\n MatTreeNode\n MatIcon\n MatIconButton\n MatTreeNodeToggle\n MatTreeNodePadding\n MatTreeNodeDef\n MatTable\n MatHeaderCell\n MatCell\n MatHeaderRow\n MatRow\n MatColumnDef\n MatHeaderCellDef\n MatCellDef\n MatHeaderRowDef\n MatRowDef\n MatDivider\n AsyncPipe\n MatList\n MatListItem\n MatProgressSpinner\n NgForOf\n NgIf\n \n \n\n\n\n\n \n templateUrl\n ./signatures.component.html\n \n\n\n\n \n styleUrl\n ./signatures.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n _transformer\n \n \n columns\n \n \n dataSource\n \n \n displayedColumns\n \n \n hasChild\n \n \n hasOsVersion\n \n \n Public\n isLoading\n \n \n Private\n ngUnsubscribe\n \n \n treeControl\n \n \n treeFlattener\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n generateSignatureUiData\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n updateSignatures\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:133\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n generateSignatureUiData\n \n \n \n \n \n \ngenerateSignatureUiData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:155\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:145\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:141\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateSignatures\n \n \n \n \n \n \nupdateSignatures()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:186\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n _transformer\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:111\n \n \n\n\n \n \n \n \n \n \n \n \n columns\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:95\n \n \n\n\n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Default value : new MatTreeFlatDataSource(this.treeControl, this.treeFlattener)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:130\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Default value : this.columns.map((c) => c.columnDef)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:108\n \n \n\n\n \n \n \n \n \n \n \n \n hasChild\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:150\n \n \n\n\n \n \n \n \n \n \n \n \n hasOsVersion\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:152\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n isLoading\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:133\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:92\n \n \n\n\n \n \n \n \n \n \n \n \n treeControl\n \n \n \n \n \n \n Default value : new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:119\n \n \n\n\n \n \n \n \n \n \n \n \n treeFlattener\n \n \n \n \n \n \n Default value : new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:124\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:136\n \n \n\n\n \n \n\n\n\n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n Signatures\n \n \n refresh\n \n \n \n\n\n\n\n \n \n \n \n \n {{ node.data }}\n \n \n \n \n \n {{ treeControl.isExpanded(node) ? \"expand_more\" : \"chevron_right\" }}\n \n \n {{ node.data }}\n \n \n \n \n \n @for (column of columns; track column) {\n \n \n {{ column.header }}\n \n \n {{ column.cell(row) }}\n \n \n }\n \n \n \n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Signatures refresh {{ node.data }} {{ treeControl.isExpanded(node) ? \"expand_more\" : \"chevron_right\" }} {{ node.data }} @for (column of columns; track column) { {{ column.header }} {{ column.cell(row) }} } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SignaturesComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SnippetEditComponent.html":{"url":"components/SnippetEditComponent.html","title":"component - SnippetEditComponent","body":"\n \n\n\n\n\n\n Components\n \n SnippetEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./snippet-edit.component.html\n \n\n\n\n \n styleUrl\n ./snippet-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n content\n \n \n isEditMode\n \n \n name\n \n \n snippetFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copySnippet\n \n \n editSnippet\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeSnippet\n \n \n saveSnippet\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:49\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copySnippet\n \n \n \n \n \n \ncopySnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:108\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editSnippet\n \n \n \n \n \n \neditSnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:103\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:65\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeSnippet\n \n \n \n \n \n \nremoveSnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveSnippet\n \n \n \n \n \n \nsaveSnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:113\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n content\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:44\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n snippetFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:46\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n ],\n templateUrl: './snippet-edit.component.html',\n styleUrl: './snippet-edit.component.scss',\n})\nexport class SnippetEditComponent implements OnInit {\n name: string;\n content: string;\n private readonly _formBuilder = inject(FormBuilder);\n snippetFormGroup = this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .read_autoinstall_snippet(this.name, this.userService.token)\n .subscribe(\n (value) => {\n this.content = value;\n this.snippetFormGroup.controls.content.setValue(\n Utils.toHTML(this.content),\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeSnippet(): void {\n this.cobblerApiService\n .remove_autoinstall_snippet(this.name, this.userService.token)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'profile']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editSnippet(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copySnippet(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n saveSnippet(): void {\n // TODO\n this.cobblerApiService\n .write_autoinstall_snippet(this.name, '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Template Content\n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Template Content @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SnippetEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SnippetOverviewComponent.html":{"url":"components/SnippetOverviewComponent.html","title":"component - SnippetOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n SnippetOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./snippet-overview.component.html\n \n\n\n\n \n styleUrl\n ./snippet-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteSnippet\n \n \n editSnippet\n \n \n ngOnInit\n \n \n Private\n retrieveSnippets\n \n \n showSnippet\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:50\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteSnippet\n \n \n \n \n \n \ndeleteSnippet(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:85\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editSnippet\n \n \n \n \n \n \neditSnippet(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:59\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveSnippets\n \n \n \n \n \n \n \n retrieveSnippets()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showSnippet\n \n \n \n \n \n \nshowSnippet(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:77\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:50\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './snippet-overview.component.html',\n styleUrl: './snippet-overview.component.scss',\n})\nexport class SnippetOverviewComponent implements OnInit {\n displayedColumns: string[] = ['name', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {}\n\n ngOnInit(): void {\n this.retrieveSnippets();\n }\n\n private retrieveSnippets(): void {\n this.cobblerApiService\n .get_autoinstall_snippets(this.userService.token)\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showSnippet(name: string): void {\n this.router.navigate(['/items', 'snippet', name]);\n }\n\n editSnippet(name: string): void {\n // TODO\n }\n\n deleteSnippet(name: string): void {\n this.cobblerApiService\n .remove_autoinstall_snippet(name, this.userService.token)\n .subscribe(\n (value) => {\n this.retrieveSnippets();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n SNIPPETS\n\n\n \n \n Name\n {{ element }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'SNIPPETS Name {{ element }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SnippetOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/StatusComponent.html":{"url":"components/StatusComponent.html","title":"component - StatusComponent","body":"\n \n\n\n\n\n\n Components\n \n StatusComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/status/status.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n AfterViewInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-status\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatFormFieldModule\n MatInputModule\n MatTableModule\n MatPaginatorModule\n MatSort\n DatePipe\n \n \n\n\n\n\n \n templateUrl\n ./status.component.html\n \n\n\n\n \n styleUrl\n ./status.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n paginator\n \n \n \n sort\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyFilter\n \n \n ngAfterViewInit\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:53\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n applyFilter\n \n \n \n \n \n \napplyFilter(event: Event)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:80\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n Event\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:75\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:70\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:60\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Default value : new MatTableDataSource(\n [],\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'ip',\n 'objType',\n 'name',\n 'mostRecentStart',\n 'mostRecentStop',\n 'seenStart',\n 'seenStop',\n 'state',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:53\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:56\n \n \n\n\n \n \n\n\n\n\n\n \n import { DatePipe } from '@angular/common';\nimport {\n AfterViewInit,\n Component,\n OnDestroy,\n OnInit,\n ViewChild,\n} from '@angular/core';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { CobblerApiService, InstallationStatus } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\n\n@Component({\n selector: 'cobbler-status',\n standalone: true,\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatTableModule,\n MatPaginatorModule,\n MatSort,\n DatePipe,\n ],\n templateUrl: './status.component.html',\n styleUrl: './status.component.scss',\n})\nexport class StatusComponent implements OnInit, OnDestroy, AfterViewInit {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'ip',\n 'objType',\n 'name',\n 'mostRecentStart',\n 'mostRecentStop',\n 'seenStart',\n 'seenStop',\n 'state',\n ];\n dataSource: MatTableDataSource = new MatTableDataSource(\n [],\n );\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n ) {}\n\n ngOnInit(): void {\n this.cobblerApiService\n .get_status('normal', this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value) => {\n console.log(value);\n this.dataSource.data = value;\n });\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n ngAfterViewInit() {\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.dataSource.filter = filterValue.trim().toLowerCase();\n\n if (this.dataSource.paginator) {\n this.dataSource.paginator.firstPage();\n }\n }\n}\n\n \n\n \n Installation Status\n\n\n Filter\n \n\n\n\n \n \n \n IP\n {{ element.ip }}\n \n\n \n \n Object Type\n \n {{ element.mostRecentTarget.split(\":\")[0] }}\n \n \n\n \n \n Name\n \n {{ element.mostRecentTarget.split(\":\")[1] }}\n \n \n\n \n \n Most Recent Start\n \n {{ element.mostRecentStart * 1000 | date: \"short\" }}\n \n \n\n \n \n Most Recent Stop\n \n {{ element.mostRecentStop * 1000 | date: \"short\" }}\n \n \n\n \n \n Seen Start Counter\n {{ element.seenStop }}\n \n\n \n \n Seen Stop Counter\n {{ element.seenStop }}\n \n\n \n \n State\n {{ element.state }}\n \n\n \n \n\n \n \n \n No data matching the filter \"{{ input.value }}\"\n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Installation Status Filter IP {{ element.ip }} Object Type {{ element.mostRecentTarget.split(\":\")[0] }} Name {{ element.mostRecentTarget.split(\":\")[1] }} Most Recent Start {{ element.mostRecentStart * 1000 | date: \"short\" }} Most Recent Stop {{ element.mostRecentStop * 1000 | date: \"short\" }} Seen Start Counter {{ element.seenStop }} Seen Stop Counter {{ element.seenStop }} State {{ element.state }} No data matching the filter \"{{ input.value }}\" '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'StatusComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SyncComponent.html":{"url":"components/SyncComponent.html","title":"component - SyncComponent","body":"\n \n\n\n\n\n\n Components\n \n SyncComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/sync/sync.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-sync\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatButton\n MatDialogClose\n ReactiveFormsModule\n MatCheckbox\n CommonModule\n MatInput\n MatIconButton\n MatIcon\n MatFormField\n MatPrefix\n MatSuffix\n \n \n\n \n styleUrls\n ./sync.component.css\n \n\n\n\n \n templateUrl\n ./sync.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n Readonly\n fullSync\n \n \n keyValueFA\n \n \n Private\n ngUnsubscribe\n \n \n systemsSync\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addNewKeyValueFG\n \n \n ngOnDestroy\n \n \n removeNewKeyValueFG\n \n \n syncFullSubmit\n \n \n syncSystemsSubmit\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n newKeyValueFG\n \n \n keyValueArrayFGControls\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(cobblerApiService: CobblerApiService, userService: UserService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:72\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addNewKeyValueFG\n \n \n \n \n \n \naddNewKeyValueFG()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:95\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:80\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeNewKeyValueFG\n \n \n \n \n \n \nremoveNewKeyValueFG(index: number)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:99\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n index\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n syncFullSubmit\n \n \n \n \n \n \nsyncFullSubmit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:103\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n syncSystemsSubmit\n \n \n \n \n \n \nsyncSystemsSubmit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:126\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n fullSync\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n fullSyncDhcp: false,\n fullSyncDns: false,\n fullSyncVerbose: false,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n keyValueFA\n \n \n \n \n \n \n Default value : new FormArray([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:67\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n systemsSync\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n keyValue: this.keyValueFA,\n systemsSyncVerbose: false,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:69\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n newKeyValueFG\n \n \n\n \n \n getnewKeyValueFG()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:85\n \n \n\n \n \n \n \n \n \n \n keyValueArrayFGControls\n \n \n\n \n \n getkeyValueArrayFGControls()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:91\n \n \n\n \n \n\n\n\n\n \n import { CommonModule } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n inject,\n OnDestroy,\n} from '@angular/core';\nimport {\n FormArray,\n FormBuilder,\n FormControl,\n FormGroup,\n ReactiveFormsModule,\n Validators,\n} from '@angular/forms';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialogClose } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport {\n MatFormField,\n MatInput,\n MatPrefix,\n MatSuffix,\n} from '@angular/material/input';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { RouterOutlet } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-sync',\n templateUrl: './sync.component.html',\n styleUrls: ['./sync.component.css'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatButton,\n MatDialogClose,\n ReactiveFormsModule,\n MatCheckbox,\n CommonModule,\n MatInput,\n MatIconButton,\n MatIcon,\n MatFormField,\n MatPrefix,\n MatSuffix,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SyncComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n readonly fullSync = this._formBuilder.group({\n fullSyncDhcp: false,\n fullSyncDns: false,\n fullSyncVerbose: false,\n });\n\n keyValueFA = new FormArray([]);\n\n systemsSync = this._formBuilder.group({\n keyValue: this.keyValueFA,\n systemsSyncVerbose: false,\n });\n\n constructor(\n private cobblerApiService: CobblerApiService,\n private userService: UserService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n get newKeyValueFG(): FormGroup {\n return new FormGroup({\n systemName: new FormControl(null, [Validators.required]),\n });\n }\n\n get keyValueArrayFGControls(): FormGroup[] {\n return this.keyValueFA.controls as FormGroup[];\n }\n\n addNewKeyValueFG(): void {\n this.keyValueFA.push(this.newKeyValueFG);\n }\n\n removeNewKeyValueFG(index: number): void {\n this.keyValueFA.removeAt(index);\n }\n\n syncFullSubmit(): void {\n const syncOptions = {\n dhcp: this.fullSync.controls.fullSyncDhcp.value,\n dns: this.fullSync.controls.fullSyncDns.value,\n verbose: this.fullSync.controls.fullSyncVerbose.value,\n };\n this.fullSync.controls.fullSyncDhcp.reset(false);\n this.fullSync.controls.fullSyncDns.reset(false);\n this.fullSync.controls.fullSyncVerbose.reset(false);\n this.cobblerApiService\n .background_sync(syncOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n console.log(value);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n syncSystemsSubmit(): void {\n if (this.systemsSync.invalid) {\n for (let control of this.systemsSync.controls.keyValue.controls) {\n control.markAsTouched();\n }\n this._snackBar.open('Please give all inputs a system name!', 'Close', {\n duration: 2000,\n });\n return;\n }\n let systemNames: Array = [];\n for (let control of this.systemsSync.controls.keyValue.controls) {\n if (control instanceof FormGroup) {\n systemNames.push(control.value.systemName);\n }\n }\n const syncOptions = {\n systems: systemNames,\n verbose: this.systemsSync.controls.systemsSyncVerbose.value,\n };\n this.systemsSync.controls.systemsSyncVerbose.reset(false);\n this.systemsSync.controls.keyValue.reset([]);\n\n this.cobblerApiService\n .background_syncsystems(syncOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n console.log(value);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n \n SYNC\n Full Sync\n \n \n DHCP\n DNS\n Verbose\n \n Sync\n \n Systems Sync\n \n \n @if (keyValueArrayFGControls.length === 0) {\n Sync specific Systems\n }\n @if (keyValueArrayFGControls.length > 0) {\n Add system\n }\n \n @for (fg of keyValueArrayFGControls; track fg; let i = $index) {\n \n \n \n {{ i + 1 }}. \n \n \n remove\n \n @if (\n systemsSync.controls.keyValue.controls[i].hasError(\"required\")\n ) {\n System name is required\n }\n \n \n \n } @empty {\n Syncing All Systems\n }\n Verbose\n \n Sync\n \n\n\n \n\n \n \n ./sync.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' SYNC Full Sync DHCP DNS Verbose Sync Systems Sync @if (keyValueArrayFGControls.length === 0) { Sync specific Systems } @if (keyValueArrayFGControls.length > 0) { Add system } @for (fg of keyValueArrayFGControls; track fg; let i = $index) { {{ i + 1 }}.  remove @if ( systemsSync.controls.keyValue.controls[i].hasError(\"required\") ) { System name is required } } @empty { Syncing All Systems } Verbose Sync '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SyncComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SyncOptions.html":{"url":"interfaces/SyncOptions.html","title":"interface - SyncOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n SyncOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n dhcp\n \n \n \n \n dns\n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n dhcp\n \n \n \n \n \n \n \n \n dhcp: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n dns\n \n \n \n \n \n \n \n \n dns: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n verbose: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SyncSystemsOptions.html":{"url":"interfaces/SyncSystemsOptions.html","title":"interface - SyncSystemsOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n SyncSystemsOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n systems\n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n systems\n \n \n \n \n \n \n \n \n systems: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n verbose: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SystemOverviewComponent.html":{"url":"components/SystemOverviewComponent.html","title":"component - SystemOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n SystemOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./system-overview.component.html\n \n\n\n\n \n styleUrl\n ./system-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteSystem\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameSystem\n \n \n Private\n retrieveSystems\n \n \n showSystem\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteSystem\n \n \n \n \n \n \ndeleteSystem(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:136\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameSystem\n \n \n \n \n \n \nrenameSystem(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveSystems\n \n \n \n \n \n \n \n retrieveSystems()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showSystem\n \n \n \n \n \n \nshowSystem(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'profile', 'image', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, System } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './system-overview.component.html',\n styleUrl: './system-overview.component.scss',\n})\nexport class SystemOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'profile', 'image', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveSystems();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveSystems(): void {\n this.cobblerApiService\n .get_systems()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showSystem(uid: string, name: string): void {\n this.router.navigate(['/items', 'system', name]);\n }\n\n renameSystem(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'System',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the system\n return;\n }\n this.cobblerApiService\n .get_system_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (systemHandle) => {\n this.cobblerApiService\n .rename_system(systemHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveSystems();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteSystem(uid: string, name: string): void {\n this.cobblerApiService\n .remove_system(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveSystems();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n SYSTEMS\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Profile\n {{ element.profile }}\n \n\n \n \n Image\n {{ element.image }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'SYSTEMS Name {{ element.name }} Profile {{ element.profile }} Image {{ element.image }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SystemOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/TableRow.html":{"url":"interfaces/TableRow.html","title":"interface - TableRow","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n TableRow\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n key\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n key\n \n \n \n \n \n \n \n \n key: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TemplateEditComponent.html":{"url":"components/TemplateEditComponent.html","title":"component - TemplateEditComponent","body":"\n \n\n\n\n\n\n Components\n \n TemplateEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./template-edit.component.html\n \n\n\n\n \n styleUrl\n ./template-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n content\n \n \n isEditMode\n \n \n name\n \n \n templateFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyTemplate\n \n \n editTemplate\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeTemplate\n \n \n saveTemplate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:49\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyTemplate\n \n \n \n \n \n \ncopyTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:108\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editTemplate\n \n \n \n \n \n \neditTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:103\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:65\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeTemplate\n \n \n \n \n \n \nremoveTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveTemplate\n \n \n \n \n \n \nsaveTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:113\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n content\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:44\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n templateFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:46\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n ],\n templateUrl: './template-edit.component.html',\n styleUrl: './template-edit.component.scss',\n})\nexport class TemplateEditComponent implements OnInit {\n name: string;\n content: string;\n private readonly _formBuilder = inject(FormBuilder);\n templateFormGroup = this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .read_autoinstall_template(this.name, this.userService.token)\n .subscribe(\n (value) => {\n this.content = value;\n this.templateFormGroup.controls.content.setValue(\n Utils.toHTML(this.content),\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeTemplate(): void {\n this.cobblerApiService\n .remove_autoinstall_template(this.name, this.userService.token)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'template']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editTemplate(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyTemplate(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n saveTemplate(): void {\n // TODO\n this.cobblerApiService\n .write_autoinstall_template(this.name, '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Template Content\n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Template Content @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'TemplateEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TemplateOverviewComponent.html":{"url":"components/TemplateOverviewComponent.html","title":"component - TemplateOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n TemplateOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./template-overview.component.html\n \n\n\n\n \n styleUrl\n ./template-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteTemplate\n \n \n editTemplate\n \n \n ngOnInit\n \n \n Private\n retrieveDistros\n \n \n showTemplate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:50\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteTemplate\n \n \n \n \n \n \ndeleteTemplate(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:85\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editTemplate\n \n \n \n \n \n \neditTemplate(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:59\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveDistros\n \n \n \n \n \n \n \n retrieveDistros()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showTemplate\n \n \n \n \n \n \nshowTemplate(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:77\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:50\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './template-overview.component.html',\n styleUrl: './template-overview.component.scss',\n})\nexport class TemplateOverviewComponent implements OnInit {\n displayedColumns: string[] = ['name', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {}\n\n ngOnInit(): void {\n this.retrieveDistros();\n }\n\n private retrieveDistros(): void {\n this.cobblerApiService\n .get_autoinstall_templates(this.userService.token)\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showTemplate(name: string): void {\n this.router.navigate(['/items', 'template', name]);\n }\n\n editTemplate(name: string): void {\n // TODO\n }\n\n deleteTemplate(name: string): void {\n this.cobblerApiService\n .remove_autoinstall_template(name, this.userService.token)\n .subscribe(\n (value) => {\n this.retrieveDistros();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n TEMPLATES\n\n\n \n \n Name\n {{ element }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'TEMPLATES Name {{ element }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'TemplateOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/UnauthorizedComponent.html":{"url":"components/UnauthorizedComponent.html","title":"component - UnauthorizedComponent","body":"\n \n\n\n\n\n\n Components\n \n UnauthorizedComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/unauthorized/unauthorized.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-unauthorized\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterLink\n \n \n\n \n styleUrls\n ./unauthorized.component.css\n \n\n\n\n \n templateUrl\n ./unauthorized.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/unauthorized/unauthorized.component.ts:11\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { RouterLink } from '@angular/router';\n\n@Component({\n selector: 'cobbler-unauthorized',\n templateUrl: './unauthorized.component.html',\n styleUrls: ['./unauthorized.component.css'],\n standalone: true,\n imports: [RouterLink],\n})\nexport class UnauthorizedComponent {\n constructor() {}\n}\n\n \n\n \n \n You are not authorized to continue.\n Please Log in.\n Login\n\n\n \n\n \n \n ./unauthorized.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' You are not authorized to continue. Please Log in. Login'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'UnauthorizedComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UserService.html":{"url":"injectables/UserService.html","title":"injectable - UserService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UserService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/user.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n _active\n \n \n Private\n _roles\n \n \n Private\n _token\n \n \n Private\n _username\n \n \n authorized\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n changeAuthorizedState\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n username\n \n \n token\n \n \n active\n \n \n roles\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:14\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n changeAuthorizedState\n \n \n \n \n \n \nchangeAuthorizedState(authorized: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:62\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n authorized\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n _active\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n _roles\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n _token\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n _username\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n authorized\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:14\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n\n \n \n getserver()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:25\n \n \n\n \n \n setserver(url: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:33\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n username\n \n \n\n \n \n getusername()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:37\n \n \n\n \n \n setusername(name: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:49\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n token\n \n \n\n \n \n gettoken()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:41\n \n \n\n \n \n settoken(token: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:45\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n token\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n active\n \n \n\n\n \n \n setactive(bool: boolean)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:54\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n bool\n \n \n boolean\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n roles\n \n \n\n \n \n getroles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:58\n \n \n\n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\n\nconst COBBLER_URL_KEY_NAME = 'COBBLER_URL';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class UserService {\n private _username: string;\n private _token: string;\n private _active: boolean;\n private _roles: [];\n authorized: BehaviorSubject;\n\n constructor() {\n // Apply https://stackoverflow.com/a/50067730/4730773 to this service\n this._username = 'unknown user';\n this._token = '';\n this._active = false;\n this.authorized = new BehaviorSubject(false);\n this._roles = [];\n }\n\n get server(): string {\n const server_value = localStorage.getItem(COBBLER_URL_KEY_NAME);\n if (server_value) {\n return server_value;\n }\n return 'http://localhost/cobbler_api';\n }\n\n set server(url: string) {\n window.localStorage.setItem(COBBLER_URL_KEY_NAME, url);\n }\n\n get username(): string {\n return this._username;\n }\n\n get token(): string {\n return this._token;\n }\n\n set token(token: string) {\n this._token = token;\n }\n\n set username(name: string) {\n this._username = name;\n this._token = '';\n }\n\n set active(bool: boolean) {\n this._active = bool;\n }\n\n get roles(): any[] {\n return this._roles;\n }\n\n changeAuthorizedState(authorized: boolean) {\n this.authorized.next(authorized);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Utils.html":{"url":"classes/Utils.html","title":"class - Utils","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Utils\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/utils.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n toHTML\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n toHTML\n \n \n \n \n \n \n \n toHTML(input: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/utils.ts:2\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n input\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export default class Utils {\n static toHTML(input: string): any {\n return new DOMParser().parseFromString(input, 'text/html').documentElement\n .textContent;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/V3_3_1.html":{"url":"interfaces/V3_3_1.html","title":"interface - V3_3_1","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n V3_3_1\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n\n\n\n\n\n\n\n \n\n\n \n export type Settings = V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0;\n\nexport interface V3_3_1 {\n // TODO\n}\n\nexport interface V3_3_2 {\n // TODO\n}\n\nexport interface V3_3_3 {\n auto_migrate_settings: boolean;\n allow_duplicate_hostnames: boolean;\n allow_duplicate_ips: boolean;\n allow_duplicate_macs: boolean;\n allow_dynamic_settings: boolean;\n always_write_dhcp_entries: boolean;\n anamon_enabled: boolean;\n auth_token_expiration: number;\n authn_pam_service: string;\n autoinstall_snippets_dir: string;\n autoinstall_templates_dir: string;\n bind_chroot_path: string;\n bind_zonefile_path: string;\n bind_master: string;\n boot_loader_conf_template_dir: string;\n bootloaders_dir?: string;\n bootloaders_formats?: object;\n bootloaders_modules?: Array;\n bootloaders_shim_folder?: string;\n bootloaders_shim_file?: string;\n bootloaders_ipxe_folder?: string;\n syslinux_dir?: string;\n syslinux_memdisk_folder?: string;\n syslinux_pxelinux_folder?: string;\n grub2_mod_dir?: string;\n grubconfig_dir?: string;\n build_reporting_enabled: boolean;\n build_reporting_email: Array;\n build_reporting_ignorelist: Array;\n build_reporting_sender: string;\n build_reporting_smtp_server: string;\n build_reporting_subject: string;\n buildisodir?: string;\n cheetah_import_whitelist?: string;\n client_use_https: boolean;\n client_use_localhost: boolean;\n cobbler_master?: string;\n convert_server_to_ip?: boolean;\n createrepo_flags: string;\n autoinstall: string;\n default_name_servers: Array;\n default_name_servers_search: Array;\n default_ownership: Array;\n default_password_crypted: string;\n default_template_type: string;\n default_virt_bridge: string;\n default_virt_disk_driver?: string;\n default_virt_file_size: number;\n default_virt_ram: number;\n default_virt_type: string;\n enable_ipxe: boolean;\n enable_menu: boolean;\n http_port: number;\n include: Array;\n iso_template_dir?: string;\n jinja2_includedir?: string;\n kernel_options: object;\n ldap_anonymous_bind?: boolean;\n ldap_base_dn?: string;\n ldap_port?: number;\n ldap_search_bind_dn?: string;\n ldap_search_passwd?: string;\n ldap_search_prefix?: string;\n ldap_server?: string;\n ldap_tls?: boolean;\n ldap_tls_cacertdir?: string;\n ldap_tls_cacertfile?: string;\n ldap_tls_certfile?: string;\n ldap_tls_keyfile?: string;\n ldap_tls_reqcert?: string;\n ldap_tls_cipher_suite?: string;\n bind_manage_ipmi?: boolean;\n manage_dhcp: boolean;\n manage_dhcp_v4: boolean;\n manage_dhcp_v6: boolean;\n manage_dns: boolean;\n manage_forward_zones: Array;\n manage_reverse_zones: Array;\n manage_genders?: boolean;\n manage_rsync: boolean;\n manage_tftpd: boolean;\n mgmt_classes: Array;\n mgmt_parameters: object;\n next_server_v4: string;\n next_server_v6: string;\n nsupdate_enabled?: boolean;\n nsupdate_log?: string;\n nsupdate_tsig_algorithm?: string;\n nsupdate_tsig_key?: Array;\n power_management_default_type: string;\n proxies?: Array;\n proxy_url_ext: string;\n proxy_url_int: string;\n puppet_auto_setup: boolean;\n puppet_parameterized_classes?: boolean;\n puppet_server?: string;\n puppet_version?: number;\n puppetca_path: string;\n pxe_just_once: boolean;\n nopxe_with_triggers: boolean;\n redhat_management_permissive: boolean;\n redhat_management_server: string;\n redhat_management_key: string;\n register_new_installs: boolean;\n remove_old_puppet_certs_automatically: boolean;\n replicate_repo_rsync_options: string;\n replicate_rsync_options: string;\n reposync_flags: string;\n reposync_rsync_flags: string;\n restart_dhcp: boolean;\n restart_dns: boolean;\n run_install_triggers: boolean;\n scm_track_enabled: boolean;\n scm_track_mode: string;\n scm_track_author: string;\n scm_push_script: string;\n serializer_pretty_json: boolean;\n server: string;\n sign_puppet_certs_automatically: boolean;\n signature_path?: string;\n signature_url?: string;\n tftpboot_location: string;\n virt_auto_boot: boolean;\n webdir: string;\n webdir_whitelist: Array;\n xmlrpc_port: number;\n yum_distro_priority: number;\n yum_post_install_mirror: boolean;\n yumdownloader_flags: string;\n windows_enabled?: boolean;\n windows_template_dir?: string;\n samba_distro_share?: string;\n}\n\nexport interface V3_4_0 {\n // TODO\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/V3_3_2.html":{"url":"interfaces/V3_3_2.html","title":"interface - V3_3_2","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n V3_3_2\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n\n\n\n\n\n\n\n \n\n\n \n export type Settings = V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0;\n\nexport interface V3_3_1 {\n // TODO\n}\n\nexport interface V3_3_2 {\n // TODO\n}\n\nexport interface V3_3_3 {\n auto_migrate_settings: boolean;\n allow_duplicate_hostnames: boolean;\n allow_duplicate_ips: boolean;\n allow_duplicate_macs: boolean;\n allow_dynamic_settings: boolean;\n always_write_dhcp_entries: boolean;\n anamon_enabled: boolean;\n auth_token_expiration: number;\n authn_pam_service: string;\n autoinstall_snippets_dir: string;\n autoinstall_templates_dir: string;\n bind_chroot_path: string;\n bind_zonefile_path: string;\n bind_master: string;\n boot_loader_conf_template_dir: string;\n bootloaders_dir?: string;\n bootloaders_formats?: object;\n bootloaders_modules?: Array;\n bootloaders_shim_folder?: string;\n bootloaders_shim_file?: string;\n bootloaders_ipxe_folder?: string;\n syslinux_dir?: string;\n syslinux_memdisk_folder?: string;\n syslinux_pxelinux_folder?: string;\n grub2_mod_dir?: string;\n grubconfig_dir?: string;\n build_reporting_enabled: boolean;\n build_reporting_email: Array;\n build_reporting_ignorelist: Array;\n build_reporting_sender: string;\n build_reporting_smtp_server: string;\n build_reporting_subject: string;\n buildisodir?: string;\n cheetah_import_whitelist?: string;\n client_use_https: boolean;\n client_use_localhost: boolean;\n cobbler_master?: string;\n convert_server_to_ip?: boolean;\n createrepo_flags: string;\n autoinstall: string;\n default_name_servers: Array;\n default_name_servers_search: Array;\n default_ownership: Array;\n default_password_crypted: string;\n default_template_type: string;\n default_virt_bridge: string;\n default_virt_disk_driver?: string;\n default_virt_file_size: number;\n default_virt_ram: number;\n default_virt_type: string;\n enable_ipxe: boolean;\n enable_menu: boolean;\n http_port: number;\n include: Array;\n iso_template_dir?: string;\n jinja2_includedir?: string;\n kernel_options: object;\n ldap_anonymous_bind?: boolean;\n ldap_base_dn?: string;\n ldap_port?: number;\n ldap_search_bind_dn?: string;\n ldap_search_passwd?: string;\n ldap_search_prefix?: string;\n ldap_server?: string;\n ldap_tls?: boolean;\n ldap_tls_cacertdir?: string;\n ldap_tls_cacertfile?: string;\n ldap_tls_certfile?: string;\n ldap_tls_keyfile?: string;\n ldap_tls_reqcert?: string;\n ldap_tls_cipher_suite?: string;\n bind_manage_ipmi?: boolean;\n manage_dhcp: boolean;\n manage_dhcp_v4: boolean;\n manage_dhcp_v6: boolean;\n manage_dns: boolean;\n manage_forward_zones: Array;\n manage_reverse_zones: Array;\n manage_genders?: boolean;\n manage_rsync: boolean;\n manage_tftpd: boolean;\n mgmt_classes: Array;\n mgmt_parameters: object;\n next_server_v4: string;\n next_server_v6: string;\n nsupdate_enabled?: boolean;\n nsupdate_log?: string;\n nsupdate_tsig_algorithm?: string;\n nsupdate_tsig_key?: Array;\n power_management_default_type: string;\n proxies?: Array;\n proxy_url_ext: string;\n proxy_url_int: string;\n puppet_auto_setup: boolean;\n puppet_parameterized_classes?: boolean;\n puppet_server?: string;\n puppet_version?: number;\n puppetca_path: string;\n pxe_just_once: boolean;\n nopxe_with_triggers: boolean;\n redhat_management_permissive: boolean;\n redhat_management_server: string;\n redhat_management_key: string;\n register_new_installs: boolean;\n remove_old_puppet_certs_automatically: boolean;\n replicate_repo_rsync_options: string;\n replicate_rsync_options: string;\n reposync_flags: string;\n reposync_rsync_flags: string;\n restart_dhcp: boolean;\n restart_dns: boolean;\n run_install_triggers: boolean;\n scm_track_enabled: boolean;\n scm_track_mode: string;\n scm_track_author: string;\n scm_push_script: string;\n serializer_pretty_json: boolean;\n server: string;\n sign_puppet_certs_automatically: boolean;\n signature_path?: string;\n signature_url?: string;\n tftpboot_location: string;\n virt_auto_boot: boolean;\n webdir: string;\n webdir_whitelist: Array;\n xmlrpc_port: number;\n yum_distro_priority: number;\n yum_post_install_mirror: boolean;\n yumdownloader_flags: string;\n windows_enabled?: boolean;\n windows_template_dir?: string;\n samba_distro_share?: string;\n}\n\nexport interface V3_4_0 {\n // TODO\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/V3_4_0.html":{"url":"interfaces/V3_4_0.html","title":"interface - V3_4_0","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n V3_4_0\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n\n\n\n\n\n\n\n \n\n\n \n export type Settings = V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0;\n\nexport interface V3_3_1 {\n // TODO\n}\n\nexport interface V3_3_2 {\n // TODO\n}\n\nexport interface V3_3_3 {\n auto_migrate_settings: boolean;\n allow_duplicate_hostnames: boolean;\n allow_duplicate_ips: boolean;\n allow_duplicate_macs: boolean;\n allow_dynamic_settings: boolean;\n always_write_dhcp_entries: boolean;\n anamon_enabled: boolean;\n auth_token_expiration: number;\n authn_pam_service: string;\n autoinstall_snippets_dir: string;\n autoinstall_templates_dir: string;\n bind_chroot_path: string;\n bind_zonefile_path: string;\n bind_master: string;\n boot_loader_conf_template_dir: string;\n bootloaders_dir?: string;\n bootloaders_formats?: object;\n bootloaders_modules?: Array;\n bootloaders_shim_folder?: string;\n bootloaders_shim_file?: string;\n bootloaders_ipxe_folder?: string;\n syslinux_dir?: string;\n syslinux_memdisk_folder?: string;\n syslinux_pxelinux_folder?: string;\n grub2_mod_dir?: string;\n grubconfig_dir?: string;\n build_reporting_enabled: boolean;\n build_reporting_email: Array;\n build_reporting_ignorelist: Array;\n build_reporting_sender: string;\n build_reporting_smtp_server: string;\n build_reporting_subject: string;\n buildisodir?: string;\n cheetah_import_whitelist?: string;\n client_use_https: boolean;\n client_use_localhost: boolean;\n cobbler_master?: string;\n convert_server_to_ip?: boolean;\n createrepo_flags: string;\n autoinstall: string;\n default_name_servers: Array;\n default_name_servers_search: Array;\n default_ownership: Array;\n default_password_crypted: string;\n default_template_type: string;\n default_virt_bridge: string;\n default_virt_disk_driver?: string;\n default_virt_file_size: number;\n default_virt_ram: number;\n default_virt_type: string;\n enable_ipxe: boolean;\n enable_menu: boolean;\n http_port: number;\n include: Array;\n iso_template_dir?: string;\n jinja2_includedir?: string;\n kernel_options: object;\n ldap_anonymous_bind?: boolean;\n ldap_base_dn?: string;\n ldap_port?: number;\n ldap_search_bind_dn?: string;\n ldap_search_passwd?: string;\n ldap_search_prefix?: string;\n ldap_server?: string;\n ldap_tls?: boolean;\n ldap_tls_cacertdir?: string;\n ldap_tls_cacertfile?: string;\n ldap_tls_certfile?: string;\n ldap_tls_keyfile?: string;\n ldap_tls_reqcert?: string;\n ldap_tls_cipher_suite?: string;\n bind_manage_ipmi?: boolean;\n manage_dhcp: boolean;\n manage_dhcp_v4: boolean;\n manage_dhcp_v6: boolean;\n manage_dns: boolean;\n manage_forward_zones: Array;\n manage_reverse_zones: Array;\n manage_genders?: boolean;\n manage_rsync: boolean;\n manage_tftpd: boolean;\n mgmt_classes: Array;\n mgmt_parameters: object;\n next_server_v4: string;\n next_server_v6: string;\n nsupdate_enabled?: boolean;\n nsupdate_log?: string;\n nsupdate_tsig_algorithm?: string;\n nsupdate_tsig_key?: Array;\n power_management_default_type: string;\n proxies?: Array;\n proxy_url_ext: string;\n proxy_url_int: string;\n puppet_auto_setup: boolean;\n puppet_parameterized_classes?: boolean;\n puppet_server?: string;\n puppet_version?: number;\n puppetca_path: string;\n pxe_just_once: boolean;\n nopxe_with_triggers: boolean;\n redhat_management_permissive: boolean;\n redhat_management_server: string;\n redhat_management_key: string;\n register_new_installs: boolean;\n remove_old_puppet_certs_automatically: boolean;\n replicate_repo_rsync_options: string;\n replicate_rsync_options: string;\n reposync_flags: string;\n reposync_rsync_flags: string;\n restart_dhcp: boolean;\n restart_dns: boolean;\n run_install_triggers: boolean;\n scm_track_enabled: boolean;\n scm_track_mode: string;\n scm_track_author: string;\n scm_push_script: string;\n serializer_pretty_json: boolean;\n server: string;\n sign_puppet_certs_automatically: boolean;\n signature_path?: string;\n signature_url?: string;\n tftpboot_location: string;\n virt_auto_boot: boolean;\n webdir: string;\n webdir_whitelist: Array;\n xmlrpc_port: number;\n yum_distro_priority: number;\n yum_post_install_mirror: boolean;\n yumdownloader_flags: string;\n windows_enabled?: boolean;\n windows_template_dir?: string;\n samba_distro_share?: string;\n}\n\nexport interface V3_4_0 {\n // TODO\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ValidateAutoinstallsComponent.html":{"url":"components/ValidateAutoinstallsComponent.html","title":"component - ValidateAutoinstallsComponent","body":"\n \n\n\n\n\n\n Components\n \n ValidateAutoinstallsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-validate-autoinstalls\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./validate-autoinstalls.component.html\n \n\n\n\n \n styleUrl\n ./validate-autoinstalls.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runValidateAutoinstalls\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runValidateAutoinstalls\n \n \n \n \n \n \nrunValidateAutoinstalls()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnDestroy } from '@angular/core';\nimport { MatButton } from '@angular/material/button';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-validate-autoinstalls',\n standalone: true,\n imports: [MatButton],\n templateUrl: './validate-autoinstalls.component.html',\n styleUrl: './validate-autoinstalls.component.scss',\n})\nexport class ValidateAutoinstallsComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runValidateAutoinstalls(): void {\n this.cobblerApiService\n .background_validate_autoinstall_files(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n VALIDATE AUTOINSTALLS\n\nRun\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'VALIDATE AUTOINSTALLSRun'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ValidateAutoinstallsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Version.html":{"url":"interfaces/Version.html","title":"interface - Version","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Version\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n major\n \n \n \n \n minor\n \n \n \n \n patch\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n major\n \n \n \n \n \n \n \n \n major: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n minor\n \n \n \n \n \n \n \n \n minor: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n patch\n \n \n \n \n \n \n \n \n patch: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ViewableTreeComponent.html":{"url":"components/ViewableTreeComponent.html","title":"component - ViewableTreeComponent","body":"\n \n\n\n\n\n\n Components\n \n ViewableTreeComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-viewable-tree\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatTreeModule\n MatButtonModule\n MatIconModule\n \n \n\n \n styleUrls\n ./viewable-tree.component.scss\n \n\n\n\n \n templateUrl\n ./viewable-tree.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n _transformer\n \n \n dataSource\n \n \n hasChild\n \n \n treeFlattener\n \n \n viewableTreeControl\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n inputLength\n \n \n ngOnInit\n \n \n Private\n transformObject\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n inputObject\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:63\n \n \n\n \n \n\n\n \n Inputs\n \n \n \n \n \n inputObject\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:36\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n inputLength\n \n \n \n \n \n \ninputLength(inputObject: object)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:67\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n inputObject\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:90\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n transformObject\n \n \n \n \n \n \n \n transformObject(inputObject: object)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n inputObject\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : ObjectNode[]\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n _transformer\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Default value : new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n hasChild\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n treeFlattener\n \n \n \n \n \n \n Default value : new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:51\n \n \n\n\n \n \n \n \n \n \n \n \n viewableTreeControl\n \n \n \n \n \n \n Default value : new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:37\n \n \n\n\n \n \n\n\n\n\n\n \n import { FlatTreeControl } from '@angular/cdk/tree';\nimport { Component, Input, OnInit } from '@angular/core';\nimport {\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeModule,\n} from '@angular/material/tree';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface ObjectNode {\n name: string;\n value: any;\n children?: ObjectNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-viewable-tree',\n templateUrl: './viewable-tree.component.html',\n styleUrls: ['./viewable-tree.component.scss'],\n standalone: true,\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n})\nexport class ViewableTreeComponent implements OnInit {\n @Input() inputObject: object = {};\n viewableTreeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n private _transformer = (node: ObjectNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n value: node.value,\n level: level,\n };\n };\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n );\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n constructor() {}\n\n inputLength(inputObject: object): number {\n return Object.keys(inputObject).length;\n }\n\n private transformObject(inputObject: object): ObjectNode[] {\n const resultStructure = [];\n let children = [];\n Object.keys(inputObject).forEach((key) => {\n if (\n !Array.isArray(inputObject[key]) &&\n typeof inputObject[key] === 'object'\n ) {\n children = this.transformObject(inputObject[key]);\n }\n resultStructure.push({\n name: key,\n value: inputObject[key],\n children: children,\n });\n });\n return resultStructure;\n }\n\n ngOnInit(): void {\n this.dataSource.data = this.transformObject(this.inputObject);\n }\n}\n\n \n\n \n @if (inputLength(inputObject) > 0) {\n \n \n \n \n \n {{ node.name }}: {{ node.value }}\n \n \n \n \n \n {{\n viewableTreeControl.isExpanded(node)\n ? \"expand_more\"\n : \"chevron_right\"\n }}\n \n \n {{ node.name }}\n \n \n}\n@if (inputLength(inputObject) === 0) {\n { } \n}\n\n \n\n \n \n ./viewable-tree.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = '@if (inputLength(inputObject) > 0) { {{ node.name }}: {{ node.value }} {{ viewableTreeControl.isExpanded(node) ? \"expand_more\" : \"chevron_right\" }} {{ node.name }} }@if (inputLength(inputObject) === 0) { { } }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ViewableTreeComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/XmlRpcArray.html":{"url":"interfaces/XmlRpcArray.html","title":"interface - XmlRpcArray","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n XmlRpcArray\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n data: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/XmlRpcStruct.html":{"url":"interfaces/XmlRpcStruct.html","title":"interface - XmlRpcStruct","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n XmlRpcStruct\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n members\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n members\n \n \n \n \n \n \n \n \n members: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"contributing.html":{"url":"contributing.html","title":"getting-started - contributing","body":"\n \n\nContributing\nPlease use our GitHub Wiki or our\ndocumentation for Cobbler-Web to get started on your contributions.\nIf you need personal help please contact SchoolGuy to get started with contributing.\nFor any opinions, feedback or other topics to discuss please use GitHub Discussions.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n projects/cobbler-api/src/lib/cobbler-api.service.ts\n \n injectable\n CobblerApiService\n \n 0 %\n (0/187)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Distro\n \n 0 %\n (0/27)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n File\n \n 0 %\n (0/21)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Image\n \n 0 %\n (0/31)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Item\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Mgmgtclass\n \n 0 %\n (0/19)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n NetworkInterface\n \n 0 %\n (0/24)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Package\n \n 0 %\n (0/22)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Profile\n \n 0 %\n (0/38)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Repo\n \n 0 %\n (0/30)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n System\n \n 0 %\n (0/52)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundAclSetupOptions\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundBuildisoOptions\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundImportOptions\n \n 0 %\n (0/9)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundPowerSystem\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundReplicateOptions\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundReposyncOptions\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n Event\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n ExtendedVersion\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n InstallationStatus\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n PageInfo\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n PagesItemsResult\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n RegisterOptions\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n SyncOptions\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n SyncSystemsOptions\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n Version\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_3_1\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_3_2\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_3_3\n \n 0 %\n (0/133)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_4_0\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n interface\n DistroSignatureOsVersion\n \n 0 %\n (0/17)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n interface\n DistroSignatures\n \n 50 %\n (1/2)\n \n \n \n \n \n projects/cobbler-api/src/lib/lib.config.ts\n \n variable\n COBBLER_URL\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/lib.config.ts\n \n variable\n cobblerUrlFactory\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-frontend/e2e/src/app.po.ts\n \n class\n AppPage\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts\n \n component\n BuildISOComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts\n \n component\n CheckSysComponent\n \n 0 %\n (0/9)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts\n \n component\n HardlinkComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts\n \n component\n ImportDVDComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts\n \n component\n MkloadersComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts\n \n component\n ReplicateComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts\n \n component\n RepoSyncComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/status/status.component.ts\n \n component\n StatusComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/sync/sync.component.ts\n \n component\n SyncComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts\n \n component\n ValidateAutoinstallsComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/app-events/app-events.component.ts\n \n component\n AppEventsComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/appManage/app-manage.component.ts\n \n component\n AppManageComponent\n \n 0 %\n (0/7)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n \n component\n DialogBoxTextConfirmComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n \n interface\n DialogData\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n \n component\n DialogItemRenameComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n \n interface\n DialogItemRenameData\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n \n component\n DialogTextInputComponent\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n \n interface\n DialogTextInputData\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts\n \n component\n KeyValueEditorComponent\n \n 0 %\n (0/19)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts\n \n component\n MultiSelectComponent\n \n 0 %\n (0/20)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n component\n ViewableTreeComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n interface\n ExampleFlatNode\n \n 25 %\n (1/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n interface\n ObjectNode\n \n 25 %\n (1/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts\n \n component\n DistroEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts\n \n component\n DistrosOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts\n \n component\n FileEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts\n \n component\n FileOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts\n \n component\n ImageEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts\n \n component\n ImageOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts\n \n component\n ManagementClassEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts\n \n component\n ManagementClassOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts\n \n component\n PackageEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts\n \n component\n PackageOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts\n \n component\n ProfileEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts\n \n component\n ProfileOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts\n \n component\n RepositoryEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts\n \n component\n RepositoryOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts\n \n component\n SnippetEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts\n \n component\n SnippetOverviewComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/system/edit/system-edit.component.ts\n \n component\n SystemEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts\n \n component\n SystemOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts\n \n component\n TemplateEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts\n \n component\n TemplateOverviewComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/login/login.component.ts\n \n component\n LogInFormComponent\n \n 0 %\n (0/16)\n \n \n \n \n \n projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts\n \n component\n ManageMenuComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/navbar/navbar.component.ts\n \n component\n NavbarComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/not-found/not-found.component.ts\n \n component\n NotFoundComponent\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/auth-guard.service.ts\n \n injectable\n AuthGuardService\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/get-obj.service.ts\n \n injectable\n GetObjService\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/item-settings.service.ts\n \n injectable\n ItemSettingsService\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/user.service.ts\n \n injectable\n UserService\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/user.service.ts\n \n variable\n COBBLER_URL_KEY_NAME\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n \n component\n SettingsViewComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n \n interface\n SettingsTableRowData\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n component\n SignaturesComponent\n \n 0 %\n (0/17)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n interface\n OsBreedFlatNode\n \n 25 %\n (1/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n interface\n OsNode\n \n 33 %\n (1/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n interface\n TableRow\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/unauthorized/unauthorized.component.ts\n \n component\n UnauthorizedComponent\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/utils.ts\n \n class\n Utils\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/environments/environment.prod.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-frontend/src/environments/environment.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/constants.ts\n \n variable\n applicationError\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/date_formatter.ts\n \n class\n DateFormatter\n \n 64 %\n (9/14)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertArray\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertDomToObject\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertFault\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertMember\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertMethodResponse\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertName\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertParam\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertParams\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertStruct\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertValue\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n deserialize\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n deserializeResponse\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendArray\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendBoolean\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendBuffer\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendDatetime\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendNumber\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendString\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendStruct\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n arrayBufferToBase64\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n serializeMethodCall\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n serializeValue\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n injectable\n AngularXmlrpcService\n \n 18 %\n (2/11)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n variable\n BODY\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n variable\n TEXT\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n Member\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n MethodFault\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n Param\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n XmlRpcArray\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n XmlRpcStruct\n \n 0 %\n (0/2)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : ^17.3.12\n \n @angular/cdk : ^17.3.9\n \n @angular/common : ^17.3.12\n \n @angular/compiler : ^17.3.12\n \n @angular/core : ^17.3.12\n \n @angular/forms : ^17.3.12\n \n @angular/material : ^17.3.10\n \n @angular/platform-browser : ^17.3.12\n \n @angular/platform-browser-dynamic : ^17.3.12\n \n @angular/router : ^17.3.12\n \n rxjs : ~6.6.6\n \n stream : 0.0.2\n \n timers : ^0.1.1\n \n tslib : ^2.6.3\n \n xmlbuilder2 : ^2.4.1\n \n zone.js : ^0.14.7\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n appendArray   (projects/.../serializer.ts)\n \n \n appendBoolean   (projects/.../serializer.ts)\n \n \n appendBuffer   (projects/.../serializer.ts)\n \n \n appendDatetime   (projects/.../serializer.ts)\n \n \n appendNumber   (projects/.../serializer.ts)\n \n \n appendString   (projects/.../serializer.ts)\n \n \n appendStruct   (projects/.../serializer.ts)\n \n \n arrayBufferToBase64   (projects/.../serializer.ts)\n \n \n convertArray   (projects/.../deserializer.ts)\n \n \n convertDomToObject   (projects/.../deserializer.ts)\n \n \n convertFault   (projects/.../deserializer.ts)\n \n \n convertMember   (projects/.../deserializer.ts)\n \n \n convertMethodResponse   (projects/.../deserializer.ts)\n \n \n convertName   (projects/.../deserializer.ts)\n \n \n convertParam   (projects/.../deserializer.ts)\n \n \n convertParams   (projects/.../deserializer.ts)\n \n \n convertStruct   (projects/.../deserializer.ts)\n \n \n convertValue   (projects/.../deserializer.ts)\n \n \n deserialize   (projects/.../deserializer.ts)\n \n \n deserializeResponse   (projects/.../deserializer.ts)\n \n \n serializeMethodCall   (projects/.../serializer.ts)\n \n \n serializeValue   (projects/.../serializer.ts)\n \n \n \n \n \n \n\n\n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n \n \n \n \n \n \n appendArray\n \n \n \n \n \n \nappendArray(value: XmlRpcArray, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n XmlRpcArray\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendBoolean\n \n \n \n \n \n \nappendBoolean(value: boolean, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n This method appends to a node a boolean in XMLRPC style. This means that true is converted to 1 and false is\nconverted to 0.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n value\n \n boolean\n \n\n \n No\n \n\n\n \n Either true or false.\n\n \n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n The parent node the value should be appended to.\n\n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendBuffer\n \n \n \n \n \n \nappendBuffer(value: ArrayBuffer, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n ArrayBuffer\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendDatetime\n \n \n \n \n \n \nappendDatetime(value: Date, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n Date\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendNumber\n \n \n \n \n \n \nappendNumber(value: number, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n number\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendString\n \n \n \n \n \n \nappendString(value: string, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n This method appends to a node a string in XMLRPC style.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n The string to append. Escaping if needed is done by XMLBuilder2\n\n \n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n The parent node the value should be appended to.\n\n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendStruct\n \n \n \n \n \n \nappendStruct(value: XmlRpcStruct, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n XmlRpcStruct\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n arrayBufferToBase64\n \n \n \n \n \n \narrayBufferToBase64(buffer: ArrayBuffer)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n buffer\n \n ArrayBuffer\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n serializeMethodCall\n \n \n \n \n \n \nserializeMethodCall(method: string, params?: Array, encoding?: string)\n \n \n\n\n\n\n \n \n Creates the XML for an XML-RPC method call.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n method\n \n string\n \n\n \n No\n \n\n\n \n \nThe method name.\n\n\n \n \n \n params\n \n Array\n \n\n \n Yes\n \n\n\n \n \nParams to pass in the call. If none are needed this parameter can be skipped.\n\n\n \n \n \n encoding\n \n string\n \n\n \n Yes\n \n\n\n \n \nThe encoding which is added to the XML document. If no specific is required just skip it.\n\n\n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n serializeValue\n \n \n \n \n \n \nserializeValue(value: XmlRpcTypes, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n XmlRpcTypes\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n \n \n \n \n \n \n convertArray\n \n \n \n \n \n \nconvertArray(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcArray\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertDomToObject\n \n \n \n \n \n \nconvertDomToObject(document: Document)\n \n \n\n\n\n\n \n \n This method converts any document either in a meaningful response object or throws an error.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n document\n \n Document\n \n\n \n No\n \n\n\n \n The document to convert.\n\n \n \n \n \n \n \n Returns : MethodResponse | MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertFault\n \n \n \n \n \n \nconvertFault(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertMember\n \n \n \n \n \n \nconvertMember(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Member\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertMethodResponse\n \n \n \n \n \n \nconvertMethodResponse(document: Document)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n document\n \n Document\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodResponse | MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertName\n \n \n \n \n \n \nconvertName(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertParam\n \n \n \n \n \n \nconvertParam(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Param\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertParams\n \n \n \n \n \n \nconvertParams(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertStruct\n \n \n \n \n \n \nconvertStruct(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcStruct\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertValue\n \n \n \n \n \n \nconvertValue(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcTypes\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n deserialize\n \n \n \n \n \n \ndeserialize(content: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n content\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodResponse | MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n deserializeResponse\n \n \n \n \n \n \ndeserializeResponse(content: string)\n \n \n\n\n\n\n \n \n Deserializes a response of the XMLRPC API into a XML Document\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n content\n \n string\n \n\n \n No\n \n\n\n \n The content of XML which is to be parsed.\n\n \n \n \n \n \n \n Returns : Document\n\n \n \n \n \n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nCobbler-Web\n\n\nOur new separate Angular based web interface for Cobbler!\nInitial developer: @nelliesnoodles & @SchoolGuy\n@ https://github.com/nelliesnoodles/Angular-CBBLR\nPrerequisites\n\nNode.js and npm\ninstall Node.js dependencies with npm install\nbuild required projects\n\nExample :npm run build typescript-xmlrpc\nnpm run build cobbler-apiDevelopment server\nRun ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change\nany of the source files.\nNote: Since this is a multi-project repo you need to add the project name. The only project which is a frontend is\ncurrently cobbler-frontend though. Serving will only work if you have built our two libraries as described above.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use\nng generate directive|pipe|service|class|guard|interface|enum|module.\nBuild\nRun ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod\nflag for a production build.\nRunning unit tests\nRun ng test to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the\nAngular CLI Overview and Command Reference page.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2022 Cobbler Project cobbler.project@gmail.com\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n \n \n \n 46 Components\n \n \n \n \n \n \n \n 6 Injectables\n \n \n \n \n \n \n \n 3 Classes\n \n \n \n \n \n \n \n 45 Interfaces\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"properties.html":{"url":"properties.html","title":"package-properties - properties","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Properties\n \n \n \n Version : 0.0.0\n \n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n MethodResponse   (projects/.../xmlrpc-types.ts)\n \n \n Settings   (projects/.../settings.ts)\n \n \n XmlRpcTypes   (projects/.../xmlrpc-types.ts)\n \n \n \n \n \n \n\n\n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n \n \n \n \n \n MethodResponse\n \n \n \n \n Param\n\n \n \n \n \n \n \n \n \n \n XmlRpcTypes\n \n \n \n \n number | boolean | string | Date | ArrayBuffer | XmlRpcStruct | XmlRpcArray\n\n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n \n \n \n \n \n Settings\n \n \n \n \n V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0\n\n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n applicationError   (projects/.../constants.ts)\n \n \n BODY   (projects/.../typescript-xmlrpc.service.ts)\n \n \n COBBLER_URL   (projects/.../lib.config.ts)\n \n \n COBBLER_URL_KEY_NAME   (projects/.../user.service.ts)\n \n \n cobblerUrlFactory   (projects/.../lib.config.ts)\n \n \n environment   (projects/.../environment.prod.ts)\n \n \n environment   (projects/.../environment.ts)\n \n \n TEXT   (projects/.../typescript-xmlrpc.service.ts)\n \n \n \n \n \n \n\n\n projects/typescript-xmlrpc/src/lib/constants.ts\n \n \n \n \n \n \n \n applicationError\n \n \n \n \n \n \n Type : MethodFault\n\n \n \n \n \n Default value : {\n faultCode: -1,\n faultString: 'Problem while processing data.',\n}\n \n \n\n\n \n \n\n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n \n \n \n \n \n \n BODY\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'body'\n \n \n\n\n \n \n \n \n \n \n \n \n TEXT\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'text'\n \n \n\n\n \n \n\n projects/cobbler-api/src/lib/lib.config.ts\n \n \n \n \n \n \n \n COBBLER_URL\n \n \n \n \n \n \n Default value : new InjectionToken('COBBLER_URL')\n \n \n\n\n \n \n \n \n \n \n \n \n cobblerUrlFactory\n \n \n \n \n \n \n Default value : () => {\n const value = localStorage.getItem('COBBLER_URL');\n if (value) {\n return new URL(value);\n }\n return new URL('http://localhost/cobbler_api');\n}\n \n \n\n\n \n \n\n projects/cobbler-frontend/src/app/services/user.service.ts\n \n \n \n \n \n \n \n COBBLER_URL_KEY_NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'COBBLER_URL'\n \n \n\n\n \n \n\n projects/cobbler-frontend/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true,\n}\n \n \n\n\n \n \n\n projects/cobbler-frontend/src/environments/environment.ts\n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n}\n \n \n\n\n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/development-setup.html":{"url":"additional-documentation/development-setup.html","title":"additional-page - Development Setup","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDevelopment Setup for Cobbler-Web\nRequirements\nPlease install the following things system-wide and prior to working with any of our guide:\n\ndocker: Follow this guide or use your package manager to install it.\nnode: Use this download link or use your package manager to install it.\nnpm: Should be bundled along with node.\nangular/cli: Use this link to install it.\n\nBasic setup\n\nPlease ensure that if you are on Windows that you have set the git setting core.autocrlf to false and core.eol to lf!\n\nThis will give you a setup of both repositories of the main Git branches.\n\nClone Cobbler: git clone git@github.com:cobbler/cobbler.git\nClone Cobbler Web: git clone git@github.com:cobbler/cobbler-web.git\nGo into the cobbler directory and execute the following steps:\nBuild the Docker image: docker build -f docker/develop/develop.dockerfile -t cobbler-dev .\nRun the built image: docker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev\nExecute the setup script in the running container: ./docker/develop/scripts/setup-supervisor.sh\nLet the container run in the foreground! You may want to tail the Cobbler log:\ntail -f /var/log/cobbler/cobbler.log\n\n\nGo into the cobbler-web directory and follow these steps:\nRun an npm install to install the development and runtime dependencies.\nBuild the TS-XMLRPC API via: npm run build typescript-xmlrpc\nBuild the Cobbler-API project via: npm run build cobbler-api\nServe the Cobbler frontend via: npm run start cobbler-frontend\n\n\nGo to http://localhost:4200 to see the frontend.\nLogin is:\nUsername: cobbler\nPassword: cobbler\n\n\n\nAdvanced setup\nWhen developing the Web Frontend it is needed sometimes to switch between different release codestreams. In the following, a few examples of the current codestreams can be seen:\nMain\n\nThis assumes that you are in the root folder of the backend repository.\n\nExample :git checkout main\ndocker build -f docker/develop/develop.dockerfile -t cobbler-dev .\ndocker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev\nmake clean\n./docker/develop/scripts/setup-supervisor.shrelease33\n\nThis assumes that you are in the root folder of the backend repository.\n\nExample :git checkout release33\ndocker build -f docker/develop/develop.dockerfile -t cobbler-dev:release33 .\ndocker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev:release33\nmake clean\n./docker/develop/scripts/setup-supervisor.shError handling\nCORS\nWhen you are running Angular applications this is a common issue. Please check the following things:\n\nif the request is blocked by the browser or the server (so Cobbler).\nif the request is lacking the required headers, check the Apache webserver configuration in the Cobbler testing\ncontainer at /etc/apache2/vhosts.d/cobbler.conf\nif the request is resulting in a 404, check the proxy.conf.json for the correct URL.\n\nWe will only be guiding you as a developer very limited here as this is a very environment specific setting. Most of the\ntime will be \"Here is a random Stackoverflow link, please read and debug yourself.\".\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} + "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/injectables/AngularXmlrpcService.html",[0,2.299,1,3.511]],["body/injectables/AngularXmlrpcService.html",[0,3.192,1,4.873,2,2.945,3,0.126,4,0.115,5,0.104,6,4.511,7,6.888,8,3.59,9,0.147,10,0.26,11,1.728,12,6.513,13,1.957,14,7.729,15,6.478,16,1.374,17,6.071,18,4.378,19,6.071,20,6.071,21,6.071,22,6.071,23,6.892,24,0.731,25,6.071,26,7.971,27,1.39,28,4.472,29,1.478,30,0.01,31,0.361,32,0.262,33,1.265,34,6.071,35,4.472,36,6.398,37,7.183,38,5.349,39,6.071,40,4.868,41,5.349,42,6.071,43,6.071,44,3.32,45,4.807,46,1.445,47,0.993,48,6.071,49,2.114,50,4.472,51,3.77,52,6.071,53,4.472,54,4.109,55,6.071,56,4.86,57,4.472,58,3.77,59,6.071,60,4.472,61,3.77,62,4.472,63,0.478,64,4.128,65,1.187,66,6.544,67,4.472,68,6.071,69,2.152,70,5.349,71,2.012,72,6.071,73,6.071,74,5.129,75,5.349,76,6.071,77,5.349,78,4.873,79,5.349,80,5.129,81,4.472,82,4.472,83,4.472,84,1.073,85,0.589,86,6.071,87,4.472,88,3.59,89,4.472,90,4.472,91,3.59,92,4.472,93,1.04,94,3.94,95,1.149,96,1.798,97,5.533,98,1.187,99,3.119,100,2.666,101,0.126,102,0.493,103,1.854,104,0.556,105,2.796,106,2.796,107,3.796,108,2.598,109,6.071,110,3.796,111,2.945,112,0.874,113,4.472,114,6.071,115,1.019,116,4.472,117,4.472,118,3.887,119,3.94,120,6.071,121,4.472,122,6.071,123,4.472,124,4.472,125,1.311,126,4.472,127,4.472,128,4.472,129,4.472,130,4.472,131,4.472,132,4.472,133,0.006,134,0.006]],["title/components/AppComponent.html",[135,0.043,136,0.834]],["body/components/AppComponent.html",[3,0.146,4,0.134,5,0.122,24,1.215,27,0.852,30,0.01,31,0.288,84,0.978,85,0.686,98,1.157,100,4.004,101,0.146,102,0.575,104,0.648,133,0.007,134,0.007,135,0.072,136,1.497,137,1.281,138,0.852,139,2.23,140,1.045,141,1.187,142,0.254,143,4.591,144,1.045,145,1.442,146,1.189,147,0.674,148,0.909,149,1.07,150,1.497,151,2.553,152,7.433,153,1.042,154,6.717,155,5.211,156,1.347,157,4.183,158,5.211,159,5.211,160,3.878,161,5.211,162,3.258,163,2.414,164,4.591,165,1.045,166,1.249,167,1.187,168,1.045,169,1.574,170,1.045,171,1.045,172,0.993,173,1.313,174,1.045,175,0.993,176,1.045,177,0.993,178,0.993,179,1.045,180,0.993,181,0.969,182,1.045,183,0.969,184,1.423,185,0.993,186,1.045,187,0.969,188,0.961,189,1.045,190,0.969,191,1.045,192,0.969,193,1.045,194,0.993,195,1.752,196,0.993,197,1.045,198,0.993,199,0.993,200,1.737,201,0.993,202,1.045,203,0.993,204,0.787,205,0.993,206,0.993,207,1.045,208,0.993,209,0.897,210,1.045,211,0.993,212,1.045,213,0.993,214,0.993,215,1.045,216,0.993,217,1.045,218,0.993,219,1.019,220,1.045,221,0.993,222,1.045,223,0.993,224,1.045,225,0.993,226,0.993,227,0.993,228,0.993,229,0.993,230,1.045,231,0.993,232,0.993,233,0.993,234,0.787,235,1.347,236,0.969,237,0.874,238,1.045,239,0.921,240,1.045,241,0.993,242,0.993,243,0.993,244,1.045,245,0.993,246,1.019,247,0.993,248,0.993,249,0.993,250,0.993,251,1.045,252,0.993,253,1.045,254,1.045,255,0.921,256,0.993,257,1.045,258,1.045]],["title/components/AppEventsComponent.html",[135,0.043,172,0.834]],["body/components/AppEventsComponent.html",[3,0.112,4,0.103,5,0.093,9,0.131,10,0.24,11,1.447,13,1.132,16,1.043,24,0.917,27,1.292,29,1.017,30,0.01,31,0.366,32,0.198,33,0.87,44,3.067,46,1.176,47,1.151,63,0.481,65,0.687,84,1.133,85,0.525,93,0.928,95,1.024,96,0.928,98,1.212,101,0.112,102,0.44,104,0.956,112,0.78,115,1.181,133,0.006,134,0.006,135,0.063,136,0.76,137,1.069,138,0.652,139,1.707,140,0.799,141,0.991,142,0.305,144,0.799,145,1.426,146,1.177,147,0.563,148,0.759,149,0.893,150,0.76,151,2.132,153,0.87,156,0.799,162,2.493,163,1.433,165,0.799,166,1.043,167,0.991,168,0.799,169,1.411,170,0.799,171,0.799,172,1.342,173,1.603,174,0.799,175,0.76,176,0.799,177,0.76,178,0.76,179,0.799,180,0.76,181,0.741,182,0.799,183,1.043,184,1.394,185,1.237,186,0.799,187,0.741,188,1.007,189,0.799,190,0.741,191,0.799,192,0.741,193,0.799,194,0.76,195,1.666,196,0.76,197,0.799,198,0.76,199,0.76,200,1.644,201,0.76,202,0.799,203,0.76,204,0.602,205,0.76,206,0.76,207,0.799,208,0.76,209,0.687,210,0.799,211,0.76,212,0.799,213,0.76,214,0.76,215,0.799,216,0.76,217,0.799,218,0.76,219,0.78,220,0.799,221,0.76,222,0.799,223,0.76,224,0.799,225,0.76,226,0.76,227,0.76,228,0.76,229,0.76,230,0.799,231,0.76,232,0.76,233,0.76,234,0.602,235,1.124,236,0.741,237,0.669,238,0.799,239,0.705,240,0.799,241,0.76,242,0.76,243,0.76,244,0.799,245,0.76,246,0.78,247,0.76,248,0.76,249,0.76,250,0.76,251,0.799,252,0.76,253,0.799,254,0.799,255,0.705,256,0.76,257,0.799,258,0.799,259,7.108,260,7.108,261,3.513,262,1.211,263,1.889,264,1.751,265,6.202,266,4.056,267,4.056,268,4.828,269,3.061,270,6.487,271,3.867,272,5.716,273,4.272,274,6.487,275,5.608,276,6.487,277,2.693,278,1.796,279,1.9,280,2.102,281,5.608,282,3.987,283,3.013,284,1.932,285,5.608,286,3.987,287,3.987,288,5.608,289,3.987,290,5.207,291,1.333,292,4.828,293,3.013,294,2.477,295,2.477,296,2.646,297,3.987,298,1.751,299,3.987,300,1.948,301,1.076,302,0.723,303,1.024,304,2.019,305,2.096,306,1.132,307,1.655,308,1.321,309,1.433,310,0.951,311,1.761,312,2.781,313,2.968,314,1.104,315,1.104,316,2.194,317,1.707,318,1.514,319,3.987,320,1.552,321,4.502,322,3.987,323,1.104,324,1.104,325,3.987,326,1.433,327,3.987,328,3.201,329,3.987,330,3.067,331,4.941,332,3.85,333,5.608,334,4.941,335,5.608,336,4.941,337,1.961,338,2.949,339,2.949,340,3.067]],["title/components/AppManageComponent.html",[135,0.043,175,0.834]],["body/components/AppManageComponent.html",[3,0.13,4,0.119,5,0.108,9,0.204,10,0.266,16,1.152,24,0.754,27,1.315,29,1.124,30,0.01,31,0.321,32,0.228,33,0.962,40,4.611,46,0.836,47,1.014,63,0.439,84,0.922,85,0.607,96,1.629,98,1.067,101,0.13,102,0.509,104,0.93,108,1.974,133,0.007,134,0.007,135,0.068,136,0.879,137,1.182,138,0.754,139,1.974,140,0.925,141,1.095,142,0.311,144,0.925,145,1.435,146,1.183,147,0.622,148,0.839,150,0.879,151,2.356,153,0.962,156,1.404,165,0.925,166,1.152,167,1.095,168,0.925,169,1.501,170,0.925,171,0.925,172,0.879,173,1.655,174,0.925,175,1.427,176,0.925,177,0.879,178,0.879,179,0.925,180,0.879,181,0.857,182,0.925,183,0.857,184,1.357,185,0.879,186,0.925,187,0.857,188,1.195,189,0.925,190,0.857,191,0.925,192,0.857,193,0.925,194,0.879,195,1.714,196,0.879,197,0.925,198,0.879,199,0.879,200,1.697,201,0.879,202,0.925,203,0.879,204,0.697,205,0.879,206,0.879,207,0.925,208,0.879,209,0.794,210,0.925,211,0.879,212,0.925,213,0.879,214,0.879,215,0.925,216,0.879,217,0.925,218,0.879,219,0.902,220,0.925,221,0.879,222,0.925,223,0.879,224,0.925,225,0.879,226,0.879,227,0.879,228,0.879,229,0.879,230,0.925,231,0.879,232,0.879,233,0.879,234,0.697,235,1.243,236,0.857,237,0.774,238,0.925,239,0.815,240,0.925,241,0.879,242,0.879,243,0.879,244,0.925,245,0.879,246,0.902,247,0.879,248,0.879,249,0.879,250,0.879,251,0.925,252,0.879,253,0.925,254,0.925,255,0.815,256,0.879,257,0.925,258,0.925,341,7.24,342,4.064,343,7.001,344,6.199,345,6.169,346,7.001,347,7.001,348,4.883,349,3.829,350,4.976,351,5.571,352,6.199,353,6.199,354,4.612,355,4.612,356,4.612,357,4.612,358,4.612,359,4.612,360,5.62,361,4.612,362,4.064,363,4.612,364,4.612,365,4.612,366,4.612,367,6.199,368,4.612,369,7.001,370,4.612,371,3.702,372,4.612,373,4.612,374,4.612,375,5.571,376,4.612,377,1.657,378,4.612,379,4.612,380,4.612,381,4.064,382,4.612,383,4.612,384,4.612,385,6.199]],["title/classes/AppPage.html",[102,0.482,386,3.511]],["body/classes/AppPage.html",[3,0.188,4,0.172,5,0.157,9,0.221,16,1.459,27,1.283,30,0.01,46,1.422,84,0.883,100,3.999,101,0.188,102,0.74,103,1.825,133,0.008,134,0.008,142,0.315,167,1.185,386,6.298,387,4.194,388,5.91,389,8.847,390,8.573,391,8.573,392,6.708,393,8.573,394,6.708,395,4.992,396,5.91,397,6.708,398,6.708,399,4.194,400,6.708]],["title/injectables/AuthGuardService.html",[0,2.299,401,3.05]],["body/injectables/AuthGuardService.html",[0,3.698,2,3.689,3,0.157,4,0.144,5,0.131,9,0.184,10,0.302,11,1.446,16,1.308,24,1.15,27,1.407,29,1.275,30,0.01,31,0.302,32,0.234,33,1.091,46,1.462,47,1.15,84,1.061,85,0.737,93,1.303,96,1.789,99,3.907,100,3.34,101,0.157,102,0.618,103,2.002,104,0.956,107,4.398,125,1.795,133,0.007,134,0.007,142,0.329,148,1.041,291,1.151,306,1.59,401,4.906,402,7.667,403,4.936,404,7.689,405,6.31,406,8.065,407,8.065,408,8.065,409,7.034,410,2.129,411,1.972,412,3.092,413,7.034,414,5.602,415,1.222,416,5.602,417,5.602,418,7.034,419,5.602,420,4.808,421,5.602,422,4.936,423,8.605,424,7.034,425,8.479,426,5.602,427,7.034,428,5.602,429,7.034,430,4.936,431,5.602,432,4.936,433,5.602]],["title/interfaces/BackgroundAclSetupOptions.html",[434,0.144,435,1.872]],["body/interfaces/BackgroundAclSetupOptions.html",[3,0.149,4,0.175,5,0.124,9,0.175,10,0.292,30,0.01,31,0.322,32,0.241,49,1.583,63,0.546,65,1.408,101,0.252,133,0.007,134,0.007,142,0.201,147,0.533,163,1.911,293,2.912,294,2.348,295,2.348,309,1.911,415,1.235,434,0.296,435,2.912,436,1.434,437,1.509,438,2.348,439,3.61,440,3.61,441,3.61,442,3.61,443,1.88,444,2.276,445,1.904,446,2.426,447,2.426,448,2.276,449,2.426,450,2.426,451,2.426,452,2.426,453,2.207,454,2.207,455,2.142,456,2.936,457,2.142,458,1.3,459,2.348,460,2.348,461,2.348,462,2.207,463,2.276,464,2.276,465,3.006,466,2.276,467,2.207,468,2.348,469,2.348,470,2.348,471,2.348,472,2.348,473,2.348,474,2.348,475,2.348,476,2.348,477,2.348,478,2.348,479,2.348,480,2.348,481,2.348,482,2.207,483,1.672,484,2.348,485,2.348,486,2.348,487,1.716,488,1.588,489,1.629,490,2.207,491,1.716,492,2.348,493,2.348,494,2.276,495,2.426,496,2.276,497,1.588,498,1.911,499,2.276,500,2.276,501,3.212,502,2.276,503,2.426,504,2.426,505,2.426,506,2.426,507,2.426,508,2.426,509,2.426,510,2.426,511,2.426,512,2.426,513,2.426,514,2.348,515,2.426,516,2.426,517,2.426,518,2.207,519,2.348,520,2.348,521,2.348,522,2.426,523,2.348,524,2.348]],["title/interfaces/BackgroundBuildisoOptions.html",[434,0.144,453,1.815]],["body/interfaces/BackgroundBuildisoOptions.html",[3,0.144,4,0.208,5,0.12,9,0.168,10,0.285,30,0.01,31,0.316,32,0.266,49,1.545,63,0.546,65,1.392,101,0.251,133,0.007,134,0.007,142,0.194,147,0.782,163,1.839,293,2.842,294,2.26,295,2.26,309,1.839,415,1.256,434,0.294,435,2.19,436,1.399,437,1.453,438,2.26,439,2.335,440,2.335,441,2.335,442,2.335,443,1.847,444,2.19,445,1.897,446,2.335,447,2.335,448,2.19,449,2.335,450,2.335,451,2.335,452,2.335,453,2.756,454,3.237,455,3.141,456,3.239,457,3.141,458,1.906,459,3.445,460,3.445,461,3.445,462,2.124,463,2.19,464,2.19,465,2.933,466,2.19,467,2.124,468,2.26,469,2.26,470,2.26,471,2.26,472,2.26,473,2.26,474,2.26,475,2.26,476,2.26,477,2.26,478,2.26,479,2.26,480,2.26,481,2.26,482,2.124,483,1.609,484,2.26,485,2.26,486,2.26,487,1.652,488,1.528,489,1.568,490,2.124,491,1.652,492,2.26,493,2.26,494,2.19,495,2.335,496,2.19,497,1.528,498,1.839,499,2.19,500,2.19,501,3.154,502,2.19,503,2.335,504,2.335,505,2.335,506,2.335,507,2.335,508,2.335,509,2.335,510,2.335,511,2.335,512,2.335,513,2.335,514,2.26,515,2.335,516,2.335,517,2.335,518,2.124,519,2.26,520,2.26,521,2.26,522,2.335,523,2.26,524,2.26]],["title/interfaces/BackgroundImportOptions.html",[434,0.144,482,1.815]],["body/interfaces/BackgroundImportOptions.html",[3,0.146,4,0.172,5,0.121,9,0.171,10,0.287,30,0.01,31,0.356,32,0.261,49,1.557,63,0.547,65,1.397,101,0.252,133,0.007,134,0.007,142,0.196,147,0.52,163,1.862,293,2.865,294,2.289,295,2.289,309,1.862,415,1.231,434,0.295,435,2.218,436,1.41,437,1.471,438,2.289,439,2.364,440,2.364,441,2.364,442,2.364,443,1.858,444,2.218,445,1.899,446,2.364,447,2.364,448,2.218,449,2.364,450,2.364,451,2.364,452,2.364,453,2.151,454,2.151,455,2.087,456,2.9,457,2.087,458,1.267,459,2.289,460,2.289,461,2.289,462,2.151,463,2.218,464,2.218,465,2.957,466,2.218,467,2.151,468,2.289,469,2.289,470,2.289,471,2.289,472,2.289,473,2.289,474,2.289,475,2.289,476,2.289,477,2.289,478,2.289,479,2.289,480,2.289,481,2.289,482,2.778,483,2.464,484,3.461,485,3.461,486,3.461,487,2.529,488,2.34,489,2.401,490,2.151,491,1.673,492,2.289,493,2.289,494,2.218,495,2.364,496,2.218,497,1.548,498,1.862,499,2.218,500,2.218,501,3.173,502,2.218,503,2.364,504,2.364,505,2.364,506,2.364,507,2.364,508,2.364,509,2.364,510,2.364,511,2.364,512,2.364,513,2.364,514,2.289,515,2.364,516,2.364,517,2.364,518,2.151,519,2.289,520,2.289,521,2.289,522,2.364,523,2.289,524,2.289]],["title/interfaces/BackgroundPowerSystem.html",[434,0.144,494,1.872]],["body/interfaces/BackgroundPowerSystem.html",[3,0.151,4,0.176,5,0.126,9,0.177,10,0.294,30,0.01,31,0.324,32,0.209,49,1.596,63,0.545,65,1.469,101,0.253,133,0.007,134,0.007,142,0.204,147,0.54,163,1.936,293,2.937,294,2.379,295,2.379,309,1.936,415,1.237,434,0.296,435,2.305,436,1.446,437,1.529,438,2.379,439,2.458,440,2.458,441,2.458,442,2.458,443,1.892,444,2.305,445,1.906,446,2.458,447,2.458,448,2.305,449,2.458,450,2.458,451,2.458,452,2.458,453,2.236,454,2.236,455,2.17,456,3.283,457,2.17,458,1.317,459,2.379,460,2.379,461,2.379,462,2.236,463,2.305,464,2.305,465,3.031,466,2.305,467,2.236,468,2.379,469,2.379,470,2.379,471,2.379,472,2.379,473,2.379,474,2.379,475,2.379,476,2.379,477,2.379,478,2.379,479,2.379,480,2.379,481,2.379,482,2.236,483,1.694,484,2.379,485,2.379,486,2.379,487,1.739,488,1.609,489,1.651,490,2.236,491,1.739,492,2.379,493,2.379,494,2.937,495,3.627,496,2.305,497,1.609,498,1.936,499,2.305,500,2.305,501,3.232,502,2.305,503,2.458,504,2.458,505,2.458,506,2.458,507,2.458,508,2.458,509,2.458,510,2.458,511,2.458,512,2.458,513,2.458,514,2.379,515,2.458,516,2.458,517,2.458,518,2.236,519,2.379,520,2.379,521,2.379,522,2.458,523,2.379,524,2.379]],["title/interfaces/BackgroundReplicateOptions.html",[434,0.144,467,1.815]],["body/interfaces/BackgroundReplicateOptions.html",[3,0.14,4,0.168,5,0.117,9,0.164,10,0.28,30,0.01,31,0.312,32,0.271,49,1.52,63,0.547,65,1.381,101,0.25,133,0.007,134,0.007,142,0.189,147,0.501,163,1.794,293,2.796,294,2.205,295,2.205,309,1.794,415,1.259,434,0.294,435,2.137,436,1.377,437,1.417,438,2.205,439,2.278,440,2.278,441,2.278,442,2.278,443,1.825,444,2.137,445,1.892,446,2.278,447,2.278,448,2.137,449,2.278,450,2.278,451,2.278,452,2.278,453,2.072,454,2.072,455,2.011,456,2.849,457,2.011,458,1.22,459,2.205,460,2.205,461,2.205,462,2.072,463,2.137,464,2.137,465,2.886,466,2.137,467,2.712,468,3.412,469,3.412,470,3.412,471,3.412,472,3.412,473,3.412,474,3.412,475,3.412,476,3.412,477,3.412,478,3.412,479,3.412,480,3.412,481,3.412,482,2.072,483,1.57,484,2.205,485,2.205,486,2.205,487,1.612,488,1.491,489,1.53,490,2.072,491,1.612,492,2.205,493,2.205,494,2.137,495,2.278,496,2.137,497,1.491,498,1.794,499,2.137,500,2.137,501,3.117,502,2.137,503,2.278,504,2.278,505,2.278,506,2.278,507,2.278,508,2.278,509,2.278,510,2.278,511,2.278,512,2.278,513,2.278,514,2.205,515,2.278,516,2.278,517,2.278,518,2.072,519,2.205,520,2.205,521,2.205,522,2.278,523,2.205,524,2.205]],["title/interfaces/BackgroundReposyncOptions.html",[434,0.144,490,1.815]],["body/interfaces/BackgroundReposyncOptions.html",[3,0.15,4,0.175,5,0.125,9,0.175,10,0.292,30,0.01,31,0.322,32,0.241,49,1.586,63,0.545,65,1.466,101,0.252,133,0.007,134,0.007,142,0.202,147,0.535,163,1.916,293,2.918,294,2.355,295,2.355,309,1.916,415,1.246,434,0.296,435,2.282,436,1.436,437,1.513,438,2.355,439,2.433,440,2.433,441,2.433,442,2.433,443,1.883,444,2.282,445,1.913,446,2.433,447,2.433,448,2.282,449,2.433,450,2.433,451,2.433,452,2.433,453,2.213,454,2.213,455,2.148,456,2.939,457,2.148,458,1.303,459,2.355,460,2.355,461,2.355,462,2.213,463,2.282,464,2.282,465,3.011,466,2.282,467,2.213,468,2.355,469,2.355,470,2.355,471,2.355,472,2.355,473,2.355,474,2.355,475,2.355,476,2.355,477,2.355,478,2.355,479,2.355,480,2.355,481,2.355,482,2.213,483,1.677,484,2.355,485,2.355,486,2.355,487,1.721,488,1.592,489,1.634,490,2.829,491,2.556,492,3.498,493,3.498,494,2.282,495,2.433,496,2.282,497,1.592,498,1.916,499,2.282,500,2.282,501,3.216,502,2.282,503,2.433,504,2.433,505,2.433,506,2.433,507,2.433,508,2.433,509,2.433,510,2.433,511,2.433,512,2.433,513,2.433,514,2.355,515,2.433,516,2.433,517,2.433,518,2.213,519,2.355,520,2.355,521,2.355,522,2.433,523,2.355,524,2.355]],["title/components/BuildISOComponent.html",[135,0.043,177,0.834]],["body/components/BuildISOComponent.html",[3,0.109,4,0.196,5,0.091,9,0.128,10,0.236,11,1.648,13,1.818,16,1.025,24,0.902,27,1.283,29,0.706,30,0.01,31,0.275,32,0.168,33,0.604,46,0.999,47,1.139,69,1.051,74,4.104,84,1.129,85,0.512,93,0.906,95,1,96,0.906,98,0.95,101,0.109,102,0.429,103,0.906,104,0.914,115,0.925,125,1.649,133,0.006,134,0.006,135,0.062,136,0.742,137,1.051,138,0.637,139,1.666,140,0.78,141,0.974,142,0.303,144,0.78,145,1.424,146,1.175,147,0.787,148,0.746,149,0.878,150,0.742,151,2.096,153,0.855,156,0.78,162,4.596,163,1.982,165,0.78,166,1.19,167,0.974,168,0.78,169,1.396,170,0.78,171,0.78,172,0.742,173,1.078,174,0.78,175,0.742,176,0.78,177,1.328,178,1.577,179,0.78,180,0.742,181,0.724,182,0.78,183,0.724,184,1.262,185,0.742,186,0.78,187,0.724,188,0.789,189,0.78,190,0.724,191,0.78,192,0.724,193,0.78,194,0.742,195,1.658,196,0.742,197,0.78,198,0.742,199,0.742,200,1.635,201,0.742,202,0.78,203,0.742,204,0.588,205,0.742,206,0.742,207,0.78,208,0.742,209,0.67,210,0.78,211,0.742,212,0.78,213,0.742,214,0.742,215,0.78,216,0.742,217,0.78,218,0.742,219,0.761,220,0.78,221,0.742,222,0.78,223,0.742,224,0.78,225,0.742,226,0.742,227,0.742,228,0.742,229,0.742,230,0.78,231,0.742,232,0.742,233,0.742,234,0.588,235,1.105,236,0.724,237,0.653,238,0.78,239,0.688,240,0.78,241,0.742,242,0.742,243,0.742,244,0.78,245,0.742,246,0.761,247,0.742,248,0.742,249,0.742,250,0.742,251,0.78,252,0.742,253,0.78,254,0.78,255,0.688,256,0.742,257,0.78,258,0.78,262,1.191,264,1.729,267,4.004,278,1.772,279,1.88,284,1.918,291,1.316,298,1.729,301,1.051,302,0.706,304,1.971,310,0.928,314,1.078,315,1.078,318,1.051,320,1.078,323,1.078,324,1.078,377,1.399,410,1.48,411,1.897,453,2.289,454,3.385,455,2.961,456,2.875,457,2.579,458,1.797,459,3.247,460,2.828,461,2.828,464,2.36,525,7.065,526,7.065,527,3.43,528,2.658,529,2.122,530,2.74,531,2.658,532,2.828,533,2.434,534,3.127,535,6.403,536,5.514,537,3.021,538,6.403,539,1.729,540,6.964,541,1.772,542,1.928,543,3.893,544,3.893,545,3.893,546,2.601,547,3.893,548,2.601,549,3.893,550,3.893,551,3.893,552,1.837,553,1.361,554,1.901,555,1.325,556,1.827,557,1.29,558,1.078,559,1.078,560,1.025,561,1.452,562,2.921,563,3.893,564,3.893,565,3.893,566,3.893,567,3.893,568,3.893,569,3.893,570,3.893,571,3.893,572,3.893,573,3.893,574,3.893,575,3.125,576,3.893,577,3.125,578,2.434,579,2.564,580,1.416,581,3.125,582,3.125,583,3.893,584,1.325,585,1.051,586,1.452,587,1.078,588,1.051,589,1.105,590,1.105,591,4.104,592,5.514,593,4.104,594,5.514,595,5.514,596,3.448,597,2.897,598,3.125,599,3.43,600,3.125,601,3.43,602,2.897]],["title/components/CheckSysComponent.html",[135,0.043,180,0.834]],["body/components/CheckSysComponent.html",[3,0.113,4,0.104,5,0.094,9,0.133,10,0.243,11,1.532,16,1.052,24,0.926,27,1.324,29,0.732,30,0.01,31,0.28,32,0.199,33,0.627,46,1.184,47,1.263,69,1.091,80,4.863,84,1.142,85,0.532,93,0.94,95,1.038,98,1.125,101,0.113,102,0.446,104,0.88,112,1.457,115,0.95,125,1.223,133,0.006,134,0.006,135,0.064,136,0.77,137,1.079,138,0.661,139,1.729,140,0.81,141,1,142,0.311,144,0.81,145,1.427,146,1.177,147,0.568,148,1.009,149,0.902,150,0.77,151,2.152,153,0.878,156,0.81,160,5.269,162,4.086,163,2.348,165,0.81,166,1.215,167,1.251,168,0.81,169,1.419,170,0.81,171,0.81,172,0.77,173,1.107,174,0.81,175,0.77,176,0.81,177,0.77,178,0.77,179,0.81,180,1.35,181,1.549,182,0.81,183,0.751,184,1.283,185,0.77,186,0.81,187,0.751,188,0.81,189,0.81,190,0.751,191,0.81,192,0.751,193,0.81,194,0.77,195,1.671,196,0.77,197,0.81,198,0.77,199,0.77,200,1.649,201,0.77,202,0.81,203,0.77,204,0.61,205,0.77,206,0.77,207,0.81,208,0.77,209,0.696,210,0.81,211,0.77,212,0.81,213,0.77,214,0.77,215,0.81,216,0.77,217,0.81,218,0.77,219,0.79,220,0.81,221,0.77,222,0.81,223,0.77,224,0.81,225,0.77,226,0.77,227,0.77,228,0.77,229,0.77,230,0.81,231,0.77,232,0.77,233,0.77,234,0.61,235,1.135,236,0.751,237,0.678,238,0.81,239,0.714,240,0.81,241,0.77,242,0.77,243,0.77,244,0.81,245,0.77,246,0.79,247,0.77,248,0.77,249,0.77,250,0.77,251,0.81,252,0.77,253,0.81,254,0.81,255,0.714,256,0.77,257,0.81,258,0.81,262,1.223,263,1.902,264,1.764,266,4.086,267,4.086,273,4.303,278,1.809,279,1.911,280,2.115,284,1.939,291,1.343,298,1.764,300,1.974,302,0.732,303,1.038,304,2.046,306,1.147,310,0.964,314,1.119,315,1.119,316,2.916,318,1.091,320,1.119,323,1.119,324,1.119,410,1.536,411,1.914,529,2.165,539,2.221,541,1.809,542,1.96,558,1.119,559,1.119,560,1.064,561,1.491,580,1.038,585,1.091,586,1.491,587,1.119,588,1.091,589,1.147,590,1.147,603,7.247,604,7.247,605,3.56,606,5.661,607,2.055,608,2.055,609,3.574,610,4.557,611,6.534,612,5.661,613,4.557,614,7.08,615,5.661,616,4.041,617,4.041,618,4.041,619,4.041,620,4.041,621,4.041,622,2.818,623,2.818,624,2.046,625,4.041,626,4.557,627,4.041,628,4.041,629,4.041,630,2.976,631,6.238,632,3.244,633,4.909,634,3.244,635,3.007,636,3.244,637,3.56]],["title/classes/DateFormatter.html",[102,0.482,638,3.511]],["body/classes/DateFormatter.html",[3,0.172,4,0.116,5,0.106,6,4.61,9,0.149,10,0.262,16,1.138,18,4.44,24,1.001,27,1.426,29,1.483,30,0.01,31,0.351,32,0.249,33,1.269,44,4.474,46,1.347,49,1.861,63,0.508,65,1.28,66,3.635,101,0.127,102,0.499,103,1.053,104,0.994,115,1.028,118,3.219,125,1.728,133,0.006,134,0.006,148,1.006,291,1.681,332,4.944,337,2.909,375,3.37,387,2.832,415,1.186,445,1.753,454,2.541,587,1.254,600,4.915,638,5.965,639,3.99,640,4.528,641,6.123,642,8,643,6.937,644,6.937,645,4.528,646,4.528,647,3.99,648,4.528,649,4.528,650,4.528,651,4.528,652,4.528,653,7.431,654,7.762,655,8.179,656,7.762,657,8,658,6.123,659,6.123,660,6.123,661,6.123,662,6.123,663,6.123,664,4.528,665,4.528,666,4.528,667,7.431,668,7.431,669,4.426,670,6.123,671,4.528,672,6.123,673,4.528,674,4.528,675,7.431,676,5.394,677,4.528,678,4.528,679,4.528,680,6.123,681,6.123,682,7.431,683,6.123,684,6.123,685,6.123,686,6.123,687,6.123,688,6.123,689,4.528,690,6.123,691,6.123,692,6.123,693,6.123,694,7.431,695,4.528,696,4.528,697,4.528,698,4.528,699,4.528,700,5.394,701,4.528,702,3.635,703,6.123,704,6.123,705,6.123,706,7.431,707,4.528,708,4.528,709,4.528,710,4.528,711,7.762,712,5.777,713,4.528,714,4.528,715,4.528,716,4.528,717,4.528,718,4.528,719,4.528,720,4.528,721,6.123,722,7.762,723,4.528,724,4.528,725,4.528,726,6.123,727,8.319,728,4.528,729,6.547,730,6.123,731,7.431,732,6.123,733,5.394,734,8.179,735,6.123,736,6.123,737,6.123,738,4.528,739,6.123,740,4.528,741,4.528]],["title/components/DialogBoxTextConfirmComponent.html",[135,0.043,183,0.813]],["body/components/DialogBoxTextConfirmComponent.html",[3,0.133,4,0.122,5,0.111,9,0.156,10,0.271,24,0.777,27,1.034,29,0.862,30,0.01,31,0.325,32,0.193,33,0.737,63,0.417,84,0.997,85,0.626,98,1.527,101,0.178,102,0.524,104,0.591,112,1.482,133,0.007,134,0.007,135,0.069,136,0.906,137,1.206,138,0.777,139,2.034,140,0.953,141,1.118,142,0.269,144,0.953,145,1.437,146,1.185,147,0.634,148,0.856,149,1.007,150,0.906,151,2.404,153,0.981,156,0.953,165,0.953,166,1.176,167,1.118,168,0.953,169,1.519,170,0.953,171,0.953,172,0.906,173,1.237,174,0.953,175,0.906,176,0.953,177,0.906,178,0.906,179,0.953,180,0.906,181,0.884,182,0.953,183,1.409,184,1.572,185,1.683,186,0.953,187,0.884,188,0.905,189,0.953,190,0.884,191,0.953,192,0.884,193,0.953,194,0.906,195,1.724,196,0.906,197,0.953,198,0.906,199,0.906,200,1.707,201,0.906,202,0.953,203,0.906,204,0.718,205,0.906,206,0.906,207,0.953,208,0.906,209,0.819,210,0.953,211,0.906,212,0.953,213,0.906,214,0.906,215,0.953,216,0.906,217,0.953,218,0.906,219,0.929,220,0.953,221,0.906,222,0.953,223,0.906,224,0.953,225,0.906,226,0.906,227,0.906,228,0.906,229,0.906,230,0.953,231,0.906,232,0.906,233,0.906,234,0.718,235,1.268,236,0.884,237,0.798,238,0.953,239,0.84,240,0.953,241,0.906,242,0.906,243,0.906,244,0.953,245,0.906,246,0.929,247,0.906,248,0.906,249,0.906,250,0.906,251,0.953,252,0.906,253,0.953,254,0.953,255,0.84,256,0.906,257,0.953,258,0.953,269,3.354,290,3.816,301,1.283,302,0.862,308,1.575,312,4.958,313,4.707,328,3.816,399,2.972,434,0.156,539,1.919,580,1.625,742,4.053,743,3.816,744,5.29,745,4.958,746,5.29,747,5.29,748,6.263,749,5.573,750,3.816,751,5.872,752,4.753,753,2.169,754,3.315,755,4.753,756,2.834,757,3.131,758,4.412,759,6.325,760,6.325,761,4.753,762,4.188,763,4.753,764,4.753]],["title/interfaces/DialogData.html",[434,0.144,751,3.255]],["body/interfaces/DialogData.html",[3,0.179,4,0.164,5,0.149,9,0.21,10,0.326,30,0.01,31,0.361,32,0.248,63,0.526,84,1.071,85,0.838,98,1.484,101,0.214,102,0.702,112,1.245,133,0.008,134,0.008,135,0.074,142,0.241,145,0.987,146,0.814,147,0.638,148,0.862,149,1.014,151,2.42,153,0.987,183,1.184,184,1.475,185,1.643,269,3.589,290,6.766,301,1.719,302,1.154,308,2.11,312,4.44,313,4.738,328,6.766,434,0.21,436,1.341,539,1.719,742,3.63,743,5.11,744,5.661,745,5.306,746,5.661,747,5.661,748,5.609,749,5.609,751,6.055,756,3.795,757,4.193]],["title/components/DialogItemCopyComponent.html",[135,0.043,187,0.813]],["body/components/DialogItemCopyComponent.html",[3,0.127,4,0.116,5,0.105,9,0.149,10,0.262,13,2.269,16,1.136,24,0.738,27,1.268,29,0.818,30,0.01,31,0.35,32,0.186,33,0.7,46,0.818,47,0.999,63,0.406,84,1.076,85,0.594,98,1.052,101,0.172,102,0.498,104,0.861,112,1.451,115,1.025,133,0.006,134,0.006,135,0.067,136,0.861,137,1.165,138,0.738,140,0.905,141,1.08,142,0.302,144,0.905,145,1.434,146,1.182,147,0.613,148,0.827,149,0.973,150,0.861,153,0.948,156,0.905,165,0.905,166,1.136,167,1.08,168,0.905,169,1.488,170,0.905,171,0.905,172,0.861,173,1.195,174,0.905,175,0.861,176,0.905,177,0.861,178,0.861,179,0.905,180,0.861,181,0.839,182,0.905,183,0.839,184,1.544,185,0.861,186,0.905,187,1.38,188,1.282,189,0.905,190,0.839,191,0.905,192,0.839,193,0.905,194,0.861,195,1.708,196,0.861,197,0.905,198,0.861,199,0.861,200,1.689,201,0.861,202,0.905,203,0.861,204,0.682,205,0.861,206,0.861,207,0.905,208,0.861,209,0.777,210,0.905,211,0.861,212,0.905,213,0.861,214,0.861,215,0.905,216,0.861,217,0.905,218,0.861,219,0.883,220,0.905,221,0.861,222,0.905,223,0.861,224,0.905,225,0.861,226,0.861,227,0.861,228,0.861,229,0.861,230,0.905,231,0.861,232,0.861,233,0.861,234,0.682,235,1.225,236,0.839,237,0.758,238,0.905,239,0.798,240,0.905,241,0.861,242,0.861,243,0.861,244,0.905,245,0.861,246,0.883,247,0.861,248,0.861,249,0.861,250,0.861,251,0.905,252,0.861,253,0.905,254,0.905,255,0.798,256,0.861,257,0.905,258,0.905,269,3.267,291,1.256,301,1.649,302,0.818,308,1.496,326,2.489,434,0.149,528,2.874,529,1.496,533,2.632,539,1.87,553,1.578,555,1.536,556,1.496,557,1.496,580,1.569,742,4.558,750,3.624,753,2.06,754,3.149,756,2.691,757,2.973,765,4.372,766,3.624,767,4.261,768,4.261,769,6.416,770,5.154,771,3.641,772,3.949,773,5.383,774,1.609,775,5.383,776,4.561,777,4.887,778,5.77,779,6.11,780,4.514,781,4.514,782,4.561,783,4.024,784,4.514,785,3.149,786,2.973,787,1.818,788,1.818,789,1.818,790,2.973,791,5.383,792,5.383]],["title/interfaces/DialogItemCopyData.html",[434,0.144,778,3.255]],["body/interfaces/DialogItemCopyData.html",[3,0.173,4,0.158,5,0.144,9,0.203,10,0.32,13,2.117,30,0.01,32,0.245,47,1.007,63,0.523,84,1.142,85,0.811,101,0.209,102,0.679,112,1.205,133,0.008,134,0.008,135,0.073,142,0.233,145,0.956,146,0.788,147,0.618,148,0.834,149,0.981,153,0.956,184,1.454,187,1.145,188,1.222,269,3.519,301,2.014,302,1.117,308,2.042,326,2.214,434,0.203,436,1.298,528,3.096,529,2.042,533,2.835,539,1.663,553,2.154,555,2.097,556,2.042,557,2.042,742,3.513,756,3.673,757,4.058,765,3.37,766,4.946,767,4.297,768,4.297,769,4.946,770,5.551,771,3.921,772,4.253,773,5.428,774,1.622,775,5.428,776,4.058,777,4.058,778,5.97,782,4.912,783,4.058,785,4.297,786,4.058,787,3.358,788,3.358,789,3.358,790,4.058]],["title/components/DialogItemRenameComponent.html",[135,0.043,190,0.813]],["body/components/DialogItemRenameComponent.html",[3,0.127,4,0.116,5,0.105,9,0.149,10,0.262,13,2.269,16,1.136,24,0.738,27,1.268,29,0.818,30,0.01,31,0.35,32,0.186,33,0.7,46,0.818,47,0.999,63,0.406,84,1.076,85,0.594,98,1.052,101,0.172,102,0.498,104,0.861,112,1.451,115,1.025,133,0.006,134,0.006,135,0.067,136,0.861,137,1.165,138,0.738,140,0.905,141,1.08,142,0.302,144,0.905,145,1.434,146,1.182,147,0.613,148,0.827,149,0.973,150,0.861,153,0.948,156,0.905,165,0.905,166,1.136,167,1.08,168,0.905,169,1.488,170,0.905,171,0.905,172,0.861,173,1.195,174,0.905,175,0.861,176,0.905,177,0.861,178,0.861,179,0.905,180,0.861,181,0.839,182,0.905,183,0.839,184,1.544,185,0.861,186,0.905,187,0.839,188,1.282,189,0.905,190,1.38,191,0.905,192,0.839,193,0.905,194,0.861,195,1.708,196,0.861,197,0.905,198,0.861,199,0.861,200,1.689,201,0.861,202,0.905,203,0.861,204,0.682,205,0.861,206,0.861,207,0.905,208,0.861,209,0.777,210,0.905,211,0.861,212,0.905,213,0.861,214,0.861,215,0.905,216,0.861,217,0.905,218,0.861,219,0.883,220,0.905,221,0.861,222,0.905,223,0.861,224,0.905,225,0.861,226,0.861,227,0.861,228,0.861,229,0.861,230,0.905,231,0.861,232,0.861,233,0.861,234,0.682,235,1.225,236,0.839,237,0.758,238,0.905,239,0.798,240,0.905,241,0.861,242,0.861,243,0.861,244,0.905,245,0.861,246,0.883,247,0.861,248,0.861,249,0.861,250,0.861,251,0.905,252,0.861,253,0.905,254,0.905,255,0.798,256,0.861,257,0.905,258,0.905,269,3.267,291,1.256,301,1.649,302,0.818,308,1.496,326,2.489,434,0.149,528,2.874,529,1.496,533,2.632,539,1.87,553,1.578,555,1.536,556,1.496,557,1.496,580,1.569,742,4.558,750,3.624,753,2.06,754,3.149,756,2.691,757,2.973,767,4.261,768,4.261,770,5.154,771,3.641,772,3.949,774,1.609,776,4.561,777,4.887,782,4.561,783,4.024,785,3.149,786,2.973,787,1.818,788,1.818,789,1.818,790,2.973,791,5.383,792,5.383,793,4.202,794,3.624,795,3.22,796,5.383,797,5.383,798,5.77,799,6.11,800,4.514,801,4.514,802,4.514]],["title/interfaces/DialogItemRenameData.html",[434,0.144,798,3.255]],["body/interfaces/DialogItemRenameData.html",[3,0.173,4,0.158,5,0.144,9,0.203,10,0.32,13,2.117,30,0.01,32,0.245,47,1.007,63,0.523,84,1.142,85,0.811,101,0.209,102,0.679,112,1.205,133,0.008,134,0.008,135,0.073,142,0.233,145,0.956,146,0.788,147,0.618,148,0.834,149,0.981,153,0.956,184,1.454,188,1.222,190,1.145,269,3.519,301,2.014,302,1.117,308,2.042,326,2.214,434,0.203,436,1.298,528,3.096,529,2.042,533,2.835,539,1.663,553,2.154,555,2.097,556,2.042,557,2.042,742,3.513,756,3.673,757,4.058,767,4.297,768,4.297,770,5.551,771,3.921,772,4.253,774,1.622,776,4.058,777,4.058,782,4.912,783,4.058,785,4.297,786,4.058,787,3.358,788,3.358,789,3.358,790,4.058,793,3.239,794,4.946,795,2.482,796,5.428,797,5.428,798,5.97]],["title/components/DialogTextInputComponent.html",[135,0.043,192,0.813]],["body/components/DialogTextInputComponent.html",[3,0.13,4,0.119,5,0.108,9,0.152,10,0.266,13,2.402,16,1.152,27,1.224,30,0.01,31,0.266,46,0.836,47,1.014,63,0.271,84,1.082,85,0.607,98,1.542,101,0.174,102,0.509,104,0.93,112,1.369,115,1.256,133,0.007,134,0.007,135,0.068,136,0.879,137,1.182,138,0.754,140,0.925,141,1.095,142,0.296,144,0.925,145,1.435,146,1.183,147,0.622,148,0.839,149,0.987,150,0.879,153,0.962,156,0.925,165,0.925,166,1.152,167,1.095,168,0.925,169,1.501,170,0.925,171,0.925,172,0.879,173,1.212,174,0.925,175,0.879,176,0.925,177,0.879,178,0.879,179,0.925,180,0.879,181,0.857,182,0.925,183,0.857,184,1.55,185,0.879,186,0.925,187,0.857,188,0.887,189,0.925,190,0.857,191,0.925,192,1.392,193,0.925,194,0.879,195,1.714,196,0.879,197,0.925,198,0.879,199,0.879,200,1.697,201,0.879,202,0.925,203,0.879,204,0.697,205,0.879,206,0.879,207,0.925,208,0.879,209,0.794,210,0.925,211,0.879,212,0.925,213,0.879,214,0.879,215,0.925,216,0.879,217,0.925,218,0.879,219,0.902,220,0.925,221,0.879,222,0.925,223,0.879,224,0.925,225,0.879,226,0.879,227,0.879,228,0.879,229,0.879,230,0.925,231,0.879,232,0.879,233,0.879,234,0.697,235,1.243,236,0.857,237,0.774,238,0.925,239,0.815,240,0.925,241,0.879,242,0.879,243,0.879,244,0.925,245,0.879,246,0.902,247,0.879,248,0.879,249,0.879,250,0.879,251,0.925,252,0.879,253,0.925,254,0.925,255,0.815,256,0.879,257,0.925,258,0.925,291,1.439,301,1.245,302,0.836,308,1.528,326,2.516,434,0.152,528,2.906,529,2.32,530,2.997,531,2.906,532,3.093,553,1.613,555,1.57,556,1.528,557,1.528,742,4.454,744,5.211,745,4.883,746,5.211,747,5.211,754,4.323,756,2.749,774,1.632,776,4.611,777,4.93,782,3.037,783,4.082,786,3.037,790,3.037,803,5.813,804,3.702,805,3.535,806,5.461,807,5.461,808,4.612,809,4.612,810,5.461,811,4.612,812,4.612,813,3.432,814,3.876,815,6.596,816,6.199,817,6.199]],["title/interfaces/DialogTextInputData.html",[434,0.144,813,3.255]],["body/interfaces/DialogTextInputData.html",[3,0.176,4,0.162,5,0.147,9,0.207,10,0.324,13,2.296,30,0.01,32,0.192,47,1.027,63,0.475,84,1.147,85,0.827,98,1.541,101,0.212,102,0.693,112,1.228,133,0.008,134,0.008,135,0.073,142,0.238,145,0.975,146,0.804,147,0.63,148,0.85,149,1.001,153,0.975,184,1.466,192,1.168,301,1.696,302,1.139,308,2.082,326,2.258,434,0.207,436,1.324,528,3.132,529,2.501,530,3.23,531,3.132,532,3.334,553,2.197,555,2.138,556,2.082,557,2.082,742,3.582,744,5.617,745,5.264,746,5.617,747,5.617,754,4.382,756,3.745,774,1.654,776,4.138,777,4.138,782,4.138,783,4.138,786,4.138,790,4.138,803,4.675,804,5.043,805,3.582,806,5.535,807,5.535,810,5.535,813,5.617]],["title/interfaces/Distro.html",[434,0.144,458,1.069]],["body/interfaces/Distro.html",[3,0.089,4,0.081,5,0.133,9,0.104,10,0.203,18,1.6,30,0.01,31,0.343,32,0.268,49,2.139,63,0.55,64,1.6,65,1.558,71,1.57,101,0.221,125,0.683,133,0.005,134,0.005,138,0.774,142,0.12,188,1.194,204,0.715,234,0.477,415,1.222,434,0.259,436,0.998,437,0.897,443,0.792,445,1.802,458,1.389,483,1.489,487,2.29,488,2.119,489,2.174,491,1.02,497,1.415,498,1.136,818,1.802,819,4.613,820,4.376,821,4.051,822,3.594,823,3.534,824,4.376,825,3.598,826,3.651,827,3.598,828,3.651,829,4.051,830,3.908,831,4.051,832,3.651,833,4.207,834,2.945,835,3.598,836,3.598,837,3.598,838,3.598,839,3.761,840,4.051,841,3.598,842,1.442,843,1.442,844,1.442,845,1.136,846,2.775,847,2.701,848,2.49,849,1.661,850,2.398,851,2.701,852,2.701,853,2.398,854,2.398,855,2.701,856,3.107,857,2.987,858,3.386,859,3.386,860,3.386,861,3.386,862,3.386,863,3.386,864,3.386,865,2.59,866,1.884,867,1.884,868,1.884,869,1.884,870,1.884,871,1.884,872,1.884,873,1.884,874,1.884,875,1.884,876,1.884,877,1.884,878,1.884,879,1.884,880,1.884,881,1.884,882,1.442,883,1.884,884,1.884,885,1.884,886,1.273,887,1.884,888,1.884,889,1.491,890,1.884,891,1.884,892,1.884,893,1.884,894,1.884,895,1.884,896,1.884,897,1.884,898,1.884,899,1.884,900,1.728,901,1.884,902,1.884,903,1.884,904,4.029,905,4.698,906,4.029,907,2.429,908,3.854,909,3.854,910,1.802,911,1.802,912,1.6,913,1.6,914,1.802,915,1.728,916,1.728,917,1.802,918,1.802,919,1.802,920,1.802,921,1.802,922,2.398,923,2.59,924,1.802,925,2.59,926,2.59,927,1.802,928,1.802,929,1.6,930,1.728,931,1.661,932,1.491,933,1.6,934,1.396,935,1.728]],["title/components/DistroEditComponent.html",[135,0.043,194,0.834]],["body/components/DistroEditComponent.html",[3,0.059,4,0.054,5,0.049,9,0.069,10,0.147,11,1.474,13,1.432,16,0.639,24,0.562,27,1.325,29,0.623,30,0.01,31,0.342,32,0.17,33,0.534,46,1.142,47,1.236,49,1.389,63,0.481,69,1.502,71,0.697,84,1.066,85,0.277,93,0.489,95,0.54,96,1.53,98,0.592,101,0.059,102,0.232,103,1.783,104,1.127,108,3.236,112,0.411,115,1.517,125,1.828,133,0.004,134,0.004,135,0.042,136,0.401,137,0.656,138,0.344,140,0.421,141,0.891,142,0.309,144,0.421,145,1.368,146,1.13,147,0.345,148,1.225,149,0.548,150,0.401,153,0.534,156,0.421,165,0.421,166,1.172,167,0.608,168,0.421,169,1.011,170,0.421,171,0.421,172,0.401,173,0.673,174,0.421,175,0.401,176,0.421,177,0.401,178,0.832,179,0.421,180,0.401,181,0.639,182,0.421,183,0.391,184,1.142,185,0.401,186,0.421,187,0.639,188,0.722,189,0.421,190,0.391,191,0.421,192,0.391,193,0.421,194,0.962,195,1.404,196,0.401,197,0.421,198,0.401,199,0.401,200,1.365,201,0.401,202,0.421,203,0.401,204,0.318,205,0.401,206,0.401,207,0.421,208,0.962,209,0.752,210,0.421,211,0.401,212,0.421,213,0.401,214,0.401,215,0.421,216,0.401,217,0.421,218,0.962,219,0.411,220,0.421,221,0.401,222,0.421,223,0.401,224,0.421,225,0.401,226,0.401,227,0.401,228,0.401,229,0.401,230,0.421,231,0.401,232,0.401,233,0.401,234,0.318,235,0.69,236,0.391,237,0.353,238,0.421,239,0.371,240,0.421,241,0.401,242,0.401,243,0.401,244,0.421,245,0.401,246,0.411,247,0.401,248,0.401,249,0.401,250,0.401,251,0.421,252,0.401,253,0.421,254,0.421,255,0.371,256,0.401,257,0.421,258,0.421,262,0.743,263,1.271,264,1.178,278,1.208,279,1.362,280,1.506,283,2.159,284,1.541,291,1.037,298,1.178,301,0.929,302,0.381,303,0.54,306,0.597,308,0.697,310,0.501,311,0.929,314,0.582,315,0.582,317,0.9,318,1.362,320,1.396,323,0.582,324,0.582,326,0.756,337,1.203,340,1.15,349,1.881,377,1.236,411,1.466,412,2.265,415,0.479,443,0.862,458,1.896,487,1.11,488,1.506,489,1.054,528,1.812,529,1.447,530,1.868,531,1.812,532,1.928,533,1.659,534,2.132,537,2.059,541,1.208,542,1.396,546,1.623,548,1.623,552,0.992,553,0.735,554,1.027,555,0.716,556,0.697,557,0.697,558,0.582,559,0.582,560,0.554,561,0.906,562,0.959,580,1.534,584,1.717,585,1.362,586,1.792,587,1.54,588,1.502,589,1.579,590,1.432,607,1.373,608,1.373,609,2.387,624,1.065,630,1.808,669,3.405,765,1.15,774,0.906,787,0.847,788,0.847,789,0.847,795,0.847,820,1.881,821,1.742,822,1.68,823,2.228,824,1.881,825,3.75,826,1.569,827,3.75,828,1.569,829,1.742,830,1.68,832,1.569,834,1.428,835,1.961,836,1.961,837,1.961,838,1.961,840,1.742,841,1.961,842,1.569,843,2.301,844,1.569,845,2.146,882,1.569,886,1.386,907,0.756,936,7.184,937,1.15,938,1.973,939,2.489,940,2.387,941,1.961,942,1.961,943,4.365,944,3.172,945,3.44,946,5.043,947,2.876,948,5.043,949,5.043,950,1.808,951,4.365,952,4.365,953,4.365,954,4.365,955,4.365,956,4.365,957,4.365,958,1.199,959,2.876,960,3.44,961,1.961,962,3.44,963,2.102,964,2.102,965,2.102,966,2.102,967,1.852,968,2.102,969,2.102,970,1.385,971,1.385,972,4.404,973,4.738,974,2.761,975,2.265,976,3.031,977,3.031,978,3.031,979,3.031,980,3.031,981,3.031,982,3.031,983,1.565,984,1.565,985,1.852,986,2.102,987,2.102,988,2.102,989,2.102,990,2.102,991,2.102,992,2.102,993,2.102,994,2.102,995,2.102,996,2.102,997,2.102,998,2.102,999,2.102,1000,1.15,1001,1.315,1002,1.565,1003,1.385,1004,1.565,1005,1.385,1006,1.253,1007,1.385,1008,1.199,1009,1.199,1010,1.199,1011,2.102,1012,6.577,1013,2.102,1014,2.102,1015,2.102,1016,2.102,1017,2.729,1018,2.102,1019,2.102,1020,2.102,1021,2.102,1022,2.102,1023,2.102,1024,2.102,1025,2.102,1026,2.102,1027,2.102,1028,2.102,1029,2.102,1030,2.102,1031,2.102,1032,2.102,1033,2.102,1034,2.102,1035,2.102,1036,2.102,1037,2.102,1038,2.102,1039,2.102,1040,2.102,1041,2.102,1042,3.44,1043,2.102,1044,2.102,1045,2.102,1046,4.365,1047,2.102,1048,2.102,1049,2.102,1050,5.043,1051,3.44,1052,2.102,1053,5.043,1054,3.44,1055,2.102,1056,5.043,1057,3.44,1058,2.102,1059,5.043,1060,3.44,1061,2.102,1062,5.043,1063,3.44,1064,2.102,1065,2.102,1066,1.386,1067,1.199,1068,1.707,1069,1.027,1070,1.15,1071,0.929,1072,1.199,1073,1.199,1074,1.199,1075,1.315,1076,0.959,1077,1.992,1078,0.873,1079,0.959,1080,0.929,1081,0.9,1082,1.852,1083,1.852,1084,2.102,1085,2.875,1086,3.846,1087,3.44,1088,3.846,1089,3.846,1090,3.846,1091,4.365,1092,3.846,1093,1.961,1094,2.151,1095,2.151,1096,2.151,1097,2.761,1098,2.151,1099,5.519,1100,6.577,1101,5.043,1102,4.048,1103,2.265,1104,3.031]],["title/interfaces/DistroSignatureOsVersion.html",[434,0.144,1105,3.255]],["body/interfaces/DistroSignatureOsVersion.html",[3,0.13,4,0.119,5,0.108,9,0.153,10,0.267,30,0.01,32,0.272,33,1.349,63,0.54,78,3.723,101,0.175,107,5.298,133,0.007,134,0.007,142,0.176,146,0.796,415,0.977,434,0.247,436,0.977,437,1.317,443,1.162,444,1.985,821,3.799,822,3.665,828,3.423,829,3.799,840,3.799,889,3.313,1102,6.931,1105,5.225,1106,3.723,1107,6.611,1108,6.611,1109,6.611,1110,6.611,1111,6.611,1112,6.611,1113,4.692,1114,6.611,1115,6.611,1116,6.611,1117,6.611,1118,5.482,1119,6.611,1120,6.186,1121,6.611,1122,6.611,1123,6.023,1124,6.186,1125,6.611,1126,6.611,1127,6.611,1128,6.611,1129,6.186,1130,6.611,1131,6.611,1132,6.611,1133,7.098,1134,6.186,1135,5.636,1136,6.186,1137,6.186,1138,6.186,1139,7.608,1140,7.608,1141,3.452,1142,3.723,1143,4.087,1144,4.087,1145,6.611,1146,3.723,1147,3.235,1148,5.225,1149,4.087,1150,3.452,1151,3.452,1152,4.087,1153,5.482,1154,5.482,1155,4.995,1156,4.631,1157,5.482,1158,4.087,1159,4.087,1160,4.087,1161,4.087]],["title/interfaces/DistroSignatures.html",[434,0.144,1151,3.255]],["body/interfaces/DistroSignatures.html",[3,0.154,4,0.141,5,0.128,9,0.18,10,0.297,30,0.01,32,0.232,44,2.994,63,0.529,78,5.564,101,0.195,107,4.757,133,0.007,134,0.007,142,0.207,146,1.023,415,0.762,434,0.263,436,1.153,437,1.554,443,1.737,444,2.967,821,2.772,822,2.674,828,2.497,829,2.772,840,2.772,889,3.589,1102,7.115,1105,5.159,1106,4.394,1107,4.823,1108,4.823,1109,4.823,1110,4.823,1111,4.823,1112,4.823,1113,3.423,1114,4.823,1115,4.823,1116,4.823,1117,4.823,1118,6.108,1119,6.108,1120,4.823,1121,6.108,1122,6.108,1123,5.564,1124,4.823,1125,6.108,1126,6.108,1127,6.108,1128,6.108,1129,4.823,1130,6.108,1131,6.108,1132,6.108,1133,6.108,1134,4.823,1135,4.394,1136,4.823,1137,4.823,1138,4.823,1139,7.81,1140,7.81,1141,4.074,1142,5.564,1143,6.108,1144,6.108,1145,7.426,1146,5.564,1147,4.835,1148,5.952,1149,6.108,1150,5.159,1151,5.159,1152,7.046,1153,6.108,1154,6.108,1155,5.564,1156,5.159,1157,6.108,1158,4.823,1159,4.823,1160,4.823,1161,4.823]],["title/components/DistrosOverviewComponent.html",[135,0.043,196,0.834]],["body/components/DistrosOverviewComponent.html",[3,0.096,4,0.088,5,0.08,9,0.113,10,0.216,11,1.625,13,0.973,16,0.935,24,0.823,27,1.348,29,1.19,30,0.01,31,0.374,32,0.236,33,1.019,46,1.325,47,1.348,63,0.51,65,0.866,69,1.773,84,1.121,85,0.451,93,0.797,95,0.88,96,0.797,98,1.131,101,0.096,102,0.378,103,0.797,104,0.963,112,0.67,115,0.844,125,0.74,133,0.005,134,0.005,135,0.058,136,0.654,137,0.959,138,0.561,139,1.467,140,0.687,141,0.889,142,0.315,144,0.687,145,1.415,146,1.168,147,0.505,148,0.681,149,0.801,150,0.654,151,1.912,153,0.78,156,0.687,165,0.687,166,1.359,167,0.889,168,0.687,169,1.316,170,0.687,171,0.687,172,0.654,173,0.984,174,0.687,175,0.654,176,0.687,177,0.654,178,0.654,179,0.687,180,0.654,181,0.637,182,0.687,183,0.935,184,1.369,185,1.136,186,0.687,187,0.637,188,0.939,189,0.687,190,0.935,191,0.687,192,0.637,193,0.687,194,0.654,195,1.611,196,1.252,197,0.687,198,0.654,199,0.654,200,1.585,201,0.654,202,0.687,203,0.654,204,0.518,205,0.654,206,0.654,207,0.687,208,0.654,209,0.59,210,0.687,211,0.654,212,0.687,213,0.654,214,0.654,215,0.687,216,0.654,217,0.687,218,0.654,219,0.67,220,0.687,221,0.654,222,0.687,223,0.654,224,0.687,225,0.654,226,0.654,227,0.654,228,0.654,229,0.654,230,0.687,231,0.654,232,0.654,233,0.654,234,0.518,235,1.009,236,0.637,237,0.575,238,0.687,239,0.606,240,0.687,241,0.654,242,0.654,243,0.654,244,0.687,245,0.654,246,0.67,247,0.654,248,0.654,249,0.654,250,0.654,251,0.687,252,0.654,253,0.687,254,0.687,255,0.606,256,0.654,257,0.687,258,0.687,262,1.087,263,1.735,264,1.609,277,2.474,278,1.65,279,1.773,280,1.961,283,2.81,284,1.846,291,1.225,296,2.374,298,1.609,301,0.925,302,0.621,303,0.88,305,1.802,306,0.973,307,1.423,308,1.136,310,0.817,311,2.222,312,2.391,313,2.551,314,0.949,315,0.949,316,2.568,317,1.467,318,1.773,320,1.818,323,0.949,324,0.949,326,1.232,330,2.752,338,2.645,339,2.645,410,1.303,411,1.839,412,2.715,443,1.261,458,1.605,488,1.961,489,1.542,529,1.975,539,1.609,541,1.65,542,1.818,558,0.949,559,0.949,560,0.903,561,1.325,580,1.686,584,2.028,585,1.773,586,2.04,587,1.818,588,1.773,589,1.864,590,1.864,607,1.874,608,1.874,753,1.564,787,1.381,788,1.381,789,1.381,793,1.802,795,2.401,845,2.36,886,2.026,907,1.232,938,1.968,1066,1.381,1068,2.568,1076,1.564,1077,2.295,1078,1.423,1079,1.564,1080,1.514,1081,1.467,1082,3.02,1083,3.02,1103,3.313,1162,7.334,1163,1.802,1164,6.346,1165,3.299,1166,2.812,1167,2.812,1168,2.812,1169,2.812,1170,2.812,1171,2.812,1172,2.812,1173,2.812,1174,2.812,1175,3.26,1176,3.26,1177,3.26,1178,5.96,1179,2.752,1180,2.474,1181,5.031,1182,5.031,1183,5.785,1184,4.433,1185,3.146,1186,5.031,1187,3.428,1188,3.428,1189,3.428,1190,5.031,1191,3.428,1192,3.428,1193,4.433,1194,3.428,1195,2.752,1196,2.258,1197,2.044,1198,2.752,1199,3.02,1200,1.674,1201,2.044,1202,5.251,1203,3.428,1204,1.875,1205,2.044,1206,3.428,1207,3.02,1208,4.038,1209,4.433,1210,2.752,1211,2.752]],["title/interfaces/Event.html",[309,1.572,434,0.144]],["body/interfaces/Event.html",[3,0.148,4,0.174,5,0.123,9,0.174,10,0.291,30,0.01,31,0.358,32,0.249,49,1.576,63,0.546,65,1.462,101,0.252,133,0.007,134,0.007,142,0.2,147,0.53,163,1.898,293,3.493,294,3.486,295,3.486,309,2.435,415,1.234,434,0.295,435,2.261,436,1.428,437,1.5,438,2.333,439,2.41,440,2.41,441,2.41,442,2.41,443,1.875,444,2.261,445,1.912,446,2.41,447,2.41,448,2.261,449,2.41,450,2.41,451,2.41,452,2.41,453,2.193,454,2.193,455,2.128,456,2.927,457,2.128,458,1.291,459,2.333,460,2.333,461,2.333,462,2.193,463,2.261,464,2.261,465,2.993,466,2.261,467,2.193,468,2.333,469,2.333,470,2.333,471,2.333,472,2.333,473,2.333,474,2.333,475,2.333,476,2.333,477,2.333,478,2.333,479,2.333,480,2.333,481,2.333,482,2.193,483,1.661,484,2.333,485,2.333,486,2.333,487,1.705,488,1.578,489,1.619,490,2.193,491,1.705,492,2.333,493,2.333,494,2.261,495,2.41,496,2.261,497,1.578,498,1.898,499,2.261,500,2.261,501,3.202,502,2.261,503,2.41,504,2.41,505,2.41,506,2.41,507,2.41,508,2.41,509,2.41,510,2.41,511,2.41,512,2.41,513,2.41,514,2.333,515,2.41,516,2.41,517,3.601,518,2.193,519,2.333,520,2.333,521,2.333,522,2.41,523,2.333,524,2.333]],["title/interfaces/ExampleFlatNode.html",[434,0.144,1212,3.05]],["body/interfaces/ExampleFlatNode.html",[3,0.153,4,0.14,5,0.127,9,0.179,10,0.296,11,1.419,24,0.889,30,0.01,31,0.371,32,0.231,33,0.843,44,2.974,47,0.889,49,1.856,63,0.468,84,1.084,85,0.716,96,1.265,101,0.153,102,0.6,103,1.764,104,0.943,108,2.327,112,1.063,115,1.273,133,0.007,134,0.007,135,0.067,141,0.961,142,0.206,145,0.843,146,0.696,147,0.545,148,0.736,149,0.866,151,2.067,153,0.843,209,0.936,255,0.961,256,1.446,262,1.175,263,2.01,269,3.257,271,4.115,280,1.624,302,0.986,303,1.397,337,1.901,415,1.056,434,0.227,436,1.146,445,1.773,805,3.936,1071,3.049,1180,2.257,1212,5.29,1213,4.047,1214,3.581,1215,4.047,1216,4.316,1217,5.018,1218,5.345,1219,5.461,1220,4.316,1221,3.4,1222,4.316,1223,4.316,1224,5.541,1225,3.4,1226,3.4,1227,3.4,1228,3.242,1229,3.242,1230,2.974,1231,5.261,1232,5.564,1233,4.365,1234,4.365,1235,4.365,1236,4.365,1237,4.316,1238,4.742,1239,3.4,1240,4.316,1241,3.4,1242,4.365,1243,4.365,1244,3.4,1245,3.4,1246,4.365,1247,3.4,1248,3.4,1249,3.4,1250,4.365,1251,4.365,1252,4.365,1253,5.541,1254,4.365,1255,4.365,1256,5.541,1257,4.365,1258,4.365,1259,3.242,1260,4.365]],["title/interfaces/ExtendedVersion.html",[434,0.144,448,1.872]],["body/interfaces/ExtendedVersion.html",[3,0.148,4,0.174,5,0.123,9,0.174,10,0.291,30,0.01,31,0.321,32,0.249,49,1.576,63,0.546,65,1.406,101,0.252,133,0.007,134,0.007,142,0.2,147,0.53,163,1.898,293,2.9,294,2.333,295,2.333,309,1.898,415,1.234,434,0.295,435,2.261,436,1.428,437,1.5,438,2.333,439,2.41,440,2.41,441,2.41,442,2.41,443,2.155,444,2.261,445,1.903,446,2.41,447,2.41,448,2.9,449,3.601,450,3.601,451,3.601,452,3.601,453,2.193,454,2.193,455,2.128,456,2.927,457,2.128,458,1.291,459,2.333,460,2.333,461,2.333,462,2.193,463,2.261,464,2.261,465,2.993,466,2.261,467,2.193,468,2.333,469,2.333,470,2.333,471,2.333,472,2.333,473,2.333,474,2.333,475,2.333,476,2.333,477,2.333,478,2.333,479,2.333,480,2.333,481,2.333,482,2.193,483,1.661,484,2.333,485,2.333,486,2.333,487,1.705,488,1.578,489,1.619,490,2.193,491,1.705,492,2.333,493,2.333,494,2.261,495,2.41,496,2.261,497,1.578,498,1.898,499,2.261,500,2.261,501,3.202,502,2.261,503,2.41,504,2.41,505,2.41,506,2.41,507,2.41,508,2.41,509,2.41,510,2.41,511,2.41,512,2.41,513,2.41,514,2.333,515,2.41,516,2.41,517,2.41,518,2.193,519,2.333,520,2.333,521,2.333,522,2.41,523,2.333,524,2.333]],["title/interfaces/File.html",[5,0.102,434,0.144]],["body/interfaces/File.html",[3,0.091,4,0.083,5,0.149,9,0.107,10,0.207,18,1.642,30,0.01,31,0.345,32,0.263,49,2.141,63,0.55,64,1.642,65,1.555,71,1.6,101,0.223,125,0.7,133,0.005,134,0.005,138,1.117,142,0.123,188,1.199,204,0.729,234,0.49,415,1.231,434,0.261,436,1.017,437,0.92,443,0.812,445,1.789,458,1.18,483,2.149,487,1.862,488,1.723,489,1.768,491,1.046,497,1.442,498,1.165,818,1.849,819,4.645,820,4.402,821,4.075,822,3.121,823,3.555,824,4.402,825,1.849,826,3.672,827,1.849,828,3.672,829,4.075,830,3.931,831,4.075,832,3.672,833,4.231,834,2.394,835,1.849,836,1.849,837,1.849,838,1.849,839,1.933,840,4.075,841,1.849,842,1.479,843,1.479,844,1.479,845,1.165,846,2.817,847,2.753,848,2.538,849,1.705,850,2.445,851,2.753,852,2.753,853,2.445,854,2.445,855,2.753,856,3.155,857,3.033,858,3.439,859,3.439,860,3.439,861,3.439,862,3.439,863,3.439,864,3.439,865,2.641,866,1.933,867,1.933,868,1.933,869,1.933,870,1.933,871,1.933,872,1.933,873,1.933,874,1.933,875,1.933,876,1.933,877,1.933,878,1.933,879,1.933,880,1.933,881,1.933,882,1.479,883,1.933,884,1.933,885,1.933,886,1.306,887,1.933,888,1.933,889,1.53,890,1.933,891,1.933,892,1.933,893,1.933,894,1.933,895,1.933,896,1.933,897,1.933,898,1.933,899,1.933,900,1.773,901,1.933,902,1.933,903,1.933,904,4.073,905,4.728,906,4.073,907,2.456,908,3.896,909,3.896,910,1.849,911,1.849,912,1.642,913,1.642,914,1.849,915,1.773,916,1.773,917,1.849,918,1.849,919,1.849,920,1.849,921,1.849,922,3.46,923,3.737,924,3.644,925,3.737,926,3.737,927,1.849,928,1.849,929,1.642,930,1.773,931,1.705,932,1.53,933,1.642,934,1.432,935,1.773]],["title/components/FileEditComponent.html",[135,0.043,198,0.834]],["body/components/FileEditComponent.html",[3,0.081,4,0.074,5,0.192,9,0.095,10,0.19,11,1.611,13,1.714,16,0.824,24,0.725,27,1.33,29,0.804,30,0.01,31,0.362,32,0.198,33,0.688,46,1.294,47,1.33,63,0.432,69,1.756,71,0.96,84,1.117,85,0.381,93,0.674,95,0.744,96,0.674,98,0.764,101,0.081,102,0.319,103,0.674,104,1.112,112,0.566,115,1.487,125,1.631,133,0.005,134,0.005,135,0.052,136,0.552,137,0.846,138,1.064,140,0.581,141,0.784,142,0.311,144,0.581,145,1.401,146,1.156,147,0.445,148,1.195,149,0.706,150,0.552,153,0.688,156,0.581,165,0.581,166,1.328,167,0.784,168,0.581,169,1.21,170,0.581,171,0.581,172,0.552,173,0.867,174,0.581,175,0.552,176,0.581,177,0.552,178,0.552,179,0.581,180,0.552,181,0.824,182,0.581,183,0.539,184,1.294,185,0.552,186,0.581,187,0.824,188,0.864,189,0.581,190,0.539,191,0.581,192,0.539,193,0.581,194,0.552,195,1.545,196,0.552,197,0.581,198,1.151,199,0.552,200,1.514,201,0.552,202,0.581,203,0.552,204,0.438,205,0.552,206,0.552,207,0.581,208,0.552,209,0.499,210,0.581,211,0.552,212,0.581,213,0.552,214,0.552,215,0.581,216,0.552,217,0.581,218,0.552,219,0.566,220,0.581,221,0.552,222,0.581,223,0.552,224,0.581,225,0.552,226,0.552,227,0.552,228,0.552,229,0.552,230,0.581,231,0.552,232,0.552,233,0.552,234,0.438,235,0.889,236,0.539,237,0.486,238,0.581,239,0.512,240,0.581,241,0.552,242,0.552,243,0.552,244,0.581,245,0.552,246,0.566,247,0.552,248,0.552,249,0.552,250,0.552,251,0.581,252,0.552,253,0.581,254,0.581,255,0.512,256,0.552,257,0.581,258,0.581,262,0.958,263,1.569,264,1.454,278,1.491,279,1.63,280,1.803,283,2.584,284,1.746,291,1.241,298,1.454,301,1.197,302,0.525,303,0.744,306,0.822,308,0.96,310,0.691,311,1.28,314,0.802,315,0.802,317,1.24,318,1.63,320,1.671,323,0.802,324,0.802,326,1.041,337,1.551,340,1.585,349,2.425,377,1.594,411,1.661,412,2.566,415,0.617,458,1.084,483,1.898,528,2.236,529,1.785,530,2.306,531,2.236,532,2.38,533,2.048,534,2.631,537,2.542,541,1.491,542,1.671,546,2.092,548,2.092,552,1.367,553,1.013,554,1.415,555,0.986,556,0.96,557,0.96,558,0.802,559,0.802,560,0.763,561,1.168,562,1.322,580,1.763,584,2.054,585,1.63,586,1.988,587,1.801,588,1.756,589,1.847,590,1.714,593,3.3,607,1.694,608,1.694,609,2.947,624,1.467,630,2.331,669,3.442,765,1.585,774,1.168,787,1.167,788,1.167,789,1.167,795,1.167,823,2.666,826,2.023,834,1.841,842,2.023,843,2.754,844,2.023,845,2.466,907,1.041,922,3.056,923,3.301,924,2.529,925,3.301,926,3.301,937,1.585,938,2.361,939,3.072,940,2.947,941,2.529,942,2.529,944,3.71,947,3.442,958,1.652,959,3.442,961,2.529,972,4.301,973,4.62,984,2.156,985,2.552,1000,1.585,1001,1.811,1008,1.652,1009,1.652,1010,1.652,1017,2.773,1066,1.786,1067,1.652,1068,2.107,1069,1.415,1070,1.585,1071,1.28,1072,1.652,1073,1.652,1074,1.652,1075,1.811,1076,1.322,1077,2.458,1078,1.202,1079,1.322,1080,1.28,1081,1.24,1093,2.529,1094,2.773,1095,2.773,1096,2.773,1098,2.773,1261,7.234,1262,5.388,1263,4.434,1264,6.036,1265,6.036,1266,6.036,1267,4.434,1268,4.434,1269,2.897,1270,2.897,1271,2.552,1272,2.897,1273,2.552,1274,2.897,1275,2.897,1276,2.326,1277,2.156,1278,2.897,1279,1.727,1280,2.897,1281,2.897,1282,2.897,1283,2.897,1284,2.897,1285,2.897,1286,2.897,1287,2.897,1288,2.897,1289,2.897,1290,2.897,1291,2.897,1292,2.897,1293,2.897,1294,2.897,1295,2.897,1296,2.897,1297,2.897,1298,2.897,1299,2.552,1300,2.552,1301,2.897]],["title/components/FileOverviewComponent.html",[135,0.043,199,0.834]],["body/components/FileOverviewComponent.html",[3,0.098,4,0.089,5,0.182,9,0.114,10,0.218,11,1.63,13,0.985,16,0.944,24,0.83,27,1.351,29,1.197,30,0.01,31,0.374,32,0.237,33,1.025,46,1.331,47,1.351,63,0.51,65,0.874,69,1.783,84,1.116,85,0.457,93,0.808,95,0.892,96,0.808,98,0.874,101,0.098,102,0.383,103,0.808,104,0.966,112,0.679,115,0.852,125,0.75,133,0.005,134,0.005,135,0.058,136,0.662,137,0.968,138,0.568,140,0.696,141,0.897,142,0.316,144,0.696,145,1.416,146,1.169,147,0.509,148,0.687,149,0.809,150,0.662,153,0.788,156,0.696,165,0.696,166,1.365,167,0.897,168,0.696,169,1.324,170,0.696,171,0.696,172,0.662,173,0.993,174,0.696,175,0.662,176,0.696,177,0.662,178,0.662,179,0.696,180,0.662,181,0.645,182,0.696,183,0.645,184,1.375,185,0.662,186,0.696,187,0.645,188,0.945,189,0.696,190,0.944,191,0.696,192,0.645,193,0.696,194,0.662,195,1.616,196,0.662,197,0.696,198,0.662,199,1.259,200,1.59,201,0.662,202,0.696,203,0.662,204,0.524,205,0.662,206,0.662,207,0.696,208,0.662,209,0.598,210,0.696,211,0.662,212,0.696,213,0.662,214,0.662,215,0.696,216,0.662,217,0.696,218,0.662,219,0.679,220,0.696,221,0.662,222,0.696,223,0.662,224,0.696,225,0.662,226,0.662,227,0.662,228,0.662,229,0.662,230,0.696,231,0.662,232,0.662,233,0.662,234,0.524,235,1.018,236,0.645,237,0.583,238,0.696,239,0.613,240,0.696,241,0.662,242,0.662,243,0.662,244,0.696,245,0.662,246,0.679,247,0.662,248,0.662,249,0.662,250,0.662,251,0.696,252,0.662,253,0.696,254,0.696,255,0.613,256,0.662,257,0.696,258,0.696,262,1.097,263,1.748,264,1.621,277,2.492,278,1.662,279,1.783,280,1.973,283,2.827,284,1.854,291,1.234,296,2.396,298,1.621,301,0.937,302,0.629,303,0.892,305,1.825,306,0.985,307,1.441,308,1.15,310,0.828,311,1.533,314,0.961,315,0.961,316,2.584,317,1.486,318,1.783,320,1.829,323,0.961,324,0.961,326,1.248,330,2.777,338,2.67,339,2.67,410,1.319,411,1.845,412,2.725,483,2.077,539,1.621,541,1.662,542,1.829,558,0.961,559,0.961,560,0.914,561,1.337,580,1.697,584,2.043,585,1.783,586,2.047,587,1.829,588,1.783,589,1.875,590,1.875,607,1.888,608,1.888,753,1.584,774,1.337,787,1.398,788,1.398,789,1.398,793,1.825,795,2.418,845,2.374,907,1.248,922,3.345,932,2.396,938,1.986,1066,1.398,1068,2.584,1076,1.584,1077,2.317,1078,1.441,1079,1.584,1080,1.533,1081,1.486,1163,1.825,1165,3.316,1166,2.832,1167,2.832,1168,2.832,1169,2.832,1170,2.832,1171,2.832,1172,2.832,1173,2.832,1174,2.832,1175,3.283,1176,3.283,1177,3.283,1179,2.777,1180,2.492,1184,4.474,1185,2.171,1193,4.474,1196,3.344,1197,2.07,1198,2.777,1200,1.696,1201,2.07,1204,1.899,1205,2.07,1210,2.777,1211,2.777,1299,3.059,1300,3.059,1302,7.352,1303,2.571,1304,2.895,1305,5.078,1306,5.078,1307,6.606,1308,5.078,1309,2.787,1310,2.421,1311,2.421,1312,5.078,1313,2.421,1314,2.07,1315,2.421,1316,2.421,1317,2.171,1318,6.003,1319,3.472,1320,2.171,1321,3.472,1322,3.472,1323,5.078,1324,5.078]],["title/injectables/GetObjService.html",[0,2.299,351,3.255]],["body/injectables/GetObjService.html",[0,3.366,2,3.189,3,0.136,4,0.124,5,0.15,9,0.159,10,0.274,16,1.19,24,1.248,27,1.381,29,0.878,30,0.01,31,0.362,32,0.242,33,0.751,38,4.266,44,2.648,45,3.377,46,1.161,47,0.792,49,1.126,63,0.466,64,2.451,80,5.339,84,0.944,85,0.637,93,1.489,96,1.489,98,0.834,99,3.377,100,2.886,101,0.136,102,0.791,103,1.126,104,1.034,110,3.027,112,1.403,115,1.074,133,0.007,134,0.007,135,0.047,137,0.923,142,0.323,148,1.126,181,0.9,188,1.244,237,0.813,291,1.632,337,3.094,345,7.186,351,4.765,362,6.725,375,5.908,387,4.003,455,1.95,456,1.894,491,1.563,539,1.937,556,1.604,562,2.209,586,1.275,588,1.307,591,3.603,762,4.266,814,3.027,823,2.828,832,3.273,882,2.921,931,2.545,932,3.384,933,3.632,934,2.139,950,3.366,1078,2.01,1123,3.886,1147,3.377,1164,3.886,1228,2.886,1229,3.817,1230,4.461,1325,7.529,1326,4.266,1327,7.173,1328,7.938,1329,7.173,1330,7.633,1331,6.402,1332,4.842,1333,6.994,1334,8.155,1335,4.842,1336,6.402,1337,4.842,1338,4.842,1339,6.402,1340,6.402,1341,6.402,1342,4.842,1343,4.842,1344,4.842,1345,4.842,1346,4.842,1347,4.842,1348,3.886,1349,3.886,1350,3.603,1351,4.842,1352,4.842,1353,4.842,1354,6.402,1355,6.402,1356,4.842,1357,4.842,1358,6.402,1359,4.842,1360,4.842,1361,4.842,1362,4.842,1363,4.842,1364,3.189,1365,7.173,1366,4.266,1367,4.842,1368,5.641,1369,4.842,1370,4.842,1371,4.266,1372,6.402,1373,4.842,1374,4.842,1375,4.842,1376,4.266,1377,6.402,1378,4.842,1379,3.886,1380,6.402,1381,4.842,1382,4.842,1383,4.842,1384,5.641,1385,4.842,1386,4.842,1387,4.842,1388,4.266,1389,4.842,1390,4.842,1391,4.842,1392,4.842,1393,4.842,1394,4.842,1395,4.842,1396,5.139,1397,4.842,1398,6.402,1399,7.173,1400,4.842,1401,4.842]],["title/components/HardlinkComponent.html",[135,0.043,201,0.834]],["body/components/HardlinkComponent.html",[3,0.13,4,0.119,5,0.108,9,0.153,10,0.267,11,1.609,16,1.157,24,1.018,27,1.28,29,0.841,30,0.01,31,0.301,32,0.19,33,0.72,46,1.128,47,1.227,69,1.253,84,1.115,85,0.611,93,1.08,95,1.192,98,1.072,101,0.13,102,0.512,104,0.873,115,1.045,133,0.007,134,0.007,135,0.068,136,0.885,137,1.187,138,0.759,140,0.931,141,1.1,142,0.305,144,0.931,145,1.435,146,1.184,147,0.624,148,0.843,149,0.992,150,0.885,153,0.966,156,0.931,165,0.931,166,1.306,167,1.1,168,0.931,169,1.505,170,0.931,171,0.931,172,0.885,173,1.217,174,0.931,175,0.885,176,0.931,177,0.885,178,0.885,179,0.931,180,0.885,181,0.863,182,0.931,183,0.863,184,1.36,185,0.885,186,0.931,187,0.863,188,0.891,189,0.931,190,0.863,191,0.931,192,0.863,193,0.931,194,0.885,195,1.717,196,0.885,197,0.931,198,0.885,199,0.885,200,1.699,201,1.431,202,0.931,203,0.885,204,0.701,205,0.885,206,0.885,207,0.931,208,0.885,209,0.799,210,0.931,211,0.885,212,0.931,213,0.885,214,0.885,215,0.931,216,0.885,217,0.931,218,0.885,219,0.908,220,0.931,221,0.885,222,0.931,223,0.885,224,0.931,225,0.885,226,0.885,227,0.885,228,0.885,229,0.885,230,0.931,231,0.885,232,0.885,233,0.885,234,0.701,235,1.248,236,0.863,237,0.779,238,0.931,239,0.82,240,0.931,241,0.885,242,0.885,243,0.885,244,0.931,245,0.885,246,0.908,247,0.885,248,0.885,249,0.885,250,0.885,251,0.931,252,0.885,253,0.931,254,0.931,255,0.82,256,0.885,257,0.931,258,0.931,262,1.345,264,1.896,278,1.944,279,2.026,284,2.012,291,0.954,298,1.896,302,0.841,310,1.107,314,1.285,315,1.285,318,1.253,320,1.285,323,1.285,324,1.285,377,1.668,410,1.764,411,1.971,529,2.328,539,1.896,541,1.944,542,2.078,558,1.285,559,1.285,560,1.222,561,1.639,580,1.192,585,1.253,586,1.639,587,1.285,588,1.253,589,1.318,590,1.318,774,1.639,1402,4.09,1403,6.613,1404,6.225,1405,6.225,1406,7.506,1407,6.225,1408,4.642,1409,4.642,1410,4.642,1411,4.09,1412,4.642]],["title/interfaces/Image.html",[204,0.661,434,0.144]],["body/interfaces/Image.html",[3,0.086,4,0.079,5,0.164,9,0.101,10,0.199,18,1.559,30,0.01,31,0.341,32,0.269,49,2.137,63,0.55,64,1.559,65,1.553,71,1.539,101,0.22,125,0.665,133,0.005,134,0.005,138,0.759,142,0.116,188,1.188,204,0.845,234,0.465,415,1.225,434,0.258,436,0.979,437,0.874,443,0.771,445,1.839,458,1.135,483,1.46,487,2.268,488,2.098,489,2.153,491,0.994,497,1.387,498,1.106,818,1.756,819,4.58,820,4.35,821,4.027,822,3.562,823,3.513,824,4.35,825,1.756,826,3.629,827,1.756,828,3.629,829,4.027,830,3.884,831,4.027,832,3.629,833,4.181,834,2.321,835,1.756,836,1.756,837,1.756,838,1.756,839,1.835,840,4.027,841,1.756,842,1.405,843,1.405,844,1.405,845,1.106,846,3.432,847,2.648,848,2.442,849,1.619,850,3.384,851,2.648,852,2.648,853,2.352,854,2.352,855,2.648,856,3.059,857,3.694,858,4.189,859,4.189,860,4.189,861,4.189,862,4.189,863,4.189,864,4.189,865,2.54,866,1.835,867,1.835,868,1.835,869,1.835,870,1.835,871,1.835,872,1.835,873,1.835,874,1.835,875,1.835,876,1.835,877,1.835,878,1.835,879,1.835,880,1.835,881,1.835,882,1.405,883,1.835,884,1.835,885,1.835,886,1.24,887,1.835,888,1.835,889,1.453,890,1.835,891,1.835,892,1.835,893,1.835,894,1.835,895,1.835,896,1.835,897,1.835,898,1.835,899,1.835,900,1.684,901,1.835,902,1.835,903,1.835,904,3.984,905,4.667,906,3.984,907,2.402,908,3.811,909,3.811,910,1.756,911,1.756,912,1.559,913,1.559,914,1.756,915,1.684,916,1.684,917,1.756,918,1.756,919,1.756,920,1.756,921,1.756,922,2.352,923,2.54,924,1.756,925,2.54,926,2.54,927,3.551,928,3.551,929,1.559,930,1.684,931,1.619,932,1.453,933,1.559,934,1.36,935,1.684]],["title/components/ImageEditComponent.html",[135,0.043,203,0.834]],["body/components/ImageEditComponent.html",[3,0.075,4,0.068,5,0.146,9,0.088,10,0.178,11,1.576,13,1.637,16,0.772,24,0.679,27,1.32,29,0.752,30,0.01,31,0.357,32,0.211,33,0.644,46,1.255,47,1.307,63,0.457,69,1.689,71,0.881,84,1.109,85,0.35,93,0.619,95,0.683,96,0.966,98,0.715,101,0.075,102,0.293,103,1.188,104,1.117,108,2.185,112,0.52,115,1.499,125,1.657,133,0.004,134,0.004,135,0.05,136,0.507,137,0.791,138,0.435,140,0.533,141,0.733,142,0.308,144,0.533,145,1.393,146,1.15,147,0.416,148,1.206,149,0.661,150,0.507,153,0.644,156,0.533,165,0.533,166,1.287,167,0.733,168,0.533,169,1.156,170,0.533,171,0.533,172,0.507,173,0.812,174,0.533,175,0.507,176,0.533,177,0.507,178,0.507,179,0.533,180,0.507,181,0.772,182,0.533,183,0.494,184,1.255,185,0.507,186,0.533,187,0.772,188,0.825,189,0.533,190,0.494,191,0.533,192,0.494,193,0.533,194,0.507,195,1.509,196,0.507,197,0.533,198,0.507,199,0.507,200,1.476,201,0.507,202,0.533,203,1.1,204,1.272,205,0.507,206,0.507,207,0.533,208,0.507,209,0.458,210,0.533,211,0.507,212,0.533,213,0.507,214,0.507,215,0.533,216,0.507,217,0.533,218,1.1,219,0.52,220,0.533,221,0.507,222,0.533,223,0.507,224,0.533,225,0.507,226,0.507,227,0.507,228,0.507,229,0.507,230,0.533,231,0.507,232,0.507,233,0.507,234,0.402,235,0.832,236,0.494,237,0.446,238,0.533,239,0.47,240,0.533,241,0.507,242,0.507,243,0.507,244,0.533,245,0.507,246,0.52,247,0.507,248,0.507,249,0.507,250,0.507,251,0.533,252,0.507,253,0.533,254,0.533,255,0.47,256,0.507,257,0.533,258,0.533,262,0.897,263,1.486,264,1.378,278,1.413,279,1.557,280,1.723,283,2.469,284,1.692,291,1.185,298,1.378,301,1.121,302,0.482,303,0.683,306,0.755,308,0.881,310,0.634,311,1.175,314,0.736,315,0.736,317,1.138,318,1.557,320,1.597,323,0.736,324,0.736,326,0.956,337,2.017,340,1.455,349,2.27,377,1.492,411,1.611,412,2.488,415,0.578,443,1.04,458,1.015,487,1.862,488,1.723,489,1.272,528,2.119,529,1.692,530,2.185,531,2.119,532,2.255,533,1.94,534,2.493,537,2.408,541,1.413,542,1.597,546,1.958,548,1.958,552,1.255,553,0.93,554,1.299,555,0.905,556,0.881,557,0.881,558,0.736,559,0.736,560,0.7,561,1.093,562,1.213,580,1.703,584,1.963,585,1.557,586,1.938,587,1.732,588,1.689,589,1.776,590,1.637,607,1.605,608,1.605,609,2.792,624,1.347,630,2.182,669,3.289,765,1.455,774,1.093,787,1.071,788,1.071,789,1.071,795,1.071,822,2.027,823,2.548,826,1.894,832,1.894,833,3.032,834,1.723,842,1.894,843,2.632,844,1.894,845,2.382,846,2.817,886,2.323,907,0.956,927,2.367,928,2.367,937,1.455,938,2.256,939,2.911,940,2.792,941,2.367,942,2.367,944,3.567,947,3.289,950,2.182,958,1.517,959,3.289,961,2.367,970,1.752,971,1.752,972,4.345,973,4.67,974,3.332,975,2.734,984,1.979,1000,1.455,1001,1.663,1005,1.752,1006,1.585,1007,1.752,1008,1.517,1009,1.517,1010,1.517,1017,2.595,1066,1.672,1067,1.517,1068,1.997,1069,1.299,1070,1.455,1071,1.175,1072,1.517,1073,1.517,1074,1.517,1075,1.663,1076,1.213,1077,2.329,1078,1.104,1079,1.213,1080,1.175,1081,1.138,1085,3.362,1093,2.367,1094,2.595,1095,2.595,1096,2.595,1098,2.595,1099,4.023,1103,3.799,1276,2.135,1279,1.585,1413,7.18,1414,5.105,1415,4.151,1416,5.768,1417,5.768,1418,5.768,1419,5.105,1420,4.151,1421,4.151,1422,2.66,1423,2.66,1424,2.66,1425,2.66,1426,2.66,1427,2.66,1428,2.66,1429,2.343,1430,2.66,1431,2.66,1432,2.66,1433,4.151,1434,2.66,1435,2.66,1436,2.66,1437,2.66,1438,2.66,1439,2.66,1440,2.66,1441,2.66,1442,2.66,1443,2.66,1444,2.66,1445,2.66,1446,2.66,1447,2.66,1448,2.66,1449,2.66,1450,2.66,1451,2.66,1452,2.66,1453,2.66,1454,2.66,1455,2.66,1456,4.151,1457,2.66,1458,2.66,1459,2.66,1460,5.105,1461,2.66,1462,2.66,1463,2.66,1464,2.66,1465,2.343,1466,2.343,1467,2.66,1468,4.151,1469,4.151]],["title/components/ImageOverviewComponent.html",[135,0.043,205,0.834]],["body/components/ImageOverviewComponent.html",[3,0.096,4,0.088,5,0.08,9,0.113,10,0.216,11,1.626,13,0.975,16,0.937,24,0.824,27,1.348,29,1.191,30,0.01,31,0.374,32,0.236,33,1.019,46,1.326,47,1.348,63,0.51,65,0.868,69,1.774,84,1.114,85,0.452,93,0.799,95,0.882,96,0.799,98,0.868,101,0.096,102,0.379,103,0.799,104,0.963,112,0.671,115,0.845,125,0.742,133,0.005,134,0.005,135,0.058,136,0.655,137,0.96,138,0.562,140,0.688,141,0.89,142,0.315,144,0.688,145,1.415,146,1.168,147,0.505,148,0.682,149,0.802,150,0.655,153,0.781,156,0.688,165,0.688,166,1.36,167,0.89,168,0.688,169,1.317,170,0.688,171,0.688,172,0.655,173,0.985,174,0.688,175,0.655,176,0.688,177,0.655,178,0.655,179,0.688,180,0.655,181,0.638,182,0.688,183,0.638,184,1.37,185,0.655,186,0.688,187,0.638,188,0.94,189,0.688,190,0.937,191,0.688,192,0.638,193,0.688,194,0.655,195,1.612,196,0.655,197,0.688,198,0.655,199,0.655,200,1.586,201,0.655,202,0.688,203,0.655,204,1.195,205,1.253,206,0.655,207,0.688,208,0.655,209,0.591,210,0.688,211,0.655,212,0.688,213,0.655,214,0.655,215,0.688,216,0.655,217,0.688,218,0.655,219,0.671,220,0.688,221,0.655,222,0.688,223,0.655,224,0.688,225,0.655,226,0.655,227,0.655,228,0.655,229,0.655,230,0.688,231,0.655,232,0.655,233,0.655,234,0.519,235,1.01,236,0.638,237,0.576,238,0.688,239,0.607,240,0.688,241,0.655,242,0.655,243,0.655,244,0.688,245,0.655,246,0.671,247,0.655,248,0.655,249,0.655,250,0.655,251,0.688,252,0.655,253,0.688,254,0.688,255,0.607,256,0.655,257,0.688,258,0.688,262,1.088,263,1.737,264,1.611,277,2.476,278,1.651,279,1.774,280,1.963,283,2.813,284,1.847,291,1.226,296,2.377,298,1.611,301,0.927,302,0.622,303,0.882,305,1.806,306,0.975,307,1.425,308,1.138,310,0.819,311,1.517,314,0.951,315,0.951,316,2.571,317,1.47,318,1.774,320,1.819,323,0.951,324,0.951,326,1.234,330,2.755,338,2.649,339,2.649,410,1.305,411,1.84,412,2.716,443,1.262,487,1.626,488,1.963,489,1.544,539,1.611,541,1.651,542,1.819,558,0.951,559,0.951,560,0.904,561,1.326,580,1.688,584,2.031,585,1.774,586,2.041,587,1.819,588,1.774,589,1.865,590,1.865,591,3.749,607,1.876,608,1.876,753,1.567,774,1.326,787,1.383,788,1.383,789,1.383,793,1.806,795,2.403,845,2.362,886,2.029,907,1.234,938,1.97,1066,1.383,1068,2.571,1076,1.567,1077,2.298,1078,1.425,1079,1.567,1080,1.517,1081,1.47,1097,4.044,1103,3.318,1163,1.806,1165,3.301,1166,2.815,1167,2.815,1168,2.815,1169,2.815,1170,2.815,1171,2.815,1172,2.815,1173,2.815,1174,2.815,1175,3.263,1176,3.263,1177,3.263,1179,2.755,1180,2.476,1197,2.047,1198,2.755,1199,4.438,1200,1.677,1201,2.047,1204,1.878,1205,2.047,1207,3.026,1208,4.044,1209,4.438,1210,2.755,1211,2.755,1303,2.551,1304,2.873,1317,2.147,1465,3.026,1466,3.026,1470,7.337,1471,5.038,1472,5.038,1473,6.572,1474,5.038,1475,5.038,1476,3.434,1477,3.434,1478,3.434,1479,5.038,1480,3.434,1481,3.434,1482,5.038,1483,3.434,1484,3.434,1485,3.434,1486,5.966,1487,3.434,1488,3.434,1489,5.038]],["title/components/ImportDVDComponent.html",[135,0.043,206,0.834]],["body/components/ImportDVDComponent.html",[3,0.111,4,0.102,5,0.151,9,0.13,10,0.239,11,1.656,13,1.835,16,1.038,24,0.913,27,1.29,29,0.718,30,0.01,31,0.351,32,0.17,33,0.615,46,1.012,47,1.148,69,1.07,84,1.167,85,0.522,93,0.922,95,1.018,96,0.922,98,0.962,101,0.111,102,0.437,103,0.922,104,0.92,115,0.937,133,0.006,134,0.006,135,0.063,136,0.756,137,1.065,138,0.648,139,1.696,140,0.794,141,0.987,142,0.305,144,0.794,145,1.425,146,1.176,147,0.56,148,0.756,149,0.889,150,0.756,151,2.122,153,0.866,156,0.794,162,4.627,163,2.007,165,0.794,166,1.202,167,0.987,168,0.794,169,1.407,170,0.794,171,0.794,172,0.756,173,1.092,174,0.794,175,0.756,176,0.794,177,0.756,178,0.756,179,0.794,180,0.756,181,0.737,182,0.794,183,0.737,184,1.272,185,0.756,186,0.794,187,0.737,188,0.799,189,0.794,190,0.737,191,0.794,192,0.737,193,0.794,194,0.756,195,1.664,196,0.756,197,0.794,198,0.756,199,0.756,200,1.642,201,0.756,202,0.794,203,0.756,204,0.599,205,0.756,206,1.338,207,0.794,208,0.756,209,0.682,210,0.794,211,0.756,212,0.794,213,0.756,214,0.756,215,0.794,216,0.756,217,0.794,218,0.756,219,0.775,220,0.794,221,0.756,222,0.794,223,0.756,224,0.794,225,0.756,226,0.756,227,0.756,228,0.756,229,0.756,230,0.794,231,0.756,232,0.756,233,0.756,234,0.599,235,1.119,236,0.737,237,0.665,238,0.794,239,0.7,240,0.794,241,0.756,242,0.756,243,0.756,244,0.794,245,0.756,246,0.775,247,0.756,248,0.756,249,0.756,250,0.756,251,0.794,252,0.756,253,0.794,254,0.794,255,0.7,256,0.756,257,0.794,258,0.794,262,1.206,264,1.745,278,1.79,279,1.895,284,1.928,291,1.329,298,1.745,301,1.07,302,0.718,310,0.945,314,1.097,315,1.097,318,1.07,320,1.097,323,1.097,324,1.097,377,1.424,410,1.506,411,1.905,443,1.399,482,2.318,483,2.327,484,2.856,485,2.856,486,2.856,487,2.087,488,2.21,489,1.981,528,2.684,529,2.143,530,2.767,531,2.684,532,2.856,533,2.457,537,3.05,539,1.745,541,1.79,542,1.943,546,2.634,548,2.634,552,1.87,553,1.386,555,1.349,556,1.85,557,1.313,558,1.097,559,1.097,560,1.043,561,1.47,562,2.95,575,3.181,579,2.61,580,1.434,581,3.181,582,3.181,584,1.349,585,1.07,586,1.47,587,1.097,588,1.07,589,1.125,590,1.125,596,3.491,597,2.949,598,3.181,599,3.491,600,3.181,601,3.491,602,2.949,886,2.981,1097,4.482,1103,4.623,1135,4.482,1490,7.097,1491,7.097,1492,3.491,1493,6.185,1494,6.465,1495,5.584,1496,6.465,1497,7.019,1498,3.963,1499,3.963,1500,3.963,1501,3.963,1502,3.963,1503,3.963,1504,3.963,1505,3.963,1506,3.963,1507,3.963,1508,3.963,1509,3.963,1510,3.963,1511,3.963,1512,3.963,1513,3.963,1514,3.963,1515,3.181,1516,3.963,1517,5.584,1518,5.584,1519,4.92]],["title/interfaces/InstallationStatus.html",[434,0.144,518,1.815]],["body/interfaces/InstallationStatus.html",[3,0.146,4,0.173,5,0.122,9,0.172,10,0.288,30,0.01,31,0.319,32,0.258,49,1.564,63,0.545,65,1.4,101,0.252,133,0.007,134,0.007,142,0.197,147,0.523,163,1.874,293,3.479,294,2.304,295,2.304,309,1.874,415,1.232,434,0.295,435,2.232,436,1.416,437,1.48,438,2.304,439,2.38,440,2.38,441,2.38,442,2.38,443,1.863,444,2.232,445,1.928,446,2.38,447,2.38,448,2.232,449,2.38,450,2.38,451,2.38,452,2.38,453,2.165,454,2.165,455,2.101,456,2.909,457,2.101,458,1.275,459,2.304,460,2.304,461,2.304,462,2.165,463,2.232,464,2.232,465,2.969,466,2.232,467,2.165,468,2.304,469,2.304,470,2.304,471,2.304,472,2.304,473,2.304,474,2.304,475,2.304,476,2.304,477,2.304,478,2.304,479,2.304,480,2.304,481,2.304,482,2.165,483,1.64,484,2.304,485,2.304,486,2.304,487,1.683,488,1.558,489,1.598,490,2.165,491,1.683,492,2.304,493,2.304,494,2.232,495,2.38,496,2.232,497,1.558,498,1.874,499,2.232,500,2.232,501,3.183,502,2.232,503,2.38,504,2.38,505,2.38,506,2.38,507,2.38,508,2.38,509,2.38,510,2.38,511,2.38,512,2.38,513,2.38,514,2.304,515,2.38,516,2.38,517,2.38,518,2.79,519,3.47,520,3.47,521,3.47,522,3.584,523,3.47,524,3.47]],["title/interfaces/Item.html",[188,0.626,434,0.144]],["body/interfaces/Item.html",[3,0.099,4,0.091,5,0.141,9,0.116,10,0.22,18,1.785,30,0.01,31,0.335,32,0.203,49,2.136,63,0.55,64,1.785,65,1.557,71,1.701,101,0.227,125,0.761,133,0.005,134,0.005,138,0.84,142,0.133,188,1.216,204,0.775,234,0.532,415,1.229,434,0.266,436,1.082,437,1.001,443,0.883,445,1.855,458,1.255,483,1.615,487,1.955,488,1.809,489,1.856,491,1.138,497,1.533,498,1.267,818,2.01,819,4.655,820,4.271,821,3.954,822,3.25,823,3.449,824,4.271,825,2.01,826,3.563,827,2.01,828,3.563,829,3.954,830,3.814,831,3.954,832,3.563,833,4.105,834,2.514,835,2.01,836,2.01,837,2.01,838,2.01,839,2.101,840,3.954,841,2.01,842,3.036,843,3.036,844,3.036,845,2.391,846,2.958,847,2.928,848,2.699,849,1.853,850,2.6,851,2.928,852,2.928,853,2.6,854,2.6,855,2.928,856,3.312,857,3.184,858,3.61,859,3.61,860,3.61,861,3.61,862,3.61,863,3.61,864,3.61,865,2.808,866,2.101,867,2.101,868,2.101,869,2.101,870,2.101,871,2.101,872,2.101,873,2.101,874,2.101,875,2.101,876,2.101,877,2.101,878,2.101,879,2.101,880,2.101,881,2.101,882,1.608,883,2.101,884,2.101,885,2.101,886,1.42,887,2.101,888,2.101,889,1.663,890,2.101,891,2.101,892,2.101,893,2.101,894,2.101,895,2.101,896,2.101,897,2.101,898,2.101,899,2.101,900,1.928,901,2.101,902,2.101,903,2.101,904,4.216,905,4.822,906,4.216,907,2.541,908,4.033,909,4.033,910,2.01,911,2.01,912,1.785,913,1.785,914,2.01,915,1.928,916,1.928,917,2.01,918,2.01,919,2.01,920,2.01,921,2.01,922,2.6,923,2.808,924,2.01,925,2.808,926,2.808,927,2.01,928,2.01,929,1.785,930,1.928,931,1.853,932,1.663,933,1.785,934,1.557,935,1.928]],["title/injectables/ItemSettingsService.html",[0,2.299,1520,3.05]],["body/injectables/ItemSettingsService.html",[0,3.871,2,3.972,3,0.169,4,0.155,5,0.141,9,0.199,10,0.316,11,1.24,16,1.369,24,1.204,27,1.353,29,1.335,30,0.01,31,0.364,32,0.242,33,1.142,46,1.335,63,0.466,80,6.316,84,1.136,85,0.794,93,1.403,94,5.314,95,1.549,99,4.207,100,3.596,101,0.169,102,0.665,103,1.849,112,1.179,115,1.012,133,0.008,134,0.008,142,0.321,146,0.942,237,1.334,284,2.137,310,1.756,371,4.842,411,1.974,422,5.314,539,2.146,1379,4.842,1520,5.136,1521,7.478,1522,5.314,1523,6.644,1524,6.644,1525,7.363,1526,5.314,1527,6.032,1528,6.032,1529,7.363,1530,6.032,1531,6.032,1532,6.032,1533,5.314,1534,6.032,1535,6.032,1536,6.032,1537,6.032,1538,6.032,1539,6.032]],["title/components/KeyValueEditorComponent.html",[135,0.043,208,0.834]],["body/components/KeyValueEditorComponent.html",[3,0.094,4,0.086,5,0.078,9,0.11,10,0.211,13,1.664,16,0.916,27,1.402,29,1.422,30,0.01,31,0.347,32,0.247,33,1.217,46,1.447,47,1.409,49,1.608,63,0.424,74,4.819,84,1.033,85,0.438,96,0.775,98,0.848,101,0.094,102,0.367,103,0.775,104,1.137,107,3.08,115,1.16,133,0.005,134,0.005,135,0.057,136,0.635,137,0.939,138,0.545,140,0.668,141,0.87,142,0.326,144,0.668,145,1.413,146,1.165,147,0.494,148,1.081,149,0.784,150,0.635,153,0.764,156,0.668,165,0.668,166,0.916,167,0.87,168,0.668,169,1.298,170,0.668,171,0.668,172,0.635,173,0.963,174,0.668,175,0.635,176,0.668,177,0.635,178,0.635,179,0.668,180,0.635,181,0.619,182,0.668,183,0.619,184,1.174,185,0.635,186,0.668,187,0.619,188,0.705,189,0.668,190,0.619,191,0.668,192,0.619,193,0.668,194,0.635,195,1.6,196,0.635,197,0.668,198,0.635,199,0.635,200,1.573,201,0.635,202,0.668,203,0.635,204,0.503,205,0.635,206,0.635,207,0.668,208,1.465,209,1.469,210,0.668,211,0.635,212,0.668,213,0.635,214,0.635,215,0.668,216,0.635,217,0.668,218,0.635,219,1.351,220,0.668,221,0.635,222,0.668,223,0.635,224,0.668,225,0.635,226,0.635,227,0.635,228,0.635,229,0.635,230,0.668,231,0.635,232,0.635,233,0.635,234,0.503,235,0.987,236,0.619,237,0.559,238,0.668,239,0.588,240,0.668,241,0.635,242,0.635,243,0.635,244,0.668,245,0.635,246,0.651,247,0.635,248,0.635,249,0.635,250,0.635,251,0.668,252,0.635,253,1.175,254,0.668,255,0.588,256,0.635,257,0.668,258,0.668,262,1.064,291,1.579,302,0.604,303,0.855,309,1.197,337,1.722,377,1.197,415,1.007,530,2.508,531,2.432,533,2.227,553,1.165,555,1.134,556,1.104,557,1.104,579,3.244,607,1.843,608,1.843,712,2.479,774,1.297,805,3.342,850,2.494,972,2.862,973,2.589,1003,5.674,1068,2.292,1078,1.382,1230,2.694,1540,7.591,1541,2.934,1542,5.163,1543,5.163,1544,4.339,1545,5.705,1546,5.163,1547,5.705,1548,5.163,1549,4.925,1550,5.163,1551,5.163,1552,5.163,1553,5.86,1554,5.86,1555,4.925,1556,4.925,1557,6.595,1558,6.91,1559,5.86,1560,5.86,1561,5.163,1562,5.163,1563,5.705,1564,4.925,1565,5.86,1566,4.339,1567,4.339,1568,4.339,1569,4.339,1570,4.925,1571,4.339,1572,5.86,1573,6.088,1574,3.331,1575,3.331,1576,3.331,1577,4.925,1578,3.331,1579,4.925,1580,6.475,1581,3.331,1582,4.339,1583,3.331,1584,6.088,1585,4.339,1586,3.331,1587,4.339,1588,3.331,1589,4.339,1590,3.331,1591,4.925,1592,3.331,1593,4.339,1594,5.198,1595,3.331,1596,2.479,1597,4.704,1598,4.339,1599,3.331,1600,4.339,1601,3.331,1602,5.86,1603,3.331,1604,4.819,1605,3.331,1606,3.331,1607,3.331,1608,3.331,1609,3.331,1610,3.331,1611,2.934,1612,2.934,1613,2.934,1614,2.934,1615,3.331,1616,3.331,1617,3.331,1618,3.331,1619,4.925,1620,3.331,1621,3.331,1622,3.331,1623,3.331,1624,3.331,1625,3.331,1626,3.331,1627,3.331,1628,3.331,1629,4.925,1630,3.665,1631,3.435,1632,3.331]],["title/components/LogInFormComponent.html",[135,0.043,211,0.834]],["body/components/LogInFormComponent.html",[3,0.091,4,0.083,5,0.076,9,0.107,10,0.207,11,1.473,15,5.524,16,0.898,18,2.923,24,0.79,27,1.397,29,0.876,30,0.01,31,0.274,32,0.208,33,0.75,36,2.606,40,2.138,46,1.299,47,1.214,63,0.283,71,2.583,84,1.084,85,0.427,93,0.755,95,0.834,96,1.343,98,0.832,101,0.091,102,0.358,103,1.59,104,0.948,107,4.481,112,1.25,115,1.351,133,0.005,134,0.005,135,0.056,136,0.619,137,0.921,138,0.531,139,1.389,140,0.651,141,0.854,142,0.325,144,0.651,145,1.411,146,1.166,147,0.485,148,0.781,149,0.77,150,0.619,151,1.836,153,0.75,156,0.651,160,3.596,162,3.998,163,1.736,164,2.86,165,0.651,166,0.898,167,0.854,168,0.651,169,1.282,170,0.651,171,0.651,172,0.619,173,0.945,174,0.651,175,0.619,176,0.651,177,0.619,178,0.619,179,0.651,180,0.619,181,0.603,182,0.651,183,0.603,184,1.159,185,0.619,186,0.651,187,0.603,188,0.691,189,0.651,190,0.603,191,0.651,192,0.603,193,0.651,194,0.619,195,1.59,196,0.619,197,0.651,198,0.619,199,0.619,200,1.562,201,0.619,202,0.651,203,0.619,204,0.49,205,0.619,206,0.619,207,0.651,208,0.619,209,0.559,210,0.651,211,1.219,212,0.651,213,0.619,214,0.619,215,0.651,216,0.619,217,0.651,218,0.619,219,0.635,220,0.651,221,0.619,222,0.651,223,0.619,224,0.651,225,0.619,226,0.619,227,0.619,228,0.619,229,0.619,230,0.651,231,0.619,232,0.619,233,0.619,234,0.49,235,0.969,236,0.603,237,0.545,238,0.651,239,0.574,240,0.651,241,0.619,242,0.619,243,0.619,244,0.651,245,0.619,246,0.635,247,0.619,248,0.619,249,0.619,250,0.619,251,0.651,252,0.619,253,0.969,254,0.651,255,0.574,256,0.619,257,0.651,258,0.651,262,1.044,264,1.558,269,2.723,273,3.801,279,1.726,284,1.814,291,1.473,300,1.585,301,0.876,302,0.588,306,0.921,310,0.774,337,1.69,348,5.436,360,3.879,399,3.021,401,4.768,405,4.296,411,1.59,412,2.667,415,0.452,420,3.998,430,4.257,432,2.86,500,1.389,533,2.194,539,1.558,553,1.135,555,1.105,556,1.076,557,1.076,560,0.855,562,1.481,578,3.609,585,1.558,588,2.004,598,2.606,602,2.416,632,2.606,635,2.416,758,3.37,771,3.035,772,3.291,909,1.851,950,2.54,1146,2.606,1155,2.606,1350,2.416,1388,2.86,1523,5.133,1526,2.86,1594,5.958,1597,4.633,1633,2.86,1634,5.772,1635,4.832,1636,6.836,1637,6.836,1638,6.836,1639,5.772,1640,5.772,1641,5.772,1642,6.394,1643,6.394,1644,6.394,1645,6.394,1646,5.772,1647,6.72,1648,5.086,1649,3.246,1650,3.246,1651,3.246,1652,3.246,1653,3.246,1654,3.246,1655,3.246,1656,3.246,1657,3.246,1658,6.54,1659,3.246,1660,3.246,1661,3.246,1662,5.772,1663,7.423,1664,5.753,1665,4.832,1666,4.832,1667,3.246,1668,3.246,1669,3.246,1670,3.246,1671,2.86,1672,3.246,1673,2.86,1674,3.246,1675,3.246,1676,3.246,1677,2.606,1678,2.416,1679,2.86,1680,2.86,1681,5.634,1682,3.246,1683,2.86,1684,2.86,1685,3.246,1686,3.246,1687,3.246,1688,3.246,1689,6.394,1690,3.246,1691,3.246,1692,5.772,1693,3.246,1694,3.246,1695,3.246,1696,3.246,1697,3.246,1698,3.246,1699,3.246,1700,3.246,1701,3.246,1702,3.246,1703,3.246,1704,3.246,1705,3.246,1706,3.246,1707,3.246,1708,3.246,1709,2.86,1710,3.246,1711,3.246,1712,3.246,1713,3.246,1714,3.246,1715,3.246,1716,3.246,1717,3.246,1718,3.246,1719,3.246,1720,2.86,1721,2.86,1722,3.246,1723,3.246,1724,3.246,1725,3.246,1726,3.246,1727,3.246,1728,3.246,1729,3.246,1730,2.264,1731,3.246,1732,3.246,1733,4.832,1734,3.246,1735,4.832,1736,3.246,1737,3.246,1738,3.246,1739,3.246,1740,3.246,1741,3.246,1742,3.246,1743,3.246,1744,3.246,1745,3.246,1746,3.246,1747,4.832,1748,4.832,1749,5.772,1750,4.832,1751,4.832,1752,4.832,1753,4.832,1754,4.832,1755,5.086,1756,5.086,1757,3.246,1758,4.257,1759,3.246,1760,3.246,1761,2.86,1762,3.246,1763,2.86,1764,2.86]],["title/components/ManageMenuComponent.html",[135,0.043,150,0.834]],["body/components/ManageMenuComponent.html",[3,0.122,4,0.112,5,0.101,9,0.143,10,0.255,24,0.71,27,0.973,29,0.787,30,0.01,31,0.291,32,0.181,33,0.674,84,1.133,85,0.572,98,1.025,101,0.122,102,0.479,104,0.54,133,0.006,134,0.006,135,0.066,136,0.828,137,1.135,138,0.71,139,1.859,140,0.871,141,1.052,142,0.257,144,0.871,145,1.431,146,1.183,147,0.597,148,0.806,149,0.948,150,1.392,151,2.262,153,0.923,156,1.652,157,5.45,165,0.871,166,1.106,167,1.052,168,0.871,169,1.464,170,0.871,171,0.871,172,0.828,173,1.164,174,0.871,175,0.828,176,0.871,177,0.828,178,1.294,179,0.871,180,0.828,181,1.262,182,0.871,183,0.808,184,1.324,185,0.828,186,0.871,187,0.808,188,0.851,189,0.871,190,0.808,191,0.871,192,0.808,193,0.871,194,0.828,195,1.695,196,0.828,197,0.871,198,0.828,199,0.828,200,1.675,201,0.828,202,0.871,203,0.828,204,0.656,205,0.828,206,0.828,207,0.871,208,0.828,209,0.748,210,0.871,211,0.828,212,0.871,213,0.828,214,0.828,215,0.871,216,0.828,217,0.871,218,0.828,219,0.849,220,0.871,221,1.392,222,0.871,223,0.828,224,0.871,225,0.828,226,0.828,227,0.828,228,0.828,229,0.828,230,0.871,231,0.828,232,0.828,233,0.828,234,0.656,235,1.193,236,0.808,237,1.139,238,0.871,239,0.767,240,0.871,241,0.828,242,0.828,243,0.828,244,0.871,245,0.828,246,0.849,247,0.828,248,0.828,249,0.828,250,0.828,251,0.871,252,0.828,253,1.361,254,0.871,255,0.767,256,0.828,257,0.871,258,0.871,265,5.243,266,4.245,267,4.245,271,4.047,273,4.471,296,2.808,300,2.121,303,1.116,304,2.199,306,1.233,387,3.721,399,2.716,412,3.003,420,3.721,454,2.47,455,2.397,456,2.328,491,1.921,539,1.607,591,4.429,597,4.429,850,3.013,882,2.715,900,3.255,932,2.808,933,3.013,1113,3.721,1164,4.777,1348,4.777,1349,4.777,1368,5.243,1403,5.243,1493,5.243,1764,3.827,1765,5.982,1766,3.827,1767,6.789,1768,6.789,1769,6.789,1770,5.982,1771,6.789,1772,6.789,1773,5.951,1774,4.343,1775,4.343,1776,4.343,1777,3.029,1778,4.343,1779,3.827,1780,4.343,1781,4.343,1782,5.243,1783,8.357,1784,5.951,1785,8.239,1786,4.429,1787,5.951,1788,5.243,1789,5.243,1790,7.901,1791,4.429,1792,5.951,1793,4.777,1794,5.951,1795,5.951,1796,4.343]],["title/components/ManagementClassEditComponent.html",[135,0.043,213,0.834]],["body/components/ManagementClassEditComponent.html",[3,0.077,4,0.07,5,0.064,9,0.09,10,0.182,11,1.587,13,1.66,16,0.787,24,0.692,27,1.327,29,0.767,30,0.01,31,0.363,32,0.193,33,0.657,46,1.267,47,1.314,63,0.453,64,2.144,69,1.709,71,0.904,84,1.118,85,0.359,93,0.635,95,0.701,96,0.985,98,0.729,101,0.077,102,0.952,103,1.207,104,1.109,108,1.812,112,0.533,115,1.479,125,1.693,133,0.004,134,0.004,135,0.05,136,0.52,137,0.807,138,0.446,140,0.547,141,0.748,142,0.31,144,0.547,145,1.396,146,1.152,147,0.425,148,1.19,149,0.674,150,0.52,153,0.657,156,0.547,165,0.547,166,1.299,167,0.748,168,0.547,169,1.172,170,0.547,171,0.547,172,0.52,173,0.828,174,0.547,175,0.52,176,0.547,177,0.52,178,0.52,179,0.547,180,0.52,181,0.787,182,0.547,183,0.507,184,1.267,185,0.52,186,0.547,187,0.787,188,0.837,189,0.547,190,0.507,191,0.547,192,0.507,193,0.547,194,0.52,195,1.52,196,0.52,197,0.547,198,0.52,199,0.52,200,1.487,201,0.52,202,0.547,203,0.52,204,0.412,205,0.52,206,0.52,207,0.547,208,1.115,209,0.47,210,0.547,211,0.52,212,0.547,213,1.115,214,0.52,215,0.547,216,0.52,217,0.547,218,1.115,219,0.533,220,0.547,221,0.52,222,0.547,223,0.52,224,0.547,225,0.52,226,0.52,227,0.52,228,0.52,229,0.52,230,0.547,231,0.52,232,0.52,233,0.52,234,0.412,235,0.849,236,0.507,237,0.458,238,0.547,239,0.482,240,0.547,241,0.52,242,0.52,243,0.52,244,0.547,245,0.52,246,0.533,247,0.52,248,0.52,249,0.52,250,0.52,251,0.547,252,0.52,253,0.547,254,0.547,255,0.482,256,0.52,257,0.547,258,0.547,262,0.914,263,1.51,264,1.401,278,1.436,279,1.579,280,1.746,283,2.503,284,1.708,291,1.202,298,1.401,301,1.143,302,0.494,303,0.701,306,0.774,308,0.904,310,0.65,311,1.205,314,0.755,315,0.755,317,1.167,318,1.579,320,1.619,323,0.755,324,0.755,326,0.98,337,1.48,340,1.492,349,2.315,377,1.521,411,1.626,412,2.512,415,0.589,458,1.035,497,0.815,500,1.167,528,2.153,529,1.719,530,2.22,531,2.153,532,2.292,533,1.972,534,2.534,537,2.448,541,1.436,542,1.619,546,1.997,548,1.997,552,1.287,553,0.954,554,1.332,555,0.928,556,0.904,557,0.904,558,0.755,559,0.755,560,0.718,561,1.115,562,1.245,580,1.72,584,1.99,585,1.579,586,1.953,587,1.752,588,1.709,589,1.797,590,1.66,607,1.631,608,1.631,609,2.837,624,1.381,630,2.226,669,3.334,765,1.492,774,1.115,787,1.099,788,1.099,789,1.099,795,1.099,823,2.583,826,1.932,832,1.932,834,1.757,842,1.932,843,2.668,844,1.932,845,2.407,882,3.056,907,0.98,929,2.627,930,2.315,931,2.226,932,1.997,933,2.144,937,1.492,938,2.287,939,2.958,940,2.837,941,2.414,942,2.414,944,3.609,947,3.334,950,2.226,958,1.555,959,3.334,961,2.414,970,1.796,971,1.796,972,4.275,973,4.591,975,2.788,983,2.03,1000,1.492,1001,1.706,1002,2.03,1003,1.796,1004,2.03,1005,1.796,1006,1.626,1007,1.796,1008,1.555,1009,1.555,1010,1.555,1017,2.647,1066,1.099,1067,1.555,1068,2.029,1069,1.332,1070,1.492,1071,1.205,1072,1.555,1073,1.555,1074,1.555,1075,1.706,1076,1.245,1077,2.367,1078,1.132,1079,1.245,1080,1.205,1081,1.167,1085,3.417,1093,2.414,1094,2.647,1095,2.647,1096,2.647,1098,2.647,1099,2.953,1156,3.151,1271,2.403,1277,2.03,1279,1.626,1797,6.573,1798,7.214,1799,5.188,1800,5.188,1801,4.233,1802,5.152,1803,5.847,1804,5.152,1805,5.188,1806,4.233,1807,4.233,1808,2.728,1809,2.728,1810,2.728,1811,2.728,1812,2.728,1813,2.728,1814,2.19,1815,2.728,1816,2.728,1817,2.728,1818,4.233,1819,2.728,1820,2.728,1821,2.728,1822,2.728,1823,2.728,1824,2.728,1825,2.728,1826,2.728,1827,2.728,1828,2.728,1829,2.728,1830,2.728,1831,2.728,1832,2.728,1833,2.728,1834,2.728,1835,2.728,1836,2.728,1837,5.847,1838,4.233,1839,2.728,1840,2.728,1841,2.728,1842,2.728,1843,2.728,1844,2.728,1845,2.728,1846,2.728,1847,2.728,1848,2.403,1849,3.73,1850,2.728,1851,2.728]],["title/components/ManagementClassOverviewComponent.html",[135,0.043,214,0.834]],["body/components/ManagementClassOverviewComponent.html",[3,0.095,4,0.087,5,0.079,9,0.111,10,0.214,11,1.62,13,0.961,16,0.926,24,0.815,27,1.344,29,1.183,30,0.01,31,0.376,32,0.235,33,1.012,46,1.319,47,1.344,63,0.509,65,0.858,69,1.762,84,1.111,85,0.445,93,0.787,95,0.869,96,0.787,98,0.858,101,0.095,102,0.967,103,0.787,104,0.959,112,0.662,115,0.836,125,0.731,133,0.005,134,0.005,135,0.058,136,0.645,137,0.95,138,0.553,140,0.678,141,0.88,142,0.314,144,0.678,145,1.414,146,1.167,147,0.5,148,0.675,149,0.794,150,0.645,153,0.773,156,0.678,165,0.678,166,1.353,167,0.88,168,0.678,169,1.308,170,0.678,171,0.678,172,0.645,173,0.974,174,0.678,175,0.645,176,0.678,177,0.645,178,0.645,179,0.678,180,0.645,181,0.629,182,0.678,183,0.629,184,1.364,185,0.645,186,0.678,187,0.629,188,0.934,189,0.678,190,0.926,191,0.678,192,0.629,193,0.678,194,0.645,195,1.606,196,0.645,197,0.678,198,0.645,199,0.645,200,1.58,201,0.645,202,0.678,203,0.645,204,0.511,205,0.645,206,0.645,207,0.678,208,0.645,209,0.583,210,0.678,211,0.645,212,0.678,213,0.645,214,1.244,215,0.678,216,0.645,217,0.678,218,0.645,219,0.662,220,0.678,221,0.645,222,0.678,223,0.645,224,0.678,225,0.645,226,0.645,227,0.645,228,0.645,229,0.645,230,0.678,231,0.645,232,0.645,233,0.645,234,0.511,235,0.999,236,0.629,237,0.568,238,0.678,239,0.598,240,0.678,241,0.645,242,0.645,243,0.645,244,0.678,245,0.645,246,0.662,247,0.645,248,0.645,249,0.645,250,0.645,251,0.678,252,0.645,253,0.678,254,0.678,255,0.598,256,0.645,257,0.678,258,0.678,262,1.076,263,1.722,264,1.597,277,2.455,278,1.637,279,1.762,280,1.949,283,2.793,284,1.839,291,1.216,296,2.351,298,1.597,301,0.913,302,0.613,303,0.869,305,1.779,306,0.961,307,1.404,308,1.121,310,0.807,311,1.495,314,0.937,315,0.937,316,2.552,317,1.448,318,1.762,320,1.806,323,0.937,324,0.937,326,1.216,330,2.725,338,2.62,339,2.62,387,3.116,410,1.286,411,1.833,412,2.703,539,1.597,541,1.637,542,1.806,558,0.937,559,0.937,560,0.891,561,1.312,580,1.676,584,2.013,585,1.762,586,2.033,587,1.806,588,1.762,589,1.852,590,1.852,607,1.86,608,1.86,753,1.544,774,1.312,787,1.363,788,1.363,789,1.363,793,1.779,795,2.383,845,2.345,882,3.595,907,1.216,929,1.713,930,2.725,931,2.62,938,1.949,1066,1.363,1068,2.552,1076,1.544,1077,2.273,1078,1.404,1079,1.544,1080,1.495,1081,1.448,1156,3.708,1163,1.779,1165,3.281,1166,2.791,1167,2.791,1168,2.791,1169,2.791,1170,2.791,1171,2.791,1172,2.791,1173,2.791,1174,2.791,1175,3.235,1176,3.235,1177,3.235,1179,2.725,1180,2.455,1185,2.116,1197,2.017,1198,2.725,1200,1.653,1201,2.017,1204,1.851,1205,2.017,1210,2.725,1211,2.725,1303,2.523,1304,2.841,1314,2.017,1317,2.116,1797,6.666,1848,2.981,1849,4.39,1852,7.316,1853,4.983,1854,4.983,1855,6.525,1856,4.983,1857,4,1858,4.983,1859,3.384,1860,3.384,1861,4.983,1862,3.384,1863,3.384,1864,4.983,1865,3.384,1866,3.384,1867,5.915,1868,3.384,1869,3.384,1870,3.384,1871,4.983,1872,4.983]],["title/interfaces/Member.html",[434,0.144,1873,2.607]],["body/interfaces/Member.html",[3,0.183,4,0.167,5,0.152,6,3.419,9,0.214,10,0.33,30,0.01,31,0.364,32,0.259,51,3.557,54,3.877,56,5.165,58,4.214,61,4.214,63,0.508,65,1.327,101,0.249,104,1.077,105,4.066,106,4.066,111,4.283,112,1.271,118,4.05,133,0.008,134,0.008,332,3.557,415,0.905,434,0.285,436,1.37,445,1.623,1873,4.593,1874,4.066,1875,4.066,1876,4.066]],["title/interfaces/MethodFault.html",[51,2.392,434,0.144]],["body/interfaces/MethodFault.html",[3,0.183,4,0.167,5,0.152,6,3.419,9,0.214,10,0.33,30,0.01,31,0.279,32,0.259,51,4.214,54,3.877,56,4.894,58,4.214,61,4.214,63,0.508,65,1.327,101,0.249,104,0.957,105,5.307,106,5.307,111,4.283,112,1.271,118,4.05,133,0.008,134,0.008,332,3.557,415,0.905,434,0.285,436,1.37,445,1.788,1873,3.877,1874,4.066,1875,4.066,1876,4.066]],["title/interfaces/Mgmgtclass.html",[434,0.144,929,2.214]],["body/interfaces/Mgmgtclass.html",[3,0.092,4,0.084,5,0.135,9,0.108,10,0.208,18,1.655,30,0.01,31,0.346,32,0.261,49,2.143,63,0.55,64,3.248,65,1.562,71,1.609,101,0.223,125,0.706,133,0.005,134,0.005,138,0.794,142,0.124,188,1.201,204,0.733,234,0.494,415,1.232,434,0.262,436,1.023,437,0.928,443,0.819,445,1.792,458,1.187,483,1.527,487,1.871,488,1.731,489,1.776,491,1.055,497,1.45,498,1.174,818,1.864,819,4.655,820,4.41,821,4.083,822,3.134,823,3.561,824,4.41,825,1.864,826,3.679,827,1.864,828,3.679,829,4.083,830,3.938,831,4.083,832,3.679,833,4.239,834,2.405,835,1.864,836,1.864,837,1.864,838,1.864,839,1.948,840,4.083,841,1.864,842,1.491,843,1.491,844,1.491,845,1.174,846,2.831,847,2.769,848,2.553,849,1.718,850,2.459,851,2.769,852,2.769,853,2.459,854,2.459,855,2.769,856,3.17,857,3.047,858,3.455,859,3.455,860,3.455,861,3.455,862,3.455,863,3.455,864,3.455,865,2.656,866,1.948,867,1.948,868,1.948,869,1.948,870,1.948,871,1.948,872,1.948,873,1.948,874,1.948,875,1.948,876,1.948,877,1.948,878,1.948,879,1.948,880,1.948,881,1.948,882,1.491,883,1.948,884,1.948,885,1.948,886,1.316,887,1.948,888,1.948,889,1.542,890,1.948,891,1.948,892,1.948,893,1.948,894,1.948,895,1.948,896,1.948,897,1.948,898,1.948,899,1.948,900,1.787,901,1.948,902,1.948,903,1.948,904,4.087,905,4.737,906,4.087,907,2.464,908,3.909,909,3.909,910,1.864,911,1.864,912,1.655,913,1.655,914,1.864,915,1.787,916,1.787,917,1.864,918,1.864,919,1.864,920,1.864,921,1.864,922,2.459,923,2.656,924,1.864,925,2.656,926,2.656,927,1.864,928,1.864,929,2.459,930,3.509,931,3.373,932,3.027,933,3.248,934,1.444,935,1.787]],["title/components/MkloadersComponent.html",[135,0.043,216,0.834]],["body/components/MkloadersComponent.html",[3,0.13,4,0.119,5,0.108,9,0.152,10,0.266,11,1.607,16,1.155,24,1.016,27,1.279,29,0.839,30,0.01,31,0.301,32,0.189,33,0.718,46,1.126,47,1.226,69,1.249,84,1.115,85,0.609,93,1.076,95,1.188,98,1.07,101,0.13,102,0.51,104,0.872,115,1.043,133,0.007,134,0.007,135,0.068,136,0.882,137,1.184,138,0.757,140,0.928,141,1.098,142,0.305,144,0.928,145,1.435,146,1.184,147,0.623,148,0.841,149,0.989,150,0.882,153,0.964,156,0.928,165,0.928,166,1.304,167,1.098,168,0.928,169,1.503,170,0.928,171,0.928,172,0.882,173,1.215,174,0.928,175,0.882,176,0.928,177,0.882,178,0.882,179,0.928,180,0.882,181,0.86,182,0.928,183,0.86,184,1.359,185,0.882,186,0.928,187,0.86,188,0.889,189,0.928,190,0.86,191,0.928,192,0.86,193,0.928,194,0.882,195,1.715,196,0.882,197,0.928,198,0.882,199,0.882,200,1.698,201,0.882,202,0.928,203,0.882,204,0.699,205,0.882,206,0.882,207,0.928,208,0.882,209,0.797,210,0.928,211,0.882,212,0.928,213,0.882,214,0.882,215,0.928,216,1.429,217,0.928,218,0.882,219,0.905,220,0.928,221,0.882,222,0.928,223,0.882,224,0.928,225,0.882,226,0.882,227,0.882,228,0.882,229,0.882,230,0.928,231,0.882,232,0.882,233,0.882,234,0.699,235,1.245,236,0.86,237,0.777,238,0.928,239,0.818,240,0.928,241,0.882,242,0.882,243,0.882,244,0.928,245,0.882,246,0.905,247,0.882,248,0.882,249,0.882,250,0.882,251,0.928,252,0.882,253,0.928,254,0.928,255,0.818,256,0.882,257,0.928,258,0.928,262,1.342,264,1.893,278,1.941,279,2.024,284,2.01,291,0.951,298,1.893,301,1.249,302,0.839,310,1.103,314,1.281,315,1.281,318,1.249,320,1.281,323,1.281,324,1.281,377,1.663,405,3.443,410,1.759,411,1.97,529,2.324,539,1.893,541,1.941,542,2.075,558,1.281,559,1.281,560,1.218,561,1.636,580,1.188,585,1.249,586,1.847,587,1.281,588,1.249,589,1.313,590,1.313,774,1.636,1411,4.077,1788,6.604,1877,4.077,1878,6.212,1879,6.212,1880,7.496,1881,6.212,1882,4.627,1883,4.627,1884,4.627,1885,4.077,1886,4.627]],["title/components/MultiSelectComponent.html",[135,0.043,218,0.834]],["body/components/MultiSelectComponent.html",[3,0.09,4,0.083,5,0.075,9,0.106,10,0.205,13,2.026,16,0.891,27,1.402,29,1.408,30,0.01,31,0.344,32,0.248,33,1.205,46,1.455,47,1.414,63,0.482,65,0.825,74,5.504,84,1.092,85,0.422,96,1.115,98,1.095,101,0.09,102,0.354,103,0.747,104,1.022,107,2.996,112,0.937,115,0.962,125,1.373,133,0.005,134,0.005,135,0.056,136,0.612,137,0.914,138,0.525,140,0.643,141,0.847,142,0.326,144,0.643,145,1.41,146,1.163,147,0.481,148,1.052,149,0.763,150,0.612,153,0.743,156,0.643,165,0.643,166,0.891,167,0.847,168,0.643,169,1.275,170,0.643,171,0.643,172,0.612,173,0.937,174,0.643,175,0.612,176,0.643,177,0.612,178,0.612,179,0.643,180,0.612,181,0.597,182,0.643,183,0.597,184,1.378,185,0.612,186,0.643,187,0.597,188,0.686,189,0.643,190,0.597,191,0.643,192,0.891,193,0.643,194,0.612,195,1.586,196,0.612,197,0.643,198,0.612,199,0.612,200,1.558,201,0.612,202,0.643,203,0.612,204,0.485,205,0.612,206,0.612,207,0.643,208,0.612,209,0.553,210,0.643,211,0.612,212,0.643,213,0.612,214,0.612,215,0.643,216,0.612,217,0.643,218,1.449,219,1.57,220,0.643,221,0.612,222,0.643,223,0.612,224,0.643,225,0.612,226,0.612,227,0.612,228,0.612,229,0.612,230,0.643,231,0.612,232,0.612,233,0.612,234,0.485,235,0.961,236,0.597,237,0.539,238,0.643,239,0.567,240,0.643,241,0.612,242,0.612,243,0.612,244,0.643,245,0.612,246,0.628,247,0.612,248,0.612,249,0.612,250,0.612,251,0.643,252,0.612,253,1.149,254,0.643,255,0.567,256,0.612,257,0.643,258,0.643,262,1.035,263,1.669,280,1.899,283,1.374,291,1.626,300,1.568,301,0.866,302,0.582,303,0.824,304,1.625,308,1.064,317,2.051,326,1.153,337,1.675,415,0.798,529,1.9,531,2.38,532,2.533,533,2.179,534,2.8,553,1.122,554,1.568,555,1.092,556,1.064,557,1.064,579,3.156,607,1.803,608,1.803,712,2.389,771,3.015,774,1.262,803,2.389,805,3.27,814,2.996,815,6.288,940,3.136,972,2.8,973,1.687,1000,1.755,1006,5.134,1078,1.989,1230,2.621,1542,5.052,1543,5.052,1544,4.222,1545,5.602,1546,5.052,1547,5.602,1548,5.052,1550,5.052,1551,5.052,1552,5.052,1557,5.995,1561,5.052,1562,5.052,1563,4.222,1566,4.222,1567,4.222,1568,4.222,1569,4.222,1571,4.222,1573,5.995,1582,4.222,1584,5.995,1585,4.222,1587,4.222,1589,4.222,1593,4.222,1594,5.104,1596,4.267,1597,4.603,1598,4.222,1600,2.828,1604,5.063,1611,2.828,1612,2.828,1613,2.828,1614,5.052,1630,3.566,1658,5.052,1887,7.588,1888,2.828,1889,4.792,1890,5.734,1891,3.999,1892,3.999,1893,3.999,1894,5.734,1895,4.792,1896,4.792,1897,5.734,1898,5.734,1899,6.359,1900,4.792,1901,4.792,1902,5.734,1903,3.21,1904,3.21,1905,3.21,1906,4.792,1907,7.395,1908,3.21,1909,4.792,1910,6.359,1911,3.21,1912,3.21,1913,3.21,1914,3.21,1915,3.21,1916,3.21,1917,3.21,1918,4.792,1919,3.21,1920,3.21,1921,3.21,1922,3.21,1923,3.21,1924,3.21,1925,3.21,1926,3.21,1927,3.21,1928,3.21,1929,4.792,1930,4.792,1931,3.21,1932,3.21,1933,3.21,1934,3.21,1935,3.21,1936,3.21,1937,3.21,1938,3.21,1939,2.576,1940,3.21,1941,3.21,1942,3.21,1943,3.21,1944,3.21,1945,3.21,1946,3.21,1947,3.21,1948,3.21,1949,3.21,1950,4.792,1951,4.792]],["title/components/NavbarComponent.html",[135,0.043,221,0.834]],["body/components/NavbarComponent.html",[3,0.11,4,0.1,5,0.091,9,0.129,10,0.237,11,1.571,16,1.028,24,0.904,27,1.353,29,0.708,30,0.01,31,0.275,32,0.24,33,0.606,46,1.002,47,1.14,63,0.324,84,1.129,85,0.514,93,0.909,95,1.003,98,1.105,101,0.11,102,0.431,104,0.976,110,3.456,115,1.077,125,1.386,133,0.006,134,0.006,135,0.062,136,0.745,137,1.054,138,0.639,139,1.672,140,0.783,141,0.977,142,0.317,144,0.783,145,1.424,146,1.178,147,0.554,148,0.748,149,0.88,150,0.745,151,2.101,153,0.857,156,0.783,165,0.783,166,1.028,167,0.977,168,0.783,169,1.398,170,0.783,171,0.783,172,0.745,173,1.081,174,0.783,175,0.745,176,0.783,177,0.745,178,0.745,179,0.783,180,0.745,181,0.726,182,0.783,183,0.726,184,1.264,185,0.745,186,0.783,187,0.726,188,0.791,189,0.783,190,0.726,191,0.783,192,0.726,193,0.783,194,0.745,195,1.659,196,0.745,197,0.783,198,0.745,199,0.745,200,1.636,201,0.745,202,0.783,203,0.745,204,0.59,205,0.745,206,0.745,207,0.783,208,0.745,209,0.673,210,0.783,211,0.745,212,0.783,213,0.745,214,0.745,215,0.783,216,0.745,217,0.783,218,0.745,219,0.764,220,0.783,221,1.33,222,0.783,223,0.745,224,0.783,225,0.745,226,0.745,227,0.745,228,0.745,229,0.745,230,0.783,231,0.745,232,0.745,233,0.745,234,0.59,235,1.108,236,0.726,237,0.656,238,0.783,239,0.69,240,0.783,241,0.745,242,0.745,243,0.745,244,0.783,245,0.745,246,0.764,247,0.745,248,0.745,249,0.745,250,0.745,251,0.783,252,0.745,253,0.783,254,0.783,255,0.69,256,0.745,257,0.783,258,0.783,262,1.194,264,1.732,269,3.026,271,3.824,273,4.225,278,1.776,279,1.883,284,1.962,291,1.318,298,1.732,300,1.908,302,0.708,303,1.003,306,1.109,310,0.931,314,1.081,315,1.081,320,1.53,321,3.136,323,1.081,324,1.081,348,2.724,395,2.907,401,4.865,405,5.687,411,1.712,412,2.974,415,0.769,420,3.456,443,1.385,539,2.063,541,1.776,542,1.931,558,1.081,559,1.081,560,1.029,580,1.003,585,1.055,586,1.455,634,3.136,635,4.113,636,3.136,676,4.87,729,3.442,850,2.799,1141,4.113,1384,3.442,1523,5.908,1648,5.652,1679,3.442,1680,3.442,1720,3.442,1721,3.442,1755,3.442,1756,3.442,1761,3.442,1763,4.87,1770,5.652,1779,3.442,1952,3.442,1953,6.975,1954,5.149,1955,6.415,1956,5.527,1957,7.36,1958,7.856,1959,7.642,1960,5.527,1961,6.415,1962,3.906,1963,6.975,1964,6.415,1965,6.975,1966,5.527,1967,5.527,1968,6.415,1969,3.906,1970,3.906,1971,3.906,1972,3.906,1973,3.906,1974,3.906,1975,3.906,1976,3.906,1977,3.442,1978,3.906,1979,3.906,1980,3.906,1981,3.906,1982,3.906,1983,3.906,1984,3.906,1985,5.527,1986,3.906,1987,5.527,1988,3.906,1989,3.906,1990,3.906,1991,3.906,1992,3.906,1993,5.527,1994,3.906,1995,3.906,1996,5.527,1997,3.906]],["title/interfaces/NetworkInterface.html",[434,0.144,865,2.392]],["body/interfaces/NetworkInterface.html",[3,0.092,4,0.084,5,0.135,9,0.107,10,0.208,18,3.248,30,0.01,31,0.328,32,0.265,49,2.129,63,0.55,64,1.654,65,1.562,71,1.609,101,0.223,125,0.705,133,0.005,134,0.005,138,0.794,142,0.124,188,1.191,204,0.733,234,0.493,415,1.232,434,0.261,436,1.023,437,0.927,443,0.818,445,1.791,458,1.187,483,1.526,487,1.87,488,1.73,489,1.775,491,1.054,497,1.45,498,1.174,818,1.863,819,4.555,820,4.179,821,3.869,822,3.133,823,3.375,824,4.179,825,1.863,826,3.486,827,1.863,828,3.486,829,3.869,830,3.732,831,3.869,832,3.486,833,4.017,834,2.405,835,1.863,836,1.863,837,1.863,838,1.863,839,1.947,840,3.869,841,1.863,842,1.49,843,1.49,844,1.49,845,1.174,846,2.83,847,3.908,848,2.552,849,1.717,850,2.458,851,2.768,852,2.768,853,2.458,854,2.458,855,2.768,856,3.169,857,3.046,858,4.282,859,3.454,860,3.454,861,3.454,862,3.454,863,3.454,864,3.454,865,3.169,866,3.823,867,3.823,868,3.823,869,3.823,870,3.823,871,3.823,872,3.823,873,3.823,874,3.823,875,3.823,876,3.823,877,3.823,878,3.823,879,3.823,880,3.823,881,3.823,882,2.926,883,3.823,884,3.823,885,3.823,886,1.316,887,1.947,888,1.947,889,1.541,890,1.947,891,1.947,892,1.947,893,1.947,894,1.947,895,1.947,896,1.947,897,1.947,898,1.947,899,1.947,900,1.786,901,1.947,902,1.947,903,1.947,904,4.086,905,4.736,906,4.086,907,2.463,908,3.908,909,3.908,910,1.863,911,1.863,912,1.654,913,1.654,914,1.863,915,1.786,916,1.786,917,1.863,918,1.863,919,1.863,920,1.863,921,1.863,922,2.458,923,2.655,924,1.863,925,2.655,926,2.655,927,1.863,928,1.863,929,1.654,930,1.786,931,1.717,932,1.541,933,1.654,934,1.443,935,1.786]],["title/components/NotFoundComponent.html",[135,0.043,223,0.834]],["body/components/NotFoundComponent.html",[3,0.146,4,0.133,5,0.121,24,1.213,27,0.849,30,0.01,31,0.287,84,0.977,85,0.683,98,1.154,101,0.146,102,0.573,104,0.645,133,0.007,134,0.007,135,0.072,136,0.99,137,1.278,138,0.849,139,2.222,140,1.041,141,1.184,142,0.254,144,1.041,145,1.442,146,1.189,147,0.672,148,0.907,149,1.067,150,0.99,151,2.547,153,1.04,156,1.041,165,1.041,166,1.246,167,1.184,168,1.041,169,1.572,170,1.041,171,1.041,172,0.99,173,1.31,174,1.041,175,0.99,176,1.041,177,0.99,178,0.99,179,1.041,180,0.99,181,0.965,182,1.041,183,0.965,184,1.421,185,0.99,186,1.041,187,0.965,188,0.959,189,1.041,190,0.965,191,1.041,192,0.965,193,1.041,194,0.99,195,1.751,196,0.99,197,1.041,198,0.99,199,0.99,200,1.736,201,0.99,202,1.041,203,0.99,204,0.784,205,0.99,206,0.99,207,1.041,208,0.99,209,0.894,210,1.041,211,0.99,212,1.041,213,0.99,214,0.99,215,1.041,216,0.99,217,1.041,218,0.99,219,1.015,220,1.041,221,0.99,222,1.041,223,1.495,224,1.041,225,0.99,226,0.99,227,0.99,228,0.99,229,0.99,230,1.041,231,0.99,232,0.99,233,0.99,234,0.784,235,1.343,236,0.965,237,0.871,238,1.041,239,0.917,240,1.041,241,0.99,242,0.99,243,0.99,244,1.041,245,0.99,246,1.015,247,0.99,248,0.99,249,0.99,250,0.99,251,1.041,252,0.99,253,1.041,254,1.041,255,0.917,256,0.99,257,1.041,258,1.041,306,1.474,371,6.295,420,4.19,483,2.107,758,4.674,1730,4.674,1954,5.957,1998,5.904,1999,5.904,2000,4.574,2001,7.421,2002,6.701,2003,5.192,2004,6.701]],["title/interfaces/ObjectNode.html",[434,0.144,1232,3.05]],["body/interfaces/ObjectNode.html",[3,0.152,4,0.139,5,0.126,9,0.178,10,0.295,11,1.415,24,0.885,30,0.01,31,0.374,32,0.231,33,1.235,44,2.96,47,0.885,49,1.853,63,0.467,84,1.082,85,0.712,96,1.259,101,0.152,102,0.597,103,1.76,104,1.045,108,2.316,112,1.346,115,1.27,133,0.007,134,0.007,135,0.067,141,0.956,142,0.205,145,0.839,146,0.692,147,0.543,148,0.733,149,0.862,151,2.057,153,0.839,209,0.932,255,0.956,256,1.443,262,1.169,263,2.004,269,3.247,271,4.103,280,1.616,302,0.981,303,1.39,337,1.892,415,0.753,434,0.226,436,1.14,445,1.678,805,3.924,1071,2.39,1180,2.246,1212,4.8,1213,4.028,1214,3.564,1215,4.028,1216,3.384,1217,5.014,1218,4.732,1219,5.141,1220,4.303,1221,3.384,1222,4.303,1223,4.303,1224,5.524,1225,3.384,1226,4.303,1227,4.303,1228,4.103,1229,4.103,1230,3.764,1231,5.498,1232,5.956,1233,4.344,1234,4.344,1235,4.344,1236,4.344,1237,4.303,1238,4.732,1239,3.384,1240,4.303,1241,3.384,1242,4.344,1243,4.344,1244,3.384,1245,3.384,1246,4.344,1247,3.384,1248,3.384,1249,3.384,1250,4.344,1251,4.344,1252,4.344,1253,5.524,1254,4.344,1255,4.344,1256,5.524,1257,4.344,1258,4.344,1259,3.226,1260,4.344]],["title/interfaces/OsBreedFlatNode.html",[434,0.144,2005,2.88]],["body/interfaces/OsBreedFlatNode.html",[3,0.122,4,0.112,5,0.102,9,0.143,10,0.256,11,1.503,24,0.712,30,0.01,31,0.187,32,0.207,33,0.676,44,2.383,47,1.196,63,0.464,65,1.394,69,1.61,84,1.159,85,0.573,93,1.014,95,1.119,96,1.84,101,0.122,102,0.48,103,1.014,104,0.983,108,1.865,112,1.67,115,1.227,125,1.288,133,0.006,134,0.006,135,0.058,141,0.77,142,0.165,145,0.676,146,0.763,147,0.437,148,0.921,149,0.694,153,0.676,166,1.109,167,1.054,209,1.171,239,0.77,262,0.941,263,1.736,264,1.61,277,1.808,278,1.206,279,1.176,280,1.301,284,1.662,298,1.61,300,2.128,302,0.79,303,1.119,304,2.206,307,1.808,310,1.039,314,1.206,315,1.206,316,1.704,318,1.836,320,1.651,323,1.206,324,1.206,337,1.523,411,1.582,415,0.946,434,0.224,436,0.918,445,1.666,539,1.61,541,1.206,542,1.651,558,1.206,559,1.206,560,1.147,561,1.57,580,1.532,585,1.61,586,1.925,587,1.651,588,1.61,589,1.693,590,1.693,607,1.875,608,1.875,610,4.16,613,3.039,622,3.039,623,4.16,626,4.743,633,3.928,774,1.147,889,2.814,1069,2.128,1071,2.634,1113,2.724,1165,2.814,1166,2.814,1167,2.814,1168,2.814,1169,2.814,1170,2.814,1171,2.814,1172,2.814,1173,2.814,1174,2.814,1180,1.808,1216,3.729,1217,4.871,1218,5.063,1219,5.229,1220,3.729,1221,2.724,1222,2.724,1223,3.729,1225,2.724,1226,2.724,1227,2.724,1228,2.597,1229,2.597,1230,2.383,1231,5.063,1237,3.729,1238,4.252,1239,2.724,1240,3.729,1241,2.724,1244,2.724,1245,2.724,1247,2.724,1248,2.724,1249,3.729,1259,2.597,1777,3.039,1891,4.16,1892,4.16,1893,4.16,2005,4.816,2006,3.039,2007,4.438,2008,4.438,2009,4.438,2010,3.928,2011,4.438,2012,3.242,2013,4.438,2014,4.438,2015,4.438,2016,4.438,2017,4.438,2018,4.478,2019,4.478,2020,3.242,2021,3.242,2022,3.242,2023,4.438,2024,4.438,2025,3.242,2026,3.242,2027,3.039,2028,3.242,2029,3.242,2030,4.438,2031,3.242,2032,3.242,2033,4.438,2034,3.242,2035,3.242,2036,3.242,2037,4.438,2038,3.242,2039,4.438,2040,3.242,2041,4.438,2042,3.242,2043,3.242,2044,3.242,2045,3.242,2046,3.242,2047,3.242,2048,3.242,2049,3.242,2050,3.242,2051,4.438,2052,3.242,2053,3.242,2054,3.242]],["title/interfaces/OsNode.html",[434,0.144,2019,2.88]],["body/interfaces/OsNode.html",[3,0.122,4,0.112,5,0.102,9,0.143,10,0.256,11,1.503,24,0.712,30,0.01,31,0.256,32,0.182,33,1.134,44,2.383,47,1.196,63,0.464,65,1.394,69,1.61,84,1.159,85,0.573,93,1.014,95,1.119,96,1.84,101,0.122,102,0.48,103,1.014,104,0.983,108,1.865,112,1.683,115,1.227,125,1.288,133,0.006,134,0.006,135,0.058,141,0.77,142,0.165,145,0.676,146,0.763,147,0.437,148,0.921,149,0.694,153,0.676,166,1.109,167,1.054,209,1.171,239,0.77,262,0.941,263,1.736,264,1.61,277,1.808,278,1.206,279,1.176,280,1.301,284,1.662,298,1.61,300,2.128,302,0.79,303,1.119,304,2.206,307,1.808,310,1.039,314,1.206,315,1.206,316,1.704,318,1.836,320,1.651,323,1.206,324,1.206,337,1.523,411,1.582,415,0.606,434,0.224,436,0.918,445,1.541,539,1.61,541,1.206,542,1.651,558,1.206,559,1.206,560,1.147,561,1.57,580,1.532,585,1.61,586,1.925,587,1.651,588,1.61,589,1.693,590,1.693,607,1.875,608,1.875,610,4.16,613,3.039,622,3.039,623,4.16,626,4.743,633,3.928,774,1.147,889,2.814,1069,2.128,1071,1.924,1113,2.724,1165,2.814,1166,2.814,1167,2.814,1168,2.814,1169,2.814,1170,2.814,1171,2.814,1172,2.814,1173,2.814,1174,2.814,1180,1.808,1216,2.724,1217,4.871,1218,4.252,1219,4.789,1220,3.729,1221,2.724,1222,2.724,1223,3.729,1225,2.724,1226,3.729,1227,3.729,1228,3.555,1229,3.555,1230,3.262,1231,5.341,1237,3.729,1238,4.252,1239,2.724,1240,3.729,1241,2.724,1244,2.724,1245,2.724,1247,2.724,1248,2.724,1249,3.729,1259,2.597,1777,3.039,1891,4.16,1892,4.16,1893,4.16,2005,4.478,2006,3.039,2007,4.438,2008,4.438,2009,4.438,2010,3.928,2011,4.438,2012,3.242,2013,4.438,2014,4.438,2015,4.438,2016,4.438,2017,4.438,2018,4.478,2019,5.208,2020,3.242,2021,3.242,2022,3.242,2023,4.438,2024,4.438,2025,3.242,2026,3.242,2027,3.039,2028,3.242,2029,3.242,2030,4.438,2031,3.242,2032,3.242,2033,4.438,2034,3.242,2035,3.242,2036,3.242,2037,4.438,2038,3.242,2039,4.438,2040,3.242,2041,4.438,2042,3.242,2043,3.242,2044,3.242,2045,3.242,2046,3.242,2047,3.242,2048,3.242,2049,3.242,2050,3.242,2051,4.438,2052,3.242,2053,3.242,2054,3.242]],["title/interfaces/Package.html",[434,0.144,934,1.932]],["body/interfaces/Package.html",[3,0.091,4,0.083,5,0.134,9,0.106,10,0.206,18,1.635,30,0.01,31,0.345,32,0.264,49,2.141,63,0.55,64,1.635,65,1.554,71,1.595,101,0.223,125,0.698,133,0.005,134,0.005,138,1.115,142,0.122,188,1.198,204,0.727,234,0.488,415,1.225,434,0.261,436,1.014,437,0.917,443,1.598,445,1.788,458,1.177,483,2.145,487,1.857,488,1.719,489,1.763,491,1.042,497,1.438,498,1.161,818,1.842,819,4.64,820,4.398,821,4.072,822,3.115,823,3.552,824,4.398,825,1.842,826,3.669,827,1.842,828,3.669,829,4.072,830,3.928,831,4.072,832,3.669,833,4.228,834,2.389,835,1.842,836,1.842,837,1.842,838,1.842,839,1.925,840,4.072,841,1.842,842,1.473,843,1.473,844,1.473,845,1.161,846,2.811,847,2.745,848,2.531,849,1.698,850,2.437,851,2.745,852,2.745,853,2.437,854,2.437,855,2.745,856,3.147,857,3.026,858,3.431,859,3.431,860,3.431,861,3.431,862,3.431,863,3.431,864,3.431,865,2.633,866,1.925,867,1.925,868,1.925,869,1.925,870,1.925,871,1.925,872,1.925,873,1.925,874,1.925,875,1.925,876,1.925,877,1.925,878,1.925,879,1.925,880,1.925,881,1.925,882,1.473,883,1.925,884,1.925,885,1.925,886,1.301,887,1.925,888,1.925,889,1.524,890,1.925,891,1.925,892,1.925,893,1.925,894,1.925,895,1.925,896,1.925,897,1.925,898,1.925,899,1.925,900,1.766,901,1.925,902,1.925,903,1.925,904,4.067,905,4.723,906,4.067,907,2.451,908,3.89,909,3.89,910,1.842,911,1.842,912,1.635,913,1.635,914,1.842,915,1.766,916,1.766,917,1.842,918,1.842,919,1.842,920,1.842,921,1.842,922,3.454,923,3.731,924,1.842,925,3.731,926,3.731,927,1.842,928,1.842,929,1.635,930,1.766,931,1.698,932,1.524,933,1.635,934,2.126,935,3.488]],["title/components/PackageEditComponent.html",[135,0.043,225,0.834]],["body/components/PackageEditComponent.html",[3,0.077,4,0.071,5,0.064,9,0.09,10,0.182,11,1.589,13,1.665,16,0.791,24,0.696,27,1.329,29,0.771,30,0.01,31,0.359,32,0.194,33,0.66,46,1.27,47,1.315,63,0.454,69,1.714,71,0.91,84,1.114,85,0.361,93,0.639,95,0.705,96,0.99,98,0.733,101,0.077,102,0.303,103,1.212,104,1.115,108,1.821,112,0.537,115,1.494,125,1.605,133,0.005,134,0.005,135,0.051,136,0.523,137,0.811,138,1.038,140,0.55,141,0.752,142,0.31,144,0.55,145,1.396,146,1.152,147,0.427,148,1.202,149,0.678,150,0.523,153,0.66,156,0.55,165,0.55,166,1.302,167,0.752,168,0.55,169,1.176,170,0.55,171,0.55,172,0.523,173,0.832,174,0.55,175,0.523,176,0.55,177,0.523,178,0.523,179,0.55,180,0.523,181,0.791,182,0.55,183,0.51,184,1.27,185,0.523,186,0.55,187,0.791,188,0.839,189,0.55,190,0.51,191,0.55,192,0.51,193,0.55,194,0.523,195,1.522,196,0.523,197,0.55,198,0.523,199,0.523,200,1.49,201,0.523,202,0.55,203,0.523,204,0.415,205,0.523,206,0.523,207,0.55,208,0.523,209,0.473,210,0.55,211,0.523,212,0.55,213,0.523,214,0.523,215,0.55,216,0.523,217,0.55,218,1.119,219,0.537,220,0.55,221,0.523,222,0.55,223,0.523,224,0.55,225,1.119,226,0.523,227,0.523,228,0.523,229,0.523,230,0.55,231,0.523,232,0.523,233,0.523,234,0.415,235,0.853,236,0.51,237,0.461,238,0.55,239,0.485,240,0.55,241,0.523,242,0.523,243,0.523,244,0.55,245,0.523,246,0.537,247,0.523,248,0.523,249,0.523,250,0.523,251,0.55,252,0.523,253,0.55,254,0.55,255,0.485,256,0.523,257,0.55,258,0.55,262,0.919,263,1.516,264,1.406,278,1.442,279,1.584,280,1.752,283,2.511,284,1.712,291,1.206,298,1.406,301,1.148,302,0.498,303,0.705,306,0.779,308,0.91,310,0.654,311,1.212,314,0.76,315,0.76,317,1.175,318,1.584,320,1.624,323,0.76,324,0.76,326,0.986,337,1.487,340,1.501,349,2.327,377,1.529,411,1.63,412,2.517,415,0.592,443,1.47,458,1.04,483,1.845,528,2.162,529,1.726,530,2.229,531,2.162,532,2.301,533,1.98,534,2.544,537,2.457,541,1.442,542,1.624,546,2.007,548,2.007,552,1.295,553,0.96,554,1.341,555,0.934,556,0.91,557,0.91,558,0.76,559,0.76,560,0.723,561,1.12,562,1.252,580,1.725,584,1.997,585,1.584,586,1.957,587,1.757,588,1.714,589,1.802,590,1.665,607,1.638,608,1.638,609,2.849,624,1.39,630,2.236,669,3.345,765,1.501,774,1.12,787,1.106,788,1.106,789,1.106,795,1.106,823,2.591,826,1.941,832,1.941,834,1.766,842,1.941,843,2.677,844,1.941,845,2.413,907,0.986,922,2.97,923,3.209,925,3.209,926,3.209,934,3.554,935,3.209,937,1.501,938,2.295,939,2.97,940,2.849,941,2.426,942,2.426,944,3.62,947,3.345,950,2.236,958,1.565,959,3.345,961,2.426,970,1.808,971,1.808,972,4.329,973,4.652,975,2.802,984,2.043,1000,1.501,1001,1.716,1005,1.808,1006,1.636,1007,1.808,1008,1.565,1009,1.565,1010,1.565,1017,2.66,1066,1.713,1067,1.565,1068,2.037,1069,1.341,1070,1.501,1071,1.212,1072,1.565,1073,1.565,1074,1.565,1075,1.716,1076,1.252,1077,2.376,1078,1.139,1079,1.252,1080,1.212,1081,1.175,1085,3.43,1093,2.426,1094,2.66,1095,2.66,1096,2.66,1098,2.66,1099,2.967,1273,2.418,1276,2.203,1279,1.636,1429,2.418,2055,7.223,2056,5.208,2057,4.254,2058,5.867,2059,5.867,2060,5.867,2061,5.208,2062,4.254,2063,4.254,2064,2.745,2065,2.745,2066,2.745,2067,2.418,2068,2.745,2069,2.745,2070,2.745,2071,2.745,2072,2.745,2073,4.254,2074,2.745,2075,2.745,2076,2.745,2077,2.745,2078,2.745,2079,2.745,2080,2.745,2081,2.745,2082,2.745,2083,2.745,2084,2.745,2085,2.745,2086,2.745,2087,2.745,2088,2.745,2089,2.745,2090,2.745,2091,2.745,2092,2.745,2093,2.745,2094,5.208,2095,2.745,2096,2.745,2097,2.745,2098,2.745,2099,2.418,2100,2.418,2101,2.745]],["title/components/PackageOverviewComponent.html",[135,0.043,226,0.834]],["body/components/PackageOverviewComponent.html",[3,0.097,4,0.089,5,0.081,9,0.114,10,0.218,11,1.63,13,0.984,16,0.943,24,0.83,27,1.351,29,1.197,30,0.01,31,0.374,32,0.237,33,1.024,46,1.33,47,1.351,63,0.51,65,0.874,69,1.782,84,1.115,85,0.456,93,0.807,95,0.891,96,0.807,98,0.874,101,0.097,102,0.382,103,0.807,104,0.966,112,0.678,115,0.851,125,0.749,133,0.005,134,0.005,135,0.058,136,0.661,137,0.967,138,0.567,140,0.695,141,0.896,142,0.316,144,0.695,145,1.416,146,1.168,147,0.509,148,0.687,149,0.808,150,0.661,153,0.787,156,0.695,165,0.695,166,1.364,167,0.896,168,0.695,169,1.323,170,0.695,171,0.695,172,0.661,173,0.992,174,0.695,175,0.661,176,0.695,177,0.661,178,0.661,179,0.695,180,0.661,181,0.645,182,0.695,183,0.645,184,1.374,185,0.661,186,0.695,187,0.645,188,0.945,189,0.695,190,0.943,191,0.695,192,0.645,193,0.695,194,0.661,195,1.616,196,0.661,197,0.695,198,0.661,199,0.661,200,1.59,201,0.661,202,0.695,203,0.661,204,0.524,205,0.661,206,0.661,207,0.695,208,0.661,209,0.597,210,0.695,211,0.661,212,0.695,213,0.661,214,0.661,215,0.695,216,0.661,217,0.695,218,0.661,219,0.678,220,0.695,221,0.661,222,0.695,223,0.661,224,0.695,225,0.661,226,1.259,227,0.661,228,0.661,229,0.661,230,0.695,231,0.661,232,0.661,233,0.661,234,0.524,235,1.017,236,0.645,237,0.582,238,0.695,239,0.613,240,0.695,241,0.661,242,0.661,243,0.661,244,0.695,245,0.661,246,0.678,247,0.661,248,0.661,249,0.661,250,0.661,251,0.695,252,0.661,253,0.695,254,0.695,255,0.613,256,0.661,257,0.695,258,0.695,262,1.096,263,1.747,264,1.62,277,2.49,278,1.661,279,1.782,280,1.972,283,2.826,284,1.853,291,1.233,296,2.393,298,1.62,301,0.936,302,0.628,303,0.891,305,1.823,306,0.984,307,1.439,308,1.149,310,0.827,311,1.532,314,0.96,315,0.96,316,2.582,317,1.484,318,1.782,320,1.827,323,0.96,324,0.96,326,1.246,330,2.775,338,2.667,339,2.667,410,1.318,411,1.845,412,2.724,443,1.654,539,1.62,541,1.661,542,1.827,558,0.96,559,0.96,560,0.913,561,1.336,580,1.696,584,2.042,585,1.782,586,2.047,587,1.827,588,1.782,589,1.874,590,1.874,607,1.886,608,1.886,753,1.582,774,1.336,787,1.397,788,1.397,789,1.397,793,1.823,795,2.417,845,2.372,907,1.246,933,2.569,934,3.348,935,3.611,938,1.984,1066,1.397,1068,2.582,1076,1.582,1077,2.315,1078,1.439,1079,1.582,1080,1.532,1081,1.484,1163,1.823,1165,3.314,1166,2.83,1167,2.83,1168,2.83,1169,2.83,1170,2.83,1171,2.83,1172,2.83,1173,2.83,1174,2.83,1175,3.281,1176,3.281,1177,3.281,1179,2.775,1180,2.49,1185,2.168,1196,3.341,1197,2.067,1198,2.775,1200,1.694,1201,2.067,1204,1.896,1205,2.067,1210,2.775,1211,2.775,1303,2.569,1304,2.893,1310,2.418,1311,2.418,1313,2.418,1314,2.067,1315,2.418,1316,2.418,1317,2.168,1320,2.168,2099,3.055,2100,4.47,2102,7.35,2103,5.073,2104,5.073,2105,6.602,2106,5.073,2107,5.073,2108,3.055,2109,5.073,2110,5.073,2111,5.999,2112,3.467,2113,3.467,2114,3.467,2115,5.073,2116,5.073]],["title/interfaces/PageInfo.html",[434,0.144,501,1.872]],["body/interfaces/PageInfo.html",[3,0.142,4,0.17,5,0.118,9,0.167,10,0.283,30,0.01,31,0.315,32,0.265,49,1.536,63,0.544,65,1.449,101,0.251,133,0.007,134,0.007,142,0.192,147,0.509,163,2.637,293,2.825,294,2.241,295,2.241,309,1.823,415,1.227,434,0.294,435,2.171,436,1.391,437,1.44,438,2.241,439,2.314,440,2.314,441,2.314,442,2.314,443,1.839,444,2.171,445,1.94,446,2.314,447,2.314,448,2.171,449,2.314,450,2.314,451,2.314,452,2.314,453,2.105,454,2.105,455,2.043,456,2.871,457,2.043,458,1.24,459,2.241,460,2.241,461,2.241,462,2.105,463,2.171,464,2.171,465,2.916,466,2.171,467,2.105,468,2.241,469,2.241,470,2.241,471,2.241,472,2.241,473,2.241,474,2.241,475,2.241,476,2.241,477,2.241,478,2.241,479,2.241,480,2.241,481,2.241,482,2.105,483,1.595,484,2.241,485,2.241,486,2.241,487,1.637,488,1.515,489,1.554,490,2.105,491,1.637,492,2.241,493,2.241,494,2.171,495,2.314,496,2.171,497,1.515,498,1.823,499,2.171,500,2.171,501,3.327,502,3.327,503,3.546,504,3.546,505,3.546,506,3.546,507,3.546,508,3.546,509,3.546,510,3.546,511,3.546,512,3.348,513,3.348,514,3.241,515,3.348,516,3.348,517,2.314,518,2.105,519,2.241,520,2.241,521,2.241,522,2.314,523,2.241,524,2.241]],["title/interfaces/PagesItemsResult.html",[434,0.144,499,1.872]],["body/interfaces/PagesItemsResult.html",[3,0.151,4,0.176,5,0.126,9,0.177,10,0.294,30,0.01,31,0.324,32,0.209,49,1.849,63,0.545,65,1.414,101,0.253,133,0.007,134,0.007,142,0.204,147,0.54,163,1.936,293,2.937,294,2.379,295,2.379,309,1.936,415,1.237,434,0.296,435,2.305,436,1.446,437,1.529,438,2.379,439,2.458,440,2.458,441,2.458,442,2.458,443,1.892,444,2.305,445,1.906,446,2.458,447,2.458,448,2.305,449,2.458,450,2.458,451,2.458,452,2.458,453,2.236,454,2.236,455,2.17,456,2.954,457,2.17,458,1.317,459,2.379,460,2.379,461,2.379,462,2.236,463,2.305,464,2.305,465,3.031,466,2.305,467,2.236,468,2.379,469,2.379,470,2.379,471,2.379,472,2.379,473,2.379,474,2.379,475,2.379,476,2.379,477,2.379,478,2.379,479,2.379,480,2.379,481,2.379,482,2.236,483,1.694,484,2.379,485,2.379,486,2.379,487,1.739,488,1.609,489,1.651,490,2.236,491,1.739,492,2.379,493,2.379,494,2.305,495,2.458,496,2.305,497,1.609,498,1.936,499,2.937,500,3.403,501,3.696,502,2.305,503,2.458,504,2.458,505,2.458,506,2.458,507,2.458,508,2.458,509,2.458,510,2.458,511,2.458,512,2.458,513,2.458,514,2.379,515,2.458,516,2.458,517,2.458,518,2.236,519,2.379,520,2.379,521,2.379,522,2.458,523,2.379,524,2.379]],["title/interfaces/Param.html",[118,2.299,434,0.144]],["body/interfaces/Param.html",[3,0.184,4,0.169,5,0.153,6,3.446,9,0.216,10,0.332,30,0.01,31,0.281,32,0.251,51,3.585,54,3.908,56,5.176,58,4.233,61,4.233,63,0.483,65,1.333,101,0.25,104,1.079,105,4.099,106,4.099,111,4.317,112,1.282,118,4.331,133,0.008,134,0.008,332,3.585,415,0.912,434,0.286,436,1.381,445,1.631,1873,3.908,1874,4.099,1875,4.099,1876,4.099]],["title/components/ProfileEditComponent.html",[135,0.043,227,0.834]],["body/components/ProfileEditComponent.html",[3,0.056,4,0.051,5,0.047,9,0.066,10,0.141,11,1.449,13,1.386,16,0.612,24,0.538,27,1.32,29,0.596,30,0.01,31,0.338,32,0.165,33,0.51,46,1.116,47,1.219,49,1.432,63,0.487,69,1.459,71,2.212,84,1.063,85,0.262,93,0.463,95,0.512,96,1.553,98,0.567,101,0.056,102,0.22,103,1.802,104,1.129,108,3.348,112,0.39,115,1.52,125,1.839,133,0.003,134,0.003,135,0.041,136,0.38,137,0.627,138,0.326,140,0.399,141,0.581,142,0.308,144,0.399,145,1.362,146,1.125,147,0.33,148,1.229,149,0.524,150,0.38,153,0.51,156,0.399,165,0.399,166,1.145,167,0.581,168,0.399,169,0.979,170,0.399,171,0.399,172,0.38,173,0.643,174,0.399,175,0.38,176,0.399,177,0.38,178,0.38,179,0.399,180,0.38,181,0.612,182,0.399,183,0.37,184,1.116,185,0.38,186,0.399,187,0.612,188,0.698,189,0.399,190,0.37,191,0.399,192,0.37,193,0.399,194,0.38,195,1.378,196,0.38,197,0.399,198,0.38,199,0.38,200,1.338,201,0.38,202,0.399,203,0.38,204,0.301,205,0.38,206,0.38,207,0.399,208,0.931,209,0.724,210,0.399,211,0.38,212,0.399,213,0.38,214,0.38,215,0.399,216,0.38,217,0.399,218,0.931,219,0.39,220,0.399,221,0.38,222,0.399,223,0.38,224,0.399,225,0.38,226,0.38,227,0.931,228,0.38,229,0.38,230,0.399,231,0.38,232,0.38,233,0.38,234,0.301,235,0.66,236,0.37,237,0.334,238,0.399,239,0.352,240,0.399,241,0.38,242,0.38,243,0.38,244,0.399,245,0.38,246,0.39,247,0.38,248,0.38,249,0.38,250,0.38,251,0.399,252,0.38,253,0.399,254,0.399,255,0.352,256,0.38,257,0.399,258,0.399,262,0.711,263,1.224,264,1.135,278,1.164,279,1.318,280,1.458,283,2.089,284,1.505,291,1.003,298,1.135,301,0.888,302,0.361,303,0.512,306,0.566,308,0.66,310,0.475,311,0.88,314,0.552,315,0.552,317,0.853,318,1.318,320,1.351,323,0.552,324,0.552,326,0.716,337,1.151,340,1.09,349,1.8,377,1.183,411,1.432,412,2.213,415,0.458,458,1.193,463,1.408,491,1.062,497,2.227,528,1.745,529,1.393,530,1.799,531,1.745,532,1.857,533,1.598,534,2.053,537,1.983,541,1.164,542,1.351,546,1.553,548,1.553,552,0.94,553,0.697,554,0.973,555,0.678,556,0.66,557,0.66,558,0.552,559,0.552,560,0.525,561,0.867,562,0.909,580,1.495,584,1.661,585,1.318,586,1.757,587,1.496,588,1.459,589,1.534,590,1.386,607,1.322,608,1.322,609,2.299,624,1.009,630,1.73,669,2.784,765,1.09,774,0.867,787,0.803,788,0.803,789,0.803,795,0.803,820,1.8,821,1.666,822,1.607,823,2.156,824,1.8,826,1.501,828,1.501,829,1.666,830,1.607,831,1.666,832,1.501,833,2.566,834,1.366,840,1.666,842,1.501,843,2.227,844,1.501,845,2.091,846,2.384,847,1.877,850,2.472,851,1.877,852,1.877,853,1.666,854,1.666,855,2.784,856,2.67,882,1.501,907,0.716,937,1.09,938,1.909,939,2.397,940,2.299,941,1.877,942,1.877,944,3.082,947,2.784,950,1.73,958,1.136,959,2.784,961,1.877,967,1.755,970,1.312,971,1.312,972,4.416,973,4.751,974,2.642,975,2.167,976,2.899,977,2.899,978,2.899,979,2.899,980,2.899,981,2.899,982,2.899,983,1.483,1000,1.09,1001,1.246,1002,1.483,1003,1.312,1004,1.483,1005,1.312,1006,1.188,1007,1.312,1008,1.136,1009,1.136,1010,1.136,1017,2.058,1066,1.326,1067,1.136,1068,1.645,1069,0.973,1070,1.09,1071,0.88,1072,1.136,1073,1.136,1074,1.136,1075,1.246,1076,0.909,1077,1.918,1078,0.827,1079,0.909,1080,0.88,1081,0.853,1085,2.769,1086,3.704,1088,3.704,1089,3.704,1090,3.704,1092,3.704,1093,1.877,1094,2.058,1095,2.058,1096,2.058,1098,2.058,1099,5.552,1104,2.899,1277,1.483,1279,1.188,1802,4.301,1804,4.301,1814,1.599,1885,4.301,2117,7.16,2118,4.204,2119,3.291,2120,4.882,2121,4.204,2122,4.204,2123,4.204,2124,4.204,2125,4.204,2126,4.204,2127,4.204,2128,4.204,2129,2.642,2130,3.291,2131,1.992,2132,1.992,2133,1.992,2134,1.992,2135,1.992,2136,1.992,2137,3.291,2138,1.992,2139,1.992,2140,1.992,2141,1.992,2142,1.992,2143,1.992,2144,1.992,2145,1.992,2146,1.992,2147,1.992,2148,1.992,2149,1.992,2150,1.992,2151,1.992,2152,1.992,2153,1.992,2154,1.992,2155,6.674,2156,1.992,2157,1.992,2158,1.992,2159,1.992,2160,1.992,2161,1.992,2162,1.992,2163,1.992,2164,1.992,2165,1.992,2166,1.992,2167,1.992,2168,1.992,2169,1.992,2170,1.992,2171,1.992,2172,1.992,2173,1.992,2174,1.992,2175,1.992,2176,1.992,2177,1.992,2178,1.992,2179,1.992,2180,1.992,2181,1.992,2182,1.992,2183,1.992,2184,1.992,2185,1.992,2186,1.992,2187,1.992,2188,3.291,2189,1.992,2190,1.992,2191,1.992,2192,4.204,2193,1.992,2194,1.992,2195,1.992,2196,4.882,2197,3.291,2198,1.992,2199,4.882,2200,1.992,2201,1.992,2202,1.992,2203,4.882,2204,3.291,2205,1.992,2206,4.882,2207,3.291,2208,1.992,2209,4.882,2210,3.291,2211,1.992,2212,3.291,2213,3.291,2214,1.992,2215,4.882,2216,3.291,2217,1.992,2218,4.882,2219,3.291,2220,1.992,2221,1.992,2222,1.755,2223,1.755,2224,1.992,2225,4.204,2226,4.204,2227,3.291,2228,3.291,2229,3.291,2230,3.291]],["title/components/ProfileOverviewComponent.html",[135,0.043,228,0.834]],["body/components/ProfileOverviewComponent.html",[3,0.097,4,0.089,5,0.081,9,0.114,10,0.218,11,1.63,13,0.984,16,0.943,24,0.83,27,1.351,29,1.197,30,0.01,31,0.374,32,0.237,33,1.024,46,1.33,47,1.351,63,0.51,65,0.874,69,1.782,71,2.188,84,1.115,85,0.456,93,0.807,95,0.891,96,0.807,98,0.874,101,0.097,102,0.382,103,0.807,104,0.966,112,0.678,115,0.851,125,0.749,133,0.005,134,0.005,135,0.058,136,0.661,137,0.967,138,0.567,140,0.695,141,0.896,142,0.316,144,0.695,145,1.416,146,1.168,147,0.509,148,0.687,149,0.808,150,0.661,153,0.787,156,0.695,165,0.695,166,1.364,167,0.896,168,0.695,169,1.323,170,0.695,171,0.695,172,0.661,173,0.992,174,0.695,175,0.661,176,0.695,177,0.661,178,0.661,179,0.695,180,0.661,181,0.645,182,0.695,183,0.645,184,1.374,185,0.661,186,0.695,187,0.645,188,0.945,189,0.695,190,0.943,191,0.695,192,0.645,193,0.695,194,0.661,195,1.616,196,0.661,197,0.695,198,0.661,199,0.661,200,1.59,201,0.661,202,0.695,203,0.661,204,0.524,205,0.661,206,0.661,207,0.695,208,0.661,209,0.597,210,0.695,211,0.661,212,0.695,213,0.661,214,0.661,215,0.695,216,0.661,217,0.695,218,0.661,219,0.678,220,0.695,221,0.661,222,0.695,223,0.661,224,0.695,225,0.661,226,0.661,227,0.661,228,1.259,229,0.661,230,0.695,231,0.661,232,0.661,233,0.661,234,0.524,235,1.017,236,0.645,237,0.582,238,0.695,239,0.613,240,0.695,241,0.661,242,0.661,243,0.661,244,0.695,245,0.661,246,0.678,247,0.661,248,0.661,249,0.661,250,0.661,251,0.695,252,0.661,253,0.695,254,0.695,255,0.613,256,0.661,257,0.695,258,0.695,262,1.096,263,1.747,264,1.62,277,2.49,278,1.661,279,1.782,280,1.972,283,2.826,284,1.853,291,1.233,296,2.393,298,1.62,301,0.936,302,0.628,303,0.891,305,1.823,306,0.984,307,1.439,308,1.149,310,0.827,311,1.532,314,0.96,315,0.96,316,2.582,317,1.484,318,1.782,320,1.827,323,0.96,324,0.96,326,1.246,330,2.775,338,2.667,339,2.667,410,1.318,411,1.845,412,2.724,455,2.043,458,1.614,497,2.321,539,1.62,541,1.661,542,1.827,558,0.96,559,0.96,560,0.913,561,1.336,580,1.696,584,2.042,585,1.782,586,2.047,587,1.827,588,1.782,589,1.874,590,1.874,607,1.886,608,1.886,753,1.582,774,1.336,787,1.397,788,1.397,789,1.397,793,1.823,795,2.417,845,2.372,907,1.246,938,1.984,1066,1.397,1068,2.582,1076,1.582,1077,2.315,1078,1.439,1079,1.582,1080,1.532,1081,1.484,1163,1.823,1165,3.314,1166,2.83,1167,2.83,1168,2.83,1169,2.83,1170,2.83,1171,2.83,1172,2.83,1173,2.83,1174,2.83,1175,3.281,1176,3.281,1177,3.281,1179,2.775,1180,2.49,1185,2.168,1196,3.341,1197,2.067,1198,2.775,1200,1.694,1201,2.067,1204,1.896,1205,2.067,1210,2.775,1211,2.775,1303,2.569,1304,2.893,1310,2.418,1311,2.418,1313,2.418,1314,2.067,1315,2.418,1316,2.418,1317,2.168,2108,3.055,2222,3.055,2223,4.47,2231,7.35,2232,5.073,2233,5.073,2234,6.602,2235,5.073,2236,5.073,2237,5.073,2238,5.073,2239,5.999,2240,3.467,2241,3.467,2242,3.467,2243,5.073,2244,5.073]],["title/interfaces/RegisterOptions.html",[434,0.144,496,1.872]],["body/interfaces/RegisterOptions.html",[3,0.149,4,0.175,5,0.124,9,0.175,10,0.292,30,0.01,31,0.359,32,0.241,49,1.841,63,0.546,65,1.408,101,0.252,133,0.007,134,0.007,142,0.201,147,0.533,163,1.911,293,2.912,294,2.348,295,2.348,309,1.911,415,1.235,434,0.296,435,2.276,436,1.723,437,1.509,438,2.348,439,2.426,440,2.426,441,2.426,442,2.426,443,1.88,444,2.276,445,1.904,446,2.426,447,2.426,448,2.276,449,2.426,450,2.426,451,2.426,452,2.426,453,2.207,454,2.207,455,2.142,456,2.936,457,2.142,458,1.3,459,2.348,460,2.348,461,2.348,462,2.207,463,2.276,464,2.276,465,3.006,466,2.276,467,2.207,468,2.348,469,2.348,470,2.348,471,2.348,472,2.348,473,2.348,474,2.348,475,2.348,476,2.348,477,2.348,478,2.348,479,2.348,480,2.348,481,2.348,482,2.207,483,1.672,484,2.348,485,2.348,486,2.348,487,1.716,488,1.588,489,1.629,490,2.207,491,1.716,492,2.348,493,2.348,494,2.276,495,2.426,496,2.912,497,2.363,498,2.843,499,2.276,500,2.276,501,3.212,502,2.276,503,2.426,504,2.426,505,2.426,506,2.426,507,2.426,508,2.426,509,2.426,510,2.426,511,2.426,512,2.426,513,2.426,514,2.348,515,2.426,516,2.426,517,2.426,518,2.207,519,2.348,520,2.348,521,2.348,522,2.426,523,2.348,524,2.348]],["title/components/ReplicateComponent.html",[135,0.043,229,0.834]],["body/components/ReplicateComponent.html",[3,0.111,4,0.102,5,0.151,9,0.13,10,0.239,11,1.655,13,1.834,16,1.037,24,0.912,27,1.289,29,0.717,30,0.01,31,0.277,32,0.17,33,0.614,46,1.011,47,1.147,69,1.068,84,1.124,85,0.521,93,0.921,95,1.016,96,0.921,98,0.961,101,0.111,102,0.712,104,0.919,112,1.091,115,0.936,125,1.739,133,0.006,134,0.006,135,0.063,136,0.755,137,1.064,138,0.647,140,0.793,141,0.986,142,0.305,144,0.793,145,1.425,146,1.176,147,0.559,148,0.755,149,0.888,150,0.755,153,0.865,156,0.793,165,0.793,166,1.201,167,0.986,168,0.793,169,1.406,170,0.793,171,0.793,172,0.755,173,1.091,174,0.793,175,0.755,176,0.793,177,0.755,178,0.755,179,0.793,180,0.755,181,0.736,182,0.793,183,0.736,184,1.272,185,0.755,186,0.793,187,0.736,188,0.798,189,0.793,190,0.736,191,0.793,192,0.736,193,0.793,194,0.755,195,1.663,196,0.755,197,0.793,198,0.755,199,0.755,200,1.641,201,0.755,202,0.793,203,0.755,204,0.976,205,0.755,206,0.755,207,0.793,208,0.755,209,0.682,210,0.793,211,0.755,212,0.793,213,0.755,214,0.755,215,0.793,216,0.755,217,0.793,218,0.755,219,0.774,220,0.793,221,0.755,222,0.793,223,0.755,224,0.793,225,0.755,226,0.755,227,0.755,228,0.755,229,1.338,230,0.793,231,0.755,232,0.755,233,0.755,234,0.598,235,1.118,236,0.736,237,0.664,238,0.793,239,0.699,240,0.793,241,0.755,242,0.755,243,0.755,244,0.793,245,0.755,246,0.774,247,0.755,248,0.755,249,0.755,250,0.755,251,0.793,252,0.755,253,0.793,254,0.793,255,0.699,256,0.755,257,0.793,258,0.793,262,1.205,263,1.152,264,1.744,278,1.788,279,1.894,284,1.927,291,1.328,298,1.744,301,1.068,302,0.717,310,0.944,314,1.095,315,1.095,318,1.068,320,1.095,323,1.095,324,1.095,377,1.422,410,1.504,411,1.905,458,1.363,467,2.315,468,3.267,469,3.267,470,2.854,471,2.854,472,2.854,473,2.854,474,2.854,475,2.854,476,2.854,477,2.854,478,3.267,479,2.854,480,2.854,481,2.854,497,1.666,529,2.141,530,2.765,531,2.682,532,2.854,533,2.455,537,3.048,539,1.744,541,1.788,542,1.942,546,2.632,548,2.632,552,1.867,553,1.384,555,1.347,556,1.311,557,1.311,558,1.095,559,1.095,560,1.042,561,1.469,562,1.806,580,1.016,584,1.347,585,1.068,586,1.469,587,1.095,588,1.068,589,1.123,590,1.123,596,3.488,597,5.221,771,3.397,774,1.469,882,2.545,886,2.247,1320,3.488,1364,3.674,1684,7.574,1786,4.151,2245,3.487,2246,6.46,2247,5.578,2248,5.578,2249,6.46,2250,7.015,2251,3.957,2252,3.957,2253,3.957,2254,3.957,2255,3.957,2256,3.957,2257,3.957,2258,3.177,2259,3.177,2260,3.957,2261,3.957,2262,3.957,2263,3.957,2264,3.957,2265,3.957,2266,3.957,2267,3.957,2268,3.957,2269,3.957,2270,3.957,2271,3.957,2272,3.957,2273,3.957,2274,3.957,2275,3.957,2276,5.578,2277,5.578]],["title/interfaces/Repo.html",[234,0.661,434,0.144]],["body/interfaces/Repo.html",[3,0.088,4,0.08,5,0.132,9,0.103,10,0.202,18,1.585,30,0.01,31,0.342,32,0.269,49,2.143,63,0.55,64,1.585,65,1.56,71,1.559,101,0.221,125,0.676,133,0.005,134,0.005,138,0.769,142,0.118,188,1.192,204,0.71,234,0.71,415,1.232,434,0.259,436,0.991,437,0.889,443,0.784,445,1.8,458,1.15,483,1.479,487,2.282,488,2.112,489,2.167,491,1.011,497,1.405,498,1.125,818,1.785,819,4.601,820,4.367,821,4.043,822,3.068,823,3.527,824,4.367,825,1.785,826,3.643,827,1.785,828,3.643,829,4.043,830,3.9,831,4.043,832,3.643,833,4.198,834,2.345,835,1.785,836,1.785,837,1.785,838,1.785,839,1.866,840,4.043,841,1.785,842,1.428,843,1.428,844,1.428,845,1.125,846,2.759,847,2.682,848,2.473,849,1.646,850,2.381,851,2.682,852,2.682,853,2.381,854,2.381,855,2.682,856,3.867,857,2.97,858,3.368,859,3.368,860,3.368,861,3.368,862,3.368,863,3.368,864,3.368,865,2.572,866,1.866,867,1.866,868,1.866,869,1.866,870,1.866,871,1.866,872,1.866,873,1.866,874,1.866,875,1.866,876,1.866,877,1.866,878,1.866,879,1.866,880,1.866,881,1.866,882,1.428,883,1.866,884,1.866,885,1.866,886,1.261,887,1.866,888,1.866,889,1.477,890,1.866,891,1.866,892,1.866,893,1.866,894,1.866,895,1.866,896,1.866,897,1.866,898,1.866,899,1.866,900,1.712,901,1.866,902,1.866,903,1.866,904,4.013,905,4.687,906,4.013,907,2.419,908,3.839,909,3.839,910,3.581,911,3.581,912,3.18,913,3.18,914,3.581,915,3.435,916,3.435,917,3.581,918,3.581,919,3.581,920,3.581,921,3.581,922,2.381,923,2.572,924,1.785,925,2.572,926,2.572,927,1.785,928,1.785,929,1.585,930,1.712,931,1.646,932,1.477,933,1.585,934,1.383,935,1.712]],["title/components/RepoSyncComponent.html",[135,0.043,233,0.834]],["body/components/RepoSyncComponent.html",[3,0.101,4,0.092,5,0.084,9,0.221,10,0.223,11,1.612,13,1.734,16,0.965,24,0.849,27,1.359,29,0.941,30,0.01,31,0.318,32,0.186,33,0.805,46,1.215,47,1.282,65,0.616,69,0.966,84,1.134,85,0.471,93,0.833,95,0.919,96,0.833,98,0.894,101,0.101,102,0.395,103,1.208,104,0.922,110,3.247,115,1.245,125,1.122,133,0.006,134,0.006,135,0.059,136,0.683,137,0.99,138,0.585,139,1.532,140,0.718,141,0.917,142,0.317,144,0.718,145,1.418,146,1.171,147,0.521,148,0.703,149,0.827,150,0.683,151,1.974,153,0.805,156,0.718,165,0.718,166,1.136,167,0.917,168,0.718,169,1.344,170,0.718,171,0.718,172,0.683,173,1.015,174,0.718,175,0.683,176,0.718,177,0.683,178,0.683,179,0.718,180,0.683,181,0.666,182,0.718,183,0.666,184,1.215,185,0.683,186,0.718,187,0.666,188,0.743,189,0.718,190,0.666,191,0.718,192,0.666,193,0.718,194,0.683,195,1.627,196,0.683,197,0.718,198,0.683,199,0.683,200,1.602,201,0.683,202,0.718,203,0.683,204,0.541,205,0.683,206,0.683,207,0.718,208,0.683,209,0.616,210,0.718,211,0.683,212,0.718,213,0.683,214,0.683,215,0.718,216,0.683,217,0.718,218,0.683,219,0.7,220,0.718,221,0.683,222,0.718,223,0.683,224,0.718,225,0.683,226,0.683,227,0.683,228,0.683,229,0.683,230,0.718,231,0.683,232,0.683,233,1.278,234,1.184,235,1.041,236,0.666,237,0.601,238,0.718,239,0.633,240,0.718,241,0.683,242,0.683,243,0.683,244,0.718,245,0.683,246,0.7,247,0.683,248,0.683,249,0.683,250,0.683,251,0.718,252,0.683,253,0.718,254,0.718,255,0.633,256,0.683,257,0.718,258,0.718,262,1.122,264,1.649,266,3.82,267,3.82,278,1.691,279,1.809,284,1.871,291,1.377,298,1.649,301,0.966,302,0.649,303,0.919,304,1.813,306,1.016,310,1.238,314,0.991,315,0.991,318,0.966,320,0.991,323,0.991,324,0.991,337,2.343,377,1.286,410,1.361,411,1.859,445,1.287,490,2.155,491,1.155,492,1.581,493,2.699,528,2.536,529,2.025,530,2.615,531,2.536,532,2.699,533,2.322,534,2.984,537,2.883,539,1.649,541,1.691,542,1.855,546,2.45,548,2.45,552,1.689,553,1.252,554,1.748,555,1.218,556,1.186,557,1.186,558,0.991,559,0.991,560,0.943,561,1.367,562,1.633,578,3.247,580,0.919,584,1.218,585,0.966,586,1.367,587,0.991,588,0.966,589,1.016,590,1.016,596,2.238,607,1.921,608,1.921,771,3.212,772,3.484,814,3.247,950,2.73,972,1.748,1147,3.622,1320,4.191,1596,3.864,1604,5.523,1630,3.864,1631,3.622,1664,2.874,1677,2.874,1786,5.523,1939,2.874,2278,7.393,2279,7.393,2280,3.154,2281,5.383,2282,5.383,2283,5.383,2284,4.575,2285,6.11,2286,6.11,2287,6.702,2288,5.192,2289,6.702,2290,6.11,2291,7.116,2292,3.58,2293,3.58,2294,3.58,2295,5.192,2296,3.58,2297,3.58,2298,3.58,2299,3.58,2300,5.383,2301,3.58,2302,6.11,2303,5.192,2304,5.192,2305,5.192,2306,3.58,2307,3.58,2308,3.58,2309,3.58,2310,3.58,2311,3.58,2312,3.154,2313,3.58,2314,3.58,2315,3.58,2316,5.192,2317,3.58,2318,3.58,2319,3.58,2320,3.58,2321,3.58,2322,3.58,2323,2.874,2324,5.957,2325,6.702,2326,3.864,2327,5.905,2328,3.154,2329,4.575,2330,5.192,2331,4.575,2332,3.58,2333,3.58]],["title/components/RepositoryEditComponent.html",[135,0.043,231,0.834]],["body/components/RepositoryEditComponent.html",[3,0.069,4,0.063,5,0.058,9,0.081,10,0.168,11,1.544,13,1.57,16,0.727,24,0.639,27,1.324,29,0.709,30,0.01,31,0.353,32,0.205,33,0.606,46,1.219,47,1.285,49,0.909,63,0.455,69,1.628,71,0.817,84,1.102,85,0.324,93,0.573,95,0.633,96,1.287,98,0.673,101,0.069,102,0.272,103,1.565,104,1.123,108,2.367,112,0.482,115,1.507,125,1.676,133,0.004,134,0.004,135,0.047,136,0.47,137,0.745,138,0.403,140,0.494,141,0.691,142,0.309,144,0.494,145,1.386,146,1.144,147,0.392,148,1.213,149,0.623,150,0.47,153,0.606,156,0.494,165,0.494,166,1.25,167,0.691,168,0.494,169,1.109,170,0.494,171,0.494,172,0.47,173,0.764,174,0.494,175,0.47,176,0.494,177,0.47,178,0.47,179,0.494,180,0.47,181,0.727,182,0.494,183,0.458,184,1.219,185,0.47,186,0.494,187,0.727,188,0.791,189,0.494,190,0.458,191,0.494,192,0.458,193,0.494,194,0.47,195,1.476,196,0.47,197,0.494,198,0.47,199,0.47,200,1.441,201,0.47,202,0.494,203,0.47,204,0.372,205,0.47,206,0.47,207,0.494,208,1.054,209,0.424,210,0.494,211,0.47,212,0.494,213,0.47,214,0.47,215,0.494,216,0.47,217,0.494,218,1.054,219,0.482,220,0.494,221,0.47,222,0.494,223,0.47,224,0.494,225,0.47,226,0.47,227,0.47,228,0.47,229,0.47,230,0.494,231,1.054,232,0.47,233,0.47,234,0.835,235,0.784,236,0.458,237,0.414,238,0.494,239,0.435,240,0.494,241,0.47,242,0.47,243,0.47,244,0.494,245,0.47,246,0.482,247,0.47,248,0.47,249,0.47,250,0.47,251,0.494,252,0.47,253,0.494,254,0.494,255,0.435,256,0.47,257,0.494,258,0.494,262,0.844,263,1.415,264,1.312,278,1.345,279,1.493,280,1.652,283,2.367,284,1.644,291,1.137,298,1.312,301,1.055,302,0.447,303,0.633,306,0.7,308,0.817,310,0.588,311,1.089,314,0.682,315,0.682,317,1.055,318,1.493,320,1.531,323,0.682,324,0.682,326,0.886,337,1.934,340,1.348,349,2.138,377,1.405,411,1.565,412,2.417,415,0.544,443,0.979,458,0.956,488,1.652,489,1.198,528,2.017,529,1.61,530,2.08,531,2.017,532,2.146,533,1.847,534,2.373,537,2.292,541,1.345,542,1.531,546,1.844,548,1.844,552,1.163,553,0.862,554,1.204,555,0.839,556,0.817,557,0.817,558,0.682,559,0.682,560,0.649,561,1.029,562,1.124,580,1.648,584,1.882,585,1.493,586,1.892,587,1.669,588,1.628,589,1.712,590,1.57,607,1.528,608,1.528,609,2.657,624,1.248,630,2.055,669,3.154,765,1.348,774,1.029,787,0.993,788,0.993,789,0.993,795,0.993,823,2.443,826,1.784,832,1.784,834,1.623,842,1.784,843,2.523,844,1.784,845,2.306,856,3.025,886,2.228,907,0.886,910,2.229,911,2.229,912,1.979,913,1.979,914,2.229,915,3.816,916,2.138,917,2.229,918,3.154,919,2.229,920,2.229,921,2.229,937,1.348,938,2.163,939,2.771,940,2.657,941,2.229,942,2.229,944,3.439,947,3.154,950,2.055,958,1.405,959,3.154,961,2.229,970,1.623,971,1.623,972,4.372,973,4.701,975,2.575,983,1.834,1000,1.348,1001,1.541,1002,1.834,1003,1.623,1004,1.834,1005,1.623,1006,1.469,1007,1.623,1008,1.405,1009,1.405,1010,1.405,1017,2.444,1066,1.575,1067,1.405,1068,1.901,1069,1.204,1070,1.348,1071,1.089,1072,1.405,1073,1.405,1074,1.405,1075,1.541,1076,1.124,1077,2.217,1078,1.023,1079,1.124,1080,1.089,1081,1.055,1085,3.2,1093,2.229,1094,2.444,1095,2.444,1096,2.444,1098,2.444,1103,3.642,1277,1.834,1279,1.469,1320,4.698,1519,3.444,1814,1.978,2067,2.171,2334,7.193,2335,4.859,2336,3.909,2337,5.53,2338,5.53,2339,5.53,2340,4.859,2341,4.859,2342,4.859,2343,3.909,2344,3.909,2345,2.464,2346,2.464,2347,2.464,2348,2.464,2349,2.464,2350,2.464,2351,2.464,2352,2.464,2353,2.464,2354,2.464,2355,2.464,2356,2.464,2357,2.464,2358,5.53,2359,2.464,2360,2.464,2361,2.464,2362,2.464,2363,2.464,2364,2.464,2365,2.464,2366,2.464,2367,2.464,2368,2.464,2369,2.464,2370,2.464,2371,2.464,2372,2.464,2373,2.464,2374,2.464,2375,2.464,2376,2.464,2377,2.464,2378,2.464,2379,2.464,2380,2.464,2381,2.464,2382,2.464,2383,2.464,2384,2.464,2385,2.464,2386,2.464,2387,2.464,2388,2.464,2389,2.464,2390,2.464,2391,2.464,2392,2.464,2393,2.464,2394,2.464,2395,5.53,2396,2.464,2397,2.464,2398,2.464,2399,2.464,2400,2.464,2401,2.464,2402,4.859,2403,2.464,2404,4.859,2405,2.464,2406,2.171,2407,2.464,2408,2.464,2409,4.859,2410,4.859,2411,3.909,2412,3.909,2413,3.909,2414,3.909]],["title/components/RepositoryOverviewComponent.html",[135,0.043,232,0.834]],["body/components/RepositoryOverviewComponent.html",[3,0.097,4,0.089,5,0.081,9,0.114,10,0.218,11,1.63,13,0.984,16,0.943,24,0.83,27,1.351,29,1.197,30,0.01,31,0.374,32,0.246,33,1.024,46,1.33,47,1.351,63,0.51,65,0.874,69,1.782,84,1.115,85,0.456,93,0.807,95,0.891,96,0.807,98,0.874,101,0.097,102,0.382,103,0.807,104,0.966,112,0.678,115,0.851,125,0.749,133,0.005,134,0.005,135,0.058,136,0.661,137,0.967,138,0.567,140,0.695,141,0.896,142,0.316,144,0.695,145,1.416,146,1.168,147,0.509,148,0.687,149,0.808,150,0.661,153,0.787,156,0.695,165,0.695,166,1.364,167,0.896,168,0.695,169,1.323,170,0.695,171,0.695,172,0.661,173,0.992,174,0.695,175,0.661,176,0.695,177,0.661,178,0.661,179,0.695,180,0.661,181,0.645,182,0.695,183,0.645,184,1.374,185,0.661,186,0.695,187,0.645,188,0.945,189,0.695,190,0.943,191,0.695,192,0.645,193,0.695,194,0.661,195,1.616,196,0.661,197,0.695,198,0.661,199,0.661,200,1.59,201,0.661,202,0.695,203,0.661,204,0.524,205,0.661,206,0.661,207,0.695,208,0.661,209,0.597,210,0.695,211,0.661,212,0.695,213,0.661,214,0.661,215,0.695,216,0.661,217,0.695,218,0.661,219,0.678,220,0.695,221,0.661,222,0.695,223,0.661,224,0.695,225,0.661,226,0.661,227,0.661,228,0.661,229,0.661,230,0.695,231,0.661,232,1.259,233,0.661,234,0.766,235,1.017,236,0.645,237,0.582,238,0.695,239,0.613,240,0.695,241,0.661,242,0.661,243,0.661,244,0.695,245,0.661,246,0.678,247,0.661,248,0.661,249,0.661,250,0.661,251,0.695,252,0.661,253,0.695,254,0.695,255,0.613,256,0.661,257,0.695,258,0.695,262,1.096,263,1.747,264,1.62,277,2.49,278,1.661,279,1.782,280,1.972,283,2.826,284,1.853,291,1.233,296,2.393,298,1.62,301,0.936,302,0.628,303,0.891,305,1.823,306,0.984,307,1.439,308,1.149,310,0.827,311,1.532,314,0.96,315,0.96,316,2.582,317,1.484,318,1.782,320,1.827,323,0.96,324,0.96,326,1.246,330,2.775,338,2.667,339,2.667,410,1.318,411,1.845,412,2.724,488,1.972,539,1.62,541,1.661,542,1.827,558,0.96,559,0.96,560,0.913,561,1.336,580,1.696,584,2.042,585,1.782,586,2.047,587,1.827,588,1.782,589,1.874,590,1.874,607,1.886,608,1.886,753,1.582,774,1.336,787,1.397,788,1.397,789,1.397,793,1.823,795,2.417,845,2.372,907,1.246,915,2.775,916,2.775,938,1.984,1066,1.397,1068,2.582,1076,1.582,1077,2.315,1078,1.439,1079,1.582,1080,1.532,1081,1.484,1163,1.823,1165,3.314,1166,2.83,1167,2.83,1168,2.83,1169,2.83,1170,2.83,1171,2.83,1172,2.83,1173,2.83,1174,2.83,1175,3.281,1176,3.281,1177,3.281,1179,2.775,1180,2.49,1185,2.168,1196,3.341,1197,2.067,1198,2.775,1200,1.694,1201,2.067,1204,1.896,1205,2.067,1208,4.072,1210,2.775,1211,2.775,1303,2.569,1304,2.893,1309,2.783,1310,2.418,1311,2.418,1313,2.418,1314,2.067,1315,2.418,1316,2.418,1317,2.168,1320,4.74,2324,4.072,2406,3.055,2415,7.35,2416,5.073,2417,5.073,2418,6.602,2419,5.073,2420,5.073,2421,5.073,2422,5.073,2423,5.999,2424,3.467,2425,3.467,2426,3.467,2427,3.467,2428,5.073]],["title/interfaces/SettingsTableRowData.html",[434,0.144,2429,3.255]],["body/interfaces/SettingsTableRowData.html",[3,0.152,4,0.139,5,0.126,9,0.178,10,0.295,11,1.111,30,0.01,31,0.36,32,0.263,40,3.561,63,0.467,84,1.191,85,0.712,93,1.258,95,1.389,96,1.76,101,0.152,102,0.596,103,1.258,104,1.044,108,2.314,112,1.345,115,1.154,133,0.007,134,0.007,135,0.067,142,0.205,145,0.839,146,0.88,147,0.542,148,0.732,149,0.861,151,2.055,153,0.839,209,1.184,236,1.005,237,1.379,255,1.215,262,1.168,264,1.857,266,4.301,267,4.301,268,5.119,269,3.245,271,4.1,277,2.244,278,1.497,279,1.46,292,5.119,296,2.551,298,1.857,302,0.98,303,1.389,304,2.738,306,1.535,307,2.244,309,1.943,314,1.497,315,1.497,316,2.115,320,1.497,323,1.497,324,1.497,350,4.34,415,0.753,434,0.178,436,1.139,437,1.535,555,1.84,556,1.792,557,1.792,624,2.738,771,3.616,772,3.922,1200,2.641,1214,3.561,1520,4.797,1524,4.34,2258,4.34,2259,4.34,2429,5.629,2430,4.34,2431,4.34,2432,5.521,2433,5.521,2434,5.521,2435,4.34,2436,5.521,2437,6.06,2438,4.34,2439,4.764,2440,4.764,2441,4.764,2442,6.06,2443,4.764,2444,4.764,2445,6.06,2446,4.764,2447,4.764,2448,4.764,2449,4.34,2450,4.34,2451,4.34,2452,4.34,2453,4.764,2454,6.06,2455,4.764,2456,6.06,2457,4.764,2458,4.34,2459,6.06,2460,4.34,2461,4.764,2462,4.34,2463,4.34,2464,4.34,2465,4.34,2466,4.34,2467,4.764,2468,4.34,2469,4.764,2470,4.764,2471,4.764]],["title/components/SettingsViewComponent.html",[135,0.043,236,0.813]],["body/components/SettingsViewComponent.html",[3,0.1,4,0.092,5,0.083,9,0.118,10,0.222,11,1.254,16,0.964,24,0.584,27,1.327,29,1.106,30,0.01,31,0.352,32,0.239,33,0.946,40,3.414,46,1.213,47,0.998,49,1.206,63,0.417,84,1.139,85,0.47,93,0.831,95,0.917,96,1.419,98,1.051,101,0.1,102,0.394,103,0.831,104,1.008,108,1.528,112,1.45,115,1.123,133,0.005,134,0.007,135,0.059,136,0.681,137,0.988,138,0.584,139,1.528,140,0.716,141,0.916,142,0.311,144,0.716,145,1.418,146,1.17,147,0.52,148,0.702,149,0.826,150,0.681,151,1.97,153,0.804,156,0.716,160,4.982,162,4.445,163,2.555,165,0.716,166,0.964,167,0.916,168,0.716,169,1.342,170,0.716,171,0.716,172,0.681,173,1.013,174,0.716,175,0.681,176,0.716,177,0.681,178,0.681,179,0.716,180,0.681,181,0.664,182,0.716,183,0.664,184,1.213,185,0.681,186,0.716,187,0.664,188,0.742,189,0.716,190,0.664,191,0.716,192,0.664,193,0.716,194,0.681,195,1.627,196,0.681,197,0.716,198,0.681,199,0.681,200,1.601,201,0.681,202,0.716,203,0.681,204,0.539,205,0.681,206,0.681,207,0.716,208,0.681,209,1.051,210,0.716,211,0.681,212,0.716,213,0.681,214,0.681,215,0.716,216,0.681,217,0.716,218,0.681,219,0.698,220,0.716,221,0.681,222,0.716,223,0.681,224,0.716,225,0.681,226,0.681,227,0.681,228,0.681,229,0.681,230,0.716,231,0.681,232,0.681,233,0.681,234,0.539,235,1.039,236,1.245,237,1.394,238,0.716,239,0.631,240,0.716,241,0.681,242,0.681,243,0.681,244,0.716,245,0.681,246,0.698,247,0.681,248,0.681,249,0.681,250,0.681,251,0.716,252,0.681,253,0.716,254,0.716,255,1.183,256,0.681,257,0.716,258,0.716,262,1.12,264,1.647,266,3.815,267,3.815,268,4.541,269,2.878,271,3.637,277,2.532,278,1.689,279,1.807,291,1.254,292,4.541,296,3.158,298,1.647,302,0.647,303,0.917,304,1.808,306,1.014,307,1.482,309,2.406,314,0.988,315,0.988,316,2.992,320,0.988,323,0.988,324,0.988,330,2.835,350,4.161,381,3.146,415,0.932,434,0.118,437,1.014,445,1.092,555,1.215,556,1.718,557,1.183,562,1.629,624,1.808,631,5.898,632,2.866,633,4.682,634,2.866,635,2.657,636,2.866,637,3.146,753,2.365,771,3.208,772,3.479,805,2.036,814,3.241,938,2.027,1200,1.744,1214,2.352,1520,4.669,1524,2.866,1631,3.615,2010,4.409,2027,4.669,2258,2.866,2259,2.866,2429,3.857,2430,6.598,2431,2.866,2432,4.898,2433,4.898,2434,4.898,2435,2.866,2436,4.898,2437,5.376,2438,2.866,2439,3.146,2440,3.146,2441,3.146,2442,5.376,2443,3.146,2444,3.146,2445,5.376,2446,4.567,2447,4.567,2448,5.376,2449,4.161,2450,4.898,2451,4.161,2452,4.898,2453,3.146,2454,4.567,2455,3.146,2456,4.567,2457,3.146,2458,5.374,2459,4.567,2460,2.866,2461,3.146,2462,2.866,2463,4.161,2464,2.866,2465,2.866,2466,2.866,2467,3.146,2468,2.866,2469,3.146,2470,4.567,2471,3.146,2472,4.567,2473,5.183,2474,5.183,2475,3.571,2476,3.571,2477,3.571,2478,3.571,2479,3.571,2480,3.571,2481,3.571,2482,3.571,2483,7.837,2484,6.694,2485,6.533,2486,5.183,2487,4.567,2488,3.571,2489,3.571,2490,3.571]],["title/components/SignaturesComponent.html",[135,0.043,239,0.773]],["body/components/SignaturesComponent.html",[3,0.088,4,0.08,5,0.073,9,0.103,10,0.201,11,1.549,16,0.872,24,0.767,27,1.371,29,0.566,30,0.01,31,0.269,32,0.172,33,0.728,46,1.137,47,1.233,63,0.368,65,1.158,69,1.267,84,1.111,85,0.411,93,0.726,95,0.802,96,1.643,98,0.808,101,0.088,102,0.344,103,0.726,104,1.061,108,1.336,112,1.474,115,1.265,125,1.013,133,0.005,134,0.005,135,0.055,136,0.595,137,0.895,138,0.51,140,0.626,141,0.996,142,0.319,144,0.626,145,1.407,146,1.162,147,0.471,148,0.91,149,0.747,150,0.595,153,0.728,156,0.626,165,0.626,166,1.166,167,1.248,168,0.626,169,1.257,170,0.626,171,0.626,172,0.595,173,0.917,174,0.626,175,0.595,176,0.626,177,0.595,178,0.595,179,0.626,180,0.595,181,0.58,182,0.626,183,0.58,184,1.137,185,0.595,186,0.626,187,0.58,188,0.671,189,0.626,190,0.58,191,0.626,192,0.58,193,0.626,194,0.595,195,1.575,196,0.595,197,0.626,198,0.595,199,0.595,200,1.546,201,0.595,202,0.626,203,0.595,204,0.471,205,0.595,206,0.595,207,0.626,208,0.595,209,1.158,210,0.626,211,0.595,212,0.626,213,0.595,214,0.595,215,0.626,216,0.595,217,0.626,218,0.595,219,0.61,220,0.626,221,0.595,222,0.626,223,0.595,224,0.626,225,0.595,226,0.595,227,0.595,228,0.595,229,0.595,230,0.626,231,0.595,232,0.595,233,0.595,234,0.471,235,0.941,236,0.58,237,0.524,238,0.626,239,1.108,240,0.626,241,0.595,242,0.595,243,0.595,244,0.626,245,0.595,246,0.61,247,0.595,248,0.595,249,0.595,250,0.595,251,0.626,252,0.595,253,0.626,254,0.626,255,0.551,256,0.595,257,0.626,258,0.626,262,1.013,263,1.641,264,1.522,277,2.34,278,1.561,279,1.693,280,1.873,284,1.791,291,1.615,298,1.522,300,1.524,302,0.566,303,0.802,304,1.58,307,1.295,310,0.744,314,0.864,315,0.864,316,1.221,318,1.522,320,1.299,323,0.864,324,0.864,337,1.091,410,1.186,411,1.794,415,0.434,434,0.186,445,1.321,539,1.907,541,1.561,542,1.736,558,0.864,559,0.864,560,0.822,561,1.235,580,1.205,585,1.267,586,1.651,587,1.299,588,1.267,589,1.332,590,1.332,607,1.773,608,1.773,610,3.932,613,3.932,622,2.177,623,3.272,626,3.932,630,2.467,633,4.13,774,1.235,889,2.214,1069,1.524,1071,1.378,1113,3.921,1165,2.66,1166,2.66,1167,2.66,1168,2.66,1169,2.66,1170,2.66,1171,2.66,1172,2.66,1173,2.66,1174,2.66,1180,2.34,1216,1.951,1217,4.747,1218,3.525,1219,4.203,1220,3.525,1221,1.951,1222,1.951,1223,3.525,1225,1.951,1226,1.951,1227,1.951,1228,1.86,1229,1.86,1230,1.707,1231,4.581,1237,3.921,1238,4.203,1239,3.525,1240,3.525,1241,1.951,1244,3.525,1245,2.934,1247,2.934,1248,3.525,1249,2.934,1259,1.86,1631,3.272,1758,5.524,1777,2.177,1891,3.932,1892,3.932,1893,3.932,2005,3.713,2006,2.177,2007,4.196,2008,4.196,2009,4.196,2010,3.09,2011,3.492,2012,2.322,2013,4.196,2014,4.196,2015,4.196,2016,4.196,2017,4.196,2018,4.427,2019,3.713,2020,3.492,2021,3.492,2022,5.003,2023,4.666,2024,4.666,2025,3.492,2026,3.492,2027,3.272,2028,3.492,2029,3.492,2030,5.256,2031,4.196,2032,3.492,2033,3.492,2034,4.196,2035,4.666,2036,2.322,2037,3.492,2038,2.322,2039,3.492,2040,2.322,2041,3.492,2042,2.322,2043,2.322,2044,2.322,2045,2.322,2046,2.322,2047,4.666,2048,2.322,2049,2.322,2050,2.322,2051,3.492,2052,2.322,2053,2.322,2054,2.322,2491,4.692,2492,3.121,2493,3.121,2494,3.121,2495,3.121,2496,3.121,2497,3.121,2498,3.121,2499,3.121,2500,3.121,2501,3.121,2502,3.121,2503,3.121,2504,3.121,2505,3.121,2506,4.692,2507,4.134,2508,4.134,2509,4.692,2510,4.692]],["title/components/SnippetEditComponent.html",[135,0.043,241,0.834]],["body/components/SnippetEditComponent.html",[3,0.103,4,0.095,5,0.086,9,0.121,10,0.227,11,1.624,13,1.762,16,0.985,24,0.866,27,1.367,29,0.667,30,0.01,31,0.35,32,0.207,33,0.571,46,1.358,47,1.367,63,0.398,69,1.833,71,1.22,84,1.133,85,0.484,98,0.912,101,0.103,102,0.406,104,1.028,115,0.889,125,1.144,133,0.006,134,0.006,135,0.06,136,0.702,137,1.01,138,1.015,140,0.738,141,0.936,142,0.319,144,0.738,145,1.42,146,1.172,147,0.531,148,0.919,149,0.844,150,0.702,153,0.822,156,0.738,165,0.738,166,1.393,167,0.936,168,0.738,169,1.361,170,0.738,171,0.738,172,0.702,173,1.036,174,0.738,175,0.702,176,0.738,177,0.702,178,0.702,179,0.738,180,0.702,181,0.985,182,0.738,183,0.684,184,1.231,185,0.702,186,0.738,187,0.684,188,0.758,189,0.738,190,0.684,191,0.738,192,0.684,193,0.738,194,0.702,195,1.638,196,0.702,197,0.738,198,0.702,199,0.702,200,1.613,201,0.702,202,0.738,203,0.702,204,0.556,205,0.702,206,0.702,207,0.738,208,0.702,209,0.634,210,0.738,211,0.702,212,0.738,213,0.702,214,0.702,215,0.738,216,0.702,217,0.738,218,0.702,219,0.72,220,0.738,221,0.702,222,0.738,223,0.702,224,0.738,225,0.702,226,0.702,227,0.702,228,0.702,229,0.702,230,0.738,231,0.702,232,0.702,233,0.702,234,0.556,235,1.062,236,0.684,237,0.618,238,0.738,239,0.65,240,0.738,241,1.294,242,0.702,243,0.702,244,0.738,245,0.702,246,0.72,247,0.702,248,0.702,249,0.702,250,0.702,251,0.738,252,0.702,253,0.738,254,0.738,255,0.65,256,0.702,257,0.738,258,0.738,262,1.144,263,1.807,280,2.028,284,1.887,291,1.276,301,0.994,302,0.667,303,0.945,306,1.045,310,0.878,318,1.676,340,2.013,349,2.898,377,2.44,399,4.828,411,1.796,412,2.775,415,0.737,458,1.295,497,1.099,528,2.576,529,2.057,530,2.657,531,2.576,532,2.742,533,2.359,534,3.032,537,2.928,541,1.718,542,1.879,546,2.499,548,2.499,552,1.737,553,1.287,554,1.798,555,1.253,556,1.22,557,1.22,558,1.019,559,1.019,560,0.969,561,1.395,580,1.924,584,2.112,585,1.676,586,2.033,587,1.879,588,1.833,589,1.927,590,1.762,607,1.952,608,1.952,609,3.395,624,1.864,630,2.785,774,1.395,937,2.013,938,2.656,939,3.539,940,3.395,941,3.021,942,3.021,944,4.102,947,3.871,958,2.099,959,3.871,961,3.021,972,3.032,973,2.785,1000,2.013,1008,2.099,1009,2.099,1010,2.099,1066,1.483,1067,2.099,1068,2.428,1069,1.798,1070,2.013,1071,1.626,1072,3.021,1073,3.021,1074,3.021,1093,3.021,1279,2.194,2129,2.955,2511,7.43,2512,5.982,2513,6.207,2514,6.789,2515,5.982,2516,6.789,2517,6.789,2518,4.668,2519,3.243,2520,3.243,2521,3.243,2522,3.243,2523,3.243,2524,3.243,2525,3.243,2526,3.243,2527,3.243,2528,3.681,2529,3.243,2530,3.681,2531,3.243,2532,3.681,2533,3.681]],["title/components/SnippetOverviewComponent.html",[135,0.043,242,0.834]],["body/components/SnippetOverviewComponent.html",[3,0.11,4,0.101,5,0.092,9,0.129,10,0.238,11,1.574,16,1.033,24,0.908,27,1.355,29,1.268,30,0.01,31,0.368,32,0.245,33,1.085,46,1.338,47,1.355,63,0.492,65,0.956,69,1.499,84,1.103,85,0.518,98,0.956,101,0.11,102,0.434,104,0.952,133,0.006,134,0.006,135,0.063,136,0.75,137,1.059,138,0.643,140,0.788,141,0.981,142,0.317,144,0.788,145,1.425,146,1.176,147,0.557,148,0.752,149,0.885,150,0.75,153,0.862,156,0.788,165,0.788,166,1.301,167,1.236,168,0.788,169,1.402,170,0.788,171,0.788,172,0.75,173,1.086,174,0.788,175,0.75,176,0.788,177,0.75,178,0.75,179,0.788,180,0.75,181,0.731,182,0.788,183,0.731,184,1.268,185,0.75,186,0.788,187,0.731,188,0.795,189,0.788,190,0.731,191,0.788,192,0.731,193,0.788,194,0.75,195,1.661,196,0.75,197,0.788,198,0.75,199,0.75,200,1.639,201,0.75,202,0.788,203,0.75,204,0.594,205,0.75,206,0.75,207,0.788,208,0.75,209,0.677,210,0.788,211,0.75,212,0.788,213,0.75,214,0.75,215,0.788,216,0.75,217,0.788,218,0.75,219,0.769,220,0.788,221,0.75,222,0.788,223,0.75,224,0.788,225,0.75,226,0.75,227,0.75,228,0.75,229,0.75,230,0.788,231,0.75,232,0.75,233,0.75,234,0.594,235,1.113,236,0.731,237,0.66,238,0.788,239,0.695,240,0.788,241,0.75,242,1.334,243,0.75,244,0.788,245,0.75,246,0.769,247,0.75,248,0.75,249,0.75,250,0.75,251,0.788,252,0.75,253,0.788,254,0.788,255,0.695,256,0.75,257,0.788,258,0.788,262,1.2,263,1.875,277,2.672,280,2.089,284,1.924,291,1.142,296,2.62,302,0.713,303,1.01,305,2.068,306,1.116,307,1.632,310,0.938,316,2.519,318,1.499,338,2.92,339,2.92,377,1.413,410,1.495,411,1.902,412,2.829,539,1.738,541,1.782,542,1.937,558,1.089,559,1.089,560,1.036,561,1.462,580,1.427,584,1.339,585,1.499,586,1.842,587,1.537,588,1.499,589,1.577,590,1.577,607,2.025,608,2.025,753,1.794,774,1.462,795,2.237,938,2.173,1066,1.584,1068,2.737,1163,2.068,1165,3.481,1166,3.038,1167,3.038,1168,3.038,1169,3.038,1170,3.038,1171,3.038,1172,3.038,1173,3.038,1174,3.038,1175,3.522,1176,3.522,1177,3.522,1179,3.038,1180,2.672,1195,3.157,1198,3.038,1200,1.921,1204,2.151,1210,3.038,1211,3.038,1303,2.812,1304,3.167,1314,2.345,1349,4.458,1857,3.157,2512,6.501,2515,4.893,2534,7.384,2535,5.554,2536,6.996,2537,5.554,2538,4.893,2539,5.554,2540,3.465,2541,5.554,2542,3.465,2543,5.554,2544,3.465,2545,3.465,2546,3.465,2547,5.554,2548,3.933,2549,3.933]],["title/components/StatusComponent.html",[135,0.043,243,0.834]],["body/components/StatusComponent.html",[3,0.107,4,0.098,5,0.089,9,0.125,10,0.233,11,1.417,16,1.009,24,0.888,27,1.362,29,0.984,30,0.01,31,0.342,32,0.247,33,0.842,46,1.25,47,1.239,49,1.263,63,0.318,84,1.107,85,0.501,93,0.886,95,0.978,96,0.886,98,0.935,101,0.107,102,0.42,104,0.906,112,1.061,115,1.157,133,0.006,134,0.007,135,0.062,136,0.726,137,1.035,138,0.623,140,0.763,141,0.959,142,0.318,144,0.763,145,1.423,146,1.174,147,0.544,148,0.735,149,0.865,150,0.726,153,0.842,156,0.763,165,0.763,166,1.009,167,0.959,168,0.763,169,1.382,170,0.763,171,0.763,172,0.726,173,1.061,174,0.763,175,0.726,176,0.763,177,0.726,178,0.726,179,0.763,180,0.726,181,0.708,182,0.763,183,0.708,184,1.25,185,0.726,186,0.763,187,0.708,188,0.777,189,0.763,190,0.708,191,0.763,192,0.708,193,0.763,194,0.726,195,1.65,196,0.726,197,0.763,198,0.726,199,0.726,200,1.627,201,0.726,202,0.763,203,0.726,204,0.575,205,0.726,206,0.726,207,0.763,208,0.726,209,0.656,210,0.763,211,0.726,212,0.763,213,0.726,214,0.726,215,0.763,216,0.726,217,0.763,218,0.726,219,0.744,220,0.763,221,0.726,222,0.763,223,0.726,224,0.763,225,0.726,226,0.726,227,0.726,228,0.726,229,0.726,230,0.763,231,0.726,232,0.726,233,0.726,234,0.575,235,1.088,236,0.708,237,0.639,238,0.763,239,0.673,240,0.763,241,0.726,242,0.726,243,1.315,244,0.763,245,0.726,246,0.744,247,0.726,248,0.726,249,0.726,250,0.726,251,0.763,252,0.726,253,0.763,254,0.763,255,0.673,256,0.726,257,0.763,258,0.763,262,1.172,263,1.842,264,1.708,268,4.707,272,5.573,277,2.625,278,1.751,279,1.861,280,2.059,284,1.906,291,1.3,292,5.425,293,2.951,298,1.708,300,1.86,307,1.58,309,2.478,310,0.908,314,1.054,315,1.054,316,1.489,318,1.028,320,1.054,321,3.057,323,1.054,324,1.054,331,4.782,332,3.771,334,6.075,410,1.447,411,1.887,518,1.58,519,3.046,520,2.398,521,2.398,523,2.398,524,2.398,539,1.708,555,1.296,556,1.262,557,1.262,560,1.003,584,1.296,753,2.477,771,3.326,772,3.607,774,1.429,900,3.771,1180,2.625,1200,1.86,1259,2.27,2010,4.541,2323,3.057,2432,5.077,2433,5.077,2434,5.077,2435,3.057,2436,5.851,2438,3.057,2449,4.357,2450,5.077,2451,4.357,2452,5.077,2458,5.535,2460,3.057,2462,3.057,2463,4.357,2464,3.057,2465,3.057,2466,3.057,2468,3.057,2472,4.782,2487,4.782,2550,3.355,2551,5.428,2552,5.428,2553,5.428,2554,3.808,2555,3.808,2556,3.808,2557,3.808,2558,3.808,2559,5.428,2560,3.808,2561,3.808,2562,3.808,2563,3.808,2564,3.808,2565,5.428,2566,3.808,2567,3.808,2568,3.808,2569,5.428,2570,5.428,2571,5.428,2572,5.428,2573,6.895,2574,6.075,2575,5.428,2576,6.895,2577,6.895,2578,5.428,2579,6.075,2580,6.895,2581,6.895]],["title/components/SyncComponent.html",[135,0.043,245,0.834]],["body/components/SyncComponent.html",[3,0.097,4,0.089,5,0.081,9,0.217,10,0.218,11,1.63,13,2.083,16,0.943,24,0.83,27,1.364,29,0.92,30,0.01,31,0.325,32,0.155,33,0.787,46,1.273,47,1.318,65,0.597,69,1.37,84,1.123,85,0.456,93,0.807,95,0.891,96,1.18,98,0.874,101,0.097,102,0.382,103,1.396,104,0.966,110,3.172,115,1.232,125,1.679,133,0.005,134,0.005,135,0.058,136,0.661,137,0.967,138,0.567,139,1.484,140,0.695,141,0.896,142,0.318,144,0.695,145,1.416,146,1.168,147,0.509,148,0.687,149,0.808,150,0.661,151,1.928,153,0.787,156,0.695,165,0.695,166,1.227,167,0.896,168,0.695,169,1.323,170,0.695,171,0.695,172,0.661,173,0.992,174,0.695,175,0.661,176,0.695,177,0.661,178,0.661,179,0.695,180,0.661,181,0.645,182,0.695,183,0.645,184,1.197,185,0.661,186,0.695,187,0.645,188,0.726,189,0.695,190,0.645,191,0.695,192,0.645,193,0.695,194,0.661,195,1.616,196,0.661,197,0.695,198,0.661,199,0.661,200,1.59,201,0.661,202,0.695,203,0.661,204,0.524,205,0.661,206,0.661,207,0.695,208,0.661,209,0.597,210,0.695,211,0.661,212,0.695,213,0.661,214,0.661,215,0.695,216,0.661,217,0.695,218,0.661,219,0.678,220,0.695,221,0.661,222,0.695,223,0.661,224,0.695,225,0.661,226,0.661,227,0.661,228,0.661,229,0.661,230,0.695,231,0.661,232,0.661,233,0.661,234,0.524,235,1.017,236,0.645,237,0.582,238,0.695,239,0.613,240,0.695,241,0.661,242,0.661,243,0.661,244,0.695,245,1.259,246,0.678,247,0.661,248,0.661,249,0.661,250,0.661,251,0.695,252,0.661,253,0.695,254,0.695,255,0.613,256,0.661,257,0.695,258,0.695,262,1.096,264,1.62,266,3.751,273,3.951,278,1.661,279,1.782,284,1.794,291,1.444,298,1.62,300,1.694,301,0.936,302,0.628,303,0.891,306,0.984,308,1.149,310,0.827,314,0.96,315,0.96,318,1.37,320,1.404,323,0.96,324,0.96,337,2.308,411,1.764,445,1.264,456,2.965,462,2.106,463,2.568,464,2.568,465,3.242,529,1.988,530,2.568,531,2.49,533,2.28,534,2.93,537,2.83,541,1.661,542,1.827,546,2.393,548,3.115,552,1.636,553,1.212,554,1.694,557,1.149,558,0.96,559,0.96,560,0.913,561,1.336,562,1.582,575,2.783,578,3.172,579,2.284,580,1.541,581,2.783,582,2.783,584,1.727,585,1.37,586,1.738,587,1.404,588,1.37,589,1.44,590,1.44,602,3.775,607,1.886,608,1.886,745,4.184,767,3.538,768,3.538,785,2.418,814,3.172,886,2.83,950,2.667,972,1.694,1515,2.783,1596,4.465,1604,5.462,1630,3.775,1631,3.538,1664,2.783,1677,2.783,1786,6.261,1939,2.783,2281,5.286,2282,5.286,2283,5.286,2284,4.47,2300,5.286,2312,3.055,2323,4.072,2326,3.775,2327,5.817,2328,3.055,2329,4.47,2331,4.47,2582,3.055,2583,5.999,2584,5.999,2585,5.999,2586,6.602,2587,5.073,2588,6.602,2589,6.602,2590,5.999,2591,7.025,2592,3.467,2593,3.467,2594,3.467,2595,3.467,2596,5.073,2597,3.467,2598,3.467,2599,3.467,2600,3.467,2601,5.073,2602,5.073,2603,5.073,2604,3.467,2605,3.467,2606,3.467,2607,5.073,2608,5.073,2609,5.073,2610,3.467,2611,3.467,2612,3.467,2613,3.467,2614,3.467,2615,3.467,2616,3.467,2617,3.467,2618,3.467,2619,3.467,2620,3.467,2621,3.467,2622,3.467,2623,3.467,2624,3.467,2625,3.467,2626,3.467,2627,5.073,2628,3.467,2629,5.073,2630,3.467,2631,3.467,2632,3.467,2633,3.467,2634,3.467,2635,6.602,2636,5.073]],["title/interfaces/SyncOptions.html",[434,0.144,462,1.815]],["body/interfaces/SyncOptions.html",[3,0.15,4,0.176,5,0.125,9,0.176,10,0.293,30,0.01,31,0.323,32,0.229,49,1.59,63,0.545,65,1.411,101,0.252,133,0.007,134,0.007,142,0.202,147,0.537,163,1.923,293,2.925,294,2.364,295,2.364,309,1.923,415,1.262,434,0.296,435,2.29,436,1.44,437,1.519,438,2.364,439,2.442,440,2.442,441,2.442,442,2.442,443,1.886,444,2.29,445,1.905,446,2.442,447,2.442,448,2.29,449,2.442,450,2.442,451,2.442,452,2.442,453,2.221,454,2.221,455,2.156,456,2.945,457,2.156,458,1.308,459,2.364,460,2.364,461,2.364,462,2.836,463,3.394,464,3.394,465,3.619,466,2.29,467,2.221,468,2.364,469,2.364,470,2.364,471,2.364,472,2.364,473,2.364,474,2.364,475,2.364,476,2.364,477,2.364,478,2.364,479,2.364,480,2.364,481,2.364,482,2.221,483,1.683,484,2.364,485,2.364,486,2.364,487,1.727,488,1.598,489,1.64,490,2.221,491,1.727,492,2.364,493,2.364,494,2.29,495,2.442,496,2.29,497,1.598,498,1.923,499,2.29,500,2.29,501,3.222,502,2.29,503,2.442,504,2.442,505,2.442,506,2.442,507,2.442,508,2.442,509,2.442,510,2.442,511,2.442,512,2.442,513,2.442,514,2.364,515,2.442,516,2.442,517,2.442,518,2.221,519,2.364,520,2.364,521,2.364,522,2.442,523,2.364,524,2.364]],["title/interfaces/SyncSystemsOptions.html",[434,0.144,466,1.872]],["body/interfaces/SyncSystemsOptions.html",[3,0.151,4,0.176,5,0.126,9,0.177,10,0.294,30,0.01,31,0.324,32,0.209,49,1.596,63,0.545,65,1.469,101,0.253,133,0.007,134,0.007,142,0.204,147,0.54,163,1.936,293,2.937,294,2.379,295,2.379,309,1.936,415,1.248,434,0.296,435,2.305,436,1.446,437,1.529,438,2.379,439,2.458,440,2.458,441,2.458,442,2.458,443,1.892,444,2.305,445,1.906,446,2.458,447,2.458,448,2.305,449,2.458,450,2.458,451,2.458,452,2.458,453,2.236,454,2.236,455,2.17,456,3.283,457,2.17,458,1.317,459,2.379,460,2.379,461,2.379,462,2.236,463,2.305,464,2.305,465,3.627,466,2.937,467,2.236,468,2.379,469,2.379,470,2.379,471,2.379,472,2.379,473,2.379,474,2.379,475,2.379,476,2.379,477,2.379,478,2.379,479,2.379,480,2.379,481,2.379,482,2.236,483,1.694,484,2.379,485,2.379,486,2.379,487,1.739,488,1.609,489,1.651,490,2.236,491,1.739,492,2.379,493,2.379,494,2.305,495,2.458,496,2.305,497,1.609,498,1.936,499,2.305,500,2.305,501,3.232,502,2.305,503,2.458,504,2.458,505,2.458,506,2.458,507,2.458,508,2.458,509,2.458,510,2.458,511,2.458,512,2.458,513,2.458,514,2.379,515,2.458,516,2.458,517,2.458,518,2.236,519,2.379,520,2.379,521,2.379,522,2.458,523,2.379,524,2.379]],["title/components/SystemOverviewComponent.html",[135,0.043,247,0.834]],["body/components/SystemOverviewComponent.html",[3,0.098,4,0.089,5,0.081,9,0.114,10,0.218,11,1.63,13,0.985,16,0.944,24,0.83,27,1.351,29,1.197,30,0.01,31,0.374,32,0.237,33,1.025,46,1.331,47,1.351,63,0.51,65,0.874,69,1.783,84,1.116,85,0.457,93,0.808,95,0.892,96,0.808,98,0.874,101,0.098,102,0.383,103,0.808,104,0.966,112,0.679,115,0.852,125,0.75,133,0.005,134,0.005,135,0.058,136,0.662,137,0.968,138,0.568,140,0.696,141,0.897,142,0.316,144,0.696,145,1.416,146,1.169,147,0.509,148,0.687,149,0.809,150,0.662,153,0.788,156,0.696,165,0.696,166,1.365,167,0.897,168,0.696,169,1.324,170,0.696,171,0.696,172,0.662,173,0.993,174,0.696,175,0.662,176,0.696,177,0.662,178,0.662,179,0.696,180,0.662,181,0.645,182,0.696,183,0.645,184,1.375,185,0.662,186,0.696,187,0.645,188,0.945,189,0.696,190,0.944,191,0.696,192,0.645,193,0.696,194,0.662,195,1.616,196,0.662,197,0.696,198,0.662,199,0.662,200,1.59,201,0.662,202,0.696,203,0.662,204,1.062,205,0.662,206,0.662,207,0.696,208,0.662,209,0.598,210,0.696,211,0.662,212,0.696,213,0.662,214,0.662,215,0.696,216,0.662,217,0.696,218,0.662,219,0.679,220,0.696,221,0.662,222,0.696,223,0.662,224,0.696,225,0.662,226,0.662,227,0.662,228,0.662,229,0.662,230,0.696,231,0.662,232,0.662,233,0.662,234,0.524,235,1.018,236,0.645,237,0.583,238,0.696,239,0.613,240,0.696,241,0.662,242,0.662,243,0.662,244,0.696,245,0.662,246,0.679,247,1.259,248,0.662,249,0.662,250,0.662,251,0.696,252,0.662,253,0.696,254,0.696,255,0.613,256,0.662,257,0.696,258,0.696,262,1.097,263,1.748,264,1.621,277,2.492,278,1.662,279,1.783,280,1.973,283,2.827,284,1.854,291,1.234,296,2.396,298,1.621,301,0.937,302,0.629,303,0.892,305,1.825,306,0.985,307,1.441,308,1.15,310,0.828,311,1.533,314,0.961,315,0.961,316,2.584,317,1.486,318,1.783,320,1.829,323,0.961,324,0.961,326,1.248,330,2.777,338,2.67,339,2.67,410,1.319,411,1.845,412,2.725,456,1.986,497,1.973,539,1.621,541,1.662,542,1.829,558,0.961,559,0.961,560,0.914,561,1.337,580,1.697,584,2.043,585,1.783,586,2.047,587,1.829,588,1.783,589,1.875,590,1.875,607,1.888,608,1.888,753,1.584,774,1.337,787,1.398,788,1.398,789,1.398,793,1.825,795,2.418,845,2.374,886,3.132,907,1.248,938,1.986,1066,1.398,1068,2.584,1076,1.584,1077,2.317,1078,1.441,1079,1.584,1080,1.533,1081,1.486,1163,1.825,1165,3.316,1166,2.832,1167,2.832,1168,2.832,1169,2.832,1170,2.832,1171,2.832,1172,2.832,1173,2.832,1174,2.832,1175,3.283,1176,3.283,1177,3.283,1179,2.777,1180,2.492,1185,2.171,1196,3.344,1197,2.07,1198,2.777,1200,1.696,1201,2.07,1204,1.899,1205,2.07,1210,2.777,1211,2.777,1303,2.571,1304,2.895,1309,2.787,1310,2.421,1311,2.421,1313,2.421,1314,2.07,1315,2.421,1316,2.421,1317,2.171,2637,7.352,2638,5.078,2639,5.078,2640,6.606,2641,5.078,2642,5.078,2643,5.078,2644,5.078,2645,6.003,2646,3.472,2647,3.472,2648,3.472,2649,3.472,2650,3.472,2651,5.078,2652,5.078]],["title/interfaces/TableRow.html",[434,0.144,2018,2.88]],["body/interfaces/TableRow.html",[3,0.124,4,0.114,5,0.103,9,0.145,10,0.258,11,1.512,24,0.723,30,0.01,31,0.19,32,0.184,33,0.686,47,1.203,63,0.466,65,1.326,69,1.626,84,1.161,85,0.582,93,1.028,95,1.135,96,1.848,101,0.124,102,0.487,103,1.028,104,1.043,108,1.892,112,1.617,115,1.235,125,1.301,133,0.006,134,0.006,135,0.059,141,0.781,142,0.167,145,0.686,146,0.77,147,0.443,148,0.927,149,0.704,153,0.686,166,1.12,167,1.064,209,1.368,239,0.781,262,0.955,263,1.754,264,1.626,277,1.835,278,1.224,279,1.193,280,1.32,284,1.675,298,1.626,300,2.159,302,0.801,303,1.135,304,2.238,307,1.835,310,1.054,314,1.224,315,1.224,316,1.729,318,1.85,320,1.667,323,1.224,324,1.224,337,1.546,411,1.594,415,0.615,434,0.225,436,0.931,445,1.55,539,1.626,541,1.224,542,1.667,558,1.224,559,1.224,560,1.164,561,1.586,580,1.547,585,1.626,586,1.937,587,1.667,588,1.626,589,1.71,590,1.71,607,1.894,608,1.894,610,4.201,613,3.083,622,3.083,623,4.201,626,4.779,633,3.967,774,1.164,889,2.842,1069,2.159,1071,1.952,1113,2.764,1165,2.842,1166,2.842,1167,2.842,1168,2.842,1169,2.842,1170,2.842,1171,2.842,1172,2.842,1173,2.842,1174,2.842,1180,1.835,1216,2.764,1217,4.838,1218,4.284,1219,4.813,1220,3.766,1221,2.764,1222,2.764,1223,3.766,1225,2.764,1226,2.764,1227,2.764,1228,2.635,1229,2.635,1230,2.418,1231,5.082,1237,3.766,1238,4.284,1239,2.764,1240,3.766,1241,2.764,1244,2.764,1245,2.764,1247,2.764,1248,2.764,1249,3.766,1259,2.635,1777,3.083,1891,4.201,1892,4.201,1893,4.201,2005,4.512,2006,3.083,2007,4.482,2008,4.482,2009,4.482,2010,3.967,2011,4.482,2012,3.29,2013,4.482,2014,4.482,2015,4.482,2016,4.482,2017,4.482,2018,4.845,2019,4.512,2020,3.29,2021,3.29,2022,3.29,2023,4.482,2024,4.482,2025,3.29,2026,3.29,2027,3.083,2028,3.29,2029,3.29,2030,4.482,2031,3.29,2032,3.29,2033,4.482,2034,3.29,2035,3.29,2036,3.29,2037,4.482,2038,3.29,2039,4.482,2040,3.29,2041,4.482,2042,3.29,2043,3.29,2044,3.29,2045,3.29,2046,3.29,2047,3.29,2048,3.29,2049,3.29,2050,3.29,2051,4.482,2052,3.29,2053,3.29,2054,3.29]],["title/components/TemplateEditComponent.html",[135,0.043,248,0.834]],["body/components/TemplateEditComponent.html",[3,0.103,4,0.095,5,0.086,9,0.121,10,0.227,11,1.624,13,1.762,16,0.985,24,0.866,27,1.367,29,0.667,30,0.01,31,0.35,32,0.207,33,0.571,46,1.358,47,1.367,63,0.398,69,1.833,71,1.22,84,1.133,85,0.484,98,0.912,101,0.103,102,0.406,104,1.028,115,0.889,125,1.144,133,0.006,134,0.006,135,0.06,136,0.702,137,1.01,138,1.292,140,0.738,141,0.936,142,0.319,144,0.738,145,1.42,146,1.172,147,0.531,148,0.919,149,0.844,150,0.702,153,0.822,156,0.738,165,0.738,166,1.393,167,0.936,168,0.738,169,1.361,170,0.738,171,0.738,172,0.702,173,1.036,174,0.738,175,0.702,176,0.738,177,0.702,178,0.702,179,0.738,180,0.702,181,0.985,182,0.738,183,0.684,184,1.231,185,0.702,186,0.738,187,0.684,188,0.758,189,0.738,190,0.684,191,0.738,192,0.684,193,0.738,194,0.702,195,1.638,196,0.702,197,0.738,198,0.702,199,0.702,200,1.613,201,0.702,202,0.738,203,0.702,204,0.556,205,0.702,206,0.702,207,0.738,208,0.702,209,0.634,210,0.738,211,0.702,212,0.738,213,0.702,214,0.702,215,0.738,216,0.702,217,0.738,218,0.702,219,0.72,220,0.738,221,0.702,222,0.738,223,0.702,224,0.738,225,0.702,226,0.702,227,0.702,228,0.702,229,0.702,230,0.738,231,0.702,232,0.702,233,0.702,234,0.556,235,1.062,236,0.684,237,0.618,238,0.738,239,0.65,240,0.738,241,0.702,242,0.702,243,0.702,244,0.738,245,0.702,246,0.72,247,0.702,248,1.294,249,0.702,250,0.702,251,0.738,252,0.702,253,0.738,254,0.738,255,0.65,256,0.702,257,0.738,258,0.738,262,1.144,263,1.807,280,2.028,284,1.887,291,1.276,301,0.994,302,0.667,303,0.945,306,1.045,310,0.878,318,1.676,340,2.013,349,2.898,377,2.44,399,4.828,411,1.796,412,2.775,415,0.737,458,1.295,528,2.576,529,2.057,530,2.657,531,2.576,532,2.742,533,2.359,534,3.032,537,2.928,541,1.718,542,1.879,546,2.499,548,2.499,552,1.737,553,1.287,554,1.798,555,1.253,556,1.22,557,1.22,558,1.019,559,1.019,560,0.969,561,1.395,580,1.924,584,2.112,585,1.676,586,2.033,587,1.879,588,1.833,589,1.927,590,1.762,607,1.952,608,1.952,609,3.395,624,1.864,630,2.785,774,1.395,937,2.013,938,2.656,939,3.539,940,3.395,941,3.021,942,3.021,944,4.102,947,3.871,958,2.099,959,3.871,961,3.021,972,3.032,973,2.785,1000,2.013,1008,2.099,1009,2.099,1010,2.099,1066,1.483,1067,2.099,1068,2.428,1069,1.798,1070,2.013,1071,1.626,1072,3.021,1073,3.021,1074,3.021,1093,3.021,1279,2.194,2129,2.955,2518,4.668,2519,3.243,2520,3.243,2521,3.243,2522,3.243,2523,3.243,2524,3.243,2525,3.243,2526,3.243,2527,3.243,2529,3.243,2531,3.243,2653,7.43,2654,6.207,2655,6.789,2656,5.982,2657,6.789,2658,6.789,2659,3.681,2660,3.681,2661,3.681,2662,3.681]],["title/components/TemplateOverviewComponent.html",[135,0.043,249,0.834]],["body/components/TemplateOverviewComponent.html",[3,0.11,4,0.101,5,0.092,9,0.129,10,0.238,11,1.574,16,1.033,24,0.908,27,1.355,29,1.268,30,0.01,31,0.368,32,0.245,33,1.085,46,1.338,47,1.355,63,0.492,65,0.956,69,1.499,84,1.103,85,0.518,98,0.956,101,0.11,102,0.434,104,0.952,133,0.006,134,0.006,135,0.063,136,0.75,137,1.059,138,1.252,140,0.788,141,0.981,142,0.317,144,0.788,145,1.425,146,1.176,147,0.557,148,0.752,149,0.885,150,0.75,153,0.862,156,0.788,165,0.788,166,1.301,167,1.236,168,0.788,169,1.402,170,0.788,171,0.788,172,0.75,173,1.086,174,0.788,175,0.75,176,0.788,177,0.75,178,0.75,179,0.788,180,0.75,181,0.731,182,0.788,183,0.731,184,1.268,185,0.75,186,0.788,187,0.731,188,0.795,189,0.788,190,0.731,191,0.788,192,0.731,193,0.788,194,0.75,195,1.661,196,0.75,197,0.788,198,0.75,199,0.75,200,1.639,201,0.75,202,0.788,203,0.75,204,0.594,205,0.75,206,0.75,207,0.788,208,0.75,209,0.677,210,0.788,211,0.75,212,0.788,213,0.75,214,0.75,215,0.788,216,0.75,217,0.788,218,0.75,219,0.769,220,0.788,221,0.75,222,0.788,223,0.75,224,0.788,225,0.75,226,0.75,227,0.75,228,0.75,229,0.75,230,0.788,231,0.75,232,0.75,233,0.75,234,0.594,235,1.113,236,0.731,237,0.66,238,0.788,239,0.695,240,0.788,241,0.75,242,0.75,243,0.75,244,0.788,245,0.75,246,0.769,247,0.75,248,0.75,249,1.334,250,0.75,251,0.788,252,0.75,253,0.788,254,0.788,255,0.695,256,0.75,257,0.788,258,0.788,262,1.2,263,1.875,277,2.672,280,2.089,284,1.924,291,1.142,296,2.62,302,0.713,303,1.01,305,2.068,306,1.116,307,1.632,310,0.938,316,2.519,318,1.499,338,2.92,339,2.92,377,1.413,410,1.495,411,1.902,412,2.829,539,1.738,541,1.782,542,1.937,558,1.089,559,1.089,560,1.036,561,1.462,580,1.427,584,1.339,585,1.499,586,1.842,587,1.537,588,1.499,589,1.577,590,1.577,607,2.025,608,2.025,753,1.794,774,1.462,795,2.237,938,2.173,1066,1.584,1068,2.737,1163,2.068,1165,3.481,1166,3.038,1167,3.038,1168,3.038,1169,3.038,1170,3.038,1171,3.038,1172,3.038,1173,3.038,1174,3.038,1175,3.522,1176,3.522,1177,3.522,1179,3.038,1180,2.672,1183,6.164,1195,3.157,1198,3.038,1200,1.921,1202,4.893,1204,2.151,1210,3.038,1211,3.038,1303,2.812,1304,3.167,1314,2.345,1348,4.458,1857,3.157,2538,4.893,2540,3.465,2542,3.465,2544,3.465,2545,3.465,2546,3.465,2656,4.893,2663,7.384,2664,5.554,2665,5.554,2666,5.554,2667,5.554,2668,5.554,2669,3.933,2670,3.933]],["title/components/UnauthorizedComponent.html",[135,0.043,250,0.834]],["body/components/UnauthorizedComponent.html",[3,0.147,4,0.134,5,0.122,24,1.216,27,0.854,30,0.01,31,0.288,84,0.979,85,0.687,98,1.158,101,0.147,102,0.576,104,0.649,133,0.007,134,0.007,135,0.072,136,0.995,137,1.282,138,0.854,139,2.234,140,1.046,141,1.188,142,0.254,144,1.046,145,1.442,146,1.189,147,0.674,148,0.91,149,1.071,150,0.995,151,2.556,153,1.043,156,1.046,165,1.046,166,1.25,167,1.188,168,1.046,169,1.575,170,1.046,171,1.046,172,0.995,173,1.315,174,1.046,175,0.995,176,1.046,177,0.995,178,0.995,179,1.046,180,0.995,181,0.97,182,1.046,183,0.97,184,1.424,185,0.995,186,1.046,187,0.97,188,0.962,189,1.046,190,0.97,191,1.046,192,0.97,193,1.046,194,0.995,195,1.752,196,0.995,197,1.046,198,0.995,199,0.995,200,1.738,201,0.995,202,1.046,203,0.995,204,0.788,205,0.995,206,0.995,207,1.046,208,0.995,209,0.899,210,1.046,211,0.995,212,1.046,213,0.995,214,0.995,215,1.046,216,0.995,217,1.046,218,0.995,219,1.021,220,1.046,221,0.995,222,1.046,223,0.995,224,1.046,225,0.995,226,0.995,227,0.995,228,0.995,229,0.995,230,1.046,231,0.995,232,0.995,233,0.995,234,0.788,235,1.348,236,0.97,237,0.876,238,1.046,239,0.922,240,1.046,241,0.995,242,0.995,243,0.995,244,1.046,245,0.995,246,1.021,247,0.995,248,0.995,249,0.995,250,1.498,251,1.046,252,0.995,253,1.046,254,1.046,255,0.922,256,0.995,257,1.046,258,1.046,306,1.482,420,4.205,758,4.691,1730,4.691,1954,5.972,2671,4.599,2672,6.725,2673,7.44,2674,6.725,2675,5.22,2676,5.925,2677,6.725]],["title/injectables/UserService.html",[0,2.299,411,1.017]],["body/injectables/UserService.html",[0,3.54,2,3.444,3,0.147,4,0.134,5,0.122,9,0.172,10,0.289,11,1.82,15,5.011,16,1.252,24,1.218,27,1.466,29,1.475,30,0.01,31,0.363,32,0.267,33,1.262,40,3.444,46,1.475,47,1.33,63,0.528,71,2.468,84,0.886,85,0.688,93,1.217,96,1.566,99,3.648,100,3.118,101,0.147,102,0.577,103,1.893,115,0.878,125,1.13,133,0.007,134,0.007,142,0.34,348,5.194,360,4.198,411,1.566,415,1.195,950,3.54,1141,3.892,1333,6.561,1396,6.312,1671,4.608,1673,4.608,1678,3.892,2676,6.928,2678,4.198,2679,7.446,2680,7.446,2681,7.446,2682,7.446,2683,6.733,2684,8.136,2685,6.733,2686,7.446,2687,6.733,2688,6.733,2689,5.23,2690,5.23,2691,5.23,2692,5.23,2693,5.23,2694,5.23,2695,5.23,2696,5.23,2697,5.23,2698,5.23,2699,5.23,2700,5.23,2701,5.23,2702,5.23,2703,5.23,2704,5.23,2705,5.23,2706,6.733,2707,5.23,2708,5.23,2709,4.198,2710,5.23,2711,5.23,2712,7.446,2713,7.863,2714,6.733,2715,5.23,2716,5.23,2717,6.733,2718,7.446,2719,5.23,2720,5.23,2721,5.23,2722,5.23,2723,5.23,2724,5.23,2725,5.23,2726,5.23]],["title/classes/Utils.html",[102,0.482,561,1.152]],["body/classes/Utils.html",[3,0.192,4,0.176,5,0.16,9,0.225,16,1.475,18,4.244,27,1.118,29,1.239,30,0.01,31,0.293,32,0.208,33,1.06,46,1.239,63,0.492,101,0.192,102,0.754,103,1.59,115,1.147,133,0.008,134,0.008,142,0.3,291,1.405,387,4.274,561,2.089,805,3.898,2727,6.023,2728,7.933,2729,7.933,2730,6.836,2731,6.836,2732,6.836,2733,6.836]],["title/interfaces/V3_3_1.html",[434,0.144,2734,2.88]],["body/interfaces/V3_3_1.html",[3,0.146,4,0.134,5,0.121,30,0.01,32,0.158,49,1.727,63,0.548,65,1.531,71,1.722,101,0.228,133,0.007,134,0.007,142,0.197,237,0.872,377,2.668,415,1.289,434,0.258,436,1.095,437,1.475,445,1.806,457,2.093,828,2.371,830,2.538,831,2.631,834,2.157,846,2.538,848,2.732,849,2.732,853,2.631,854,2.631,857,2.732,912,2.631,2734,4.889,2735,3.624,2736,4.416,2737,4.677,2738,4.416,2739,4.171,2740,4.171,2741,4.171,2742,4.171,2743,4.171,2744,4.171,2745,4.171,2746,4.171,2747,4.171,2748,4.171,2749,4.171,2750,4.171,2751,4.171,2752,4.171,2753,4.171,2754,4.171,2755,4.171,2756,4.171,2757,4.171,2758,4.171,2759,4.171,2760,4.171,2761,4.171,2762,4.171,2763,4.171,2764,4.171,2765,4.171,2766,4.171,2767,4.171,2768,4.171,2769,4.171,2770,4.171,2771,4.171,2772,4.171,2773,4.171,2774,4.171,2775,4.171,2776,4.171,2777,4.171,2778,4.171,2779,4.171,2780,4.171,2781,4.171,2782,4.171,2783,4.171,2784,4.171,2785,4.171,2786,4.171,2787,4.171,2788,4.171,2789,4.171,2790,4.171,2791,4.171,2792,4.171,2793,4.171,2794,4.171,2795,4.171,2796,4.171,2797,4.171,2798,4.171,2799,4.171,2800,4.171,2801,4.171,2802,4.171,2803,4.171,2804,4.171,2805,4.171,2806,4.171,2807,4.171,2808,4.171,2809,4.171,2810,4.171,2811,4.171,2812,4.171,2813,4.171,2814,4.171,2815,4.171,2816,4.171,2817,4.171,2818,4.171,2819,4.171,2820,4.171,2821,4.171,2822,4.171,2823,4.171,2824,4.171,2825,4.171,2826,4.171,2827,4.171,2828,4.171,2829,4.171,2830,4.171,2831,4.171,2832,4.171,2833,4.171,2834,4.171,2835,4.171,2836,4.171,2837,4.171,2838,4.171,2839,4.171,2840,4.171,2841,4.171,2842,4.171,2843,4.171,2844,4.171,2845,4.171,2846,4.171,2847,4.171,2848,4.171,2849,4.171,2850,4.171,2851,4.171,2852,4.171,2853,4.171,2854,4.171,2855,4.171,2856,4.171,2857,4.171]],["title/interfaces/V3_3_2.html",[434,0.144,2736,2.88]],["body/interfaces/V3_3_2.html",[3,0.146,4,0.134,5,0.121,30,0.01,32,0.158,49,1.727,63,0.548,65,1.531,71,1.722,101,0.228,133,0.007,134,0.007,142,0.197,237,0.872,377,2.668,415,1.289,434,0.258,436,1.095,437,1.475,445,1.806,457,2.093,828,2.371,830,2.538,831,2.631,834,2.157,846,2.538,848,2.732,849,2.732,853,2.631,854,2.631,857,2.732,912,2.631,2734,4.416,2735,3.624,2736,4.889,2737,4.677,2738,4.416,2739,4.171,2740,4.171,2741,4.171,2742,4.171,2743,4.171,2744,4.171,2745,4.171,2746,4.171,2747,4.171,2748,4.171,2749,4.171,2750,4.171,2751,4.171,2752,4.171,2753,4.171,2754,4.171,2755,4.171,2756,4.171,2757,4.171,2758,4.171,2759,4.171,2760,4.171,2761,4.171,2762,4.171,2763,4.171,2764,4.171,2765,4.171,2766,4.171,2767,4.171,2768,4.171,2769,4.171,2770,4.171,2771,4.171,2772,4.171,2773,4.171,2774,4.171,2775,4.171,2776,4.171,2777,4.171,2778,4.171,2779,4.171,2780,4.171,2781,4.171,2782,4.171,2783,4.171,2784,4.171,2785,4.171,2786,4.171,2787,4.171,2788,4.171,2789,4.171,2790,4.171,2791,4.171,2792,4.171,2793,4.171,2794,4.171,2795,4.171,2796,4.171,2797,4.171,2798,4.171,2799,4.171,2800,4.171,2801,4.171,2802,4.171,2803,4.171,2804,4.171,2805,4.171,2806,4.171,2807,4.171,2808,4.171,2809,4.171,2810,4.171,2811,4.171,2812,4.171,2813,4.171,2814,4.171,2815,4.171,2816,4.171,2817,4.171,2818,4.171,2819,4.171,2820,4.171,2821,4.171,2822,4.171,2823,4.171,2824,4.171,2825,4.171,2826,4.171,2827,4.171,2828,4.171,2829,4.171,2830,4.171,2831,4.171,2832,4.171,2833,4.171,2834,4.171,2835,4.171,2836,4.171,2837,4.171,2838,4.171,2839,4.171,2840,4.171,2841,4.171,2842,4.171,2843,4.171,2844,4.171,2845,4.171,2846,4.171,2847,4.171,2848,4.171,2849,4.171,2850,4.171,2851,4.171,2852,4.171,2853,4.171,2854,4.171,2855,4.171,2856,4.171,2857,4.171]],["title/interfaces/V3_4_0.html",[434,0.144,2738,2.88]],["body/interfaces/V3_4_0.html",[3,0.146,4,0.134,5,0.121,30,0.01,32,0.158,49,1.727,63,0.548,65,1.531,71,1.722,101,0.228,133,0.007,134,0.007,142,0.197,237,0.872,377,2.668,415,1.289,434,0.258,436,1.095,437,1.475,445,1.806,457,2.093,828,2.371,830,2.538,831,2.631,834,2.157,846,2.538,848,2.732,849,2.732,853,2.631,854,2.631,857,2.732,912,2.631,2734,4.416,2735,3.624,2736,4.416,2737,4.677,2738,4.889,2739,4.171,2740,4.171,2741,4.171,2742,4.171,2743,4.171,2744,4.171,2745,4.171,2746,4.171,2747,4.171,2748,4.171,2749,4.171,2750,4.171,2751,4.171,2752,4.171,2753,4.171,2754,4.171,2755,4.171,2756,4.171,2757,4.171,2758,4.171,2759,4.171,2760,4.171,2761,4.171,2762,4.171,2763,4.171,2764,4.171,2765,4.171,2766,4.171,2767,4.171,2768,4.171,2769,4.171,2770,4.171,2771,4.171,2772,4.171,2773,4.171,2774,4.171,2775,4.171,2776,4.171,2777,4.171,2778,4.171,2779,4.171,2780,4.171,2781,4.171,2782,4.171,2783,4.171,2784,4.171,2785,4.171,2786,4.171,2787,4.171,2788,4.171,2789,4.171,2790,4.171,2791,4.171,2792,4.171,2793,4.171,2794,4.171,2795,4.171,2796,4.171,2797,4.171,2798,4.171,2799,4.171,2800,4.171,2801,4.171,2802,4.171,2803,4.171,2804,4.171,2805,4.171,2806,4.171,2807,4.171,2808,4.171,2809,4.171,2810,4.171,2811,4.171,2812,4.171,2813,4.171,2814,4.171,2815,4.171,2816,4.171,2817,4.171,2818,4.171,2819,4.171,2820,4.171,2821,4.171,2822,4.171,2823,4.171,2824,4.171,2825,4.171,2826,4.171,2827,4.171,2828,4.171,2829,4.171,2830,4.171,2831,4.171,2832,4.171,2833,4.171,2834,4.171,2835,4.171,2836,4.171,2837,4.171,2838,4.171,2839,4.171,2840,4.171,2841,4.171,2842,4.171,2843,4.171,2844,4.171,2845,4.171,2846,4.171,2847,4.171,2848,4.171,2849,4.171,2850,4.171,2851,4.171,2852,4.171,2853,4.171,2854,4.171,2855,4.171,2856,4.171,2857,4.171]],["title/components/ValidateAutoinstallsComponent.html",[135,0.043,252,0.834]],["body/components/ValidateAutoinstallsComponent.html",[3,0.128,4,0.117,5,0.107,9,0.15,10,0.264,11,1.6,16,1.145,24,1.007,27,1.273,29,0.828,30,0.01,31,0.299,32,0.188,33,0.709,46,1.116,47,1.219,69,1.233,84,1.112,85,0.601,93,1.063,95,1.173,98,1.061,101,0.128,102,0.504,104,0.866,115,1.034,133,0.007,134,0.007,135,0.068,136,0.871,137,1.174,138,0.747,140,0.916,141,1.088,142,0.303,144,0.916,145,1.434,146,1.183,147,0.618,148,0.834,149,0.981,150,0.871,153,0.955,156,0.916,165,0.916,166,1.295,167,1.088,168,0.916,169,1.495,170,0.916,171,0.916,172,0.871,173,1.204,174,0.916,175,0.871,176,0.916,177,0.871,178,0.871,179,0.916,180,0.871,181,0.849,182,0.916,183,0.849,184,1.352,185,0.871,186,0.916,187,0.849,188,0.881,189,0.916,190,0.849,191,0.916,192,0.849,193,0.916,194,0.871,195,1.711,196,0.871,197,0.916,198,0.871,199,0.871,200,1.693,201,0.871,202,0.916,203,0.871,204,0.69,205,0.871,206,0.871,207,0.916,208,0.871,209,0.787,210,0.916,211,0.871,212,0.916,213,0.871,214,0.871,215,0.916,216,0.871,217,0.916,218,0.871,219,0.893,220,0.916,221,0.871,222,0.916,223,0.871,224,0.916,225,0.871,226,0.871,227,0.871,228,0.871,229,0.871,230,0.916,231,0.871,232,0.871,233,0.871,234,0.69,235,1.235,236,0.849,237,0.767,238,0.916,239,0.807,240,0.916,241,0.871,242,0.871,243,0.871,244,0.916,245,0.871,246,0.893,247,0.871,248,0.871,249,0.871,250,0.871,251,0.916,252,1.422,253,1.693,254,0.916,255,0.807,256,0.871,257,0.916,258,0.916,262,1.33,264,1.881,278,1.929,279,2.013,284,2.004,291,0.939,298,1.881,302,0.828,310,1.089,314,1.265,315,1.265,318,1.233,320,1.265,323,1.265,324,1.265,377,1.642,410,1.736,411,1.965,529,2.309,539,1.881,541,1.929,542,2.064,558,1.265,559,1.265,560,1.203,561,1.622,580,1.173,585,1.233,586,1.622,587,1.265,588,1.233,589,1.297,590,1.297,596,2.856,774,1.622,1789,6.139,2858,7.067,2859,7.067,2860,4.025,2861,6.159,2862,6.159,2863,7.457,2864,6.159,2865,4.568,2866,4.568,2867,4.568,2868,4.568,2869,4.568]],["title/interfaces/Version.html",[434,0.144,443,1.096]],["body/interfaces/Version.html",[3,0.15,4,0.176,5,0.125,9,0.176,10,0.293,30,0.01,31,0.323,32,0.229,49,1.59,63,0.545,65,1.411,101,0.252,133,0.007,134,0.007,142,0.202,147,0.537,163,1.923,293,2.925,294,2.364,295,2.364,309,1.923,415,1.236,434,0.296,435,2.29,436,1.44,437,1.519,438,2.364,439,2.442,440,2.442,441,2.442,442,2.442,443,1.987,444,3.394,445,1.927,446,3.619,447,3.619,448,2.29,449,2.442,450,2.442,451,2.442,452,2.442,453,2.221,454,2.221,455,2.156,456,2.945,457,2.156,458,1.308,459,2.364,460,2.364,461,2.364,462,2.221,463,2.29,464,2.29,465,3.018,466,2.29,467,2.221,468,2.364,469,2.364,470,2.364,471,2.364,472,2.364,473,2.364,474,2.364,475,2.364,476,2.364,477,2.364,478,2.364,479,2.364,480,2.364,481,2.364,482,2.221,483,1.683,484,2.364,485,2.364,486,2.364,487,1.727,488,1.598,489,1.64,490,2.221,491,1.727,492,2.364,493,2.364,494,2.29,495,2.442,496,2.29,497,1.598,498,1.923,499,2.29,500,2.29,501,3.222,502,2.29,503,2.442,504,2.442,505,2.442,506,2.442,507,2.442,508,2.442,509,2.442,510,2.442,511,2.442,512,2.442,513,2.442,514,2.364,515,2.442,516,2.442,517,2.442,518,2.221,519,2.364,520,2.364,521,2.364,522,2.442,523,2.364,524,2.364]],["title/components/ViewableTreeComponent.html",[135,0.043,255,0.773]],["body/components/ViewableTreeComponent.html",[3,0.107,4,0.098,5,0.089,9,0.126,10,0.233,11,1.559,16,1.012,24,1.036,27,1.347,29,0.986,30,0.01,31,0.348,32,0.193,33,0.983,46,1.149,47,0.89,49,1.889,63,0.319,84,0.999,85,0.503,96,0.889,98,0.937,101,0.107,102,0.421,103,1.474,104,1.024,108,1.635,112,0.747,115,1.273,133,0.006,134,0.006,135,0.062,136,0.728,137,1.037,138,0.625,139,1.635,140,0.766,141,1.22,142,0.315,144,0.766,145,1.423,146,1.173,147,0.546,148,0.737,149,0.867,150,0.728,151,2.068,153,0.844,156,0.766,165,0.766,166,1.012,167,0.961,168,0.766,169,1.384,170,0.766,171,0.766,172,0.728,173,1.064,174,0.766,175,0.728,176,0.766,177,0.728,178,0.728,179,0.766,180,0.728,181,0.71,182,0.766,183,0.71,184,1.252,185,0.728,186,0.766,187,0.71,188,0.778,189,0.766,190,0.71,191,0.766,192,0.71,193,0.766,194,0.728,195,1.651,196,0.728,197,0.766,198,0.728,199,0.728,200,1.628,201,0.728,202,0.766,203,0.728,204,0.577,205,0.728,206,0.728,207,0.766,208,0.728,209,0.937,210,0.766,211,0.728,212,0.766,213,0.728,214,0.728,215,0.766,216,0.728,217,0.766,218,0.728,219,0.747,220,0.766,221,0.728,222,0.766,223,0.728,224,0.766,225,0.728,226,0.728,227,0.728,228,0.728,229,0.728,230,0.766,231,0.728,232,0.728,233,0.728,234,0.577,235,1.091,236,0.71,237,0.641,238,0.766,239,0.675,240,0.766,241,0.728,242,0.728,243,0.728,244,0.766,245,0.728,246,0.747,247,0.728,248,0.728,249,0.728,250,0.728,251,0.766,252,0.728,253,0.766,254,0.766,255,1.22,256,1.521,257,0.766,258,0.766,262,1.175,263,1.845,269,2.99,271,3.778,280,2.062,291,1.559,302,0.692,303,0.981,337,2.552,415,0.532,434,0.179,445,1.538,579,3.583,805,3.103,1071,1.687,1180,2.63,1212,3.795,1213,6.201,1214,5.488,1215,2.843,1216,2.389,1217,4.875,1218,3.962,1219,4.564,1220,3.962,1221,2.389,1222,3.962,1223,3.962,1224,5.087,1225,2.389,1226,2.389,1227,2.389,1228,2.277,1229,2.277,1230,2.089,1231,4.743,1232,5.091,1233,4.368,1234,5.087,1235,5.859,1236,5.087,1237,4.318,1238,4.564,1239,3.962,1240,3.962,1241,2.389,1242,5.859,1243,5.087,1244,3.962,1245,3.402,1246,4.368,1247,3.402,1248,3.962,1249,2.389,1250,6.09,1251,3.067,1252,4.368,1253,4.368,1254,3.067,1255,3.067,1256,4.368,1257,3.067,1258,3.067,1259,2.277,1260,3.067,2507,4.794,2508,4.794,2870,5.441,2871,5.441,2872,5.441,2873,3.82,2874,3.82,2875,3.82,2876,3.82,2877,3.82,2878,3.82,2879,3.82,2880,3.82,2881,5.441,2882,3.82]],["title/interfaces/XmlRpcArray.html",[58,2.392,434,0.144]],["body/interfaces/XmlRpcArray.html",[3,0.184,4,0.169,5,0.153,6,3.446,9,0.216,10,0.332,30,0.01,31,0.281,32,0.251,51,3.585,54,3.908,56,4.91,58,4.505,61,4.233,63,0.483,65,1.466,101,0.25,104,0.962,105,4.099,106,4.099,111,4.317,112,1.664,118,4.069,133,0.008,134,0.008,332,3.585,415,0.912,434,0.286,436,1.381,445,1.631,1873,3.908,1874,4.099,1875,4.099,1876,4.099]],["title/interfaces/XmlRpcStruct.html",[61,2.392,434,0.144]],["body/interfaces/XmlRpcStruct.html",[3,0.184,4,0.169,5,0.153,6,3.446,9,0.216,10,0.332,30,0.01,31,0.281,32,0.251,51,3.585,54,3.908,56,4.91,58,4.233,61,4.505,63,0.483,65,1.466,101,0.25,104,0.962,105,4.099,106,4.099,111,5.604,112,1.282,118,4.069,133,0.008,134,0.008,332,3.585,415,0.912,434,0.286,436,1.381,445,1.631,1873,3.908,1874,4.099,1875,4.099,1876,4.099]],["title/contributing.html",[2883,2.928,2884,2.714,2885,3.213]],["body/contributing.html",[30,0.009,133,0.009,134,0.009,146,0.894,1081,2.99,1364,5.29,1730,5.897,1791,5.199,1793,5.607,2884,5.978,2885,7.077,2886,8.033,2887,6.986,2888,5.607,2889,6.986,2890,6.986,2891,6.986,2892,6.155,2893,6.986,2894,6.986,2895,6.986,2896,6.986,2897,6.986]],["title/coverage.html",[2898,5.268]],["body/coverage.html",[0,3.696,1,2.474,5,0.109,6,4.667,7,4.492,8,4.492,30,0.01,32,0.094,51,1.686,58,1.686,61,1.686,88,2.474,91,2.474,97,2.474,98,1.323,102,0.737,104,0.578,115,0.517,118,1.62,133,0.005,134,0.005,135,0.088,136,0.588,142,0.35,143,2.716,150,0.588,157,2.474,163,2.403,172,0.588,175,0.588,177,0.588,180,0.588,183,0.573,185,1.188,187,0.573,188,1.1,190,0.573,192,0.573,194,0.588,196,0.588,198,0.588,199,0.588,201,0.588,203,0.588,204,0.466,205,0.588,206,0.588,208,0.588,211,0.588,213,0.588,214,0.588,216,0.588,218,0.588,221,0.588,223,0.588,225,0.588,226,0.588,227,0.588,228,0.588,229,0.588,231,0.588,232,0.588,233,0.588,234,0.466,236,0.573,239,0.545,241,0.588,242,0.588,243,0.588,245,0.588,246,0.603,247,0.588,248,0.588,249,0.588,250,0.588,252,0.588,255,0.545,259,2.716,260,2.716,261,2.716,284,0.753,309,1.108,312,3.242,316,1.206,337,3.248,341,2.716,342,2.716,351,2.294,386,2.474,388,2.716,401,2.15,402,2.716,403,2.716,411,0.717,434,0.298,435,1.319,437,2.515,438,3.668,443,0.772,448,1.319,453,1.279,458,0.753,462,1.279,466,1.319,467,1.279,482,1.279,490,1.279,494,1.319,496,1.319,497,0.921,499,1.319,501,1.319,514,1.361,518,1.279,525,2.716,526,2.716,527,2.716,561,0.812,603,2.716,604,2.716,605,2.716,638,2.474,639,2.716,712,6.428,742,4.282,743,3.731,751,2.294,765,2.542,766,3.731,778,2.294,793,2.444,794,3.731,798,2.294,803,3.459,804,3.731,813,2.294,818,4.466,865,1.686,886,1.241,913,2.354,929,1.561,934,1.361,936,2.716,937,4.283,1003,2.03,1006,1.837,1105,2.294,1106,3.731,1151,2.294,1162,2.716,1163,4.117,1212,2.15,1213,4.164,1214,3.685,1215,4.164,1232,2.15,1261,2.716,1302,2.716,1325,2.716,1326,2.716,1402,2.716,1413,2.716,1470,2.716,1490,2.716,1491,2.716,1492,2.716,1520,2.15,1521,2.716,1522,2.716,1540,2.716,1541,2.716,1633,2.716,1678,2.294,1765,2.716,1766,2.716,1791,2.294,1797,3.731,1798,2.716,1852,2.716,1873,1.837,1874,4.181,1875,4.181,1877,2.716,1887,2.716,1888,2.716,1952,2.716,1998,2.716,1999,2.716,2000,2.716,2005,2.03,2006,4.346,2018,2.03,2019,2.03,2055,2.716,2102,2.716,2117,2.716,2231,2.716,2245,2.716,2278,2.716,2279,2.716,2280,2.716,2334,2.716,2415,2.716,2429,2.294,2430,3.731,2431,3.731,2511,2.716,2534,2.716,2550,2.716,2582,2.716,2637,2.716,2653,2.716,2663,2.716,2671,2.716,2678,3.731,2709,2.474,2727,2.716,2734,2.03,2735,4.346,2736,2.03,2737,2.15,2738,2.03,2858,2.716,2859,2.716,2860,2.716,2898,2.716,2899,3.082,2900,3.082,2901,3.082,2902,3.082,2903,3.082,2904,3.082,2905,3.082,2906,3.082,2907,7.029,2908,4.648,2909,3.082,2910,3.082,2911,3.082,2912,3.082,2913,3.082,2914,7.51,2915,4.648,2916,7.685,2917,7.685,2918,7.296,2919,7.51,2920,7.029,2921,8.8,2922,3.082,2923,4.648,2924,3.082,2925,4.095,2926,7.51,2927,2.716,2928,4.648,2929,7.51,2930,3.082,2931,3.082,2932,5.596,2933,5.596,2934,7.831,2935,3.082,2936,3.082,2937,3.082,2938,3.082,2939,2.716,2940,2.716,2941,2.716,2942,2.716,2943,3.082,2944,3.082,2945,7.103,2946,2.716,2947,2.716,2948,6.686,2949,2.716,2950,2.716,2951,2.716,2952,2.716,2953,2.716,2954,2.716,2955,2.716,2956,2.716,2957,2.716,2958,6.9,2959,2.716,2960,2.716,2961,2.716,2962,2.716,2963,2.716,2964,2.716,2965,2.716,2966,2.716,2967,2.716,2968,3.082,2969,3.082,2970,3.082]],["title/dependencies.html",[934,1.611,2971,3.917]],["body/dependencies.html",[30,0.01,85,0.891,93,1.575,133,0.008,134,0.008,300,3.307,306,1.922,395,5.871,553,2.368,1977,6.951,2971,5.039,2972,6.771,2973,9.004,2974,6.771,2975,6.771,2976,6.771,2977,6.771,2978,6.771,2979,6.771,2980,6.771,2981,6.771,2982,6.771,2983,6.771,2984,6.771,2985,6.771,2986,6.771,2987,5.966,2988,6.771,2989,6.771,2990,6.771]],["title/miscellaneous/functions.html",[2991,2.402,2992,4.637]],["body/miscellaneous/functions.html",[6,3.235,9,0.15,29,1.633,30,0.01,31,0.387,32,0.275,33,1.398,36,4.938,37,7.063,44,4.256,45,4.856,46,1.63,47,1.362,49,1.061,51,4.076,54,4.15,56,4.15,58,3.808,61,3.808,63,0.515,64,3.525,65,1.199,66,5.588,69,2.427,70,4.018,75,5.42,77,4.018,79,7.586,88,4.938,91,4.938,104,1.061,110,2.852,118,2.398,119,4.018,125,1.329,133,0.007,134,0.007,148,0.833,167,1.598,310,1.088,332,3.365,337,1.595,399,4.353,415,0.969,445,1.296,578,2.852,586,1.201,700,4.018,833,3.235,1080,2.015,1217,4.25,1709,4.018,1873,2.719,1876,4.66,2326,3.394,2945,4.018,2946,5.42,2947,5.42,2949,5.42,2950,5.42,2951,5.42,2952,5.42,2953,5.42,2954,5.42,2955,5.42,2956,5.42,2957,5.42,2958,4.018,2959,5.42,2960,5.42,2961,5.42,2962,5.42,2963,5.42,2964,5.42,2965,5.42,2966,5.42,2967,5.42,2987,4.018,2991,3.004,2992,4.018,2993,8.534,2994,8.674,2995,4.561,2996,8.856,2997,4.561,2998,6.152,2999,6.152,3000,6.152,3001,6.152,3002,4.561,3003,4.561,3004,4.561,3005,4.561,3006,4.561,3007,5.42,3008,4.561,3009,4.561,3010,4.561,3011,4.561,3012,4.561,3013,4.561,3014,4.561,3015,4.561,3016,4.561,3017,4.561,3018,4.561,3019,4.561,3020,4.561,3021,4.561,3022,6.152,3023,4.561,3024,4.561,3025,4.561,3026,4.561,3027,4.561,3028,4.561,3029,4.561,3030,4.561,3031,4.561,3032,4.561,3033,4.561,3034,4.561,3035,4.561,3036,4.561]],["title/index.html",[9,0.12,2883,2.928,2884,2.714]],["body/index.html",[4,0.157,30,0.009,31,0.318,45,4.247,71,2.454,115,1.243,133,0.008,134,0.008,135,0.078,146,1.062,173,1.191,178,1.685,181,1.132,219,1.191,234,0.92,396,5.365,434,0.2,502,2.606,577,4.888,578,3.807,593,4.532,596,5.477,814,3.807,932,2.873,1070,3.33,1081,2.606,1148,5.512,1150,4.532,1303,3.083,1350,4.532,1364,5.256,1793,6.407,2888,5.945,2892,5.365,2971,4.532,3037,6.089,3038,7.032,3039,6.089,3040,6.089,3041,5.365,3042,6.089,3043,6.089,3044,6.089,3045,6.089,3046,7.406,3047,7.316,3048,6.525,3049,6.089,3050,6.089,3051,8.759,3052,5.365,3053,5.365,3054,6.089,3055,5.365,3056,6.089,3057,6.089,3058,6.089,3059,6.089,3060,6.666,3061,6.525,3062,6.089,3063,6.089,3064,6.089,3065,6.089,3066,5.365,3067,6.089,3068,6.089,3069,6.089,3070,5.365,3071,6.089,3072,6.089,3073,7.981,3074,6.089,3075,6.089,3076,6.089,3077,6.089,3078,6.089,3079,6.089,3080,5.365,3081,6.525,3082,7.406,3083,8.304,3084,6.089,3085,6.525,3086,6.089,3087,8.304,3088,6.089,3089,6.089,3090,7.406,3091,5.365,3092,6.089,3093,6.089]],["title/license.html",[2883,2.928,2884,2.714,3094,3.213]],["body/license.html",[30,0.008,41,5.684,133,0.008,134,0.008,146,0.825,298,1.742,309,2.319,577,5.179,647,7.209,702,5.179,769,6.155,922,3.267,932,3.044,1364,5.05,1366,5.684,1681,5.684,1791,4.801,2485,5.684,3060,5.179,3070,5.684,3094,5.684,3095,6.452,3096,8.182,3097,6.452,3098,6.452,3099,7.668,3100,6.452,3101,6.452,3102,6.452,3103,6.452,3104,6.452,3105,8.985,3106,6.452,3107,6.452,3108,6.452,3109,7.668,3110,6.452,3111,6.452,3112,6.452,3113,6.452,3114,6.452,3115,6.452,3116,6.452,3117,6.452,3118,7.668,3119,6.452,3120,6.452,3121,6.452,3122,6.452,3123,7.668,3124,7.668,3125,6.452,3126,6.452,3127,6.452,3128,6.452,3129,6.452,3130,6.452,3131,6.452,3132,6.452,3133,5.684,3134,6.452,3135,6.452,3136,6.452,3137,6.452,3138,6.452,3139,6.452,3140,6.452,3141,6.452,3142,6.452,3143,6.452,3144,6.452,3145,6.452,3146,6.452,3147,6.452,3148,6.452,3149,6.452,3150,6.452,3151,6.452]],["title/modules.html",[3152,5.268]],["body/modules.html",[30,0.009,133,0.009,134,0.009,3152,6.348]],["title/overview.html",[1303,3.028]],["body/overview.html",[2,4.698,30,0.009,133,0.009,134,0.009,137,1.36,387,4.46,436,1.503,1147,4.975,1303,3.612,1376,6.285,3153,7.133,3154,7.133]],["title/properties.html",[10,0.226,934,1.611]],["body/properties.html",[10,0.308,30,0.009,133,0.009,134,0.009,443,1.798,3155,7.178]],["title/miscellaneous/typealiases.html",[2991,2.402,3156,5.263]],["body/miscellaneous/typealiases.html",[6,3.603,9,0.226,30,0.01,32,0.209,54,4.736,56,4.736,58,3.748,61,3.748,63,0.402,118,3.603,133,0.008,134,0.008,142,0.259,237,1.333,332,3.748,415,0.954,437,1.945,445,1.444,1874,4.284,1875,5.246,1876,4.284,2734,4.513,2735,4.779,2736,4.513,2737,4.779,2738,4.513,2991,4.513,3157,6.852,3158,7.944,3159,6.852]],["title/miscellaneous/variables.html",[2991,2.402,3160,4.637]],["body/miscellaneous/variables.html",[6,3.957,7,5.021,8,6.482,9,0.206,30,0.01,32,0.265,49,1.751,51,3.421,63,0.474,96,1.455,97,6.482,98,1.391,103,1.751,104,1.117,105,3.911,106,3.911,110,3.911,112,1.223,115,1.355,125,1.351,133,0.008,134,0.008,142,0.317,148,0.847,291,1.826,913,4.243,1678,6.009,1683,5.511,2678,5.021,2709,6.042,2925,5.511,2927,6.632,2939,5.511,2940,5.511,2941,5.511,2942,6.632,2991,4.12,3080,6.632,3160,5.511,3161,6.255,3162,7.527,3163,7.527,3164,6.255,3165,6.255,3166,6.255,3167,6.255,3168,6.255,3169,6.255,3170,6.255,3171,6.255]],["title/additional-documentation/development-setup.html",[502,1.339,3172,3.128,3173,2.756,3174,2.756]],["body/additional-documentation/development-setup.html",[12,4.566,15,3.857,30,0.009,31,0.318,45,4.669,71,1.717,100,3.99,125,1.119,133,0.007,134,0.007,146,1.167,178,1.634,181,1.378,204,1.011,310,1.768,336,4.566,348,3.615,375,3.857,395,3.857,420,3.24,578,3.24,593,4.981,596,5.413,669,2.955,702,6.29,733,4.566,758,3.615,886,2.087,908,2.955,913,2.624,934,2.957,1142,4.16,1148,5.518,1150,3.857,1217,3.817,1320,4.185,1350,4.981,1364,5.161,1371,4.566,1379,4.16,1396,4.16,1515,4.16,1533,5.897,1647,4.566,1730,5.466,1782,4.566,2324,4.16,2326,3.857,2574,4.566,2579,4.566,2888,6.29,2971,3.857,3007,4.566,3038,4.566,3041,4.566,3047,7.148,3048,7.321,3052,4.566,3053,7.449,3055,4.566,3060,4.16,3061,6.904,3066,4.566,3081,5.897,3085,5.897,3091,6.532,3133,4.566,3173,5.897,3174,7.148,3175,6.694,3176,5.182,3177,5.182,3178,5.182,3179,6.694,3180,8.567,3181,6.694,3182,6.694,3183,5.182,3184,7.414,3185,5.182,3186,5.182,3187,5.182,3188,5.182,3189,5.182,3190,5.182,3191,8.309,3192,6.694,3193,5.182,3194,5.182,3195,5.182,3196,5.182,3197,7.414,3198,5.182,3199,7.836,3200,5.182,3201,5.182,3202,5.182,3203,6.694,3204,7.836,3205,7.414,3206,7.414,3207,7.414,3208,8.309,3209,7.414,3210,7.414,3211,7.414,3212,7.414,3213,5.182,3214,7.414,3215,7.414,3216,5.182,3217,5.182,3218,6.694,3219,5.182,3220,5.182,3221,5.182,3222,5.182,3223,5.182,3224,5.182,3225,5.182,3226,5.182,3227,5.182,3228,6.694,3229,5.182,3230,5.182,3231,6.694,3232,6.694,3233,6.694,3234,6.694,3235,6.694,3236,6.694,3237,5.182,3238,5.182,3239,6.694,3240,5.182,3241,5.182,3242,5.182,3243,5.182,3244,5.182,3245,5.182,3246,7.414,3247,5.182,3248,5.182,3249,5.182,3250,5.182,3251,5.182,3252,5.182,3253,5.182,3254,5.182,3255,5.182,3256,5.182,3257,6.694,3258,5.182,3259,5.182,3260,5.182,3261,5.182]]],"invertedIndex":[["",{"_index":30,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["0",{"_index":337,"title":{},"body":{"components/AppEventsComponent.html":{},"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["0.0.0",{"_index":3155,"title":{},"body":{"properties.html":{}}}],["0.0.2",{"_index":2982,"title":{},"body":{"dependencies.html":{}}}],["0.1.1",{"_index":2984,"title":{},"body":{"dependencies.html":{}}}],["0.14.7",{"_index":2990,"title":{},"body":{"dependencies.html":{}}}],["0.5rem",{"_index":1760,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["0/1",{"_index":2921,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":2914,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":2928,"title":{},"body":{"coverage.html":{}}}],["0/13",{"_index":2934,"title":{},"body":{"coverage.html":{}}}],["0/133",{"_index":2922,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":2917,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":2936,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":2923,"title":{},"body":{"coverage.html":{}}}],["0/187",{"_index":2903,"title":{},"body":{"coverage.html":{}}}],["0/19",{"_index":2908,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":2929,"title":{},"body":{"coverage.html":{}}}],["0/20",{"_index":2931,"title":{},"body":{"coverage.html":{}}}],["0/21",{"_index":2905,"title":{},"body":{"coverage.html":{}}}],["0/22",{"_index":2910,"title":{},"body":{"coverage.html":{}}}],["0/24",{"_index":2909,"title":{},"body":{"coverage.html":{}}}],["0/27",{"_index":2904,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":2916,"title":{},"body":{"coverage.html":{}}}],["0/30",{"_index":2912,"title":{},"body":{"coverage.html":{}}}],["0/31",{"_index":2906,"title":{},"body":{"coverage.html":{}}}],["0/38",{"_index":2911,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":2920,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":2907,"title":{},"body":{"coverage.html":{}}}],["0/52",{"_index":2913,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":2918,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":2930,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":2919,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":2915,"title":{},"body":{"coverage.html":{}}}],["0s",{"_index":731,"title":{},"body":{"classes/DateFormatter.html":{}}}],["0x1",{"_index":1339,"title":{},"body":{"injectables/GetObjService.html":{}}}],["1",{"_index":110,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/GetObjService.html":{},"components/NavbarComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["1/1",{"_index":2948,"title":{},"body":{"coverage.html":{}}}],["1/2",{"_index":2924,"title":{},"body":{"coverage.html":{}}}],["1/3",{"_index":2938,"title":{},"body":{"coverage.html":{}}}],["1/4",{"_index":2933,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":512,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["100",{"_index":163,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"components/LogInFormComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SettingsViewComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["1000",{"_index":334,"title":{},"body":{"components/AppEventsComponent.html":{},"components/StatusComponent.html":{}}}],["1000).tostring",{"_index":1017,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["11",{"_index":1360,"title":{},"body":{"injectables/GetObjService.html":{}}}],["123; }",{"_index":2882,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["14px",{"_index":2490,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["150px",{"_index":599,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{}}}],["17.3.10",{"_index":2978,"title":{},"body":{"dependencies.html":{}}}],["17.3.12",{"_index":2973,"title":{},"body":{"dependencies.html":{}}}],["17.3.9",{"_index":2975,"title":{},"body":{"dependencies.html":{}}}],["18",{"_index":2968,"title":{},"body":{"coverage.html":{}}}],["187",{"_index":1783,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["1x2",{"_index":1340,"title":{},"body":{"injectables/GetObjService.html":{}}}],["2",{"_index":1367,"title":{},"body":{"injectables/GetObjService.html":{}}}],["2.4.1",{"_index":2988,"title":{},"body":{"dependencies.html":{}}}],["2.6.3",{"_index":2986,"title":{},"body":{"dependencies.html":{}}}],["2/11",{"_index":2969,"title":{},"body":{"coverage.html":{}}}],["20",{"_index":513,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["200",{"_index":515,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["2000",{"_index":582,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{}}}],["2022",{"_index":3097,"title":{},"body":{"license.html":{}}}],["25",{"_index":2932,"title":{},"body":{"coverage.html":{}}}],["250px",{"_index":1762,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["2x3",{"_index":1341,"title":{},"body":{"injectables/GetObjService.html":{}}}],["3",{"_index":1147,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"injectables/GetObjService.html":{},"components/RepoSyncComponent.html":{},"overview.html":{}}}],["32px",{"_index":1796,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["33",{"_index":2937,"title":{},"body":{"coverage.html":{}}}],["4",{"_index":1358,"title":{},"body":{"injectables/GetObjService.html":{}}}],["404",{"_index":3253,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["443:443",{"_index":3210,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["46",{"_index":3154,"title":{},"body":{"overview.html":{}}}],["47",{"_index":3153,"title":{},"body":{"overview.html":{}}}],["5",{"_index":1375,"title":{},"body":{"injectables/GetObjService.html":{}}}],["50",{"_index":514,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["500",{"_index":516,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["5px",{"_index":1993,"title":{},"body":{"components/NavbarComponent.html":{}}}],["6",{"_index":1376,"title":{},"body":{"injectables/GetObjService.html":{},"overview.html":{}}}],["6.6.6",{"_index":2980,"title":{},"body":{"dependencies.html":{}}}],["600px",{"_index":601,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{}}}],["64",{"_index":2943,"title":{},"body":{"coverage.html":{}}}],["80:80",{"_index":3209,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["8601",{"_index":693,"title":{},"body":{"classes/DateFormatter.html":{}}}],["8620",{"_index":1784,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["8646",{"_index":1790,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["9",{"_index":1161,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["9/14",{"_index":2944,"title":{},"body":{"coverage.html":{}}}],["9881",{"_index":1785,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["9888",{"_index":1749,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["9]+))?))?)(z",{"_index":687,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2",{"_index":682,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}(:?([0",{"_index":688,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2})(((:?([0",{"_index":684,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}))(t([0",{"_index":683,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}))?((:?([0",{"_index":685,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{2}))?(.([0",{"_index":686,"title":{},"body":{"classes/DateFormatter.html":{}}}],["9]{4",{"_index":681,"title":{},"body":{"classes/DateFormatter.html":{}}}],["_",{"_index":1249,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["_active",{"_index":2679,"title":{},"body":{"injectables/UserService.html":{}}}],["_formbuilder",{"_index":537,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["_roles",{"_index":2680,"title":{},"body":{"injectables/UserService.html":{}}}],["_snackbar",{"_index":541,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["_token",{"_index":2681,"title":{},"body":{"injectables/UserService.html":{}}}],["_transformer",{"_index":1239,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["_username",{"_index":2682,"title":{},"body":{"injectables/UserService.html":{}}}],["aarch64",{"_index":1122,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["above",{"_index":3070,"title":{},"body":{"index.html":{},"license.html":{}}}],["abstractcontrol",{"_index":1594,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["accepts",{"_index":645,"title":{},"body":{"classes/DateFormatter.html":{}}}],["accessors",{"_index":950,"title":{},"body":{"components/DistroEditComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SyncComponent.html":{},"injectables/UserService.html":{}}}],["action",{"_index":922,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{},"license.html":{}}}],["actions",{"_index":296,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["activate",{"_index":1725,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["activatedroute",{"_index":959,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["active",{"_index":2685,"title":{},"body":{"injectables/UserService.html":{}}}],["active(bool",{"_index":2725,"title":{},"body":{"injectables/UserService.html":{}}}],["actual",{"_index":1361,"title":{},"body":{"injectables/GetObjService.html":{}}}],["actual_component",{"_index":258,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["actually",{"_index":906,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["add",{"_index":814,"title":{},"body":{"components/DialogTextInputComponent.html":{},"injectables/GetObjService.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{},"index.html":{}}}],["added",{"_index":3016,"title":{},"body":{"miscellaneous/functions.html":{}}}],["addgroup",{"_index":439,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["additional",{"_index":3172,"title":{"additional-documentation/development-setup.html":{}},"body":{}}],["additonal",{"_index":1381,"title":{},"body":{"injectables/GetObjService.html":{}}}],["additonal/component",{"_index":1382,"title":{},"body":{"injectables/GetObjService.html":{}}}],["addnewkeyvaluefg",{"_index":2586,"title":{},"body":{"components/SyncComponent.html":{}}}],["addnewrepofg",{"_index":2287,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["addoption",{"_index":1899,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["adduser",{"_index":440,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["advanced",{"_index":3222,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["afterviewinit",{"_index":2432,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["again",{"_index":1731,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["airgapped",{"_index":459,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["aliases",{"_index":3157,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["align",{"_index":635,"title":{},"body":{"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"components/SettingsViewComponent.html":{}}}],["allow_duplicate_hostnames",{"_index":2740,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allow_duplicate_ips",{"_index":2741,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allow_duplicate_macs",{"_index":2742,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allow_dynamic_settings",{"_index":2743,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["allows",{"_index":1723,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["along",{"_index":3186,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["already",{"_index":736,"title":{},"body":{"classes/DateFormatter.html":{}}}],["always_write_dhcp_entries",{"_index":2744,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["amd64",{"_index":1133,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["anamon_enabled",{"_index":2745,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["and/or",{"_index":3116,"title":{},"body":{"license.html":{}}}],["angular",{"_index":3038,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["angular/animations",{"_index":2972,"title":{},"body":{"dependencies.html":{}}}],["angular/cdk",{"_index":2974,"title":{},"body":{"dependencies.html":{}}}],["angular/cdk/drag",{"_index":1610,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["angular/cdk/tree",{"_index":1221,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/cli",{"_index":3187,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["angular/common",{"_index":300,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/TableRow.html":{},"dependencies.html":{}}}],["angular/common/http",{"_index":87,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["angular/compiler",{"_index":2976,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":85,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":553,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{},"dependencies.html":{}}}],["angular/material",{"_index":2977,"title":{},"body":{"dependencies.html":{}}}],["angular/material/autocomplete",{"_index":1279,"title":{},"body":{"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/button",{"_index":302,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/material/card",{"_index":1611,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["angular/material/checkbox",{"_index":554,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/dialog",{"_index":308,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["angular/material/divider",{"_index":1777,"title":{},"body":{"components/ManageMenuComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["angular/material/form",{"_index":555,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/icon",{"_index":303,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/material/input",{"_index":557,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/list",{"_index":304,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/ManageMenuComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["angular/material/menu",{"_index":305,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["angular/material/paginator",{"_index":2435,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["angular/material/progress",{"_index":622,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["angular/material/select",{"_index":1000,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/sidenav",{"_index":1778,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["angular/material/slide",{"_index":2258,"title":{},"body":{"components/ReplicateComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["angular/material/snack",{"_index":558,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["angular/material/sort",{"_index":2438,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["angular/material/table",{"_index":307,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["angular/material/toolbar",{"_index":1779,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{}}}],["angular/material/tooltip",{"_index":624,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["angular/material/tree",{"_index":1225,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["angular/platform",{"_index":1977,"title":{},"body":{"components/NavbarComponent.html":{},"dependencies.html":{}}}],["angular/router",{"_index":306,"title":{},"body":{"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"dependencies.html":{}}}],["angularxmlrpcservice",{"_index":1,"title":{"injectables/AngularXmlrpcService.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{}}}],["apache",{"_index":3249,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["api",{"_index":310,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["api.service.ts",{"_index":2902,"title":{},"body":{"coverage.html":{}}}],["api/src/lib/cobbler",{"_index":2901,"title":{},"body":{"coverage.html":{}}}],["api/src/lib/custom",{"_index":437,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["api/src/lib/lib.config.ts",{"_index":2925,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["apidevelopment",{"_index":3050,"title":{},"body":{"index.html":{}}}],["app",{"_index":173,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{}}}],["app.component.css",{"_index":152,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.html",{"_index":154,"title":{},"body":{"components/AppComponent.html":{}}}],["appcomponent",{"_index":136,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["append",{"_index":77,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["appendarray",{"_index":2959,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendarray(value",{"_index":2995,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendboolean",{"_index":2960,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendboolean(value",{"_index":2997,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendbuffer",{"_index":2961,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendbuffer(value",{"_index":3002,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appenddatetime",{"_index":2962,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appenddatetime(value",{"_index":3003,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appended",{"_index":3001,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendnumber",{"_index":2963,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendnumber(value",{"_index":3004,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appends",{"_index":2998,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendstring",{"_index":2964,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendstring(value",{"_index":3005,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appendstruct",{"_index":2965,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["appendstruct(value",{"_index":3009,"title":{},"body":{"miscellaneous/functions.html":{}}}],["appeventscomponent",{"_index":172,"title":{"components/AppEventsComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["applicationerror",{"_index":2942,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["applications",{"_index":3243,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["apply",{"_index":2710,"title":{},"body":{"injectables/UserService.html":{}}}],["applyfilter",{"_index":2472,"title":{},"body":{"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["applyfilter(event",{"_index":2463,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["appmanagecomponent",{"_index":175,"title":{"components/AppManageComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["apppage",{"_index":386,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["apt",{"_index":1138,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["apt_components",{"_index":910,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["apt_dists",{"_index":911,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["arch",{"_index":487,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["architecture",{"_index":1097,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{}}}],["arising",{"_index":3149,"title":{},"body":{"license.html":{}}}],["arm",{"_index":1119,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["arm64",{"_index":1120,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["armhfp",{"_index":1121,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["array",{"_index":65,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageOverviewComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{}}}],["array.isarray(input",{"_index":2471,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["array.isarray(inputobject[key",{"_index":1255,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["arraybuffer",{"_index":1876,"title":{},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["arraybuffertobase64",{"_index":2966,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraybuffertobase64(buffer",{"_index":3010,"title":{},"body":{"miscellaneous/functions.html":{}}}],["artifacts",{"_index":3075,"title":{},"body":{"index.html":{}}}],["associated",{"_index":3106,"title":{},"body":{"license.html":{}}}],["assumes",{"_index":3231,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["async",{"_index":389,"title":{},"body":{"classes/AppPage.html":{}}}],["asyncpipe",{"_index":1891,"title":{},"body":{"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["attribute",{"_index":2025,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["attributes",{"_index":905,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["auth_token_expiration",{"_index":2746,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["authguardservice",{"_index":401,"title":{"injectables/AuthGuardService.html":{}},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"coverage.html":{}}}],["authn_pam_service",{"_index":2747,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autho",{"_index":1523,"title":{},"body":{"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["authorization",{"_index":1391,"title":{},"body":{"injectables/GetObjService.html":{}}}],["authorize",{"_index":1642,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["authorized",{"_index":2676,"title":{},"body":{"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{}}}],["authors",{"_index":3140,"title":{},"body":{"license.html":{}}}],["authz_ownership",{"_index":1373,"title":{},"body":{"injectables/GetObjService.html":{}}}],["auto",{"_index":1761,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["auto_migrate_settings",{"_index":2739,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstall",{"_index":846,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstall_file",{"_index":485,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["autoinstall_meta",{"_index":820,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["autoinstall_meta_inherited",{"_index":977,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["autoinstall_snippets_dir",{"_index":2748,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstall_templates_dir",{"_index":2749,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["autoinstallation",{"_index":1518,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["autoinstallmetaresult",{"_index":1086,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["autoinstalls",{"_index":1789,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls'},{'name",{"_index":254,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["autoinstalls.component.html",{"_index":2861,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.scss",{"_index":2862,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts",{"_index":2860,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["autoinstalls.component.ts:19",{"_index":2864,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts:22",{"_index":2867,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts:27",{"_index":2865,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls.component.ts:32",{"_index":2866,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["autoinstalls/validate",{"_index":2859,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["autoinstallsrun",{"_index":2869,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["automatically",{"_index":3056,"title":{},"body":{"index.html":{}}}],["available",{"_index":1517,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["available_as",{"_index":484,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["backend",{"_index":3233,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["background_buildiso(buildisooptions",{"_index":583,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["background_hardlink(this.userservice.token",{"_index":1411,"title":{},"body":{"components/HardlinkComponent.html":{},"components/MkloadersComponent.html":{}}}],["background_import(importoptions",{"_index":1516,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["background_replicate(replicateoptions",{"_index":2275,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["background_reposync(reposyncoptions",{"_index":2322,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["background_signature_update(this.userservice.token",{"_index":2048,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["background_sync(syncoptions",{"_index":2625,"title":{},"body":{"components/SyncComponent.html":{}}}],["background_syncsystems(syncoptions",{"_index":2634,"title":{},"body":{"components/SyncComponent.html":{}}}],["background_validate_autoinstall_files(this.userservice.token",{"_index":2868,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["backgroundaclsetupoptions",{"_index":435,"title":{"interfaces/BackgroundAclSetupOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundbuildisooptions",{"_index":453,"title":{"interfaces/BackgroundBuildisoOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundimportoptions",{"_index":482,"title":{"interfaces/BackgroundImportOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundpowersystem",{"_index":494,"title":{"interfaces/BackgroundPowerSystem.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundreplicateoptions",{"_index":467,"title":{"interfaces/BackgroundReplicateOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backgroundreposyncoptions",{"_index":490,"title":{"interfaces/BackgroundReposyncOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["backward",{"_index":714,"title":{},"body":{"classes/DateFormatter.html":{}}}],["bar",{"_index":559,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["base",{"_index":904,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["based",{"_index":3039,"title":{},"body":{"index.html":{}}}],["basic",{"_index":3188,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["before",{"_index":38,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/GetObjService.html":{}}}],["behave",{"_index":42,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["behaviorsubject",{"_index":1333,"title":{},"body":{"injectables/GetObjService.html":{},"injectables/UserService.html":{}}}],["behaviorsubject(false",{"_index":2716,"title":{},"body":{"injectables/UserService.html":{}}}],["between",{"_index":3226,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["bind_chroot_path",{"_index":2750,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bind_manage_ipmi",{"_index":2804,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bind_master",{"_index":2752,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bind_zonefile_path",{"_index":2751,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["blank",{"_index":1363,"title":{},"body":{"injectables/GetObjService.html":{}}}],["blank/undefined",{"_index":1385,"title":{},"body":{"injectables/GetObjService.html":{}}}],["block",{"_index":161,"title":{},"body":{"components/AppComponent.html":{}}}],["blocked",{"_index":3247,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["body",{"_index":97,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["bonding_opts",{"_index":866,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["bool",{"_index":2706,"title":{},"body":{"injectables/UserService.html":{}}}],["boolean",{"_index":415,"title":{},"body":{"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["boot",{"_index":1101,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["boot_files",{"_index":821,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["boot_files_inherited",{"_index":978,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["boot_loader_conf_template_dir",{"_index":2753,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["boot_loaders",{"_index":822,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["bootfilesresult",{"_index":1088,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["bootloader_inherited",{"_index":974,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["bootloaders_dir",{"_index":2754,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_formats",{"_index":2755,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_ipxe_folder",{"_index":2759,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_modules",{"_index":2756,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_shim_file",{"_index":2758,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["bootloaders_shim_folder",{"_index":2757,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["both",{"_index":3196,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["box",{"_index":185,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["branches",{"_index":3198,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["breed",{"_index":488,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["breeds",{"_index":1152,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["bridge_opts",{"_index":867,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["browser",{"_index":395,"title":{},"body":{"classes/AppPage.html":{},"components/NavbarComponent.html":{},"dependencies.html":{},"additional-documentation/development-setup.html":{}}}],["browser.get(browser.baseurl",{"_index":397,"title":{},"body":{"classes/AppPage.html":{}}}],["buffer",{"_index":3011,"title":{},"body":{"miscellaneous/functions.html":{}}}],["build",{"_index":178,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["build_reporting_email",{"_index":2766,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_enabled",{"_index":2765,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_ignorelist",{"_index":2767,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_sender",{"_index":2768,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_smtp_server",{"_index":2769,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["build_reporting_subject",{"_index":2770,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["builddate",{"_index":451,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["buildformgroup",{"_index":1563,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["buildformgroup(options",{"_index":1906,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["buildiso",{"_index":592,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["buildisocomponent",{"_index":177,"title":{"components/BuildISOComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["buildisodir",{"_index":457,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{}}}],["buildisoformgroup",{"_index":538,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["buildisooptions",{"_index":563,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["built",{"_index":3066,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["bundled",{"_index":3185,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["button",{"_index":637,"title":{},"body":{"components/CheckSysComponent.html":{},"components/SettingsViewComponent.html":{}}}],["c",{"_index":2485,"title":{},"body":{"components/SettingsViewComponent.html":{},"license.html":{}}}],["c.columndef",{"_index":2029,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["call",{"_index":36,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/LogInFormComponent.html":{},"miscellaneous/functions.html":{}}}],["canactivate",{"_index":406,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["cancel",{"_index":1079,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["catch",{"_index":432,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{}}}],["cbblr",{"_index":3044,"title":{},"body":{"index.html":{}}}],["cdkdrag",{"_index":1554,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["cdkdragdrop",{"_index":1580,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["cdkdroplist",{"_index":1553,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["cell",{"_index":633,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["center",{"_index":1755,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["change",{"_index":3058,"title":{},"body":{"index.html":{}}}],["changeauthorizedstate",{"_index":2683,"title":{},"body":{"injectables/UserService.html":{}}}],["changeauthorizedstate(authorized",{"_index":2688,"title":{},"body":{"injectables/UserService.html":{}}}],["changedetection",{"_index":767,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/SyncComponent.html":{}}}],["changedetectionstrategy",{"_index":785,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/SyncComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":768,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/SyncComponent.html":{}}}],["changevalues",{"_index":1900,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["changevalues(e",{"_index":1909,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["characters",{"_index":1743,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["charge",{"_index":3102,"title":{},"body":{"license.html":{}}}],["chat",{"_index":1794,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["check",{"_index":181,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["check(this.userservice.token",{"_index":627,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["checked",{"_index":1907,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["checkout",{"_index":3234,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["checksession",{"_index":407,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["checksyscomponent",{"_index":180,"title":{"components/CheckSysComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["cheetah_import_whitelist",{"_index":2771,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["chevron_right",{"_index":2508,"title":{},"body":{"components/SignaturesComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["children",{"_index":1231,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["children.push",{"_index":2045,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["claim",{"_index":3143,"title":{},"body":{"license.html":{}}}],["class",{"_index":102,"title":{"classes/AppPage.html":{},"classes/DateFormatter.html":{},"classes/Utils.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["class/edit/management",{"_index":1798,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"coverage.html":{}}}],["class/overview/management",{"_index":1852,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{},"coverage.html":{}}}],["class_name",{"_index":931,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["classes",{"_index":387,"title":{},"body":{"classes/AppPage.html":{},"classes/DateFormatter.html":{},"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"classes/Utils.html":{},"overview.html":{}}}],["clean",{"_index":3236,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["clear_all",{"_index":2486,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["cli",{"_index":3090,"title":{},"body":{"index.html":{}}}],["client_use_https",{"_index":2772,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["client_use_localhost",{"_index":2773,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["clone",{"_index":3199,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["close",{"_index":580,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["cnames",{"_index":868,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["cobbler",{"_index":146,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"contributing.html":{},"index.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["cobbler.project@gmail.com",{"_index":3098,"title":{},"body":{"license.html":{}}}],["cobbler_master",{"_index":2774,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["cobbler_url",{"_index":1678,"title":{},"body":{"components/LogInFormComponent.html":{},"injectables/UserService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["cobbler_url_key_name",{"_index":2709,"title":{},"body":{"injectables/UserService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["cobbler_version",{"_index":1957,"title":{},"body":{"components/NavbarComponent.html":{}}}],["cobblerapiservice",{"_index":284,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["cobblerevents",{"_index":276,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["cobbleritems",{"_index":1393,"title":{},"body":{"injectables/GetObjService.html":{}}}],["cobblerurlfactory",{"_index":2927,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":3071,"title":{},"body":{"index.html":{}}}],["codestreams",{"_index":3228,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["colon",{"_index":671,"title":{},"body":{"classes/DateFormatter.html":{}}}],["colons",{"_index":653,"title":{},"body":{"classes/DateFormatter.html":{}}}],["color",{"_index":1995,"title":{},"body":{"components/NavbarComponent.html":{}}}],["column",{"_index":1758,"title":{},"body":{"components/LogInFormComponent.html":{},"components/SignaturesComponent.html":{}}}],["column.cell(row",{"_index":2510,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["column.header",{"_index":2509,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["columndef",{"_index":2023,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["columns",{"_index":2022,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["command",{"_index":3092,"title":{},"body":{"index.html":{}}}],["comment",{"_index":823,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["common",{"_index":3244,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["common/dialog",{"_index":311,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["common/key",{"_index":1002,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["common/multi",{"_index":1005,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["common/viewable",{"_index":2443,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["commonmodule",{"_index":273,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/SyncComponent.html":{}}}],["compatibility",{"_index":715,"title":{},"body":{"classes/DateFormatter.html":{}}}],["complete",{"_index":2052,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["component",{"_index":135,"title":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"index.html":{}}}],["component_template",{"_index":170,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["components",{"_index":137,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"overview.html":{}}}],["conditions",{"_index":3122,"title":{},"body":{"license.html":{}}}],["configuration",{"_index":1782,"title":{},"body":{"components/ManageMenuComponent.html":{},"additional-documentation/development-setup.html":{}}}],["configure",{"_index":39,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["configureservice",{"_index":17,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["configureservice(url",{"_index":34,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["confirm",{"_index":313,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DistrosOverviewComponent.html":{}}}],["confirm'},{'name",{"_index":186,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["confirm.css",{"_index":748,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["confirm.html",{"_index":749,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["confirm.ts",{"_index":743,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"coverage.html":{}}}],["confirm.ts:30",{"_index":752,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["confirm.ts:31",{"_index":755,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["confirm/dialog",{"_index":312,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DistrosOverviewComponent.html":{},"coverage.html":{}}}],["connected_mode",{"_index":869,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["connection",{"_index":3150,"title":{},"body":{"license.html":{}}}],["console.log(\"saving",{"_index":374,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log('saving",{"_index":380,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log(`current",{"_index":365,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log(`item",{"_index":370,"title":{},"body":{"components/AppManageComponent.html":{}}}],["console.log(message",{"_index":1401,"title":{},"body":{"injectables/GetObjService.html":{}}}],["console.log(value",{"_index":2323,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{}}}],["const",{"_index":96,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"injectables/UserService.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/variables.html":{}}}],["construction",{"_index":1389,"title":{},"body":{"injectables/GetObjService.html":{}}}],["constructor",{"_index":24,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["constructor's",{"_index":73,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":757,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["constructor(autho",{"_index":1526,"title":{},"body":{"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{}}}],["constructor(cobblerapiservice",{"_index":2592,"title":{},"body":{"components/SyncComponent.html":{}}}],["constructor(colons",{"_index":664,"title":{},"body":{"classes/DateFormatter.html":{}}}],["constructor(data",{"_index":750,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{}}}],["constructor(dialog",{"_index":282,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["constructor(http",{"_index":25,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["constructor(iconregistry",{"_index":1962,"title":{},"body":{"components/NavbarComponent.html":{}}}],["constructor(public",{"_index":1781,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["constructor(route",{"_index":958,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["constructor(router",{"_index":1774,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["constructor(service",{"_index":350,"title":{},"body":{"components/AppManageComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["constructor(userservice",{"_index":410,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["contact",{"_index":2891,"title":{},"body":{"contributing.html":{}}}],["container",{"_index":3214,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["content",{"_index":399,"title":{},"body":{"classes/AppPage.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"miscellaneous/functions.html":{}}}],["content_copy",{"_index":1093,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["continue",{"_index":2677,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["contract",{"_index":3147,"title":{},"body":{"license.html":{}}}],["contributing",{"_index":2885,"title":{"contributing.html":{}},"body":{"contributing.html":{}}}],["contributions",{"_index":2889,"title":{},"body":{"contributing.html":{}}}],["control",{"_index":1596,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["control.markastouched",{"_index":2628,"title":{},"body":{"components/SyncComponent.html":{}}}],["control.value",{"_index":1940,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["controlvalueaccessor",{"_index":1542,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["convert",{"_index":3024,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convert_server_to_ip",{"_index":2775,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["convertarray",{"_index":2946,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertarray(element",{"_index":3019,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertdomtoobject",{"_index":2947,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertdomtoobject(document",{"_index":3020,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converted",{"_index":3000,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertfault",{"_index":2949,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertfault(element",{"_index":3025,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertmember",{"_index":2950,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertmember(element",{"_index":3026,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertmethodresponse",{"_index":2951,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertmethodresponse(document",{"_index":3027,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertname",{"_index":2952,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertname(element",{"_index":3028,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertparam",{"_index":2953,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertparam(element",{"_index":3029,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertparams",{"_index":2954,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertparams(element",{"_index":3030,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converts",{"_index":700,"title":{},"body":{"classes/DateFormatter.html":{},"miscellaneous/functions.html":{}}}],["convertstruct",{"_index":2955,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertstruct(element",{"_index":3031,"title":{},"body":{"miscellaneous/functions.html":{}}}],["convertvalue",{"_index":2956,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["convertvalue(element",{"_index":3032,"title":{},"body":{"miscellaneous/functions.html":{}}}],["copies",{"_index":3118,"title":{},"body":{"license.html":{}}}],["copy",{"_index":769,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"license.html":{}}}],["copy'},{'name",{"_index":189,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["copy.component",{"_index":1001,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["copy.component.html",{"_index":773,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{}}}],["copy.component.scss",{"_index":775,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{}}}],["copy.component.ts",{"_index":766,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"coverage.html":{}}}],["copy.component.ts:40",{"_index":784,"title":{},"body":{"components/DialogItemCopyComponent.html":{}}}],["copy.component.ts:41",{"_index":779,"title":{},"body":{"components/DialogItemCopyComponent.html":{}}}],["copy.component.ts:43",{"_index":781,"title":{},"body":{"components/DialogItemCopyComponent.html":{}}}],["copy.component.ts:45",{"_index":780,"title":{},"body":{"components/DialogItemCopyComponent.html":{}}}],["copy/dialog",{"_index":765,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"coverage.html":{}}}],["copy_distro(distrohandle",{"_index":1084,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["copy_file(filehandle",{"_index":1301,"title":{},"body":{"components/FileEditComponent.html":{}}}],["copy_image(imagehandle",{"_index":1467,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["copy_mgmtclass",{"_index":1850,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["copy_package(packagehandle",{"_index":2101,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["copy_profile(profilehandle",{"_index":2224,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["copy_repo(repositoryhandle",{"_index":2408,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["copydistro",{"_index":945,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["copydistro(uid",{"_index":962,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["copyfile",{"_index":1263,"title":{},"body":{"components/FileEditComponent.html":{}}}],["copyfile(uid",{"_index":1268,"title":{},"body":{"components/FileEditComponent.html":{}}}],["copyimage",{"_index":1415,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["copyimage(uid",{"_index":1421,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["copymgmtclass",{"_index":1801,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["copymgmtclass(uid",{"_index":1807,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["copypackage",{"_index":2057,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["copypackage(uid",{"_index":2063,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["copyprofile",{"_index":2119,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["copyprofile(uid",{"_index":2130,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["copyrepository",{"_index":2336,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["copyrepository(uid",{"_index":2344,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["copyright",{"_index":3096,"title":{},"body":{"license.html":{}}}],["copysnippet",{"_index":2514,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["copytemplate",{"_index":2655,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["core.autocrlf",{"_index":3193,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["core.eol",{"_index":3194,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["correct",{"_index":3255,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["correctly",{"_index":650,"title":{},"body":{"classes/DateFormatter.html":{}}}],["cors",{"_index":3242,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["count",{"_index":1469,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["counter",{"_index":2580,"title":{},"body":{"components/StatusComponent.html":{}}}],["coverage",{"_index":2898,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["createrepo",{"_index":2414,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["createrepo_flags",{"_index":912,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["creates",{"_index":3012,"title":{},"body":{"miscellaneous/functions.html":{}}}],["creating",{"_index":666,"title":{},"body":{"classes/DateFormatter.html":{}}}],["creation",{"_index":1096,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["ctime",{"_index":842,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["current",{"_index":375,"title":{},"body":{"components/AppManageComponent.html":{},"classes/DateFormatter.html":{},"injectables/GetObjService.html":{},"additional-documentation/development-setup.html":{}}}],["currentitem",{"_index":345,"title":{},"body":{"components/AppManageComponent.html":{},"injectables/GetObjService.html":{}}}],["currently",{"_index":3062,"title":{},"body":{"index.html":{}}}],["currentobjs",{"_index":346,"title":{},"body":{"components/AppManageComponent.html":{}}}],["d",{"_index":716,"title":{},"body":{"classes/DateFormatter.html":{}}}],["damages",{"_index":3144,"title":{},"body":{"license.html":{}}}],["data",{"_index":112,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/variables.html":{}}}],["data.eventlog",{"_index":760,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["data.itemtype",{"_index":791,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{}}}],["data.name",{"_index":759,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["data.state",{"_index":2051,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["data[key",{"_index":2456,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["data[name",{"_index":1537,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["datasource",{"_index":1180,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["date",{"_index":332,"title":{},"body":{"components/AppEventsComponent.html":{},"classes/DateFormatter.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"components/StatusComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["date(this.distro.ctime",{"_index":1019,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["date(this.distro.mtime",{"_index":1016,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["date(this.distro.tree_build_time",{"_index":1025,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["date(this.file.ctime",{"_index":1287,"title":{},"body":{"components/FileEditComponent.html":{}}}],["date(this.file.mtime",{"_index":1285,"title":{},"body":{"components/FileEditComponent.html":{}}}],["date(this.image.ctime",{"_index":1439,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["date(this.image.mtime",{"_index":1437,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["date(this.managementclass.ctime",{"_index":1826,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["date(this.managementclass.mtime",{"_index":1824,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["date(this.package.ctime",{"_index":2079,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["date(this.package.mtime",{"_index":2077,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["date(this.profile.ctime",{"_index":2161,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["date(this.profile.mtime",{"_index":2159,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["date(this.repository.ctime",{"_index":2364,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["date(this.repository.mtime",{"_index":2362,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["dateformatter",{"_index":638,"title":{"classes/DateFormatter.html":{}},"body":{"classes/DateFormatter.html":{},"coverage.html":{}}}],["datepipe",{"_index":272,"title":{},"body":{"components/AppEventsComponent.html":{},"components/StatusComponent.html":{}}}],["deal",{"_index":3107,"title":{},"body":{"license.html":{}}}],["dealings",{"_index":3151,"title":{},"body":{"license.html":{}}}],["debug",{"_index":3260,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["decodeiso8601",{"_index":658,"title":{},"body":{"classes/DateFormatter.html":{}}}],["decodeiso8601(time",{"_index":698,"title":{},"body":{"classes/DateFormatter.html":{}}}],["decoding",{"_index":641,"title":{},"body":{"classes/DateFormatter.html":{}}}],["decoration",{"_index":1997,"title":{},"body":{"components/NavbarComponent.html":{}}}],["decorators",{"_index":753,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["default",{"_index":291,"title":{},"body":{"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/variables.html":{}}}],["default_autoinstall",{"_index":1107,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["default_name_servers",{"_index":2776,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_name_servers_search",{"_index":2777,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_ownership",{"_index":2778,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_password_crypted",{"_index":2779,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_template_type",{"_index":2780,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_bridge",{"_index":2781,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_disk_driver",{"_index":2782,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_file_size",{"_index":2783,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_ram",{"_index":2784,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["default_virt_type",{"_index":2785,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["defined",{"_index":27,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["definition",{"_index":1156,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{}}}],["delete",{"_index":1068,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["deletedistro",{"_index":1181,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["deletedistro(uid",{"_index":1186,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["deletefile",{"_index":1305,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["deletefile(uid",{"_index":1308,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["deleteimage",{"_index":1471,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["deleteimage(uid",{"_index":1475,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["deletekey",{"_index":1564,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["deletekey(key",{"_index":1577,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["deletemanagementclass",{"_index":1853,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["deletemanagementclass(uid",{"_index":1858,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["deletepackage",{"_index":2103,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["deletepackage(uid",{"_index":2107,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["deleteprofile",{"_index":2232,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["deleteprofile(uid",{"_index":2236,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["deleterepository",{"_index":2416,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["deleterepository(uid",{"_index":2420,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["deletesnippet",{"_index":2535,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["deletesnippet(name",{"_index":2539,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["deletesystem",{"_index":2638,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["deletesystem(uid",{"_index":2642,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["deletetemplate",{"_index":2664,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["deletetemplate(name",{"_index":2666,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["delimited",{"_index":1374,"title":{},"body":{"injectables/GetObjService.html":{}}}],["dependencies",{"_index":2971,"title":{"dependencies.html":{}},"body":{"dependencies.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["depth",{"_index":843,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["described",{"_index":3069,"title":{},"body":{"index.html":{}}}],["description",{"_index":44,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"classes/DateFormatter.html":{},"interfaces/DistroSignatures.html":{},"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"miscellaneous/functions.html":{}}}],["deserialize",{"_index":91,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["deserialize(content",{"_index":3033,"title":{},"body":{"miscellaneous/functions.html":{}}}],["deserialize(source",{"_index":132,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["deserializer",{"_index":92,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["deserializeresponse",{"_index":2957,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["deserializeresponse(content",{"_index":3034,"title":{},"body":{"miscellaneous/functions.html":{}}}],["deserializes",{"_index":3035,"title":{},"body":{"miscellaneous/functions.html":{}}}],["details",{"_index":1211,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["dev",{"_index":3053,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["dev:release33",{"_index":3239,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["developer",{"_index":3041,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["developing",{"_index":3223,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["development",{"_index":3173,"title":{"additional-documentation/development-setup.html":{}},"body":{"additional-documentation/development-setup.html":{}}}],["dhcp",{"_index":463,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["dhcp_tag",{"_index":847,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["dialog",{"_index":184,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["dialogboxtextconfirmcomponent",{"_index":183,"title":{"components/DialogBoxTextConfirmComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["dialogclosesignal",{"_index":776,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["dialogdata",{"_index":751,"title":{"interfaces/DialogData.html":{}},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"coverage.html":{}}}],["dialogitemcopycomponent",{"_index":187,"title":{"components/DialogItemCopyComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["dialogitemcopydata",{"_index":778,"title":{"interfaces/DialogItemCopyData.html":{}},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"coverage.html":{}}}],["dialogitemrenamecomponent",{"_index":190,"title":{"components/DialogItemRenameComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["dialogitemrenamedata",{"_index":798,"title":{"interfaces/DialogItemRenameData.html":{}},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"coverage.html":{}}}],["dialogref",{"_index":326,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":329,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["dialogref.afterclosed().subscribe((newitemname",{"_index":1076,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["dialogref.afterclosed().subscribe((result",{"_index":1946,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["dialogtextinputcomponent",{"_index":192,"title":{"components/DialogTextInputComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["dialogtextinputdata",{"_index":813,"title":{"interfaces/DialogTextInputData.html":{}},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"coverage.html":{}}}],["dict",{"_index":1378,"title":{},"body":{"injectables/GetObjService.html":{}}}],["different",{"_index":1142,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"additional-documentation/development-setup.html":{}}}],["digit",{"_index":734,"title":{},"body":{"classes/DateFormatter.html":{}}}],["digits",{"_index":730,"title":{},"body":{"classes/DateFormatter.html":{}}}],["direction",{"_index":1757,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["directive",{"_index":168,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["directives",{"_index":257,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["directive|pipe|service|class|guard|interface|enum|module",{"_index":3074,"title":{},"body":{"index.html":{}}}],["directory",{"_index":593,"title":{},"body":{"components/BuildISOComponent.html":{},"components/FileEditComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["disable",{"_index":738,"title":{},"body":{"classes/DateFormatter.html":{}}}],["disabled",{"_index":973,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["discuss",{"_index":2896,"title":{},"body":{"contributing.html":{}}}],["discussions",{"_index":2897,"title":{},"body":{"contributing.html":{}}}],["display",{"_index":160,"title":{},"body":{"components/AppComponent.html":{},"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/SettingsViewComponent.html":{}}}],["displayedcolumns",{"_index":277,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["dissects",{"_index":692,"title":{},"body":{"classes/DateFormatter.html":{}}}],["dist",{"_index":3077,"title":{},"body":{"index.html":{}}}],["distinctuntilchanged",{"_index":1682,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["distribute",{"_index":3114,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":2228,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["distributions",{"_index":1143,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["distro",{"_index":458,"title":{"interfaces/Distro.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/TemplateEditComponent.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["distro_patterns",{"_index":470,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["distroautoinstallmeta",{"_index":952,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distrobootfiles",{"_index":953,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distroeditcomponent",{"_index":194,"title":{"components/DistroEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["distrofetchablefiles",{"_index":954,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distroformgroup",{"_index":943,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distrohandle",{"_index":1083,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{}}}],["distrokerneloptions",{"_index":955,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distrokerneloptionspost",{"_index":956,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distroowners",{"_index":951,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["distros",{"_index":1164,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{}}}],["distros'},{'name",{"_index":197,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["distrosignatureosversion",{"_index":1105,"title":{"interfaces/DistroSignatureOsVersion.html":{}},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"coverage.html":{}}}],["distrosignatures",{"_index":1151,"title":{"interfaces/DistroSignatures.html":{}},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"coverage.html":{}}}],["distrosoverviewcomponent",{"_index":196,"title":{"components/DistrosOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["distrotemplatefiles",{"_index":957,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["dns",{"_index":464,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["dns_name",{"_index":870,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["docker",{"_index":3180,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["docker/develop/develop.dockerfile",{"_index":3205,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["docker/develop/scripts/setup",{"_index":3215,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["docs",{"_index":1380,"title":{},"body":{"injectables/GetObjService.html":{}}}],["document",{"_index":79,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["documentation",{"_index":1791,"title":{},"body":{"components/ManageMenuComponent.html":{},"contributing.html":{},"coverage.html":{},"license.html":{}}}],["dom",{"_index":140,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["domparser().parsefromstring(input",{"_index":2731,"title":{},"body":{"classes/Utils.html":{}}}],["domsanitizer",{"_index":1965,"title":{},"body":{"components/NavbarComponent.html":{}}}],["don't",{"_index":907,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["done",{"_index":3008,"title":{},"body":{"miscellaneous/functions.html":{}}}],["download",{"_index":3183,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["drop",{"_index":1565,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["drop(event",{"_index":1579,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["duration",{"_index":581,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{}}}],["dvd",{"_index":1493,"title":{},"body":{"components/ImportDVDComponent.html":{},"components/ManageMenuComponent.html":{}}}],["dvd'},{'name",{"_index":207,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["dvd.component.html",{"_index":1495,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.scss",{"_index":1494,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts",{"_index":1492,"title":{},"body":{"components/ImportDVDComponent.html":{},"coverage.html":{}}}],["dvd.component.ts:29",{"_index":1503,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:32",{"_index":1501,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:33",{"_index":1502,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:42",{"_index":1498,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:45",{"_index":1504,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:50",{"_index":1499,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd.component.ts:55",{"_index":1500,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["dvd/import",{"_index":1491,"title":{},"body":{"components/ImportDVDComponent.html":{},"coverage.html":{}}}],["dynamic",{"_index":2979,"title":{},"body":{"dependencies.html":{}}}],["d{2}:\\d{2",{"_index":718,"title":{},"body":{"classes/DateFormatter.html":{}}}],["e",{"_index":1912,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["e2e",{"_index":3088,"title":{},"body":{"index.html":{}}}],["each",{"_index":1229,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["edit",{"_index":938,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["edit'},{'name",{"_index":195,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["edit.component.html",{"_index":941,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.scss",{"_index":942,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts",{"_index":937,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"coverage.html":{}}}],["edit.component.ts:100",{"_index":1426,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:102",{"_index":2347,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:103",{"_index":2520,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:104",{"_index":960,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:107",{"_index":2348,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:108",{"_index":2519,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:113",{"_index":2129,"title":{},"body":{"components/ProfileEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:117",{"_index":966,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:121",{"_index":965,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:126",{"_index":967,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["edit.component.ts:127",{"_index":1274,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:130",{"_index":2133,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:135",{"_index":2134,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:144",{"_index":2068,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:149",{"_index":1270,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:154",{"_index":1269,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:158",{"_index":1427,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:160",{"_index":1812,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:166",{"_index":2065,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:171",{"_index":2064,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:180",{"_index":1423,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:182",{"_index":1809,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:185",{"_index":1422,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:187",{"_index":1808,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:192",{"_index":2349,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:194",{"_index":1275,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:211",{"_index":2069,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:214",{"_index":2346,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:215",{"_index":2071,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:219",{"_index":2345,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:225",{"_index":1428,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:229",{"_index":1431,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:235",{"_index":1813,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:239",{"_index":1816,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:253",{"_index":968,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:259",{"_index":2350,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:263",{"_index":2352,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:273",{"_index":2354,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:275",{"_index":964,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:280",{"_index":963,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:283",{"_index":2356,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:299",{"_index":2135,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:320",{"_index":969,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:321",{"_index":2132,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:324",{"_index":987,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:326",{"_index":2131,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:334",{"_index":989,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:344",{"_index":991,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:354",{"_index":993,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:364",{"_index":995,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:366",{"_index":2136,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:370",{"_index":2139,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:374",{"_index":997,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:380",{"_index":2141,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:384",{"_index":999,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["edit.component.ts:390",{"_index":2143,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:400",{"_index":2145,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:410",{"_index":2147,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:420",{"_index":2149,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:43",{"_index":2526,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:430",{"_index":2151,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:44",{"_index":2525,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:440",{"_index":2153,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["edit.component.ts:45",{"_index":2524,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:46",{"_index":2527,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:48",{"_index":1278,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:49",{"_index":2518,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:50",{"_index":1429,"title":{},"body":{"components/ImageEditComponent.html":{},"components/PackageEditComponent.html":{}}}],["edit.component.ts:51",{"_index":985,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{}}}],["edit.component.ts:52",{"_index":1277,"title":{},"body":{"components/FileEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:53",{"_index":1276,"title":{},"body":{"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/PackageEditComponent.html":{}}}],["edit.component.ts:54",{"_index":984,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/PackageEditComponent.html":{}}}],["edit.component.ts:55",{"_index":971,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:56",{"_index":970,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:57",{"_index":983,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:58",{"_index":1814,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:61",{"_index":2521,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:65",{"_index":2522,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:71",{"_index":1267,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:75",{"_index":1806,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:76",{"_index":2062,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:78",{"_index":1420,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:82",{"_index":2523,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["edit.component.ts:84",{"_index":1272,"title":{},"body":{"components/FileEditComponent.html":{}}}],["edit.component.ts:85",{"_index":2343,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["edit.component.ts:88",{"_index":1271,"title":{},"body":{"components/FileEditComponent.html":{},"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:89",{"_index":2066,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["edit.component.ts:91",{"_index":1425,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:92",{"_index":1810,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:93",{"_index":1273,"title":{},"body":{"components/FileEditComponent.html":{},"components/PackageEditComponent.html":{}}}],["edit.component.ts:95",{"_index":1424,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["edit.component.ts:97",{"_index":1811,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["edit.component.ts:98",{"_index":2067,"title":{},"body":{"components/PackageEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["editable",{"_index":1354,"title":{},"body":{"injectables/GetObjService.html":{}}}],["editdistro",{"_index":946,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["editfile",{"_index":1264,"title":{},"body":{"components/FileEditComponent.html":{}}}],["editimage",{"_index":1416,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["editor",{"_index":1549,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor'},{'name",{"_index":210,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["editor.component",{"_index":1004,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["editor.component.html",{"_index":1555,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.scss",{"_index":1556,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts",{"_index":1541,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"coverage.html":{}}}],["editor.component.ts:116",{"_index":1578,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:120",{"_index":1581,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:124",{"_index":1606,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:58",{"_index":1575,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:59",{"_index":1574,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:60",{"_index":1607,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:61",{"_index":1608,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:62",{"_index":1603,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:63",{"_index":1605,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:64",{"_index":1601,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:66",{"_index":1583,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:70",{"_index":1586,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:74",{"_index":1588,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:76",{"_index":1590,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:81",{"_index":1592,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:89",{"_index":1595,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:93",{"_index":1599,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor.component.ts:99",{"_index":1576,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["editor/key",{"_index":1003,"title":{},"body":{"components/DistroEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"coverage.html":{}}}],["editpackage",{"_index":2058,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["editprofile",{"_index":1802,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["editrepository",{"_index":2337,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["editsnippet",{"_index":2515,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{}}}],["editsnippet(name",{"_index":2541,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["edittemplate",{"_index":2656,"title":{},"body":{"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["edittemplate(name",{"_index":2667,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["element",{"_index":167,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["element(by.css('app",{"_index":398,"title":{},"body":{"classes/AppPage.html":{}}}],["element.action",{"_index":1323,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["element.arch",{"_index":1489,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["element.breed",{"_index":1208,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{}}}],["element.class_name",{"_index":1871,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["element.distro",{"_index":2243,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["element.image",{"_index":2652,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["element.installer",{"_index":2115,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["element.ip",{"_index":2570,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.is_definition",{"_index":1872,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["element.key",{"_index":2026,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["element.mirror_type",{"_index":2428,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["element.mostrecentstart",{"_index":2575,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.mostrecentstop",{"_index":2578,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.mostrecenttarget.split(\":\")[0",{"_index":2571,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.mostrecenttarget.split(\":\")[1",{"_index":2572,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.name",{"_index":330,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["element.os_version",{"_index":1209,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["element.path",{"_index":1324,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["element.profile",{"_index":2651,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["element.seenstop",{"_index":2581,"title":{},"body":{"components/StatusComponent.html":{}}}],["element.server",{"_index":2244,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["element.state",{"_index":331,"title":{},"body":{"components/AppEventsComponent.html":{},"components/StatusComponent.html":{}}}],["element.statetime",{"_index":333,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["element.type",{"_index":2483,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["element.value",{"_index":2027,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["element.version",{"_index":2116,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["empty",{"_index":1630,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["enable",{"_index":740,"title":{},"body":{"classes/DateFormatter.html":{}}}],["enable/disable",{"_index":667,"title":{},"body":{"classes/DateFormatter.html":{}}}],["enable_ipxe",{"_index":848,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["enable_menu",{"_index":849,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["encode",{"_index":587,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["encodeiso8601",{"_index":659,"title":{},"body":{"classes/DateFormatter.html":{}}}],["encodeiso8601(date",{"_index":707,"title":{},"body":{"classes/DateFormatter.html":{}}}],["encoding",{"_index":66,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"miscellaneous/functions.html":{}}}],["end",{"_index":3087,"title":{},"body":{"index.html":{}}}],["end_item",{"_index":509,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["ensure",{"_index":3189,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["environment",{"_index":913,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["errmsgpassword",{"_index":1636,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["errmsgserver",{"_index":1637,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["errmsguser",{"_index":1638,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["error",{"_index":586,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"miscellaneous/functions.html":{}}}],["error('requested",{"_index":1539,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["escaping",{"_index":3006,"title":{},"body":{"miscellaneous/functions.html":{}}}],["eslint",{"_index":737,"title":{},"body":{"classes/DateFormatter.html":{}}}],["etc/apache2/vhosts.d/cobbler.conf",{"_index":3251,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["event",{"_index":309,"title":{"interfaces/Event.html":{}},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"components/KeyValueEditorComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{},"license.html":{}}}],["event.currentindex",{"_index":1628,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["event.previousindex",{"_index":1627,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["event.target",{"_index":2465,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["eventemitter",{"_index":1968,"title":{},"body":{"components/NavbarComponent.html":{}}}],["eventid",{"_index":290,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["eventlog",{"_index":328,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{}}}],["events",{"_index":265,"title":{},"body":{"components/AppEventsComponent.html":{},"components/ManageMenuComponent.html":{}}}],["events'},{'name",{"_index":174,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["events.component.css",{"_index":274,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.html",{"_index":275,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts",{"_index":261,"title":{},"body":{"components/AppEventsComponent.html":{},"coverage.html":{}}}],["events.component.ts:33",{"_index":299,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:36",{"_index":297,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:43",{"_index":285,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:50",{"_index":287,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:59",{"_index":286,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events.component.ts:64",{"_index":289,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["events/app",{"_index":260,"title":{},"body":{"components/AppEventsComponent.html":{},"coverage.html":{}}}],["ex",{"_index":1369,"title":{},"body":{"injectables/GetObjService.html":{}}}],["example",{"_index":1350,"title":{},"body":{"injectables/GetObjService.html":{},"components/LogInFormComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["exampleflatnode",{"_index":1212,"title":{"interfaces/ExampleFlatNode.html":{}},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["examples",{"_index":3230,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["exclude",{"_index":595,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["excludedns",{"_index":460,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["execute",{"_index":3085,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["expand_more",{"_index":2507,"title":{},"body":{"components/SignaturesComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["expandable",{"_index":1218,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["export",{"_index":101,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}}}],["express",{"_index":3131,"title":{},"body":{"license.html":{}}}],["expression",{"_index":691,"title":{},"body":{"classes/DateFormatter.html":{}}}],["extended_version",{"_index":1986,"title":{},"body":{"components/NavbarComponent.html":{}}}],["extendedversion",{"_index":448,"title":{"interfaces/ExtendedVersion.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["extends",{"_index":819,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["f",{"_index":3204,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["f10",{"_index":1370,"title":{},"body":{"injectables/GetObjService.html":{}}}],["fail",{"_index":2332,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["failed",{"_index":1069,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{}}}],["failrun",{"_index":2333,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["false",{"_index":125,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["faultcode",{"_index":105,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/variables.html":{}}}],["faultstring",{"_index":106,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/variables.html":{}}}],["feedback",{"_index":2894,"title":{},"body":{"contributing.html":{}}}],["fetchable_files",{"_index":824,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["fetchable_files_inherited",{"_index":979,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["fetchablefilesresult",{"_index":1089,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["few",{"_index":3229,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["fg",{"_index":2327,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["field",{"_index":556,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/TemplateEditComponent.html":{}}}],["fields",{"_index":1352,"title":{},"body":{"injectables/GetObjService.html":{}}}],["fields[0",{"_index":1357,"title":{},"body":{"injectables/GetObjService.html":{}}}],["fields[5",{"_index":1359,"title":{},"body":{"injectables/GetObjService.html":{}}}],["file",{"_index":5,"title":{"interfaces/File.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{}}}],["file_patterns",{"_index":477,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["fileeditcomponent",{"_index":198,"title":{"components/FileEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["fileformgroup",{"_index":1262,"title":{},"body":{"components/FileEditComponent.html":{}}}],["filehandle",{"_index":1300,"title":{},"body":{"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{}}}],["filename",{"_index":855,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["fileoverviewcomponent",{"_index":199,"title":{"components/FileOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["files",{"_index":932,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"index.html":{},"license.html":{}}}],["fill",{"_index":576,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["filter",{"_index":2010,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"interfaces/TableRow.html":{}}}],["filtervalue",{"_index":2464,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["filtervalue.trim().tolowercase",{"_index":2468,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["find",{"_index":378,"title":{},"body":{"components/AppManageComponent.html":{}}}],["fitness",{"_index":3136,"title":{},"body":{"license.html":{}}}],["flag",{"_index":3079,"title":{},"body":{"index.html":{}}}],["flags",{"_index":1519,"title":{},"body":{"components/ImportDVDComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["flat",{"_index":1216,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["flattreecontrol",{"_index":1220,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["flex",{"_index":1756,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["fn",{"_index":1584,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["folder",{"_index":3232,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["follow",{"_index":3181,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["following",{"_index":702,"title":{},"body":{"classes/DateFormatter.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["font",{"_index":2489,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["food",{"_index":1226,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["foreground",{"_index":3217,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["form",{"_index":562,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{}}}],["formarray",{"_index":2300,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["format",{"_index":703,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatcurrentoffset",{"_index":660,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatcurrentoffset(d",{"_index":709,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formats",{"_index":646,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatted",{"_index":643,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formatting",{"_index":668,"title":{},"body":{"classes/DateFormatter.html":{}}}],["formbuilder",{"_index":552,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["formcontrol",{"_index":972,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["formcontrol(null",{"_index":2312,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["formdata",{"_index":1706,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formdata.password",{"_index":1710,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formdata.server",{"_index":1712,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formdata.username",{"_index":1708,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["formgroup",{"_index":1604,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["formgroup(formgroupcontrols",{"_index":1624,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["formgroupcontrols",{"_index":1621,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["formsmodule",{"_index":528,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["found",{"_index":371,"title":{},"body":{"components/AppManageComponent.html":{},"injectables/ItemSettingsService.html":{},"components/NotFoundComponent.html":{}}}],["found'},{'name",{"_index":224,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["found.component.css",{"_index":2001,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["found.component.html",{"_index":2002,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["found.component.ts",{"_index":2000,"title":{},"body":{"components/NotFoundComponent.html":{},"coverage.html":{}}}],["found.component.ts:12",{"_index":2003,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["found/not",{"_index":1999,"title":{},"body":{"components/NotFoundComponent.html":{},"coverage.html":{}}}],["free",{"_index":1366,"title":{},"body":{"injectables/GetObjService.html":{},"license.html":{}}}],["frontend",{"_index":3061,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["frontend/e2e/src/app.po.ts",{"_index":388,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["frontend/e2e/src/app.po.ts:4",{"_index":394,"title":{},"body":{"classes/AppPage.html":{}}}],["frontend/e2e/src/app.po.ts:8",{"_index":392,"title":{},"body":{"classes/AppPage.html":{}}}],["frontend/src/app/actions/build",{"_index":525,"title":{},"body":{"components/BuildISOComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/check",{"_index":603,"title":{},"body":{"components/CheckSysComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts",{"_index":1402,"title":{},"body":{"components/HardlinkComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:19",{"_index":1407,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:22",{"_index":1410,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:27",{"_index":1408,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/hardlink/hardlink.component.ts:32",{"_index":1409,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["frontend/src/app/actions/import",{"_index":1490,"title":{},"body":{"components/ImportDVDComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts",{"_index":1877,"title":{},"body":{"components/MkloadersComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:19",{"_index":1881,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:22",{"_index":1884,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:27",{"_index":1882,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/mkloaders/mkloaders.component.ts:32",{"_index":1883,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts",{"_index":2245,"title":{},"body":{"components/ReplicateComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:31",{"_index":2255,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:34",{"_index":2254,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:35",{"_index":2256,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:50",{"_index":2251,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:53",{"_index":2257,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:58",{"_index":2252,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/replicate/replicate.component.ts:63",{"_index":2253,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["frontend/src/app/actions/repo",{"_index":2278,"title":{},"body":{"components/RepoSyncComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/status/status.component.ts",{"_index":2550,"title":{},"body":{"components/StatusComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/status/status.component.ts:35",{"_index":2561,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:38",{"_index":2560,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:48",{"_index":2558,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:52",{"_index":2562,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:53",{"_index":2553,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:56",{"_index":2563,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:60",{"_index":2557,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:70",{"_index":2556,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:75",{"_index":2555,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/status/status.component.ts:80",{"_index":2554,"title":{},"body":{"components/StatusComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts",{"_index":2582,"title":{},"body":{"components/SyncComponent.html":{},"coverage.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:103",{"_index":2598,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:126",{"_index":2599,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:57",{"_index":2606,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:60",{"_index":2600,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:61",{"_index":2604,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:67",{"_index":2605,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:69",{"_index":2610,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:72",{"_index":2593,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:80",{"_index":2595,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:85",{"_index":2612,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:91",{"_index":2614,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:95",{"_index":2594,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/sync/sync.component.ts:99",{"_index":2597,"title":{},"body":{"components/SyncComponent.html":{}}}],["frontend/src/app/actions/validate",{"_index":2858,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["frontend/src/app/app",{"_index":259,"title":{},"body":{"components/AppEventsComponent.html":{},"coverage.html":{}}}],["frontend/src/app/app.component.ts",{"_index":143,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["frontend/src/app/app.component.ts:11",{"_index":155,"title":{},"body":{"components/AppComponent.html":{}}}],["frontend/src/app/appmanage/app",{"_index":341,"title":{},"body":{"components/AppManageComponent.html":{},"coverage.html":{}}}],["frontend/src/app/common/dialog",{"_index":742,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"coverage.html":{}}}],["frontend/src/app/common/key",{"_index":1540,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"coverage.html":{}}}],["frontend/src/app/common/multi",{"_index":1887,"title":{},"body":{"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["frontend/src/app/common/viewable",{"_index":1213,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/distro/edit/distro",{"_index":936,"title":{},"body":{"components/DistroEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/distro/overview/distros",{"_index":1162,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/file/edit/file",{"_index":1261,"title":{},"body":{"components/FileEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/file/overview/file",{"_index":1302,"title":{},"body":{"components/FileOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/image/edit/image",{"_index":1413,"title":{},"body":{"components/ImageEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/image/overview/image",{"_index":1470,"title":{},"body":{"components/ImageOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/management",{"_index":1797,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/package/edit/package",{"_index":2055,"title":{},"body":{"components/PackageEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/package/overview/package",{"_index":2102,"title":{},"body":{"components/PackageOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/profile/edit/profile",{"_index":2117,"title":{},"body":{"components/ProfileEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/profile/overview/profile",{"_index":2231,"title":{},"body":{"components/ProfileOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/repository/edit/repository",{"_index":2334,"title":{},"body":{"components/RepositoryEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/repository/overview/repository",{"_index":2415,"title":{},"body":{"components/RepositoryOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/snippet/edit/snippet",{"_index":2511,"title":{},"body":{"components/SnippetEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/snippet/overview/snippet",{"_index":2534,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/system/edit/system",{"_index":2935,"title":{},"body":{"coverage.html":{}}}],["frontend/src/app/items/system/overview/system",{"_index":2637,"title":{},"body":{"components/SystemOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/template/edit/template",{"_index":2653,"title":{},"body":{"components/TemplateEditComponent.html":{},"coverage.html":{}}}],["frontend/src/app/items/template/overview/template",{"_index":2663,"title":{},"body":{"components/TemplateOverviewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/login/login.component.ts",{"_index":1633,"title":{},"body":{"components/LogInFormComponent.html":{},"coverage.html":{}}}],["frontend/src/app/login/login.component.ts:104",{"_index":1651,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:108",{"_index":1672,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:112",{"_index":1674,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:116",{"_index":1676,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:120",{"_index":1650,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:147",{"_index":1653,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:157",{"_index":1654,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:171",{"_index":1652,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:36",{"_index":1670,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:37",{"_index":1660,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:38",{"_index":1661,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:39",{"_index":1659,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:41",{"_index":1669,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:42",{"_index":1668,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:43",{"_index":1667,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:55",{"_index":1656,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:64",{"_index":1649,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/login/login.component.ts:67",{"_index":1657,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["frontend/src/app/manage",{"_index":1765,"title":{},"body":{"components/ManageMenuComponent.html":{},"coverage.html":{}}}],["frontend/src/app/navbar/navbar.component.ts",{"_index":1952,"title":{},"body":{"components/NavbarComponent.html":{},"coverage.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:30",{"_index":1975,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:33",{"_index":1969,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:34",{"_index":1973,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:35",{"_index":1974,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:36",{"_index":1966,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:41",{"_index":1972,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:42",{"_index":1976,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:77",{"_index":1971,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/navbar/navbar.component.ts:82",{"_index":1970,"title":{},"body":{"components/NavbarComponent.html":{}}}],["frontend/src/app/not",{"_index":1998,"title":{},"body":{"components/NotFoundComponent.html":{},"coverage.html":{}}}],["frontend/src/app/services/auth",{"_index":402,"title":{},"body":{"injectables/AuthGuardService.html":{},"coverage.html":{}}}],["frontend/src/app/services/get",{"_index":1325,"title":{},"body":{"injectables/GetObjService.html":{},"coverage.html":{}}}],["frontend/src/app/services/item",{"_index":1521,"title":{},"body":{"injectables/ItemSettingsService.html":{},"coverage.html":{}}}],["frontend/src/app/services/user.service.ts",{"_index":2678,"title":{},"body":{"injectables/UserService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["frontend/src/app/services/user.service.ts:10",{"_index":2693,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:11",{"_index":2692,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:12",{"_index":2690,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:13",{"_index":2691,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:14",{"_index":2687,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:25",{"_index":2694,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:33",{"_index":2696,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:37",{"_index":2697,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:41",{"_index":2701,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:45",{"_index":2703,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:49",{"_index":2699,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:54",{"_index":2705,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:58",{"_index":2708,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/services/user.service.ts:62",{"_index":2689,"title":{},"body":{"injectables/UserService.html":{}}}],["frontend/src/app/settings/view/settings",{"_index":2430,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["frontend/src/app/signatures/signatures.component.ts",{"_index":2006,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:108",{"_index":2499,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:111",{"_index":2496,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:119",{"_index":2503,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:124",{"_index":2504,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:130",{"_index":2498,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:133",{"_index":2491,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:136",{"_index":2505,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:141",{"_index":2494,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:145",{"_index":2493,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:150",{"_index":2500,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:152",{"_index":2501,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:155",{"_index":2492,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:186",{"_index":2495,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:92",{"_index":2502,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/signatures/signatures.component.ts:95",{"_index":2497,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["frontend/src/app/unauthorized/unauthorized.component.ts",{"_index":2671,"title":{},"body":{"components/UnauthorizedComponent.html":{},"coverage.html":{}}}],["frontend/src/app/unauthorized/unauthorized.component.ts:11",{"_index":2675,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["frontend/src/app/utils.ts",{"_index":2727,"title":{},"body":{"classes/Utils.html":{},"coverage.html":{}}}],["frontend/src/app/utils.ts:2",{"_index":2730,"title":{},"body":{"classes/Utils.html":{}}}],["frontend/src/environments/environment.prod.ts",{"_index":2939,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["frontend/src/environments/environment.ts",{"_index":2940,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["full",{"_index":602,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/SyncComponent.html":{}}}],["fullsync",{"_index":2583,"title":{},"body":{"components/SyncComponent.html":{}}}],["fullsyncdhcp",{"_index":2601,"title":{},"body":{"components/SyncComponent.html":{}}}],["fullsyncdns",{"_index":2602,"title":{},"body":{"components/SyncComponent.html":{}}}],["fullsyncverbose",{"_index":2603,"title":{},"body":{"components/SyncComponent.html":{}}}],["function",{"_index":712,"title":{},"body":{"classes/DateFormatter.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["functions",{"_index":2992,"title":{"miscellaneous/functions.html":{}},"body":{"miscellaneous/functions.html":{}}}],["furnished",{"_index":3121,"title":{},"body":{"license.html":{}}}],["further",{"_index":3089,"title":{},"body":{"index.html":{}}}],["gap",{"_index":1759,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["gateway",{"_index":890,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["generate",{"_index":3073,"title":{},"body":{"index.html":{}}}],["generated",{"_index":78,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["generatesignatureuidata",{"_index":2035,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["get_autoinstall_snippets(this.userservice.token",{"_index":2548,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["get_autoinstall_templates(this.userservice.token",{"_index":2669,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["get_distro(this.name",{"_index":1011,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["get_distro_handle(name",{"_index":1082,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{}}}],["get_distros",{"_index":1203,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["get_event_log(eventid",{"_index":325,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["get_events",{"_index":319,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["get_file(this.name",{"_index":1280,"title":{},"body":{"components/FileEditComponent.html":{}}}],["get_file_handle(name",{"_index":1299,"title":{},"body":{"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{}}}],["get_files",{"_index":1319,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["get_image(this.name",{"_index":1432,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["get_image_handle(name",{"_index":1465,"title":{},"body":{"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["get_images",{"_index":1487,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["get_mgmtclass(this.name",{"_index":1817,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["get_mgmtclass_handle(name",{"_index":1848,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{}}}],["get_mgmtclasses",{"_index":1868,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["get_package(this.name",{"_index":2072,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["get_package_handle(name",{"_index":2099,"title":{},"body":{"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{}}}],["get_packages",{"_index":2112,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["get_profile(this.name",{"_index":2154,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["get_profile_handle(name",{"_index":2222,"title":{},"body":{"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{}}}],["get_profiles",{"_index":2240,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["get_repo(this.name",{"_index":2357,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["get_repo_handle(name",{"_index":2406,"title":{},"body":{"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{}}}],["get_repos",{"_index":2424,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["get_signatures(this.userservice.token",{"_index":2036,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["get_status('normal",{"_index":2564,"title":{},"body":{"components/StatusComponent.html":{}}}],["get_system_handle(name",{"_index":2647,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["get_systems",{"_index":2646,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["get_task_status(value",{"_index":2049,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["getall",{"_index":1524,"title":{},"body":{"injectables/ItemSettingsService.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["getdistroautoinstallmeta",{"_index":988,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrobootfiles",{"_index":990,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrofetchablefiles",{"_index":992,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrokerneloptions",{"_index":994,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrokerneloptionspost",{"_index":996,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistroowners",{"_index":986,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getdistrotemplatefiles",{"_index":998,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["getimageowners",{"_index":1430,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["getitem",{"_index":1525,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["getitem(name",{"_index":1529,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["getitems",{"_index":1330,"title":{},"body":{"injectables/GetObjService.html":{}}}],["getkeyvaluearrayfgcontrols",{"_index":2613,"title":{},"body":{"components/SyncComponent.html":{}}}],["getlocaldateparts",{"_index":661,"title":{},"body":{"classes/DateFormatter.html":{}}}],["getlocaldateparts(date",{"_index":719,"title":{},"body":{"classes/DateFormatter.html":{}}}],["getmgmtclassowners",{"_index":1815,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["getnewkeyvaluefg",{"_index":2611,"title":{},"body":{"components/SyncComponent.html":{}}}],["getnewrepositoryformgroup",{"_index":2308,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["getobjservice",{"_index":351,"title":{"injectables/GetObjService.html":{}},"body":{"components/AppManageComponent.html":{},"injectables/GetObjService.html":{},"coverage.html":{}}}],["getpackageowners",{"_index":2070,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["getpassword",{"_index":1675,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["getprofileautoinstallmeta",{"_index":2140,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilebootfiles",{"_index":2146,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilefetchablefiles",{"_index":2148,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilekerneloptions",{"_index":2142,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilekerneloptionspost",{"_index":2144,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofilemgmtparameters",{"_index":2150,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofileowners",{"_index":2138,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getprofiletemplatefiles",{"_index":2152,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["getrepositoryarrayfgcontrols",{"_index":2310,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["getrepositoryowners",{"_index":2351,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["getrepositoryrsyncopts",{"_index":2355,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["getrepositoryyumopts",{"_index":2353,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["getroles",{"_index":2707,"title":{},"body":{"injectables/UserService.html":{}}}],["getserver",{"_index":1671,"title":{},"body":{"components/LogInFormComponent.html":{},"injectables/UserService.html":{}}}],["getstatus",{"_index":408,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["getting",{"_index":2883,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{}}],["gettitletext",{"_index":390,"title":{},"body":{"classes/AppPage.html":{}}}],["gettoken",{"_index":2700,"title":{},"body":{"injectables/UserService.html":{}}}],["getusername",{"_index":1673,"title":{},"body":{"components/LogInFormComponent.html":{},"injectables/UserService.html":{}}}],["getutcdateparts",{"_index":662,"title":{},"body":{"classes/DateFormatter.html":{}}}],["getutcdateparts(date",{"_index":724,"title":{},"body":{"classes/DateFormatter.html":{}}}],["git",{"_index":3191,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["git@github.com:cobbler/cobbler",{"_index":3201,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["git@github.com:cobbler/cobbler.git",{"_index":3200,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["gitdate",{"_index":449,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["github",{"_index":2886,"title":{},"body":{"contributing.html":{}}}],["gitstamp",{"_index":450,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["give",{"_index":1515,"title":{},"body":{"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{},"additional-documentation/development-setup.html":{}}}],["go",{"_index":3091,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["goes",{"_index":1704,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["granted",{"_index":3101,"title":{},"body":{"license.html":{}}}],["group",{"_index":923,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{}}}],["grub",{"_index":1102,"title":{},"body":{"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["grub2_mod_dir",{"_index":2763,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["grubconfig_dir",{"_index":2764,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["guard",{"_index":1648,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["guard.service",{"_index":1680,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["guard.service.ts",{"_index":403,"title":{},"body":{"injectables/AuthGuardService.html":{},"coverage.html":{}}}],["guard.service.ts:10",{"_index":421,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:11",{"_index":413,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:18",{"_index":414,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:41",{"_index":416,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:50",{"_index":419,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guard.service.ts:55",{"_index":417,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["guide",{"_index":3179,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["guiding",{"_index":3256,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["handling",{"_index":3241,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["hardlink",{"_index":1403,"title":{},"body":{"components/HardlinkComponent.html":{},"components/ManageMenuComponent.html":{}}}],["hardlink'},{'name",{"_index":202,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["hardlink.component.html",{"_index":1404,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["hardlink.component.scss",{"_index":1405,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["hardlinkcomponent",{"_index":201,"title":{"components/HardlinkComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["hardlinkhardlink",{"_index":1412,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["haschild",{"_index":1248,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["hasosversion",{"_index":2034,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["header",{"_index":2024,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["headers",{"_index":12,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"additional-documentation/development-setup.html":{}}}],["hear",{"_index":1386,"title":{},"body":{"injectables/GetObjService.html":{}}}],["height",{"_index":164,"title":{},"body":{"components/AppComponent.html":{},"components/LogInFormComponent.html":{}}}],["help",{"_index":1793,"title":{},"body":{"components/ManageMenuComponent.html":{},"contributing.html":{},"index.html":{}}}],["helper",{"_index":711,"title":{},"body":{"classes/DateFormatter.html":{}}}],["here",{"_index":1533,"title":{},"body":{"injectables/ItemSettingsService.html":{},"additional-documentation/development-setup.html":{}}}],["hereby",{"_index":3100,"title":{},"body":{"license.html":{}}}],["holders",{"_index":3141,"title":{},"body":{"license.html":{}}}],["host",{"_index":159,"title":{},"body":{"components/AppComponent.html":{}}}],["hostname",{"_index":498,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["houses",{"_index":1346,"title":{},"body":{"injectables/GetObjService.html":{}}}],["html",{"_index":166,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["htmlinputelement).value",{"_index":2466,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["http",{"_index":14,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["http://localhost/cobbler_api",{"_index":2720,"title":{},"body":{"injectables/UserService.html":{}}}],["http://localhost:4200",{"_index":3055,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["http_port",{"_index":2786,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["httpclient",{"_index":26,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpheaders",{"_index":86,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpoptions",{"_index":120,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpoptions.set('accept",{"_index":123,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["httpoptions.set('content",{"_index":121,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["https://cobbler.github.io/images/logo",{"_index":1981,"title":{},"body":{"components/NavbarComponent.html":{}}}],["https://github.com/nelliesnoodles/angular",{"_index":3043,"title":{},"body":{"index.html":{}}}],["https://stackoverflow.com/a/50067730/4730773",{"_index":2711,"title":{},"body":{"injectables/UserService.html":{}}}],["https://transform.tools/json",{"_index":1149,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["hyphen",{"_index":673,"title":{},"body":{"classes/DateFormatter.html":{}}}],["hyphen/colon",{"_index":648,"title":{},"body":{"classes/DateFormatter.html":{}}}],["hyphens",{"_index":654,"title":{},"body":{"classes/DateFormatter.html":{}}}],["i386",{"_index":1123,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"injectables/GetObjService.html":{}}}],["i586",{"_index":1124,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ia64",{"_index":1125,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["iconregistry",{"_index":1967,"title":{},"body":{"components/NavbarComponent.html":{}}}],["iconregistry.addsvgicon",{"_index":1978,"title":{},"body":{"components/NavbarComponent.html":{}}}],["id",{"_index":517,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["identifier",{"_index":2899,"title":{},"body":{"coverage.html":{}}}],["if_gateway",{"_index":871,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["image",{"_index":204,"title":{"interfaces/Image.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"additional-documentation/development-setup.html":{}}}],["image_patterns",{"_index":474,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["image_type",{"_index":927,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["imageeditcomponent",{"_index":203,"title":{"components/ImageEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["imageformgroup",{"_index":1414,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["imagehandle",{"_index":1466,"title":{},"body":{"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["imageoverviewcomponent",{"_index":205,"title":{"components/ImageOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["imageowners",{"_index":1419,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["images",{"_index":591,"title":{},"body":{"components/BuildISOComponent.html":{},"injectables/GetObjService.html":{},"components/ImageOverviewComponent.html":{},"components/ManageMenuComponent.html":{}}}],["implemented",{"_index":1073,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["implements",{"_index":262,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["implied",{"_index":3132,"title":{},"body":{"license.html":{}}}],["import",{"_index":84,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["importdvdcomponent",{"_index":206,"title":{"components/ImportDVDComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["importformgroup",{"_index":1496,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["importoptions",{"_index":1505,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["imports",{"_index":149,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["include",{"_index":2787,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["included",{"_index":3125,"title":{},"body":{"license.html":{}}}],["including",{"_index":3109,"title":{},"body":{"license.html":{}}}],["incorrectly",{"_index":43,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["index",{"_index":9,"title":{"index.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}}}],["information",{"_index":1071,"title":{},"body":{"components/DistroEditComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["inherit",{"_index":1996,"title":{},"body":{"components/NavbarComponent.html":{}}}],["inherited",{"_index":1099,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["initial",{"_index":3040,"title":{},"body":{"index.html":{}}}],["initrd",{"_index":825,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["initrd_file",{"_index":1108,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["inject",{"_index":301,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{}}}],["inject(cobbler_url",{"_index":1685,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["inject(formbuilder",{"_index":546,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["inject(mat_dialog_data",{"_index":754,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["inject(matdialog",{"_index":317,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["inject(matdialogref",{"_index":783,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["injectable",{"_index":0,"title":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{},"coverage.html":{}}}],["injectables",{"_index":2,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{},"overview.html":{}}}],["injectiontoken('cobbler_url",{"_index":3169,"title":{},"body":{"miscellaneous/variables.html":{}}}],["input",{"_index":805,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/ExampleFlatNode.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"components/SettingsViewComponent.html":{},"classes/Utils.html":{},"components/ViewableTreeComponent.html":{}}}],["input'},{'name",{"_index":193,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["input.component",{"_index":1928,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["input.component.html",{"_index":806,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["input.component.scss",{"_index":807,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["input.component.ts",{"_index":804,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"coverage.html":{}}}],["input.component.ts:37",{"_index":812,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.component.ts:38",{"_index":809,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.component.ts:39",{"_index":811,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.component.ts:41",{"_index":808,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["input.value",{"_index":2487,"title":{},"body":{"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["input/dialog",{"_index":803,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["inputlength",{"_index":2870,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["inputlength(inputobject",{"_index":1250,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["inputobject",{"_index":1235,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["inputobject[key",{"_index":1256,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["inputs",{"_index":579,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"components/SyncComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["install",{"_index":3048,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["installation",{"_index":2569,"title":{},"body":{"components/StatusComponent.html":{}}}],["installationstatus",{"_index":518,"title":{"interfaces/InstallationStatus.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["installer",{"_index":935,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Repo.html":{}}}],["instanceof",{"_index":1939,"title":{},"body":{"components/MultiSelectComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["instanceofmethodfault",{"_index":19,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofmethodfault(object",{"_index":48,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofmethodresponse",{"_index":20,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofmethodresponse(object",{"_index":52,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcarray",{"_index":21,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcarray(object",{"_index":55,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcstruct",{"_index":22,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instanceofxmlrpcstruct(object",{"_index":59,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["instead",{"_index":674,"title":{},"body":{"classes/DateFormatter.html":{}}}],["interface",{"_index":434,"title":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/DialogData.html":{},"interfaces/DialogItemCopyData.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"index.html":{}}}],["interface_master",{"_index":872,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["interface_type",{"_index":873,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["interfaces",{"_index":436,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/DialogData.html":{},"interfaces/DialogItemCopyData.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SettingsTableRowData.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"overview.html":{}}}],["internal",{"_index":1356,"title":{},"body":{"injectables/GetObjService.html":{}}}],["ip",{"_index":519,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["ip_address",{"_index":874,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv4",{"_index":2229,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["ipv6",{"_index":2230,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["ipv6_address",{"_index":875,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_autoconfiguration",{"_index":887,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_default_device",{"_index":891,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_default_gateway",{"_index":876,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_mtu",{"_index":877,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_prefix",{"_index":878,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_secondaries",{"_index":879,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipv6_static_routes",{"_index":880,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ipxe",{"_index":1140,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["is_definition",{"_index":930,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["is_dir",{"_index":924,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["is_subobject",{"_index":826,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["isarray",{"_index":2473,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["isarray(element.value",{"_index":2484,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["isarray(input",{"_index":2470,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["isdisabled",{"_index":1557,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["iseditmode",{"_index":944,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["isloading",{"_index":613,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["islogged",{"_index":1958,"title":{},"body":{"components/NavbarComponent.html":{}}}],["iso",{"_index":454,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"classes/DateFormatter.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"components/ManageMenuComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["iso'},{'name",{"_index":179,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["iso.component.html",{"_index":536,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.scss",{"_index":535,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts",{"_index":527,"title":{},"body":{"components/BuildISOComponent.html":{},"coverage.html":{}}}],["iso.component.ts:33",{"_index":550,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:36",{"_index":547,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:37",{"_index":549,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:48",{"_index":543,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:51",{"_index":551,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:56",{"_index":544,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso.component.ts:61",{"_index":545,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["iso/build",{"_index":526,"title":{},"body":{"components/BuildISOComponent.html":{},"coverage.html":{}}}],["iso8601",{"_index":642,"title":{},"body":{"classes/DateFormatter.html":{}}}],["iso_template_dir",{"_index":2788,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["isolinux_ok",{"_index":1109,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["issue",{"_index":3245,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["item",{"_index":188,"title":{"interfaces/Item.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["itemname",{"_index":788,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["items",{"_index":500,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["items_per_page",{"_index":510,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["items_per_page_list",{"_index":511,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["itemsettingsservice",{"_index":1520,"title":{"injectables/ItemSettingsService.html":{}},"body":{"injectables/ItemSettingsService.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["itemtype",{"_index":787,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["itemuid",{"_index":789,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["j",{"_index":2039,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["javascript",{"_index":704,"title":{},"body":{"classes/DateFormatter.html":{}}}],["jinja2_includedir",{"_index":2789,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["json",{"_index":1155,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/LogInFormComponent.html":{}}}],["json.stringify(this.mockvalues",{"_index":1394,"title":{},"body":{"injectables/GetObjService.html":{}}}],["justify",{"_index":1754,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["k",{"_index":889,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["karma",{"_index":3086,"title":{},"body":{"index.html":{}}}],["keep",{"_index":2411,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["keep_updated",{"_index":914,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["kernel",{"_index":827,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["kernel_arch",{"_index":1110,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["kernel_arch_regex",{"_index":1111,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["kernel_file",{"_index":1112,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["kernel_options",{"_index":828,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["kernel_options_inherited",{"_index":980,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["kernel_options_post",{"_index":829,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["kernel_options_post_inherited",{"_index":981,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["kerneloptionspost",{"_index":2225,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["kerneloptionspostresult",{"_index":1091,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["kerneloptionsresult",{"_index":1090,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["key",{"_index":209,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["keyorder",{"_index":1558,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["keyorderformgroup",{"_index":1559,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["keyvalue",{"_index":2607,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvaluearrayfgcontrols",{"_index":2591,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvaluearrayfgcontrols.length",{"_index":2635,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvalueeditorcomponent",{"_index":208,"title":{"components/KeyValueEditorComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["keyvaluefa",{"_index":2584,"title":{},"body":{"components/SyncComponent.html":{}}}],["keyvalueoptions",{"_index":1572,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["kind",{"_index":3130,"title":{},"body":{"license.html":{}}}],["label",{"_index":1573,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["lacking",{"_index":3248,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["last",{"_index":1094,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["ldap_anonymous_bind",{"_index":2790,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_base_dn",{"_index":2791,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_port",{"_index":2792,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_search_bind_dn",{"_index":2793,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_search_passwd",{"_index":2794,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_search_prefix",{"_index":2795,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_server",{"_index":2796,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls",{"_index":2797,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_cacertdir",{"_index":2798,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_cacertfile",{"_index":2799,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_certfile",{"_index":2800,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_cipher_suite",{"_index":2803,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_keyfile",{"_index":2801,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ldap_tls_reqcert",{"_index":2802,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["leave",{"_index":1362,"title":{},"body":{"injectables/GetObjService.html":{}}}],["left",{"_index":1384,"title":{},"body":{"injectables/GetObjService.html":{},"components/NavbarComponent.html":{}}}],["legend",{"_index":165,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["len",{"_index":739,"title":{},"body":{"classes/DateFormatter.html":{}}}],["length",{"_index":727,"title":{},"body":{"classes/DateFormatter.html":{}}}],["level",{"_index":1219,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["lf",{"_index":3195,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["liability",{"_index":3145,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3142,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3068,"title":{},"body":{"index.html":{}}}],["license",{"_index":3094,"title":{"license.html":{}},"body":{"license.html":{}}}],["limitation",{"_index":3110,"title":{},"body":{"license.html":{}}}],["limited",{"_index":3133,"title":{},"body":{"license.html":{},"additional-documentation/development-setup.html":{}}}],["line",{"_index":764,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["link",{"_index":3184,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["links/components",{"_index":1726,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["list",{"_index":1230,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["literal",{"_index":1118,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["local",{"_index":655,"title":{},"body":{"classes/DateFormatter.html":{}}}],["locally",{"_index":2413,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["localstorage.getitem('cobbler_url",{"_index":3170,"title":{},"body":{"miscellaneous/variables.html":{}}}],["localstorage.getitem(cobbler_url_key_name",{"_index":2719,"title":{},"body":{"injectables/UserService.html":{}}}],["log",{"_index":758,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"components/LogInFormComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{},"additional-documentation/development-setup.html":{}}}],["loggedin",{"_index":404,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["login",{"_index":420,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{},"additional-documentation/development-setup.html":{}}}],["login'},{'name",{"_index":212,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["login.component.css",{"_index":1634,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["login.component.html",{"_index":1635,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["login_form",{"_index":1639,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["loginformcomponent",{"_index":211,"title":{"components/LogInFormComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["loginformcomponent.urlvalidator",{"_index":1665,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["logo",{"_index":1979,"title":{},"body":{"components/NavbarComponent.html":{}}}],["logout",{"_index":1959,"title":{},"body":{"components/NavbarComponent.html":{}}}],["logs",{"_index":340,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["long",{"_index":335,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["mac_address",{"_index":881,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["main",{"_index":3197,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["major",{"_index":444,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["make",{"_index":3235,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["makes",{"_index":68,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["manage",{"_index":156,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["manage'},{'name",{"_index":176,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["manage.component.css",{"_index":343,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.html",{"_index":344,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts",{"_index":342,"title":{},"body":{"components/AppManageComponent.html":{},"coverage.html":{}}}],["manage.component.ts:11",{"_index":357,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:12",{"_index":355,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:13",{"_index":356,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:14",{"_index":352,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage.component.ts:38",{"_index":354,"title":{},"body":{"components/AppManageComponent.html":{}}}],["manage_dhcp",{"_index":2805,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_dhcp_v4",{"_index":2806,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_dhcp_v6",{"_index":2807,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_dns",{"_index":2808,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_forward_zones",{"_index":2809,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_genders",{"_index":2811,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_reverse_zones",{"_index":2810,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_rsync",{"_index":2812,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["manage_tftpd",{"_index":2813,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["management",{"_index":882,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{}}}],["managementclass",{"_index":1799,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["managementclasseditcomponent",{"_index":213,"title":{"components/ManagementClassEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["managementclassformgroup",{"_index":1800,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["managementclassoverviewcomponent",{"_index":214,"title":{"components/ManagementClassOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["managemenucomponent",{"_index":150,"title":{"components/ManageMenuComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["manager",{"_index":3182,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["mangement",{"_index":1847,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["map",{"_index":94,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/ItemSettingsService.html":{}}}],["map((data",{"_index":1536,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["map((source",{"_index":131,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["margin",{"_index":1764,"title":{},"body":{"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{}}}],["master",{"_index":468,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mat",{"_index":2488,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["mat_dialog_data",{"_index":756,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matbutton",{"_index":529,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["matbuttonmodule",{"_index":269,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/ExampleFlatNode.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["matcard",{"_index":1550,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["matcardheader",{"_index":1551,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["matcardtitle",{"_index":1552,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["matcell",{"_index":1167,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matcelldef",{"_index":1170,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matcheckbox",{"_index":534,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matcheckboxchange",{"_index":1910,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matching",{"_index":134,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["matcolumndef",{"_index":1168,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matdialog",{"_index":283,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["matdialogactions",{"_index":744,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdialogclose",{"_index":745,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/SyncComponent.html":{}}}],["matdialogcontent",{"_index":747,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdialogmodule",{"_index":770,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["matdialogref",{"_index":786,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdialogtitle",{"_index":746,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["matdivider",{"_index":2008,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matdividermodule",{"_index":1769,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["matfabbutton",{"_index":1894,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matformfield",{"_index":530,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matformfieldmodule",{"_index":771,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matheadercell",{"_index":1166,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matheadercelldef",{"_index":1169,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matheaderrow",{"_index":1171,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matheaderrowdef",{"_index":1174,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["maticon",{"_index":608,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["maticonbutton",{"_index":607,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["maticonmodule",{"_index":271,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["maticonregistry",{"_index":1963,"title":{},"body":{"components/NavbarComponent.html":{}}}],["matinput",{"_index":531,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matinputmodule",{"_index":772,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matlabel",{"_index":532,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matlist",{"_index":2009,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matlistitem",{"_index":1892,"title":{},"body":{"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matlistmodule",{"_index":267,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/ManageMenuComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["matmenu",{"_index":1175,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["matmenuitem",{"_index":1176,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["matmenumodule",{"_index":270,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["matmenutrigger",{"_index":1177,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["matnavlist",{"_index":1771,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["matoption",{"_index":940,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matpaginator",{"_index":2433,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matpaginatormodule",{"_index":2434,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matprefix",{"_index":2281,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["matprogressspinner",{"_index":610,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["matrow",{"_index":1172,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matrowdef",{"_index":1173,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["matselect",{"_index":939,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["matselectmodule",{"_index":1890,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matselectoptionsformgroup",{"_index":1897,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["matsidenavmodule",{"_index":1768,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["matslidetoggle",{"_index":2246,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["matslidetogglemodule",{"_index":2442,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["matsnackbar",{"_index":542,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["matsort",{"_index":2436,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["matsortmodule",{"_index":2437,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["matsuffix",{"_index":2282,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["mattable",{"_index":1165,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{}}}],["mattabledatasource",{"_index":292,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["mattablemodule",{"_index":268,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["mattoolbarmodule",{"_index":1770,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{}}}],["mattooltip",{"_index":609,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["mattooltipmodule",{"_index":2445,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["mattree",{"_index":2013,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreeflatdatasource",{"_index":1222,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["mattreeflatdatasource(this.treecontrol",{"_index":2032,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreeflattener",{"_index":1223,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["mattreemodule",{"_index":1224,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["mattreenode",{"_index":2014,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreenodedef",{"_index":2015,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreenodepadding",{"_index":2016,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["mattreenodetoggle",{"_index":2017,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["max",{"_index":600,"title":{},"body":{"components/BuildISOComponent.html":{},"classes/DateFormatter.html":{},"components/ImportDVDComponent.html":{}}}],["meaningful",{"_index":3021,"title":{},"body":{"miscellaneous/functions.html":{}}}],["means",{"_index":1080,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"miscellaneous/functions.html":{}}}],["meet",{"_index":732,"title":{},"body":{"classes/DateFormatter.html":{}}}],["member",{"_index":1873,"title":{"interfaces/Member.html":{}},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["members",{"_index":111,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{}}}],["menu",{"_index":850,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/ManageMenuComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["menu'},{'name",{"_index":215,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["menu.component",{"_index":158,"title":{},"body":{"components/AppComponent.html":{}}}],["menu.component.css",{"_index":1772,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu.component.html",{"_index":1773,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu.component.ts",{"_index":1766,"title":{},"body":{"components/ManageMenuComponent.html":{},"coverage.html":{}}}],["menu.component.ts:29",{"_index":1775,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu.component.ts:30",{"_index":1776,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["menu/manage",{"_index":157,"title":{},"body":{"components/AppComponent.html":{},"components/ManageMenuComponent.html":{},"coverage.html":{}}}],["merchantability",{"_index":3135,"title":{},"body":{"license.html":{}}}],["merge",{"_index":1681,"title":{},"body":{"components/LogInFormComponent.html":{},"license.html":{}}}],["message",{"_index":588,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["metadata",{"_index":144,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["method",{"_index":37,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["methodcall",{"_index":23,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["methodcall(method",{"_index":62,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["methodfault",{"_index":51,"title":{"interfaces/MethodFault.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["methodresponse",{"_index":54,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["methods",{"_index":16,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["mgmgtclass",{"_index":929,"title":{"interfaces/Mgmgtclass.html":{}},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"coverage.html":{}}}],["mgmt_classes",{"_index":830,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["mgmt_classes_inherited",{"_index":976,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["mgmt_parameters",{"_index":831,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["mgmt_parameters_inherited",{"_index":2137,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["mgmtclass_patterns",{"_index":475,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mgmtclasshandle",{"_index":1849,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{}}}],["mgmtclassowners",{"_index":1805,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["mgmtparametersresult",{"_index":2226,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["middle",{"_index":636,"title":{},"body":{"components/CheckSysComponent.html":{},"components/NavbarComponent.html":{},"components/SettingsViewComponent.html":{}}}],["milliseconds",{"_index":677,"title":{},"body":{"classes/DateFormatter.html":{}}}],["min",{"_index":598,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{}}}],["minimum",{"_index":1741,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["minor",{"_index":446,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mirror",{"_index":915,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{}}}],["mirror_locally",{"_index":917,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["mirror_type",{"_index":916,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{}}}],["miscellaneous",{"_index":2991,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["mit",{"_index":3095,"title":{},"body":{"license.html":{}}}],["mkloaders",{"_index":1788,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/MkloadersComponent.html":{}}}],["mkloaders'},{'name",{"_index":217,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["mkloaders.component.html",{"_index":1878,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["mkloaders.component.scss",{"_index":1879,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["mkloaderscomponent",{"_index":216,"title":{"components/MkloadersComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["mkloadersmkloaders",{"_index":1886,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["mngclassesservice",{"_index":1351,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mock",{"_index":1347,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mockobject",{"_index":1327,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mockobjname",{"_index":1328,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mockvalues",{"_index":1329,"title":{},"body":{"injectables/GetObjService.html":{}}}],["mode",{"_index":925,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{}}}],["model",{"_index":782,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["model(this.data.text",{"_index":810,"title":{},"body":{"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["modified",{"_index":1095,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["modify",{"_index":3112,"title":{},"body":{"license.html":{}}}],["modules",{"_index":3152,"title":{"modules.html":{}},"body":{"modules.html":{}}}],["moment",{"_index":1074,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["more",{"_index":1070,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"index.html":{}}}],["more_vert",{"_index":338,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["mostrecentstart",{"_index":520,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mostrecentstop",{"_index":521,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["mostrecenttarget",{"_index":522,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["moveiteminarray",{"_index":1609,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["moveiteminarray(this.keyorder",{"_index":1626,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["ms",{"_index":656,"title":{},"body":{"classes/DateFormatter.html":{}}}],["mtime",{"_index":844,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["mtu",{"_index":883,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["multi",{"_index":219,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"index.html":{}}}],["multiselectcomponent",{"_index":218,"title":{"components/MultiSelectComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["multiselectoptions",{"_index":1902,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["multiselectoptions.length",{"_index":1950,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["name",{"_index":31,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["name(item",{"_index":1397,"title":{},"body":{"injectables/GetObjService.html":{}}}],["name_servers",{"_index":851,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["name_servers_search",{"_index":852,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["navbar",{"_index":1953,"title":{},"body":{"components/NavbarComponent.html":{}}}],["navbar'},{'name",{"_index":222,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["navbar.component.css",{"_index":1955,"title":{},"body":{"components/NavbarComponent.html":{}}}],["navbar.component.html",{"_index":1956,"title":{},"body":{"components/NavbarComponent.html":{}}}],["navbar/navbar.component",{"_index":1780,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["navbarcomponent",{"_index":221,"title":{"components/NavbarComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["navigate",{"_index":3054,"title":{},"body":{"index.html":{}}}],["navigateto",{"_index":391,"title":{},"body":{"classes/AppPage.html":{}}}],["nbsp",{"_index":2328,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["nbsp;= ",{"_index":1632,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["need",{"_index":1081,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"contributing.html":{},"index.html":{}}}],["needed",{"_index":3007,"title":{},"body":{"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["nelliesnoodles",{"_index":3042,"title":{},"body":{"index.html":{}}}],["nested",{"_index":1227,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["netboot_enabled",{"_index":892,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["netmask",{"_index":884,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["network",{"_index":1468,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["network_count",{"_index":928,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["networkinterface",{"_index":865,"title":{"interfaces/NetworkInterface.html":{}},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"coverage.html":{}}}],["new",{"_index":115,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["new.svg",{"_index":1982,"title":{},"body":{"components/NavbarComponent.html":{}}}],["newdata",{"_index":2037,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["newdata.push",{"_index":2046,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["newitemname",{"_index":1077,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["newkeyvaluefg",{"_index":2590,"title":{},"body":{"components/SyncComponent.html":{}}}],["newrepositoryformgroup",{"_index":2290,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["next",{"_index":1885,"title":{},"body":{"components/MkloadersComponent.html":{},"components/ProfileEditComponent.html":{}}}],["next_page",{"_index":504,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["next_server_v4",{"_index":853,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["next_server_v6",{"_index":854,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["ng",{"_index":3051,"title":{},"body":{"index.html":{}}}],["ng_validators",{"_index":1548,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["ng_value_accessor",{"_index":1546,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["ngafterviewinit",{"_index":2458,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["ngforof",{"_index":1893,"title":{},"body":{"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["ngif",{"_index":2007,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["ngondestroy",{"_index":279,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["ngoninit",{"_index":280,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["ngunsubscribe",{"_index":278,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["node",{"_index":1217,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["node.children",{"_index":1240,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.children.length",{"_index":1241,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.data",{"_index":2030,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["node.expandable",{"_index":1238,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.js",{"_index":3046,"title":{},"body":{"index.html":{}}}],["node.level",{"_index":1237,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["node.name",{"_index":1242,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["node.value",{"_index":1243,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["nofail",{"_index":492,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["non",{"_index":1353,"title":{},"body":{"injectables/GetObjService.html":{}}}],["none",{"_index":3013,"title":{},"body":{"miscellaneous/functions.html":{}}}],["noninfringement",{"_index":3139,"title":{},"body":{"license.html":{}}}],["nopxe_with_triggers",{"_index":2828,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["note",{"_index":3059,"title":{},"body":{"index.html":{}}}],["notfoundcomponent",{"_index":223,"title":{"components/NotFoundComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["nothing",{"_index":1532,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["notice",{"_index":3123,"title":{},"body":{"license.html":{}}}],["npm",{"_index":3047,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["nsupdate_enabled",{"_index":2814,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["nsupdate_log",{"_index":2815,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["nsupdate_tsig_algorithm",{"_index":2816,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["nsupdate_tsig_key",{"_index":2817,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["null",{"_index":107,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["num_items",{"_index":507,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["num_pages",{"_index":506,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["number",{"_index":445,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/TableRow.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["obj",{"_index":1600,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["obj.service",{"_index":359,"title":{},"body":{"components/AppManageComponent.html":{}}}],["obj.service.ts",{"_index":1326,"title":{},"body":{"injectables/GetObjService.html":{},"coverage.html":{}}}],["obj.service.ts:39",{"_index":1337,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:40",{"_index":1342,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:42",{"_index":1338,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:46",{"_index":1335,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:49",{"_index":1331,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:65",{"_index":1332,"title":{},"body":{"injectables/GetObjService.html":{}}}],["obj.service.ts:69",{"_index":1344,"title":{},"body":{"injectables/GetObjService.html":{}}}],["object",{"_index":49,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["object.keys(inputobject).foreach((key",{"_index":1254,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["object.keys(inputobject).length",{"_index":1251,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["object.keys(object).length",{"_index":109,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["object.keys(this.keyvalueoptions",{"_index":1602,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["object.keys(this.keyvalueoptions).length",{"_index":1629,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["object.keys(this.matselectoptionsformgroup.controls).foreach((key",{"_index":1937,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["objectnode",{"_index":1232,"title":{"interfaces/ObjectNode.html":{}},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["objects",{"_index":366,"title":{},"body":{"components/AppManageComponent.html":{}}}],["objtype",{"_index":2559,"title":{},"body":{"components/StatusComponent.html":{}}}],["observable",{"_index":80,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/CheckSysComponent.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{}}}],["observe",{"_index":126,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["obtaining",{"_index":3104,"title":{},"body":{"license.html":{}}}],["of(data",{"_index":629,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["offset",{"_index":657,"title":{},"body":{"classes/DateFormatter.html":{}}}],["ok",{"_index":817,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["old",{"_index":792,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{}}}],["omit",{"_index":2276,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["omit_data",{"_index":479,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["onchange",{"_index":1561,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["ondestroy",{"_index":264,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["oninit",{"_index":263,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["online",{"_index":1792,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["onnoclick",{"_index":777,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["ontouched",{"_index":1562,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["operating",{"_index":1103,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["opinions",{"_index":2893,"title":{},"body":{"contributing.html":{}}}],["option",{"_index":815,"title":{},"body":{"components/DialogTextInputComponent.html":{},"components/MultiSelectComponent.html":{}}}],["optional",{"_index":33,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":74,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/BuildISOComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["options).pipe",{"_index":130,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["options.foreach((value",{"_index":1930,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["options.push(key",{"_index":1941,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["optionsignal",{"_index":1898,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["originates",{"_index":589,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["os_version",{"_index":489,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["osbreedflatnode",{"_index":2005,"title":{"interfaces/OsBreedFlatNode.html":{}},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["osnode",{"_index":2019,"title":{"interfaces/OsNode.html":{}},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["osversiondata",{"_index":2041,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["osversiondata.push",{"_index":2043,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["otherwise",{"_index":41,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"license.html":{}}}],["out",{"_index":577,"title":{},"body":{"components/BuildISOComponent.html":{},"index.html":{},"license.html":{}}}],["output",{"_index":676,"title":{},"body":{"classes/DateFormatter.html":{},"components/NavbarComponent.html":{}}}],["outputs",{"_index":1960,"title":{},"body":{"components/NavbarComponent.html":{}}}],["overrides",{"_index":1387,"title":{},"body":{"injectables/GetObjService.html":{}}}],["overview",{"_index":1303,"title":{"overview.html":{}},"body":{"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{},"index.html":{},"overview.html":{}}}],["overview'},{'name",{"_index":200,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["overview.component.css",{"_index":1178,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.html",{"_index":1179,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.scss",{"_index":1304,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts",{"_index":1163,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{},"coverage.html":{}}}],["overview.component.ts:101",{"_index":1862,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:102",{"_index":1480,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:136",{"_index":1309,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:139",{"_index":1187,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:140",{"_index":2108,"title":{},"body":{"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{}}}],["overview.component.ts:142",{"_index":1476,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:145",{"_index":1859,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:47",{"_index":2545,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:48",{"_index":2544,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:50",{"_index":2538,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:52",{"_index":1317,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:53",{"_index":2546,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:55",{"_index":1197,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:56",{"_index":1316,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:58",{"_index":1196,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:59",{"_index":1195,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:61",{"_index":1185,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:62",{"_index":1484,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:63",{"_index":1857,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:64",{"_index":1199,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:66",{"_index":1866,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:67",{"_index":1485,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:68",{"_index":1311,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:71",{"_index":1189,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:72",{"_index":1310,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:73",{"_index":1860,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:74",{"_index":1478,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:75",{"_index":1188,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:77",{"_index":1314,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:78",{"_index":1477,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:80",{"_index":1192,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:81",{"_index":2542,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:82",{"_index":1863,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:83",{"_index":1481,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:85",{"_index":2540,"title":{},"body":{"components/SnippetOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["overview.component.ts:92",{"_index":1315,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:95",{"_index":1194,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["overview.component.ts:96",{"_index":1313,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["overview.component.ts:97",{"_index":1865,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["overview.component.ts:98",{"_index":1483,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["overview.component.ts:99",{"_index":1191,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["owner",{"_index":926,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/Repo.html":{}}}],["owners",{"_index":832,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["owners_inherited",{"_index":975,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["ownersresult",{"_index":1085,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["p",{"_index":3208,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["package",{"_index":934,"title":{"interfaces/Package.html":{},"dependencies.html":{},"properties.html":{}},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Repo.html":{},"coverage.html":{},"additional-documentation/development-setup.html":{}}}],["package_patterns",{"_index":476,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["packageeditcomponent",{"_index":225,"title":{"components/PackageEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["packageformgroup",{"_index":2056,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["packagehandle",{"_index":2100,"title":{},"body":{"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{}}}],["packageoverviewcomponent",{"_index":226,"title":{"components/PackageOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["packageowners",{"_index":2061,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["packages",{"_index":933,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Repo.html":{}}}],["pad",{"_index":729,"title":{},"body":{"classes/DateFormatter.html":{},"components/NavbarComponent.html":{}}}],["padded",{"_index":722,"title":{},"body":{"classes/DateFormatter.html":{}}}],["padded.length",{"_index":741,"title":{},"body":{"classes/DateFormatter.html":{}}}],["padding",{"_index":1763,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["page",{"_index":502,"title":{"additional-documentation/development-setup.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"index.html":{}}}],["pageinfo",{"_index":501,"title":{"interfaces/PageInfo.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["pages",{"_index":505,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["pagesitemsresult",{"_index":499,"title":{"interfaces/PagesItemsResult.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["paginator",{"_index":2450,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["param",{"_index":118,"title":{"interfaces/Param.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["parameter",{"_index":3014,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parameters",{"_index":29,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["parameters/variables",{"_index":1377,"title":{},"body":{"injectables/GetObjService.html":{}}}],["params",{"_index":64,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Distro.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"miscellaneous/functions.html":{}}}],["parent",{"_index":833,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"miscellaneous/functions.html":{}}}],["parsed",{"_index":3036,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parses",{"_index":651,"title":{},"body":{"classes/DateFormatter.html":{}}}],["particular",{"_index":3137,"title":{},"body":{"license.html":{}}}],["parts",{"_index":694,"title":{},"body":{"classes/DateFormatter.html":{}}}],["pass",{"_index":1709,"title":{},"body":{"components/LogInFormComponent.html":{},"miscellaneous/functions.html":{}}}],["pass).subscribe",{"_index":1716,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["password",{"_index":1647,"title":{},"body":{"components/LogInFormComponent.html":{},"additional-documentation/development-setup.html":{}}}],["password.invalid",{"_index":1753,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["password.touched",{"_index":1752,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["patch",{"_index":447,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["path",{"_index":483,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["pattern",{"_index":1684,"title":{},"body":{"components/LogInFormComponent.html":{},"components/ReplicateComponent.html":{}}}],["patternproperty",{"_index":1157,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["permission",{"_index":3099,"title":{},"body":{"license.html":{}}}],["permit",{"_index":3119,"title":{},"body":{"license.html":{}}}],["person",{"_index":3103,"title":{},"body":{"license.html":{}}}],["personal",{"_index":2890,"title":{},"body":{"contributing.html":{}}}],["persons",{"_index":3120,"title":{},"body":{"license.html":{}}}],["pipe",{"_index":2050,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["pipe(distinctuntilchanged",{"_index":1692,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["pipe(takeuntil(this.ngunsubscribe",{"_index":320,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["please",{"_index":1730,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{},"contributing.html":{},"additional-documentation/development-setup.html":{}}}],["port",{"_index":469,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["portion",{"_index":670,"title":{},"body":{"classes/DateFormatter.html":{}}}],["portions",{"_index":3127,"title":{},"body":{"license.html":{}}}],["power",{"_index":495,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["power_address",{"_index":893,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_id",{"_index":894,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_identity_file",{"_index":899,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_management_default_type",{"_index":2818,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["power_options",{"_index":898,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_pass",{"_index":895,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_type",{"_index":896,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["power_user",{"_index":897,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["ppc",{"_index":1126,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ppc64",{"_index":1127,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ppc64el",{"_index":1129,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["ppc64le",{"_index":1128,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["pre",{"_index":763,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["prefix",{"_index":735,"title":{},"body":{"classes/DateFormatter.html":{}}}],["prerequisites",{"_index":3045,"title":{},"body":{"index.html":{}}}],["prev_page",{"_index":503,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["prior",{"_index":3177,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["priority",{"_index":918,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["private",{"_index":11,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["problem",{"_index":3167,"title":{},"body":{"miscellaneous/variables.html":{}}}],["processing",{"_index":3168,"title":{},"body":{"miscellaneous/variables.html":{}}}],["prod",{"_index":3078,"title":{},"body":{"index.html":{}}}],["production",{"_index":3080,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":497,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/SnippetEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["profile_patterns",{"_index":471,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["profileautoinstallmeta",{"_index":2122,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilebootfiles",{"_index":2125,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profileeditcomponent",{"_index":227,"title":{"components/ProfileEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["profilefetchablefiles",{"_index":2126,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profileformgroup",{"_index":2118,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilehandle",{"_index":2223,"title":{},"body":{"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{}}}],["profilekerneloptions",{"_index":2123,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilekerneloptionspost",{"_index":2124,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profilemgmtparameters",{"_index":2127,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profileoverviewcomponent",{"_index":228,"title":{"components/ProfileOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["profileowners",{"_index":2121,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["profiles",{"_index":455,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"injectables/GetObjService.html":{},"interfaces/InstallationStatus.html":{},"components/ManageMenuComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["profiletemplatefiles",{"_index":2128,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["project",{"_index":3060,"title":{},"body":{"index.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["projects",{"_index":3049,"title":{},"body":{"index.html":{}}}],["projects/.../constants.ts",{"_index":3161,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../deserializer.ts",{"_index":2994,"title":{},"body":{"miscellaneous/functions.html":{}}}],["projects/.../environment.prod.ts",{"_index":3165,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../environment.ts",{"_index":3166,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../lib.config.ts",{"_index":3163,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../serializer.ts",{"_index":2993,"title":{},"body":{"miscellaneous/functions.html":{}}}],["projects/.../settings.ts",{"_index":3159,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["projects/.../typescript",{"_index":3162,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../user.service.ts",{"_index":3164,"title":{},"body":{"miscellaneous/variables.html":{}}}],["projects/.../xmlrpc",{"_index":3158,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["projects/cobbler",{"_index":142,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["projects/typescript",{"_index":6,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["promise",{"_index":393,"title":{},"body":{"classes/AppPage.html":{}}}],["properties",{"_index":10,"title":{"properties.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"properties.html":{}}}],["protected",{"_index":1560,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["protractor",{"_index":396,"title":{},"body":{"classes/AppPage.html":{},"index.html":{}}}],["provide",{"_index":1545,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["provided",{"_index":3128,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":99,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{}}}],["providers",{"_index":1544,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["provides",{"_index":1722,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["proxies",{"_index":2819,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["proxy",{"_index":856,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["proxy.conf.json",{"_index":3254,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["proxy_url_ext",{"_index":2820,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["proxy_url_int",{"_index":2821,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["prune",{"_index":478,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["public",{"_index":539,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["publish",{"_index":3113,"title":{},"body":{"license.html":{}}}],["puppet_auto_setup",{"_index":2822,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppet_parameterized_classes",{"_index":2823,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppet_server",{"_index":2824,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppet_version",{"_index":2825,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["puppetca_path",{"_index":2826,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["purpose",{"_index":3138,"title":{},"body":{"license.html":{}}}],["pwd}:/code",{"_index":3212,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["pxe",{"_index":1139,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["pxe_just_once",{"_index":2827,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["random",{"_index":3258,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["reactiveformsmodule",{"_index":533,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["read",{"_index":336,"title":{},"body":{"components/AppEventsComponent.html":{},"additional-documentation/development-setup.html":{}}}],["read_autoinstall_snippet(this.name",{"_index":2528,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["read_autoinstall_template(this.name",{"_index":2659,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["readbywho",{"_index":295,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["readonly",{"_index":13,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{}}}],["real",{"_index":909,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/LogInFormComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["recent",{"_index":2573,"title":{},"body":{"components/StatusComponent.html":{}}}],["redhat",{"_index":1104,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["redhat_management_key",{"_index":834,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["redhat_management_permissive",{"_index":2829,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["redhat_management_server",{"_index":2830,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["redhat|debian|ubuntu|suse|vmware|freebsd|xen|unix|windows|powerkvm|generic",{"_index":1158,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["reference",{"_index":3093,"title":{},"body":{"index.html":{}}}],["referenced",{"_index":1153,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["refresh",{"_index":630,"title":{},"body":{"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["refreshdata",{"_index":947,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["regexp",{"_index":680,"title":{},"body":{"classes/DateFormatter.html":{}}}],["register_new_installs",{"_index":2831,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["registeronchange",{"_index":1566,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeronchange(fn",{"_index":1582,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registerontouched",{"_index":1567,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registerontouched(fn",{"_index":1585,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeronvalidatorchange",{"_index":1568,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeronvalidatorchange(fn",{"_index":1587,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["registeroptions",{"_index":496,"title":{"interfaces/RegisterOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["regular",{"_index":690,"title":{},"body":{"classes/DateFormatter.html":{}}}],["release",{"_index":3227,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["release33",{"_index":3238,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["reload",{"_index":3057,"title":{},"body":{"index.html":{}}}],["remote",{"_index":1100,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["remote_boot_initrd",{"_index":835,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remote_boot_kernel",{"_index":836,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remote_grub_initrd",{"_index":837,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remote_grub_kernel",{"_index":838,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["remove",{"_index":2329,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["remove_autoinstall_snippet(name",{"_index":2549,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["remove_autoinstall_snippet(this.name",{"_index":2532,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["remove_autoinstall_template(name",{"_index":2670,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["remove_autoinstall_template(this.name",{"_index":2661,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["remove_distro(name",{"_index":1207,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/ImageOverviewComponent.html":{}}}],["remove_distro(this.name",{"_index":1065,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["remove_file(name",{"_index":1322,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["remove_file(this.name",{"_index":1298,"title":{},"body":{"components/FileEditComponent.html":{}}}],["remove_image(this.name",{"_index":1464,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["remove_mgmtclass(name",{"_index":1870,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["remove_mgmtclass(this.name",{"_index":1846,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["remove_old_puppet_certs_automatically",{"_index":2832,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["remove_package(name",{"_index":2114,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["remove_package(this.name",{"_index":2098,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["remove_profile(name",{"_index":2242,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["remove_profile(this.name",{"_index":2221,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["remove_repo(name",{"_index":2427,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["remove_repo(this.name",{"_index":2405,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["remove_system(name",{"_index":2650,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["removedistro",{"_index":948,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["removefile",{"_index":1265,"title":{},"body":{"components/FileEditComponent.html":{}}}],["removegroup",{"_index":441,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["removeimage",{"_index":1417,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["removemanagementclass",{"_index":1803,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["removenewkeyvaluefg",{"_index":2587,"title":{},"body":{"components/SyncComponent.html":{}}}],["removenewkeyvaluefg(index",{"_index":2596,"title":{},"body":{"components/SyncComponent.html":{}}}],["removenewrepofg",{"_index":2288,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["removenewrepofg(index",{"_index":2295,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["removepackage",{"_index":2059,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["removeprofile",{"_index":2120,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["removerepository",{"_index":2338,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["removesnippet",{"_index":2516,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["removetemplate",{"_index":2657,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["removeuser",{"_index":442,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["rename",{"_index":795,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["rename'},{'name",{"_index":191,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["rename.component",{"_index":1201,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["rename.component.html",{"_index":796,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["rename.component.scss",{"_index":797,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{}}}],["rename.component.ts",{"_index":794,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"coverage.html":{}}}],["rename.component.ts:40",{"_index":802,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename.component.ts:41",{"_index":799,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename.component.ts:43",{"_index":801,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename.component.ts:45",{"_index":800,"title":{},"body":{"components/DialogItemRenameComponent.html":{}}}],["rename/dialog",{"_index":793,"title":{},"body":{"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"coverage.html":{}}}],["rename_distro(distrohandle",{"_index":1206,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["rename_file(filehandle",{"_index":1321,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["rename_image(imagehandle",{"_index":1488,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["rename_mgmtclass",{"_index":1869,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["rename_package",{"_index":2113,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["rename_profile",{"_index":2241,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["rename_repo(repohandle",{"_index":2426,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["rename_system(systemhandle",{"_index":2649,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["renamedistro",{"_index":1182,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["renamedistro(uid",{"_index":1190,"title":{},"body":{"components/DistrosOverviewComponent.html":{}}}],["renamefile",{"_index":1306,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["renamefile(uid",{"_index":1312,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["renameimage",{"_index":1472,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["renameimage(uid",{"_index":1479,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["renamemanagementclass",{"_index":1854,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["renamemanagementclass(uid",{"_index":1861,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["renamepackage",{"_index":2104,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["renamepackage(uid",{"_index":2109,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["renameprofile",{"_index":2233,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["renameprofile(uid",{"_index":2237,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["renamerepository",{"_index":2417,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["renamerepository(uid",{"_index":2421,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["renamesystem",{"_index":2639,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["renamesystem(uid",{"_index":2643,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["repeat",{"_index":2011,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["replicate",{"_index":597,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManageMenuComponent.html":{},"components/ReplicateComponent.html":{}}}],["replicate'},{'name",{"_index":230,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["replicate.component.html",{"_index":2247,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["replicate.component.scss",{"_index":2248,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["replicate_repo_rsync_options",{"_index":2833,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["replicate_rsync_options",{"_index":2834,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["replicatecomponent",{"_index":229,"title":{"components/ReplicateComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["replicateformgroup",{"_index":2249,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["replicateoptions",{"_index":2260,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["repo",{"_index":234,"title":{"interfaces/Repo.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"index.html":{}}}],["repo_patterns",{"_index":473,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["repohandle",{"_index":2425,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["reponame",{"_index":2302,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reponames",{"_index":2316,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reponames.push(control.value.reponame",{"_index":2318,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reportprogress",{"_index":124,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["repos",{"_index":491,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["repos_enabled",{"_index":888,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["repositories",{"_index":2324,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/RepositoryOverviewComponent.html":{},"additional-documentation/development-setup.html":{}}}],["repository",{"_index":1320,"title":{},"body":{"components/FileOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"additional-documentation/development-setup.html":{}}}],["repositoryarrayfgcontrols",{"_index":2291,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["repositoryarrayfgcontrols.length",{"_index":2325,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["repositoryeditcomponent",{"_index":231,"title":{"components/RepositoryEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["repositoryformarray",{"_index":2285,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["repositoryformgroup",{"_index":2335,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["repositoryhandle",{"_index":2407,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["repositoryoverviewcomponent",{"_index":232,"title":{"components/RepositoryOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["repositoryowners",{"_index":2340,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["repositoryrsyncopts",{"_index":2342,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["repositoryyumopts",{"_index":2341,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["reposync",{"_index":1787,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["reposync_flags",{"_index":2835,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["reposync_rsync_flags",{"_index":2836,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["reposynccomponent",{"_index":233,"title":{"components/RepoSyncComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["reposyncformgroup",{"_index":2286,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposyncformgroup.controls.reponame.controls[i].haserror(\"required",{"_index":2330,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposyncnofail",{"_index":2304,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposyncoptions",{"_index":2319,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["reposynctries",{"_index":2305,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["representation",{"_index":705,"title":{},"body":{"classes/DateFormatter.html":{}}}],["request",{"_index":3246,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["required",{"_index":578,"title":{},"body":{"components/BuildISOComponent.html":{},"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["requirements",{"_index":733,"title":{},"body":{"classes/DateFormatter.html":{},"additional-documentation/development-setup.html":{}}}],["resources",{"_index":1368,"title":{},"body":{"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{}}}],["response",{"_index":3022,"title":{},"body":{"miscellaneous/functions.html":{}}}],["responsetype",{"_index":127,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["restart_dhcp",{"_index":2837,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["restart_dns",{"_index":2838,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["restriction",{"_index":3108,"title":{},"body":{"license.html":{}}}],["result",{"_index":1947,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["resulting",{"_index":3252,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["results",{"_index":133,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{},"additional-documentation/development-setup.html":{}}}],["resultstructure",{"_index":1253,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["resultstructure.push",{"_index":1258,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["retrievedistros",{"_index":1183,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["retrievefiles",{"_index":1307,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["retrieveimages",{"_index":1473,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["retrievemanagementclasses",{"_index":1855,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["retrievepackages",{"_index":2105,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["retrieveprofiles",{"_index":2234,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["retrieverepositories",{"_index":2418,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["retrievesnippets",{"_index":2536,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["retrievesystems",{"_index":2640,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["return",{"_index":103,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/variables.html":{}}}],["returned",{"_index":1345,"title":{},"body":{"injectables/GetObjService.html":{}}}],["returns",{"_index":46,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["rhn",{"_index":1136,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["right",{"_index":1994,"title":{},"body":{"components/NavbarComponent.html":{}}}],["rights",{"_index":3111,"title":{},"body":{"license.html":{}}}],["rm",{"_index":3207,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["roles",{"_index":2686,"title":{},"body":{"injectables/UserService.html":{}}}],["root",{"_index":100,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["root'},{'name",{"_index":171,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["route",{"_index":961,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["router",{"_index":412,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/NavbarComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["router.url",{"_index":1795,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["routerlink",{"_index":1954,"title":{},"body":{"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/UnauthorizedComponent.html":{}}}],["routermodule",{"_index":1767,"title":{},"body":{"components/ManageMenuComponent.html":{}}}],["routeroutlet",{"_index":266,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/ManageMenuComponent.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{}}}],["row",{"_index":632,"title":{},"body":{"components/CheckSysComponent.html":{},"components/LogInFormComponent.html":{},"components/SettingsViewComponent.html":{}}}],["rpc",{"_index":70,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["rpm_list",{"_index":919,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["rsync",{"_index":1135,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/ImportDVDComponent.html":{}}}],["rsync_flags",{"_index":486,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["rsyncopts",{"_index":921,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["rsyncoptsresult",{"_index":2410,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["run",{"_index":596,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["run_install_triggers",{"_index":2839,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["runbuildiso",{"_index":540,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["runhardlink",{"_index":1406,"title":{},"body":{"components/HardlinkComponent.html":{}}}],["runimport",{"_index":1497,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["runmkloaders",{"_index":1880,"title":{},"body":{"components/MkloadersComponent.html":{}}}],["running",{"_index":3081,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["runreplicate",{"_index":2250,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["runreposync",{"_index":2289,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["runtime",{"_index":3220,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["runvalidateautoinstalls",{"_index":2863,"title":{},"body":{"components/ValidateAutoinstallsComponent.html":{}}}],["rxjs",{"_index":93,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"dependencies.html":{}}}],["rxjs/operators",{"_index":95,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["s390",{"_index":1130,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["s390x",{"_index":1131,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["samba_distro_share",{"_index":2857,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["sanitizer",{"_index":1964,"title":{},"body":{"components/NavbarComponent.html":{}}}],["sanitizer.bypasssecuritytrustresourceurl",{"_index":1980,"title":{},"body":{"components/NavbarComponent.html":{}}}],["save",{"_index":349,"title":{},"body":{"components/AppManageComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["save(index",{"_index":353,"title":{},"body":{"components/AppManageComponent.html":{}}}],["savedistro",{"_index":949,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["savefile",{"_index":1266,"title":{},"body":{"components/FileEditComponent.html":{}}}],["saveimage",{"_index":1418,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["saveobj",{"_index":347,"title":{},"body":{"components/AppManageComponent.html":{}}}],["savepackage",{"_index":2060,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["saveprofile",{"_index":1804,"title":{},"body":{"components/ManagementClassEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["saverepository",{"_index":2339,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["savesnippet",{"_index":2517,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["savetemplate",{"_index":2658,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["scaffolding",{"_index":3072,"title":{},"body":{"index.html":{}}}],["schema",{"_index":1145,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["schema.md",{"_index":1383,"title":{},"body":{"injectables/GetObjService.html":{}}}],["schoolguy",{"_index":2892,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["scm_push_script",{"_index":2843,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["scm_track_author",{"_index":2842,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["scm_track_enabled",{"_index":2840,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["scm_track_mode",{"_index":2841,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["script",{"_index":3213,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["search",{"_index":1951,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["see",{"_index":1379,"title":{},"body":{"injectables/GetObjService.html":{},"injectables/ItemSettingsService.html":{},"additional-documentation/development-setup.html":{}}}],["seen",{"_index":2579,"title":{},"body":{"components/StatusComponent.html":{},"additional-documentation/development-setup.html":{}}}],["seenstart",{"_index":523,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["seenstop",{"_index":524,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["select",{"_index":1889,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select'},{'name",{"_index":220,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["select.component",{"_index":1007,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["select.component.html",{"_index":1895,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.scss",{"_index":1896,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts",{"_index":1888,"title":{},"body":{"components/MultiSelectComponent.html":{},"coverage.html":{}}}],["select.component.ts:101",{"_index":1915,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:105",{"_index":1917,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:114",{"_index":1921,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:119",{"_index":1916,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:121",{"_index":1920,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:125",{"_index":1911,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:140",{"_index":1905,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:69",{"_index":1904,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:70",{"_index":1903,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:71",{"_index":1924,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:72",{"_index":1925,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:73",{"_index":1926,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:74",{"_index":1922,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:75",{"_index":1927,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:76",{"_index":1923,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:78",{"_index":1913,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:82",{"_index":1908,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:91",{"_index":1919,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select.component.ts:97",{"_index":1914,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["select/multi",{"_index":1006,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"coverage.html":{}}}],["selected",{"_index":372,"title":{},"body":{"components/AppManageComponent.html":{}}}],["selector",{"_index":145,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["sell",{"_index":3117,"title":{},"body":{"license.html":{}}}],["send",{"_index":76,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["separate",{"_index":3037,"title":{},"body":{"index.html":{}}}],["separator",{"_index":672,"title":{},"body":{"classes/DateFormatter.html":{}}}],["separators",{"_index":649,"title":{},"body":{"classes/DateFormatter.html":{}}}],["serial_baud_rate",{"_index":903,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["serial_device",{"_index":902,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["serializemethodcall",{"_index":88,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["serializemethodcall(method",{"_index":119,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["serializer",{"_index":89,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["serializer_pretty_json",{"_index":2844,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["serializevalue",{"_index":2967,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["serializevalue(value",{"_index":3018,"title":{},"body":{"miscellaneous/functions.html":{}}}],["serve",{"_index":3052,"title":{},"body":{"index.html":{},"additional-documentation/development-setup.html":{}}}],["server",{"_index":71,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"interfaces/Item.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{},"injectables/UserService.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["server(url",{"_index":2721,"title":{},"body":{"injectables/UserService.html":{}}}],["server.invalid",{"_index":1748,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["server.touched",{"_index":1747,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["server_prefilled",{"_index":1640,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["server_value",{"_index":2718,"title":{},"body":{"injectables/UserService.html":{}}}],["service",{"_index":40,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppManageComponent.html":{},"components/LogInFormComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"injectables/UserService.html":{}}}],["service.getitems",{"_index":364,"title":{},"body":{"components/AppManageComponent.html":{}}}],["service.name",{"_index":376,"title":{},"body":{"components/AppManageComponent.html":{}}}],["services/auth",{"_index":1679,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["services/get",{"_index":358,"title":{},"body":{"components/AppManageComponent.html":{}}}],["services/item",{"_index":2440,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["services/user.service",{"_index":560,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["serving",{"_index":3064,"title":{},"body":{"index.html":{}}}],["session",{"_index":1388,"title":{},"body":{"injectables/GetObjService.html":{},"components/LogInFormComponent.html":{}}}],["sessionitem",{"_index":1399,"title":{},"body":{"injectables/GetObjService.html":{}}}],["sessionlive",{"_index":423,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["set",{"_index":1396,"title":{},"body":{"injectables/GetObjService.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["setactive(bool",{"_index":2704,"title":{},"body":{"injectables/UserService.html":{}}}],["setbool",{"_index":409,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["setbool(login",{"_index":418,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["setdisabledstate",{"_index":1569,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["setdisabledstate(isdisabled",{"_index":1589,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["setformgroupdisabledstate",{"_index":1570,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["setformgroupdisabledstate(isdisabled",{"_index":1591,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["setname(item",{"_index":1343,"title":{},"body":{"injectables/GetObjService.html":{}}}],["sets",{"_index":1718,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["setserver(url",{"_index":2695,"title":{},"body":{"injectables/UserService.html":{}}}],["setting",{"_index":3192,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["settings",{"_index":237,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/typealiases.html":{}}}],["settings.service",{"_index":2441,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["settings.service.ts",{"_index":1522,"title":{},"body":{"injectables/ItemSettingsService.html":{},"coverage.html":{}}}],["settings.service.ts:11",{"_index":1527,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings.service.ts:13",{"_index":1531,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings.service.ts:19",{"_index":1528,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings.service.ts:23",{"_index":1530,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["settings:default_ownership",{"_index":1372,"title":{},"body":{"injectables/GetObjService.html":{}}}],["settings_data",{"_index":2454,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["settings_data.push",{"_index":2455,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["settingstablerowdata",{"_index":2429,"title":{"interfaces/SettingsTableRowData.html":{}},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["settingsviewcomponent",{"_index":236,"title":{"components/SettingsViewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["settoken(token",{"_index":2702,"title":{},"body":{"injectables/UserService.html":{}}}],["setup",{"_index":3174,"title":{"additional-documentation/development-setup.html":{}},"body":{"additional-documentation/development-setup.html":{}}}],["setusername(name",{"_index":2698,"title":{},"body":{"injectables/UserService.html":{}}}],["shall",{"_index":3124,"title":{},"body":{"license.html":{}}}],["short",{"_index":2576,"title":{},"body":{"components/StatusComponent.html":{}}}],["show",{"_index":339,"title":{},"body":{"components/AppEventsComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["showdistro",{"_index":1184,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{}}}],["showdistro(uid",{"_index":1193,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{}}}],["showimage",{"_index":1474,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["showimage(uid",{"_index":1482,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["showlogs",{"_index":281,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["showlogs(eventid",{"_index":288,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["showmanagementclass",{"_index":1856,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["showmanagementclass(uid",{"_index":1864,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["showpackage",{"_index":2106,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["showpackage(uid",{"_index":2110,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["showprofile",{"_index":2235,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["showprofile(uid",{"_index":2238,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["showrepository",{"_index":2419,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["showrepository(uid",{"_index":2422,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["showsnippet",{"_index":2537,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["showsnippet(name",{"_index":2543,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["showsystem",{"_index":2641,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["showsystem(uid",{"_index":2644,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["showtemplate",{"_index":2665,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["showtemplate(name",{"_index":2668,"title":{},"body":{"components/TemplateOverviewComponent.html":{}}}],["sign_puppet_certs_automatically",{"_index":2845,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["signal",{"_index":1658,"title":{},"body":{"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["signature_path",{"_index":2846,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["signature_url",{"_index":2847,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["signatures",{"_index":1113,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/ManageMenuComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["signatures'},{'name",{"_index":240,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["signatures.component.html",{"_index":2020,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["signatures.component.scss",{"_index":2021,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["signaturescomponent",{"_index":239,"title":{"components/SignaturesComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["size",{"_index":381,"title":{},"body":{"components/AppManageComponent.html":{},"components/SettingsViewComponent.html":{}}}],["skip",{"_index":3017,"title":{},"body":{"miscellaneous/functions.html":{}}}],["skipped",{"_index":3015,"title":{},"body":{"miscellaneous/functions.html":{}}}],["snippet",{"_index":2512,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{}}}],["snippeteditcomponent",{"_index":241,"title":{"components/SnippetEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["snippetformgroup",{"_index":2513,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["snippetoverviewcomponent",{"_index":242,"title":{"components/SnippetOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["snippets",{"_index":1349,"title":{},"body":{"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{},"components/SnippetOverviewComponent.html":{}}}],["software",{"_index":3105,"title":{},"body":{"license.html":{}}}],["sometimes",{"_index":3224,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["sort",{"_index":2452,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["source",{"_index":4,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"classes/AppPage.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"index.html":{}}}],["source_repos",{"_index":839,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["space",{"_index":762,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{},"injectables/GetObjService.html":{}}}],["spacer",{"_index":1992,"title":{},"body":{"components/NavbarComponent.html":{}}}],["span')).gettext",{"_index":400,"title":{},"body":{"classes/AppPage.html":{}}}],["specific",{"_index":2326,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{},"miscellaneous/functions.html":{},"additional-documentation/development-setup.html":{}}}],["specified",{"_index":72,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["spinner",{"_index":623,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["ssl",{"_index":2277,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["stackoverflow",{"_index":3259,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["stamp",{"_index":701,"title":{},"body":{"classes/DateFormatter.html":{}}}],["standalone",{"_index":147,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{}}}],["start",{"_index":2574,"title":{},"body":{"components/StatusComponent.html":{},"additional-documentation/development-setup.html":{}}}],["start_item",{"_index":508,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["started",{"_index":2884,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{"contributing.html":{}}}],["state",{"_index":293,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["statements",{"_index":2900,"title":{},"body":{"coverage.html":{}}}],["statetime",{"_index":294,"title":{},"body":{"components/AppEventsComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["static",{"_index":18,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"classes/DateFormatter.html":{},"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/LogInFormComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"classes/Utils.html":{}}}],["static_routes",{"_index":885,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["status",{"_index":900,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"components/ManageMenuComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/StatusComponent.html":{}}}],["status'},{'name",{"_index":244,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["status.component.html",{"_index":2551,"title":{},"body":{"components/StatusComponent.html":{}}}],["status.component.scss",{"_index":2552,"title":{},"body":{"components/StatusComponent.html":{}}}],["statuscomponent",{"_index":243,"title":{"components/StatusComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["steps",{"_index":3203,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["stop",{"_index":2577,"title":{},"body":{"components/StatusComponent.html":{}}}],["storage",{"_index":1719,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["stored",{"_index":3076,"title":{},"body":{"index.html":{}}}],["str",{"_index":1365,"title":{},"body":{"injectables/GetObjService.html":{}}}],["stream",{"_index":2981,"title":{},"body":{"dependencies.html":{}}}],["string",{"_index":63,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["strings",{"_index":644,"title":{},"body":{"classes/DateFormatter.html":{}}}],["structure",{"_index":1228,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"injectables/GetObjService.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["style",{"_index":2999,"title":{},"body":{"miscellaneous/functions.html":{}}}],["styles",{"_index":139,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["styleurl",{"_index":774,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["styleurls",{"_index":151,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"components/RepoSyncComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SyncComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["subject",{"_index":298,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{},"license.html":{}}}],["sublicense",{"_index":3115,"title":{},"body":{"license.html":{}}}],["subobject",{"_index":1098,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["subs",{"_index":1641,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["subscribe",{"_index":585,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["subscribe((data",{"_index":2453,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["subscribe((value",{"_index":321,"title":{},"body":{"components/AppEventsComponent.html":{},"components/NavbarComponent.html":{},"components/StatusComponent.html":{}}}],["subscribe((value1",{"_index":2054,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["subscription",{"_index":405,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{}}}],["substantial",{"_index":3126,"title":{},"body":{"license.html":{}}}],["supervisor.sh",{"_index":3216,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["supervisor.sherror",{"_index":3240,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["supervisor.shrelease33",{"_index":3237,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["supported",{"_index":1144,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["supported_arches",{"_index":1114,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["supported_repo_breeds",{"_index":1115,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["supports",{"_index":640,"title":{},"body":{"classes/DateFormatter.html":{}}}],["switch",{"_index":3225,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["sync",{"_index":1786,"title":{},"body":{"components/ManageMenuComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["sync'},{'name",{"_index":235,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["sync.component.css",{"_index":2283,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["sync.component.html",{"_index":2284,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["sync.component.ts",{"_index":2280,"title":{},"body":{"components/RepoSyncComponent.html":{},"coverage.html":{}}}],["sync.component.ts:57",{"_index":2299,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:60",{"_index":2298,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:61",{"_index":2301,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:63",{"_index":2306,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:67",{"_index":2292,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:69",{"_index":2307,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:74",{"_index":2294,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:79",{"_index":2309,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:85",{"_index":2311,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:89",{"_index":2293,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:93",{"_index":2296,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync.component.ts:97",{"_index":2297,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["sync/repo",{"_index":2279,"title":{},"body":{"components/RepoSyncComponent.html":{},"coverage.html":{}}}],["sync_all",{"_index":480,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["synccomponent",{"_index":245,"title":{"components/SyncComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["syncfullsubmit",{"_index":2588,"title":{},"body":{"components/SyncComponent.html":{}}}],["syncing",{"_index":2331,"title":{},"body":{"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["syncoptions",{"_index":462,"title":{"interfaces/SyncOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["syncsystemsoptions",{"_index":466,"title":{"interfaces/SyncSystemsOptions.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["syncsystemssubmit",{"_index":2589,"title":{},"body":{"components/SyncComponent.html":{}}}],["sys",{"_index":606,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys'},{'name",{"_index":182,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["sys.component.html",{"_index":612,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.scss",{"_index":611,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts",{"_index":605,"title":{},"body":{"components/CheckSysComponent.html":{},"coverage.html":{}}}],["sys.component.ts:34",{"_index":620,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:37",{"_index":619,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:38",{"_index":615,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:41",{"_index":621,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:46",{"_index":617,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:50",{"_index":616,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys.component.ts:55",{"_index":618,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["sys/check",{"_index":604,"title":{},"body":{"components/CheckSysComponent.html":{},"coverage.html":{}}}],["syslinux_dir",{"_index":2760,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["syslinux_memdisk_folder",{"_index":2761,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["syslinux_pxelinux_folder",{"_index":2762,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["system",{"_index":886,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"coverage.html":{},"additional-documentation/development-setup.html":{}}}],["system_patterns",{"_index":472,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["systemeditcomponent",{"_index":246,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["systemhandle",{"_index":2648,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["systemname",{"_index":2615,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemnames",{"_index":2629,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemnames.push(control.value.systemname",{"_index":2630,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemoverviewcomponent",{"_index":247,"title":{"components/SystemOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["systems",{"_index":456,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"injectables/GetObjService.html":{},"interfaces/InstallationStatus.html":{},"components/ManageMenuComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/Version.html":{}}}],["systemssync",{"_index":2585,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemssync.controls.keyvalue.controls[i].haserror(\"required",{"_index":2636,"title":{},"body":{"components/SyncComponent.html":{}}}],["systemssyncverbose",{"_index":2609,"title":{},"body":{"components/SyncComponent.html":{}}}],["t",{"_index":3206,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["table",{"_index":316,"title":{},"body":{"components/AppEventsComponent.html":{},"components/CheckSysComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateOverviewComponent.html":{},"coverage.html":{}}}],["tablerow",{"_index":2018,"title":{"interfaces/TableRow.html":{}},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"coverage.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":2970,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2227,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["tail",{"_index":3218,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["take",{"_index":2012,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["take(1",{"_index":2053,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["takeuntil",{"_index":314,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["talks",{"_index":1705,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["template",{"_index":138,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/Item.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"components/NotFoundComponent.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["template_files",{"_index":840,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/ProfileEditComponent.html":{},"interfaces/Repo.html":{}}}],["template_files_inherited",{"_index":982,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["templateeditcomponent",{"_index":248,"title":{"components/TemplateEditComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["templatefilesresult",{"_index":1092,"title":{},"body":{"components/DistroEditComponent.html":{},"components/ProfileEditComponent.html":{}}}],["templateformgroup",{"_index":2654,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["templateoverviewcomponent",{"_index":249,"title":{"components/TemplateOverviewComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["templates",{"_index":1348,"title":{},"body":{"injectables/GetObjService.html":{},"components/ManageMenuComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["templateurl",{"_index":153,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["test",{"_index":3084,"title":{},"body":{"index.html":{}}}],["testing",{"_index":3250,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["tests",{"_index":3083,"title":{},"body":{"index.html":{}}}],["text",{"_index":98,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["text/html').documentelement",{"_index":2732,"title":{},"body":{"classes/Utils.html":{}}}],["text/xml",{"_index":122,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["textcontent",{"_index":2733,"title":{},"body":{"classes/Utils.html":{}}}],["tftpboot_location",{"_index":2848,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["thanks",{"_index":816,"title":{},"body":{"components/DialogTextInputComponent.html":{}}}],["things",{"_index":3175,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["this._active",{"_index":2714,"title":{},"body":{"injectables/UserService.html":{}}}],["this._formbuilder.group",{"_index":548,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SyncComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this._roles",{"_index":2717,"title":{},"body":{"injectables/UserService.html":{}}}],["this._snackbar.open",{"_index":1067,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this._snackbar.open('not",{"_index":1072,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this._snackbar.open('please",{"_index":575,"title":{},"body":{"components/BuildISOComponent.html":{},"components/ImportDVDComponent.html":{},"components/SyncComponent.html":{}}}],["this._snackbar.open(error.message",{"_index":1989,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this._snackbar.open(utils.tohtml(error.message",{"_index":590,"title":{},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this._token",{"_index":2713,"title":{},"body":{"injectables/UserService.html":{}}}],["this._transformer",{"_index":1245,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["this._username",{"_index":2712,"title":{},"body":{"injectables/UserService.html":{}}}],["this.autho.authorized",{"_index":1984,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.autho.changeauthorizedstate(false",{"_index":1990,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.autho.changeauthorizedstate(true",{"_index":1717,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.autho.server",{"_index":1711,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.autho.token",{"_index":1721,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["this.autho.username",{"_index":1720,"title":{},"body":{"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{}}}],["this.authorized",{"_index":2715,"title":{},"body":{"injectables/UserService.html":{}}}],["this.authorized.next(authorized",{"_index":2726,"title":{},"body":{"injectables/UserService.html":{}}}],["this.buildformgroup",{"_index":1620,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.buildformgroup(obj",{"_index":1935,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.buildformgroup(this.multiselectoptions",{"_index":1929,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.buildisoformgroup.controls.airgapped.value",{"_index":570,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.buildisodir.value",{"_index":567,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.distro.value",{"_index":568,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.excludedns.value",{"_index":572,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.iso.value",{"_index":564,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.profiles.value",{"_index":565,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.source.value",{"_index":571,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.standalone.value",{"_index":569,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.systems.value",{"_index":566,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.controls.xorrisofsopts.value",{"_index":573,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.buildisoformgroup.invalid",{"_index":574,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["this.checksession",{"_index":424,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.cobbler_version",{"_index":1987,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.cobblerapiservice",{"_index":318,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this.cobblerapiservice.get_settings(this.autho.token",{"_index":1534,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["this.cobblerapiservice.get_settings(this.autho.token).pipe",{"_index":1535,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["this.cobblerapiservice.login(user",{"_index":1715,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.cobblerapiservice.reconfigureservice(new",{"_index":1713,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.cobblerevents.data",{"_index":322,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["this.columns.map((c",{"_index":2028,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["this.content",{"_index":2529,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.current_objs",{"_index":367,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.current_objs.length",{"_index":382,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.currentitem",{"_index":369,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.currentitem.asobservable",{"_index":1336,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.currentitem.next(item",{"_index":1400,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.currentobjs",{"_index":363,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.currentobjs[index",{"_index":383,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.data",{"_index":628,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["this.data.data",{"_index":2457,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.filter",{"_index":2467,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.paginator",{"_index":2459,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.paginator.firstpage",{"_index":2469,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.data.sort",{"_index":2461,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["this.datasource",{"_index":1204,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.datasource.data",{"_index":1259,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["this.datasource.filter",{"_index":2567,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.datasource.paginator",{"_index":2565,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.datasource.paginator.firstpage",{"_index":2568,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.datasource.sort",{"_index":2566,"title":{},"body":{"components/StatusComponent.html":{}}}],["this.dialog.open(dialogboxtextconfirmcomponent",{"_index":327,"title":{},"body":{"components/AppEventsComponent.html":{}}}],["this.dialog.open(dialogitemcopycomponent",{"_index":1075,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{}}}],["this.dialog.open(dialogitemrenamecomponent",{"_index":1205,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["this.dialog.open(dialogtextinputcomponent",{"_index":1944,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.dialogref.close",{"_index":790,"title":{},"body":{"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{}}}],["this.distro",{"_index":1012,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.autoinstall_meta",{"_index":1050,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.boot_files",{"_index":1087,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.boot_loaders",{"_index":1042,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.fetchable_files",{"_index":1053,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.is_subobject",{"_index":1023,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.kernel_options",{"_index":1056,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.kernel_options_post",{"_index":1059,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.os_version",{"_index":1039,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.owners",{"_index":1046,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.redhat_management_key",{"_index":1041,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_boot_initrd",{"_index":1031,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_boot_kernel",{"_index":1033,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_grub_initrd",{"_index":1035,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.remote_grub_kernel",{"_index":1037,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distro.template_files",{"_index":1062,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.arch.setvalue(this.distro.arch",{"_index":1021,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.autoinstall_meta.setvalue",{"_index":1052,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.autoinstall_meta_inherited.setvalue",{"_index":1051,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.boot_loaders.setvalue",{"_index":1045,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.bootloader_inherited.setvalue(false",{"_index":1044,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.bootloader_inherited.setvalue(true",{"_index":1043,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.breed.setvalue(this.distro.breed",{"_index":1026,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.comment.setvalue(this.distro.comment",{"_index":1027,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.ctime.setvalue",{"_index":1018,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.depth.setvalue(this.distro.depth",{"_index":1020,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.fetchable_files.setvalue",{"_index":1055,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.fetchable_files_inherited.setvalue",{"_index":1054,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.initrd.setvalue(this.distro.initrd",{"_index":1029,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.is_subobject.setvalue",{"_index":1022,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel.setvalue(this.distro.kernel",{"_index":1028,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options.setvalue",{"_index":1058,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options_inherited.setvalue",{"_index":1057,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options_post.setvalue",{"_index":1061,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.kernel_options_post_inherited.setvalue",{"_index":1060,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.mtime.setvalue",{"_index":1015,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.name.setvalue(this.distro.name",{"_index":1013,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.os_version.setvalue",{"_index":1038,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.owners.setvalue(this.distro.owners",{"_index":1049,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.owners_inherited.setvalue(false",{"_index":1048,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.owners_inherited.setvalue(true",{"_index":1047,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.redhat_management_key.setvalue",{"_index":1040,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_boot_initrd.setvalue",{"_index":1030,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_boot_kernel.setvalue",{"_index":1032,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_grub_initrd.setvalue",{"_index":1034,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.remote_grub_kernel.setvalue",{"_index":1036,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.template_files.setvalue",{"_index":1064,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.template_files_inherited.setvalue",{"_index":1063,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.tree_build_time.setvalue",{"_index":1024,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.distroformgroup.controls.uid.setvalue(this.distro.uid",{"_index":1014,"title":{},"body":{"components/DistroEditComponent.html":{}}}],["this.errmsgpassword.set('password",{"_index":1746,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsgserver.set",{"_index":1735,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsgserver.set('server",{"_index":1733,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsguser.set",{"_index":1744,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsguser.set('username",{"_index":1738,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.errmsguser.set(`username",{"_index":1740,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.file",{"_index":1281,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.file.is_subobject",{"_index":1290,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.action.setvalue(this.file.action",{"_index":1292,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.comment.setvalue(this.file.comment",{"_index":1291,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.ctime.setvalue",{"_index":1286,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.depth.setvalue(this.file.depth",{"_index":1288,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.group.setvalue(this.file.group",{"_index":1293,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.is_subobject.setvalue",{"_index":1289,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.mode.setvalue(this.file.mode",{"_index":1294,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.mtime.setvalue",{"_index":1284,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.name.setvalue(this.file.name",{"_index":1282,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.owner.setvalue(this.file.owner",{"_index":1295,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.path.setvalue(this.file.path",{"_index":1296,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.template.setvalue(this.file.template",{"_index":1297,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fileformgroup.controls.uid.setvalue(this.file.uid",{"_index":1283,"title":{},"body":{"components/FileEditComponent.html":{}}}],["this.fullsync.controls.fullsyncdhcp.reset(false",{"_index":2622,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncdhcp.value",{"_index":2619,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncdns.reset(false",{"_index":2623,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncdns.value",{"_index":2620,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncverbose.reset(false",{"_index":2624,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.fullsync.controls.fullsyncverbose.value",{"_index":2621,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.generatesignatureuidata",{"_index":2033,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["this.guard.setbool(false",{"_index":1991,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.guard.setbool(true",{"_index":1727,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.headers",{"_index":113,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.http",{"_index":117,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.http.post(this.url.tostring",{"_index":129,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.image",{"_index":1433,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.autoinstall",{"_index":1449,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.boot_loaders",{"_index":1456,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.image_type",{"_index":1453,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.is_subobject",{"_index":1444,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.network_count",{"_index":1442,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.os_version",{"_index":1455,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.image.owners",{"_index":1460,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.arch.setvalue(this.image.arch",{"_index":1447,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.autoinstall.setvalue",{"_index":1448,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.boot_loaders.setvalue",{"_index":1459,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.bootloader_inherited.setvalue(false",{"_index":1458,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.bootloader_inherited.setvalue(true",{"_index":1457,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.breed.setvalue(this.image.breed",{"_index":1450,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.comment.setvalue(this.image.comment",{"_index":1445,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.ctime.setvalue",{"_index":1438,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.depth.setvalue(this.image.depth",{"_index":1440,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.file.setvalue(this.image.file",{"_index":1451,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.image_type.setvalue",{"_index":1452,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.is_subobject.setvalue",{"_index":1443,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.mtime.setvalue",{"_index":1436,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.name.setvalue(this.image.name",{"_index":1434,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.network_count.setvalue",{"_index":1441,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.os_version.setvalue",{"_index":1454,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.owners.setvalue(this.image.owners",{"_index":1463,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.owners_inherited.setvalue(false",{"_index":1462,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.owners_inherited.setvalue(true",{"_index":1461,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.parent.setvalue(this.image.parent",{"_index":1446,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.imageformgroup.controls.uid.setvalue(this.image.uid",{"_index":1435,"title":{},"body":{"components/ImageEditComponent.html":{}}}],["this.importformgroup.controls.arch.value",{"_index":1511,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.autoinstall_file.value",{"_index":1509,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.available_as.value",{"_index":1508,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.breed.value",{"_index":1512,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.name.value",{"_index":1507,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.os_version.value",{"_index":1513,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.path.value",{"_index":1506,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.controls.rsync_flags.value",{"_index":1510,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.importformgroup.invalid",{"_index":1514,"title":{},"body":{"components/ImportDVDComponent.html":{}}}],["this.isdisabled",{"_index":1614,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["this.isloading",{"_index":626,"title":{},"body":{"components/CheckSysComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["this.islogged",{"_index":1985,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.keyorder",{"_index":1619,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyorderformgroup.addcontrol",{"_index":1623,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyorderformgroup.disable",{"_index":1616,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyorderformgroup.enable",{"_index":1617,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyvaluefa",{"_index":2608,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvaluefa.controls",{"_index":2616,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvaluefa.push(this.newkeyvaluefg",{"_index":2617,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvaluefa.removeat(index",{"_index":2618,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.keyvalueoptions",{"_index":1618,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.keyvalueoptions[key",{"_index":1622,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.loggedin",{"_index":425,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.login_form.controls['password'].haserror('required",{"_index":1745,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['password'].statuschanges",{"_index":1697,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['password'].valuechanges",{"_index":1698,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].haserror('pattern",{"_index":1734,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].haserror('required",{"_index":1732,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].statuschanges",{"_index":1690,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['server'].valuechanges",{"_index":1691,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].errors.minlength.requiredlength",{"_index":1742,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].haserror('minlength",{"_index":1739,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].haserror('required",{"_index":1736,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].statuschanges",{"_index":1694,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].touched",{"_index":1737,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.controls['username'].valuechanges",{"_index":1695,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('password",{"_index":1703,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('server",{"_index":1701,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('server').setvalue(this.server_prefilled",{"_index":1688,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.get('username",{"_index":1702,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.login_form.value",{"_index":1707,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.managementclass",{"_index":1818,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.class_name",{"_index":1836,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.comment",{"_index":1834,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.depth",{"_index":1828,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.files",{"_index":1843,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.is_definition",{"_index":1832,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.is_subobject",{"_index":1830,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.name",{"_index":1820,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.owners",{"_index":1837,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.packages",{"_index":1845,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.params",{"_index":1841,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclass.uid",{"_index":1822,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.class_name.setvalue",{"_index":1835,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.comment.setvalue",{"_index":1833,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.ctime.setvalue",{"_index":1825,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.depth.setvalue",{"_index":1827,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.files.setvalue",{"_index":1842,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.is_definition.setvalue",{"_index":1831,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.is_subobject.setvalue",{"_index":1829,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.mtime.setvalue",{"_index":1823,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.name.setvalue",{"_index":1819,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.owners.setvalue",{"_index":1839,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.owners_inherited.setvalue",{"_index":1838,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.packages.setvalue",{"_index":1844,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.params.setvalue",{"_index":1840,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.managementclassformgroup.controls.uid.setvalue",{"_index":1821,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.matselectoptionsformgroup.addcontrol",{"_index":1931,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.disable",{"_index":1933,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.enable",{"_index":1934,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.get(key",{"_index":1938,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.matselectoptionsformgroup.get(value).setvalue(checked",{"_index":1932,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.message",{"_index":1729,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.mockobjname",{"_index":1334,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.mockvalues",{"_index":1395,"title":{},"body":{"injectables/GetObjService.html":{}}}],["this.multiselectoptions.push(result",{"_index":1949,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.name",{"_index":1008,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.ngunsubscribe.complete",{"_index":324,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this.ngunsubscribe.next",{"_index":323,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["this.onchange",{"_index":1612,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["this.onchange(options",{"_index":1943,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.ontouched",{"_index":1613,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["this.ontouched(options",{"_index":1942,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.optionsignal",{"_index":1945,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.optionsignal.set(result",{"_index":1948,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.package",{"_index":2073,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.installer",{"_index":2092,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.is_subobject",{"_index":2082,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.owners",{"_index":2094,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.package.template",{"_index":2089,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.action.setvalue(this.package.action",{"_index":2090,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.comment.setvalue(this.package.comment",{"_index":2083,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.ctime.setvalue",{"_index":2078,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.depth.setvalue(this.package.depth",{"_index":2080,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.group.setvalue(this.package.group",{"_index":2086,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.installer.setvalue",{"_index":2091,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.is_subobject.setvalue",{"_index":2081,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.mode.setvalue(this.package.mode",{"_index":2084,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.mtime.setvalue",{"_index":2076,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.name.setvalue(this.package.name",{"_index":2074,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owner.setvalue(this.package.owner",{"_index":2085,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owners.setvalue(this.package.owners",{"_index":2097,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owners_inherited.setvalue(false",{"_index":2096,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.owners_inherited.setvalue(true",{"_index":2095,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.path.setvalue(this.package.path",{"_index":2087,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.template.setvalue",{"_index":2088,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.uid.setvalue(this.package.uid",{"_index":2075,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.packageformgroup.controls.version.setvalue(this.package.version",{"_index":2093,"title":{},"body":{"components/PackageEditComponent.html":{}}}],["this.paginator",{"_index":2460,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["this.profile",{"_index":2155,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.autoinstall",{"_index":2169,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.autoinstall_meta",{"_index":2196,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.boot_files",{"_index":2199,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.boot_loaders",{"_index":2188,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.dhcp_tag",{"_index":2171,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.fetchable_files",{"_index":2203,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.filename",{"_index":2179,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.is_subobject",{"_index":2164,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.kernel_options",{"_index":2206,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.kernel_options_post",{"_index":2209,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.mgmt_classes",{"_index":2212,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.mgmt_parameters",{"_index":2215,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.name_servers",{"_index":2184,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.name_servers_search",{"_index":2186,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.next_server_v4",{"_index":2175,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.next_server_v6",{"_index":2177,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.owners",{"_index":2192,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.redhat_management_key",{"_index":2167,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profile.template_files",{"_index":2218,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.autoinstall.setvalue",{"_index":2168,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.autoinstall_meta.setvalue",{"_index":2198,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.autoinstall_meta_inherited.setvalue",{"_index":2197,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_files.setvalue",{"_index":2202,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_files_inherited.setvalue(false",{"_index":2201,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_files_inherited.setvalue(true",{"_index":2200,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.boot_loaders.setvalue",{"_index":2191,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.bootloader_inherited.setvalue(false",{"_index":2190,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.bootloader_inherited.setvalue(true",{"_index":2189,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.comment.setvalue(this.profile.comment",{"_index":2165,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.ctime.setvalue",{"_index":2160,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.depth.setvalue(this.profile.depth",{"_index":2162,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.dhcp_tag.setvalue",{"_index":2170,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.distro.setvalue(this.profile.distro",{"_index":2172,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.fetchable_files.setvalue",{"_index":2205,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.fetchable_files_inherited.setvalue",{"_index":2204,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.filename.setvalue",{"_index":2178,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.is_subobject.setvalue",{"_index":2163,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options.setvalue",{"_index":2208,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options_inherited.setvalue",{"_index":2207,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options_post.setvalue",{"_index":2211,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.kernel_options_post_inherited.setvalue",{"_index":2210,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.menu.setvalue(this.profile.menu",{"_index":2173,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_classes.setvalue",{"_index":2214,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_classes_inherited.setvalue",{"_index":2213,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_parameters.setvalue",{"_index":2217,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mgmt_parameters_inherited.setvalue",{"_index":2216,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.mtime.setvalue",{"_index":2158,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.name.setvalue(this.profile.name",{"_index":2156,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.name_servers.setvalue",{"_index":2183,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.name_servers_search.setvalue",{"_index":2185,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.next_server_v4.setvalue",{"_index":2174,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.next_server_v6.setvalue",{"_index":2176,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.owners.setvalue(this.profile.owners",{"_index":2195,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.owners_inherited.setvalue(false",{"_index":2194,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.owners_inherited.setvalue(true",{"_index":2193,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.parent.setvalue(this.profile.parent",{"_index":2180,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.proxy.setvalue(this.profile.proxy",{"_index":2181,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.redhat_management_key.setvalue",{"_index":2166,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.repos.setvalue(this.profile.repos",{"_index":2187,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.server.setvalue(this.profile.server",{"_index":2182,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.template_files.setvalue",{"_index":2220,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.template_files_inherited.setvalue",{"_index":2219,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.profileformgroup.controls.uid.setvalue(this.profile.uid",{"_index":2157,"title":{},"body":{"components/ProfileEditComponent.html":{}}}],["this.refreshdata",{"_index":1010,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.replicateformgroup.controls.distro_patterns.value",{"_index":2263,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.file_patterns.value",{"_index":2270,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.image_patterns.value",{"_index":2267,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.master.value",{"_index":2261,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.mgmtclass_patterns.value",{"_index":2268,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.omit_data.value",{"_index":2272,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.package_patterns.value",{"_index":2269,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.port.value",{"_index":2262,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.profile_patterns.value",{"_index":2264,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.prune.value",{"_index":2271,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.repo_patterns.value",{"_index":2266,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.sync_all.value",{"_index":2273,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.system_patterns.value",{"_index":2265,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.replicateformgroup.controls.use_ssl.value",{"_index":2274,"title":{},"body":{"components/ReplicateComponent.html":{}}}],["this.repository",{"_index":2358,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.apt_components",{"_index":2394,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.apt_dists",{"_index":2392,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.breed",{"_index":2384,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.comment",{"_index":2376,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.createrepo_flags",{"_index":2388,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.depth",{"_index":2366,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.environment",{"_index":2400,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.is_subobject",{"_index":2370,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.keep_updated",{"_index":2372,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.mirror",{"_index":2382,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.mirror_locally",{"_index":2374,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.mirror_type",{"_index":2380,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.os_version",{"_index":2386,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.owners",{"_index":2395,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.priority",{"_index":2368,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.proxy",{"_index":2378,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.rpm_list",{"_index":2390,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.rsyncopts",{"_index":2404,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repository.yumopts",{"_index":2402,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformarray",{"_index":2303,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformarray.controls",{"_index":2313,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformarray.push(this.newrepositoryformgroup",{"_index":2314,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformarray.removeat(index",{"_index":2315,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.repositoryformgroup.controls.apt_components.setvalue",{"_index":2393,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.apt_dists.setvalue",{"_index":2391,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.breed.setvalue",{"_index":2383,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.comment.setvalue",{"_index":2375,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.createrepo_flags.setvalue",{"_index":2387,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.ctime.setvalue",{"_index":2363,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.depth.setvalue",{"_index":2365,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.environment.setvalue",{"_index":2399,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.is_subobject.setvalue",{"_index":2369,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.keep_updated.setvalue",{"_index":2371,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mirror.setvalue",{"_index":2381,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mirror_locally.setvalue",{"_index":2373,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mirror_type.setvalue",{"_index":2379,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.mtime.setvalue",{"_index":2361,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.name.setvalue(this.repository.name",{"_index":2359,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.os_version.setvalue",{"_index":2385,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.owners.setvalue",{"_index":2398,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.owners_inherited.setvalue(false",{"_index":2397,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.owners_inherited.setvalue(true",{"_index":2396,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.priority.setvalue",{"_index":2367,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.proxy.setvalue",{"_index":2377,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.rpm_list.setvalue",{"_index":2389,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.rsyncopts.setvalue",{"_index":2403,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.uid.setvalue(this.repository.uid",{"_index":2360,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.repositoryformgroup.controls.yumopts.setvalue",{"_index":2401,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["this.reposyncformgroup.controls.reponame.controls",{"_index":2317,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.reposyncformgroup.controls.reposyncnofail.value",{"_index":2321,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.reposyncformgroup.controls.reposynctries.value",{"_index":2320,"title":{},"body":{"components/RepoSyncComponent.html":{}}}],["this.retrievedistros",{"_index":1202,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.retrievefiles",{"_index":1318,"title":{},"body":{"components/FileOverviewComponent.html":{}}}],["this.retrieveimages",{"_index":1486,"title":{},"body":{"components/ImageOverviewComponent.html":{}}}],["this.retrievemanagementclasses",{"_index":1867,"title":{},"body":{"components/ManagementClassOverviewComponent.html":{}}}],["this.retrievepackages",{"_index":2111,"title":{},"body":{"components/PackageOverviewComponent.html":{}}}],["this.retrieveprofiles",{"_index":2239,"title":{},"body":{"components/ProfileOverviewComponent.html":{}}}],["this.retrieverepositories",{"_index":2423,"title":{},"body":{"components/RepositoryOverviewComponent.html":{}}}],["this.retrievesnippets",{"_index":2547,"title":{},"body":{"components/SnippetOverviewComponent.html":{}}}],["this.retrievesystems",{"_index":2645,"title":{},"body":{"components/SystemOverviewComponent.html":{}}}],["this.route.snapshot.parammap.get('name",{"_index":1009,"title":{},"body":{"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["this.router.navigate",{"_index":1851,"title":{},"body":{"components/ManagementClassEditComponent.html":{}}}],["this.router.navigate(['/items",{"_index":1066,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.router.navigate(['/manage",{"_index":1728,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.router.navigate(['/unauthorized",{"_index":427,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.saveobj",{"_index":373,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.saveobj(current",{"_index":384,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.server_prefilled",{"_index":1686,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.setformgroupdisabledstate(isdisabled",{"_index":1615,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.setformgroupdisabledstate(this.isdisabled",{"_index":1625,"title":{},"body":{"components/KeyValueEditorComponent.html":{}}}],["this.snippetformgroup.controls.content.setvalue",{"_index":2530,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["this.sort",{"_index":2462,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["this.subs.add",{"_index":1689,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.subs.unsubscribe",{"_index":1700,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.subscription",{"_index":1983,"title":{},"body":{"components/NavbarComponent.html":{}}}],["this.systemssync.controls.keyvalue.controls",{"_index":2627,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.controls.keyvalue.reset",{"_index":2633,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.controls.systemssyncverbose.reset(false",{"_index":2632,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.controls.systemssyncverbose.value",{"_index":2631,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.systemssync.invalid",{"_index":2626,"title":{},"body":{"components/SyncComponent.html":{}}}],["this.templateformgroup.controls.content.setvalue",{"_index":2660,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["this.transformobject(inputobject[key",{"_index":1257,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["this.transformobject(this.inputobject",{"_index":1260,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["this.treeflattener",{"_index":1247,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["this.updatechecks",{"_index":625,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["this.updateerrpassword",{"_index":1699,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.updateerrserver",{"_index":1693,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.updateerruser",{"_index":1696,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["this.updateformgroup(obj",{"_index":1936,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["this.url",{"_index":114,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["this.username",{"_index":368,"title":{},"body":{"components/AppManageComponent.html":{}}}],["this.userservice.changeauthorizedstate(false",{"_index":426,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.userservice.changeauthorizedstate(this.loggedin",{"_index":429,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.userservice.changeauthorizedstate(true",{"_index":428,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["this.userservice.token",{"_index":584,"title":{},"body":{"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["this.viewabletreecontrol",{"_index":1246,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["though",{"_index":3063,"title":{},"body":{"index.html":{}}}],["throw",{"_index":1538,"title":{},"body":{"injectables/ItemSettingsService.html":{}}}],["thrown",{"_index":1390,"title":{},"body":{"injectables/GetObjService.html":{}}}],["throws",{"_index":3023,"title":{},"body":{"miscellaneous/functions.html":{}}}],["time",{"_index":669,"title":{},"body":{"classes/DateFormatter.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"additional-documentation/development-setup.html":{}}}],["timers",{"_index":2983,"title":{},"body":{"dependencies.html":{}}}],["timestamp",{"_index":706,"title":{},"body":{"classes/DateFormatter.html":{}}}],["timezone",{"_index":713,"title":{},"body":{"classes/DateFormatter.html":{}}}],["title",{"_index":631,"title":{},"body":{"components/CheckSysComponent.html":{},"components/SettingsViewComponent.html":{}}}],["todo",{"_index":377,"title":{},"body":{"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/DistroEditComponent.html":{},"components/FileEditComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/MkloadersComponent.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["toggle",{"_index":2259,"title":{},"body":{"components/ReplicateComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["togglesidenav",{"_index":1961,"title":{},"body":{"components/NavbarComponent.html":{}}}],["tohtml",{"_index":2728,"title":{},"body":{"classes/Utils.html":{}}}],["tohtml(input",{"_index":2729,"title":{},"body":{"classes/Utils.html":{}}}],["token",{"_index":2684,"title":{},"body":{"injectables/UserService.html":{}}}],["token(token",{"_index":2723,"title":{},"body":{"injectables/UserService.html":{}}}],["topics",{"_index":2895,"title":{},"body":{"contributing.html":{}}}],["tort",{"_index":3148,"title":{},"body":{"license.html":{}}}],["track",{"_index":1631,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/RepoSyncComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SyncComponent.html":{}}}],["transformobject",{"_index":2871,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["transformobject(inputobject",{"_index":1252,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["tree",{"_index":141,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["tree.component",{"_index":2444,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["tree.component.html",{"_index":1233,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["tree.component.scss",{"_index":1234,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["tree.component.ts",{"_index":1215,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["tree.component.ts:36",{"_index":2873,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:37",{"_index":2880,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:42",{"_index":2877,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:51",{"_index":2879,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:58",{"_index":2878,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:63",{"_index":2872,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:67",{"_index":2874,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:71",{"_index":2876,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree.component.ts:90",{"_index":2875,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["tree/viewable",{"_index":1214,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["tree_build_time",{"_index":841,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["treecontrol",{"_index":2031,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["treecontrol.isexpanded(node",{"_index":2506,"title":{},"body":{"components/SignaturesComponent.html":{}}}],["treeflattener",{"_index":1244,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["tries",{"_index":493,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/RepoSyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["true",{"_index":148,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["try",{"_index":430,"title":{},"body":{"injectables/AuthGuardService.html":{},"components/LogInFormComponent.html":{}}}],["ts",{"_index":3221,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["tslib",{"_index":2985,"title":{},"body":{"dependencies.html":{}}}],["two",{"_index":3067,"title":{},"body":{"index.html":{}}}],["type",{"_index":32,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"interfaces/DialogData.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"interfaces/DialogTextInputData.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExampleFlatNode.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"injectables/ItemSettingsService.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Mgmgtclass.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/Repo.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"classes/Utils.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"components/ValidateAutoinstallsComponent.html":{},"interfaces/Version.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["typealiases",{"_index":3156,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeof",{"_index":108,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppManageComponent.html":{},"components/DistroEditComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/ImageEditComponent.html":{},"components/ManagementClassEditComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/ProfileEditComponent.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{},"components/ViewableTreeComponent.html":{}}}],["types",{"_index":90,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["types.ts",{"_index":1875,"title":{},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["types/items.ts",{"_index":818,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"coverage.html":{}}}],["types/misc.ts",{"_index":438,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{}}}],["types/settings",{"_index":2439,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["types/settings.ts",{"_index":2735,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["types/signatures.ts",{"_index":1106,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"coverage.html":{}}}],["typescript",{"_index":1150,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["ui",{"_index":1355,"title":{},"body":{"injectables/GetObjService.html":{}}}],["uid",{"_index":845,"title":{},"body":{"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/File.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"interfaces/Item.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["unauthorized",{"_index":2672,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["unauthorized'},{'name",{"_index":251,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["unauthorized.component.css",{"_index":2673,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["unauthorized.component.html",{"_index":2674,"title":{},"body":{"components/UnauthorizedComponent.html":{}}}],["unauthorizedcomponent",{"_index":250,"title":{"components/UnauthorizedComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["unavailable",{"_index":2004,"title":{},"body":{"components/NotFoundComponent.html":{}}}],["undefined",{"_index":1078,"title":{},"body":{"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MultiSelectComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SystemOverviewComponent.html":{}}}],["undefined`'s",{"_index":1154,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["unit",{"_index":3082,"title":{},"body":{"index.html":{}}}],["unknown",{"_index":1141,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/NavbarComponent.html":{},"injectables/UserService.html":{}}}],["unsubscribe",{"_index":315,"title":{},"body":{"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/ValidateAutoinstallsComponent.html":{}}}],["untypedformcontrol",{"_index":1663,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["untypedformgroup",{"_index":1662,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updatechecks",{"_index":614,"title":{},"body":{"components/CheckSysComponent.html":{}}}],["updated",{"_index":2412,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["updateerrpassword",{"_index":1643,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updateerrserver",{"_index":1644,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updateerruser",{"_index":1645,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["updateformgroup",{"_index":1901,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["updateformgroup(options",{"_index":1918,"title":{},"body":{"components/MultiSelectComponent.html":{}}}],["updatesignatures",{"_index":2047,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["url",{"_index":15,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/LogInFormComponent.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["url('http://localhost",{"_index":116,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["url('http://localhost/cobbler_api",{"_index":3171,"title":{},"body":{"miscellaneous/variables.html":{}}}],["url(formdata.server",{"_index":1714,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["url(value",{"_index":1683,"title":{},"body":{"components/LogInFormComponent.html":{},"miscellaneous/variables.html":{}}}],["url.tostring",{"_index":1687,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["urlvalidator",{"_index":1646,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["urlvalidator(undefined",{"_index":1655,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["use",{"_index":1364,"title":{},"body":{"injectables/GetObjService.html":{},"components/ReplicateComponent.html":{},"contributing.html":{},"index.html":{},"license.html":{},"additional-documentation/development-setup.html":{}}}],["use_ssl",{"_index":481,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/ReplicateComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["useexisting",{"_index":1547,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["user",{"_index":360,"title":{},"body":{"components/AppManageComponent.html":{},"components/LogInFormComponent.html":{},"injectables/UserService.html":{}}}],["user.service",{"_index":422,"title":{},"body":{"injectables/AuthGuardService.html":{},"injectables/ItemSettingsService.html":{}}}],["username",{"_index":348,"title":{},"body":{"components/AppManageComponent.html":{},"components/LogInFormComponent.html":{},"components/NavbarComponent.html":{},"injectables/UserService.html":{},"additional-documentation/development-setup.html":{}}}],["username(name",{"_index":2724,"title":{},"body":{"injectables/UserService.html":{}}}],["username.invalid",{"_index":1751,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["username.touched",{"_index":1750,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["users",{"_index":1724,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["userservice",{"_index":411,"title":{"injectables/UserService.html":{}},"body":{"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"injectables/ItemSettingsService.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/NavbarComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["utc",{"_index":675,"title":{},"body":{"classes/DateFormatter.html":{}}}],["utils",{"_index":561,"title":{"classes/Utils.html":{}},"body":{"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"classes/Utils.html":{},"components/ValidateAutoinstallsComponent.html":{},"coverage.html":{}}}],["utils.tohtml(this.content",{"_index":2531,"title":{},"body":{"components/SnippetEditComponent.html":{},"components/TemplateEditComponent.html":{}}}],["v",{"_index":3211,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["v3_3_1",{"_index":2734,"title":{"interfaces/V3_3_1.html":{}},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["v3_3_2",{"_index":2736,"title":{"interfaces/V3_3_2.html":{}},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["v3_3_3",{"_index":2737,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["v3_4_0",{"_index":2738,"title":{"interfaces/V3_4_0.html":{}},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["valid",{"_index":1146,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/LogInFormComponent.html":{}}}],["validate",{"_index":253,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["validate(control",{"_index":1593,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["validateautoinstallscomponent",{"_index":252,"title":{"components/ValidateAutoinstallsComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["validationerrors",{"_index":1597,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/MultiSelectComponent.html":{}}}],["validator",{"_index":1543,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["validators",{"_index":1677,"title":{},"body":{"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["validators.minlength(2",{"_index":1666,"title":{},"body":{"components/LogInFormComponent.html":{}}}],["validators.required",{"_index":1664,"title":{},"body":{"components/LogInFormComponent.html":{},"components/RepoSyncComponent.html":{},"components/SyncComponent.html":{}}}],["value",{"_index":104,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"classes/DateFormatter.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/Param.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["value.breeds",{"_index":2038,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.breeds[k",{"_index":2040,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.breeds[k][j",{"_index":2042,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.breeds[k][j][i",{"_index":2044,"title":{},"body":{"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/SignaturesComponent.html":{},"interfaces/TableRow.html":{}}}],["value.version",{"_index":1988,"title":{},"body":{"components/NavbarComponent.html":{}}}],["var",{"_index":169,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["var/log/cobbler/cobbler.log",{"_index":3219,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["variable",{"_index":2926,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3160,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["verbose",{"_index":465,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"components/SyncComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["version",{"_index":443,"title":{"interfaces/Version.html":{}},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Distro.html":{},"components/DistroEditComponent.html":{},"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"interfaces/InstallationStatus.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"components/NavbarComponent.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{},"coverage.html":{},"properties.html":{}}}],["version_file",{"_index":1116,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["version_file_regex",{"_index":1117,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["versiontuple",{"_index":452,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["vertical",{"_index":634,"title":{},"body":{"components/CheckSysComponent.html":{},"components/NavbarComponent.html":{},"components/SettingsViewComponent.html":{}}}],["very",{"_index":3257,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["via",{"_index":1148,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["view",{"_index":2446,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["view'},{'name",{"_index":238,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["view.component.css",{"_index":2448,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["view.component.html",{"_index":2447,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{}}}],["view.component.ts",{"_index":2431,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"coverage.html":{}}}],["view.component.ts:48",{"_index":2481,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:51",{"_index":2479,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:52",{"_index":2480,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:54",{"_index":2482,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:55",{"_index":2474,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:74",{"_index":2477,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:79",{"_index":2478,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:84",{"_index":2475,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["view.component.ts:93",{"_index":2476,"title":{},"body":{"components/SettingsViewComponent.html":{}}}],["viewable",{"_index":256,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{}}}],["viewabletreecomponent",{"_index":255,"title":{"components/ViewableTreeComponent.html":{}},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogBoxTextConfirmComponent.html":{},"components/DialogItemCopyComponent.html":{},"components/DialogItemRenameComponent.html":{},"components/DialogTextInputComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManageMenuComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"components/NotFoundComponent.html":{},"interfaces/ObjectNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/UnauthorizedComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"coverage.html":{}}}],["viewabletreecontrol",{"_index":1236,"title":{},"body":{"interfaces/ExampleFlatNode.html":{},"interfaces/ObjectNode.html":{},"components/ViewableTreeComponent.html":{}}}],["viewabletreecontrol.isexpanded(node",{"_index":2881,"title":{},"body":{"components/ViewableTreeComponent.html":{}}}],["viewchild",{"_index":1200,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["viewchild(matpaginator",{"_index":2449,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["viewchild(matsort",{"_index":2451,"title":{},"body":{"interfaces/SettingsTableRowData.html":{},"components/SettingsViewComponent.html":{},"components/StatusComponent.html":{}}}],["viewchild(mattable",{"_index":1198,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["virt_auto_boot",{"_index":857,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["virt_bridge",{"_index":858,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_cpus",{"_index":859,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_disk_driver",{"_index":860,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_file_size",{"_index":861,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_path",{"_index":862,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_pxe_boot",{"_index":901,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_ram",{"_index":863,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["virt_type",{"_index":864,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{}}}],["visibility",{"_index":1210,"title":{},"body":{"components/DistrosOverviewComponent.html":{},"components/FileOverviewComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SystemOverviewComponent.html":{},"components/TemplateOverviewComponent.html":{}}}],["void",{"_index":47,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/AppEventsComponent.html":{},"components/AppManageComponent.html":{},"injectables/AuthGuardService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DialogItemCopyComponent.html":{},"interfaces/DialogItemCopyData.html":{},"components/DialogItemRenameComponent.html":{},"interfaces/DialogItemRenameData.html":{},"components/DialogTextInputComponent.html":{},"interfaces/DialogTextInputData.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"interfaces/ExampleFlatNode.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"injectables/GetObjService.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/KeyValueEditorComponent.html":{},"components/LogInFormComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"components/MultiSelectComponent.html":{},"components/NavbarComponent.html":{},"interfaces/ObjectNode.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SettingsViewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/StatusComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"injectables/UserService.html":{},"components/ValidateAutoinstallsComponent.html":{},"components/ViewableTreeComponent.html":{},"miscellaneous/functions.html":{}}}],["want",{"_index":908,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"additional-documentation/development-setup.html":{}}}],["warranties",{"_index":3134,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3129,"title":{},"body":{"license.html":{}}}],["way",{"_index":379,"title":{},"body":{"components/AppManageComponent.html":{}}}],["web",{"_index":2888,"title":{},"body":{"contributing.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["web.git",{"_index":3202,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["webdir",{"_index":2849,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["webdir_whitelist",{"_index":2850,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["webserver",{"_index":1371,"title":{},"body":{"injectables/GetObjService.html":{},"additional-documentation/development-setup.html":{}}}],["welcome",{"_index":385,"title":{},"body":{"components/AppManageComponent.html":{}}}],["whether",{"_index":3146,"title":{},"body":{"license.html":{}}}],["white",{"_index":761,"title":{},"body":{"components/DialogBoxTextConfirmComponent.html":{}}}],["wide",{"_index":3176,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["width",{"_index":162,"title":{},"body":{"components/AppComponent.html":{},"components/AppEventsComponent.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/ImportDVDComponent.html":{},"components/LogInFormComponent.html":{},"components/SettingsViewComponent.html":{}}}],["wiki",{"_index":2887,"title":{},"body":{"contributing.html":{}}}],["window.localstorage.setitem(cobbler_url_key_name",{"_index":2722,"title":{},"body":{"injectables/UserService.html":{}}}],["window.sessionstorage.getitem('currentitem",{"_index":362,"title":{},"body":{"components/AppManageComponent.html":{},"injectables/GetObjService.html":{}}}],["window.sessionstorage.getitem('loggedin",{"_index":431,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["window.sessionstorage.getitem('user",{"_index":361,"title":{},"body":{"components/AppManageComponent.html":{}}}],["window.sessionstorage.loggedin",{"_index":433,"title":{},"body":{"injectables/AuthGuardService.html":{}}}],["window.sessionstorage.setitem",{"_index":1392,"title":{},"body":{"injectables/GetObjService.html":{}}}],["window.sessionstorage.setitem('currentitem",{"_index":1398,"title":{},"body":{"injectables/GetObjService.html":{}}}],["windows",{"_index":3190,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["windows_enabled",{"_index":2855,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["windows_template_dir",{"_index":2856,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["withcredentials",{"_index":128,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["without",{"_index":647,"title":{},"body":{"classes/DateFormatter.html":{},"license.html":{}}}],["work",{"_index":3065,"title":{},"body":{"index.html":{}}}],["working",{"_index":3178,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["write_autoinstall_snippet(this.name",{"_index":2533,"title":{},"body":{"components/SnippetEditComponent.html":{}}}],["write_autoinstall_template(this.name",{"_index":2662,"title":{},"body":{"components/TemplateEditComponent.html":{}}}],["writevalue",{"_index":1571,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["writevalue(obj",{"_index":1598,"title":{},"body":{"components/KeyValueEditorComponent.html":{},"components/MultiSelectComponent.html":{}}}],["x86",{"_index":1134,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["x86_64",{"_index":1132,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["xml",{"_index":69,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"components/BuildISOComponent.html":{},"components/CheckSysComponent.html":{},"components/DistroEditComponent.html":{},"components/DistrosOverviewComponent.html":{},"components/FileEditComponent.html":{},"components/FileOverviewComponent.html":{},"components/HardlinkComponent.html":{},"components/ImageEditComponent.html":{},"components/ImageOverviewComponent.html":{},"components/ImportDVDComponent.html":{},"components/ManagementClassEditComponent.html":{},"components/ManagementClassOverviewComponent.html":{},"components/MkloadersComponent.html":{},"interfaces/OsBreedFlatNode.html":{},"interfaces/OsNode.html":{},"components/PackageEditComponent.html":{},"components/PackageOverviewComponent.html":{},"components/ProfileEditComponent.html":{},"components/ProfileOverviewComponent.html":{},"components/ReplicateComponent.html":{},"components/RepoSyncComponent.html":{},"components/RepositoryEditComponent.html":{},"components/RepositoryOverviewComponent.html":{},"components/SignaturesComponent.html":{},"components/SnippetEditComponent.html":{},"components/SnippetOverviewComponent.html":{},"components/SyncComponent.html":{},"components/SystemOverviewComponent.html":{},"interfaces/TableRow.html":{},"components/TemplateEditComponent.html":{},"components/TemplateOverviewComponent.html":{},"components/ValidateAutoinstallsComponent.html":{},"miscellaneous/functions.html":{}}}],["xmlbuilder",{"_index":2996,"title":{},"body":{"miscellaneous/functions.html":{}}}],["xmlbuilder2",{"_index":2987,"title":{},"body":{"dependencies.html":{},"miscellaneous/functions.html":{}}}],["xmlrpc",{"_index":45,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"injectables/GetObjService.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/development-setup.html":{}}}],["xmlrpc.service.ts",{"_index":8,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["xmlrpc.service.ts:23",{"_index":82,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:24",{"_index":83,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:25",{"_index":81,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:27",{"_index":53,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:31",{"_index":50,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:35",{"_index":60,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:44",{"_index":57,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:51",{"_index":28,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:64",{"_index":35,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc.service.ts:75",{"_index":67,"title":{},"body":{"injectables/AngularXmlrpcService.html":{}}}],["xmlrpc/src/lib/constants.ts",{"_index":2941,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["xmlrpc/src/lib/date_formatter.ts",{"_index":639,"title":{},"body":{"classes/DateFormatter.html":{},"coverage.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:10",{"_index":689,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:110",{"_index":720,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:122",{"_index":665,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:15",{"_index":678,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:153",{"_index":708,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:16",{"_index":679,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:17",{"_index":695,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:18",{"_index":696,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:19",{"_index":697,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:29",{"_index":728,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:42",{"_index":725,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:61",{"_index":710,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/date_formatter.ts:80",{"_index":699,"title":{},"body":{"classes/DateFormatter.html":{}}}],["xmlrpc/src/lib/deserializer.ts",{"_index":2945,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["xmlrpc/src/lib/serializer.ts",{"_index":2958,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["xmlrpc/src/lib/typescript",{"_index":7,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["xmlrpc/src/lib/xmlrpc",{"_index":1874,"title":{},"body":{"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["xmlrpc_port",{"_index":2851,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["xmlrpcarray",{"_index":58,"title":{"interfaces/XmlRpcArray.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["xmlrpcstruct",{"_index":61,"title":{"interfaces/XmlRpcStruct.html":{}},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["xmlrpctypes",{"_index":56,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"interfaces/Member.html":{},"interfaces/MethodFault.html":{},"interfaces/Param.html":{},"interfaces/XmlRpcArray.html":{},"interfaces/XmlRpcStruct.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["xorrisofs",{"_index":594,"title":{},"body":{"components/BuildISOComponent.html":{}}}],["xorrisofsopts",{"_index":461,"title":{},"body":{"interfaces/BackgroundAclSetupOptions.html":{},"interfaces/BackgroundBuildisoOptions.html":{},"interfaces/BackgroundImportOptions.html":{},"interfaces/BackgroundPowerSystem.html":{},"interfaces/BackgroundReplicateOptions.html":{},"interfaces/BackgroundReposyncOptions.html":{},"components/BuildISOComponent.html":{},"interfaces/Event.html":{},"interfaces/ExtendedVersion.html":{},"interfaces/InstallationStatus.html":{},"interfaces/PageInfo.html":{},"interfaces/PagesItemsResult.html":{},"interfaces/RegisterOptions.html":{},"interfaces/SyncOptions.html":{},"interfaces/SyncSystemsOptions.html":{},"interfaces/Version.html":{}}}],["yes",{"_index":75,"title":{},"body":{"injectables/AngularXmlrpcService.html":{},"miscellaneous/functions.html":{}}}],["yourself",{"_index":3261,"title":{},"body":{"additional-documentation/development-setup.html":{}}}],["yum",{"_index":1137,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["yum_distro_priority",{"_index":2852,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["yum_post_install_mirror",{"_index":2853,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["yumdownloader_flags",{"_index":2854,"title":{},"body":{"interfaces/V3_3_1.html":{},"interfaces/V3_3_2.html":{},"interfaces/V3_4_0.html":{}}}],["yumopts",{"_index":920,"title":{},"body":{"interfaces/Distro.html":{},"interfaces/File.html":{},"interfaces/Image.html":{},"interfaces/Item.html":{},"interfaces/Mgmgtclass.html":{},"interfaces/NetworkInterface.html":{},"interfaces/Package.html":{},"interfaces/Repo.html":{},"components/RepositoryEditComponent.html":{}}}],["yumoptsresult",{"_index":2409,"title":{},"body":{"components/RepositoryEditComponent.html":{}}}],["z",{"_index":717,"title":{},"body":{"classes/DateFormatter.html":{}}}],["z0",{"_index":1160,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["za",{"_index":1159,"title":{},"body":{"interfaces/DistroSignatureOsVersion.html":{},"interfaces/DistroSignatures.html":{}}}],["zero",{"_index":721,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zeropad",{"_index":663,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zeropad(digit",{"_index":726,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zone",{"_index":723,"title":{},"body":{"classes/DateFormatter.html":{}}}],["zone.js",{"_index":2989,"title":{},"body":{"dependencies.html":{}}}],["zoning",{"_index":652,"title":{},"body":{"classes/DateFormatter.html":{}}}]],"pipeline":["stemmer"]}, + "store": {"injectables/AngularXmlrpcService.html":{"url":"injectables/AngularXmlrpcService.html","title":"injectable - AngularXmlrpcService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n AngularXmlrpcService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n headers\n \n \n Private\n Readonly\n http\n \n \n Private\n url\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n configureService\n \n \n Static\n instanceOfMethodFault\n \n \n Static\n instanceOfMethodResponse\n \n \n Static\n instanceOfXmlRpcArray\n \n \n Static\n instanceOfXmlRpcStruct\n \n \n methodCall\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(http: HttpClient)\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:51\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n http\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n configureService\n \n \n \n \n \n \nconfigureService(url: URL)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:64\n \n \n\n\n \n \n Call this method before any other to configure the service. Otherwise other methods may behave incorrectly.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n url\n \n URL\n \n\n \n No\n \n\n\n \n The URL of the XMLRPC Service.\n\n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfMethodFault\n \n \n \n \n \n \n \n instanceOfMethodFault(object: object)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:31\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfMethodResponse\n \n \n \n \n \n \n \n instanceOfMethodResponse(object: object)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:27\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodResponse\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfXmlRpcArray\n \n \n \n \n \n \n \n instanceOfXmlRpcArray(object: XmlRpcTypes)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:44\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n XmlRpcTypes\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcArray\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n instanceOfXmlRpcStruct\n \n \n \n \n \n \n \n instanceOfXmlRpcStruct(object: XmlRpcTypes)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n object\n \n XmlRpcTypes\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcStruct\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n methodCall\n \n \n \n \n \n \nmethodCall(method: string, params?: Array, encoding?: string)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:75\n \n \n\n\n \n \n Makes an XML-RPC call to the server specified by the constructor's options.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n method\n \n string\n \n\n \n No\n \n\n\n \n The method name.\n\n \n \n \n params\n \n Array\n \n\n \n Yes\n \n\n\n \n Params to send in the call.\n\n \n \n \n encoding\n \n string\n \n\n \n Yes\n \n\n\n \n The encoding to append to the generated XML document.\n\n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n headers\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n Readonly\n http\n \n \n \n \n \n \n Type : HttpClient\n\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n url\n \n \n \n \n \n \n Type : URL\n\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts:24\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\n\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { serializeMethodCall } from './serializer';\nimport {\n MethodFault,\n MethodResponse,\n XmlRpcArray,\n XmlRpcStruct,\n XmlRpcTypes,\n} from './xmlrpc-types';\nimport { deserialize } from './deserializer';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nconst BODY = 'body';\nconst TEXT = 'text';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AngularXmlrpcService {\n private readonly http: HttpClient;\n private url: URL;\n private headers: object;\n\n static instanceOfMethodResponse(object: object): object is MethodResponse {\n return 'value' in object;\n }\n\n static instanceOfMethodFault(object: object): object is MethodFault {\n return 'faultCode' in object && 'faultString' in object;\n }\n\n static instanceOfXmlRpcStruct(object: XmlRpcTypes): object is XmlRpcStruct {\n return (\n object !== null &&\n typeof object === 'object' &&\n Object.keys(object).length === 1 &&\n 'members' in object\n );\n }\n\n static instanceOfXmlRpcArray(object: XmlRpcTypes): object is XmlRpcArray {\n return (\n object !== null &&\n typeof object === 'object' &&\n Object.keys(object).length === 1 &&\n 'data' in object\n );\n }\n\n constructor(http: HttpClient) {\n this.headers = {};\n this.url = new URL('http://localhost');\n this.http = http;\n }\n\n /**\n * Call this method before any other to configure the service. Otherwise other methods may behave incorrectly.\n *\n * @param url The URL of the XMLRPC Service.\n */\n configureService(url: URL): void {\n this.url = url;\n }\n\n /**\n * Makes an XML-RPC call to the server specified by the constructor's options.\n *\n * @param method The method name.\n * @param params Params to send in the call.\n * @param encoding The encoding to append to the generated XML document.\n */\n methodCall(\n method: string,\n params?: Array,\n encoding?: string,\n ): Observable {\n const xml = serializeMethodCall(method, params, encoding);\n const httpOptions = new HttpHeaders();\n httpOptions.set('Content-Type', 'text/xml');\n httpOptions.set('Accept', 'text/xml');\n const options: object = {\n headers: httpOptions,\n reportProgress: false,\n observe: BODY,\n responseType: TEXT,\n withCredentials: false,\n };\n\n return this.http.post(this.url.toString(), xml, options).pipe(\n map((source: string) => {\n return deserialize(source);\n }),\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n \n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/app.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-root\n \n\n \n standalone\n true\n \n\n \n imports\n \n ManageMenuComponent\n \n \n\n \n styleUrls\n ./app.component.css\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app.component.ts:11\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { ManageMenuComponent } from './manage-menu/manage-menu.component';\n\n@Component({\n selector: 'cobbler-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.css'],\n imports: [ManageMenuComponent],\n standalone: true,\n})\nexport class AppComponent {\n constructor() {}\n}\n\n \n\n \n \n \n\n\n \n\n \n \n ./app.component.css\n \n :host {\n display: block;\n width: 100%;\n height: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppEventsComponent.html":{"url":"components/AppEventsComponent.html","title":"component - AppEventsComponent","body":"\n \n\n\n\n\n\n Components\n \n AppEventsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/app-events/app-events.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-app-events\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatListModule\n MatTableModule\n MatButtonModule\n MatMenuModule\n MatIconModule\n DatePipe\n CommonModule\n \n \n\n \n styleUrls\n ./app-events.component.css\n \n\n\n\n \n templateUrl\n ./app-events.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n cobblerEvents\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n showLogs\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(dialog: MatDialog, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:43\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:59\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showLogs\n \n \n \n \n \n \nshowLogs(eventId: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:64\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n eventId\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n cobblerEvents\n \n \n \n \n \n \n Default value : new MatTableDataSource([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'name',\n 'state',\n 'statetime',\n 'readByWho',\n 'actions',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:36\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/app-events/app-events.component.ts:33\n \n \n\n\n \n \n\n\n\n\n\n \n import { CommonModule, DatePipe } from '@angular/common';\nimport { Component, Inject, OnDestroy, OnInit } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatListModule } from '@angular/material/list';\nimport { MatMenuModule } from '@angular/material/menu';\nimport { RouterOutlet } from '@angular/router';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { MatDialog } from '@angular/material/dialog';\nimport { CobblerApiService, Event } from 'cobbler-api';\nimport { DialogBoxTextConfirmComponent } from '../common/dialog-box-text-confirm/dialog-box-text-confirm';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\n\n@Component({\n selector: 'cobbler-app-events',\n templateUrl: './app-events.component.html',\n styleUrls: ['./app-events.component.css'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatListModule,\n MatTableModule,\n MatButtonModule,\n MatMenuModule,\n MatIconModule,\n DatePipe,\n CommonModule,\n ],\n})\nexport class AppEventsComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'name',\n 'state',\n 'statetime',\n 'readByWho',\n 'actions',\n ];\n cobblerEvents = new MatTableDataSource([]);\n\n constructor(\n @Inject(MatDialog) readonly dialog: MatDialog,\n private cobblerApiService: CobblerApiService,\n ) {}\n\n ngOnInit(): void {\n this.cobblerApiService\n .get_events('')\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value: Array) => {\n this.cobblerEvents.data = value;\n });\n }\n\n ngOnDestroy() {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n showLogs(eventId: string, name: string) {\n this.cobblerApiService\n .get_event_log(eventId)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value: string) => {\n const dialogRef = this.dialog.open(DialogBoxTextConfirmComponent, {\n data: {\n eventId: eventId,\n name: name,\n eventLog: value,\n },\n });\n\n dialogRef.afterClosed().subscribe();\n });\n }\n}\n\n \n\n \n \n \n \n EVENTS\n\n \n \n Name\n {{ element.name }}\n \n\n \n State\n {{ element.state }}\n \n\n \n Date\n \n {{ element.statetime * 1000 | date: \"long\" }}\n \n \n\n \n Read by\n \n 0\">\n -\n \n {{ item }} -\n \n -\n \n \n -\n \n \n \n\n \n \n \n \n more_vert\n \n \n \n description\n Show Logs\n \n \n \n \n\n \n \n \n \n\n\n \n\n \n \n ./app-events.component.css\n \n table {\n width: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' EVENTS Name {{ element.name }} State {{ element.state }} Date {{ element.statetime * 1000 | date: \"long\" }} Read by 0\"> - {{ item }} - - - more_vert description Show Logs '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppEventsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppManageComponent.html":{"url":"components/AppManageComponent.html","title":"component - AppManageComponent","body":"\n \n\n\n\n\n\n Components\n \n AppManageComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/appManage/app-manage.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-app-manage\n \n\n \n standalone\n true\n \n\n\n \n styleUrls\n ./app-manage.component.css\n \n\n\n\n \n templateUrl\n ./app-manage.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n currentItem\n \n \n currentObjs\n \n \n saveObj\n \n \n username\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n save\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(service: GetObjService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n service\n \n \n GetObjService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n save\n \n \n \n \n \n \nsave(index)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:38\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Optional\n \n \n \n \n index\n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n currentItem\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n currentObjs\n \n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n saveObj\n \n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n username\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/appManage/app-manage.component.ts:11\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { GetObjService } from '../services/get-obj.service';\n\n@Component({\n selector: 'cobbler-app-manage',\n templateUrl: './app-manage.component.html',\n styleUrls: ['./app-manage.component.css'],\n standalone: true,\n})\nexport class AppManageComponent {\n username: string;\n currentItem: string;\n currentObjs;\n saveObj;\n\n constructor(service: GetObjService) {\n const user = window.sessionStorage.getItem('user');\n const item = window.sessionStorage.getItem('CurrentItem');\n this.currentObjs = service.getITEMS();\n // console.log(`Current objects: ${this.current_objs}. Type=`, typeof this.current_objs)\n if (user) {\n this.username = user;\n }\n\n if (item) {\n this.currentItem = item;\n } else {\n // console.log(`item not found: ${item}`)\n this.currentItem = 'No Item has been selected.';\n }\n this.saveObj = (value) => {\n // console.log(\"saving current value in service\")\n service.name = value;\n };\n }\n\n // TODO: Find a way to also save this in current service\n save(index): void {\n // console.log('saving item')\n // let size = this.current_objs.length\n const current = this.currentObjs[index];\n this.currentItem = current;\n this.saveObj(current);\n }\n}\n\n \n\n \n \n \n WELCOME!\n \n\n\n \n\n \n \n ./app-manage.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' WELCOME! '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppManageComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/e2e/src/app.po.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Async\n getTitleText\n \n \n Async\n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Async\n getTitleText\n \n \n \n \n \n \n \n getTitleText()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/e2e/src/app.po.ts:8\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n Async\n navigateTo\n \n \n \n \n \n \n \n navigateTo()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/e2e/src/app.po.ts:4\n \n \n\n\n \n \n\n \n Returns : Promise<>\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { browser, by, element } from 'protractor';\n\nexport class AppPage {\n async navigateTo(): Promise {\n return browser.get(browser.baseUrl);\n }\n\n async getTitleText(): Promise {\n return element(by.css('app-root .content span')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/AuthGuardService.html":{"url":"injectables/AuthGuardService.html","title":"injectable - AuthGuardService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n AuthGuardService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/auth-guard.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loggedIN\n \n \n subscription\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n checkSession\n \n \n getstatus\n \n \n setBool\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \ncanActivate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:18\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n checkSession\n \n \n \n \n \n \ncheckSession()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:41\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n getstatus\n \n \n \n \n \n \ngetstatus()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:55\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n setBool\n \n \n \n \n \n \nsetBool(login: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:50\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n login\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n loggedIN\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n subscription\n \n \n \n \n \n \n Type : Subscription\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/auth-guard.service.ts:11\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { Subscription } from 'rxjs';\nimport { UserService } from './user.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthGuardService {\n loggedIN = false;\n subscription: Subscription;\n\n constructor(\n private userService: UserService,\n private router: Router,\n ) {}\n\n canActivate(): boolean {\n const sessionLIVE = this.checkSession();\n if (sessionLIVE != null) {\n if (!sessionLIVE) {\n this.loggedIN = false;\n this.userService.changeAuthorizedState(false);\n this.router.navigate(['/Unauthorized']);\n return false;\n }\n if (sessionLIVE) {\n this.loggedIN = true;\n this.userService.changeAuthorizedState(true);\n return true;\n }\n }\n if (!this.loggedIN) {\n this.userService.changeAuthorizedState(this.loggedIN);\n this.router.navigate(['/Unauthorized']);\n }\n this.userService.changeAuthorizedState(this.loggedIN);\n return this.loggedIN;\n }\n\n checkSession(): boolean {\n try {\n const value = window.sessionStorage.getItem('loggedIn');\n return value === 'true';\n } catch {\n return false;\n }\n }\n\n setBool(login: boolean): void {\n this.loggedIN = login;\n window.sessionStorage.loggedIn = login;\n }\n\n getstatus(): boolean {\n const sessionLIVE = this.checkSession();\n if (sessionLIVE != null) {\n return sessionLIVE;\n }\n return this.loggedIN;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundAclSetupOptions.html":{"url":"interfaces/BackgroundAclSetupOptions.html","title":"interface - BackgroundAclSetupOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundAclSetupOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n addgroup\n \n \n \n \n adduser\n \n \n \n \n removegroup\n \n \n \n \n removeuser\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n addgroup\n \n \n \n \n \n \n \n \n addgroup: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n adduser\n \n \n \n \n \n \n \n \n adduser: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n removegroup\n \n \n \n \n \n \n \n \n removegroup: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n removeuser\n \n \n \n \n \n \n \n \n removeuser: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundBuildisoOptions.html":{"url":"interfaces/BackgroundBuildisoOptions.html","title":"interface - BackgroundBuildisoOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundBuildisoOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n airgapped\n \n \n \n \n buildisodir\n \n \n \n \n distro\n \n \n \n \n excludeDNS\n \n \n \n \n iso\n \n \n \n \n profiles\n \n \n \n \n source\n \n \n \n \n standalone\n \n \n \n \n systems\n \n \n \n \n xorrisofsOpts\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n airgapped\n \n \n \n \n \n \n \n \n airgapped: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n buildisodir\n \n \n \n \n \n \n \n \n buildisodir: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n distro\n \n \n \n \n \n \n \n \n distro: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n excludeDNS\n \n \n \n \n \n \n \n \n excludeDNS: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n iso\n \n \n \n \n \n \n \n \n iso: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n profiles\n \n \n \n \n \n \n \n \n profiles: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n source\n \n \n \n \n \n \n \n \n source: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n standalone\n \n \n \n \n \n \n \n \n standalone: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n systems\n \n \n \n \n \n \n \n \n systems: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n xorrisofsOpts\n \n \n \n \n \n \n \n \n xorrisofsOpts: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundImportOptions.html":{"url":"interfaces/BackgroundImportOptions.html","title":"interface - BackgroundImportOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundImportOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n arch\n \n \n \n \n autoinstall_file\n \n \n \n \n available_as\n \n \n \n \n breed\n \n \n \n \n name\n \n \n \n \n os_version\n \n \n \n \n path\n \n \n \n \n rsync_flags\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_file\n \n \n \n \n \n \n \n \n autoinstall_file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n available_as\n \n \n \n \n \n \n \n \n available_as: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n rsync_flags\n \n \n \n \n \n \n \n \n rsync_flags: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundPowerSystem.html":{"url":"interfaces/BackgroundPowerSystem.html","title":"interface - BackgroundPowerSystem","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundPowerSystem\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n power\n \n \n \n \n systems\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n power\n \n \n \n \n \n \n \n \n power: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n systems\n \n \n \n \n \n \n \n \n systems: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundReplicateOptions.html":{"url":"interfaces/BackgroundReplicateOptions.html","title":"interface - BackgroundReplicateOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundReplicateOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n distro_patterns\n \n \n \n \n file_patterns\n \n \n \n \n image_patterns\n \n \n \n \n master\n \n \n \n \n mgmtclass_patterns\n \n \n \n \n omit_data\n \n \n \n \n package_patterns\n \n \n \n \n port\n \n \n \n \n profile_patterns\n \n \n \n \n prune\n \n \n \n \n repo_patterns\n \n \n \n \n sync_all\n \n \n \n \n system_patterns\n \n \n \n \n use_ssl\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n distro_patterns\n \n \n \n \n \n \n \n \n distro_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n file_patterns\n \n \n \n \n \n \n \n \n file_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n image_patterns\n \n \n \n \n \n \n \n \n image_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n master\n \n \n \n \n \n \n \n \n master: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmtclass_patterns\n \n \n \n \n \n \n \n \n mgmtclass_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n omit_data\n \n \n \n \n \n \n \n \n omit_data: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n package_patterns\n \n \n \n \n \n \n \n \n package_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n port\n \n \n \n \n \n \n \n \n port: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n profile_patterns\n \n \n \n \n \n \n \n \n profile_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n prune\n \n \n \n \n \n \n \n \n prune: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n repo_patterns\n \n \n \n \n \n \n \n \n repo_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n sync_all\n \n \n \n \n \n \n \n \n sync_all: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n system_patterns\n \n \n \n \n \n \n \n \n system_patterns: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n use_ssl\n \n \n \n \n \n \n \n \n use_ssl: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BackgroundReposyncOptions.html":{"url":"interfaces/BackgroundReposyncOptions.html","title":"interface - BackgroundReposyncOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n BackgroundReposyncOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n nofail\n \n \n \n \n only\n \n \n \n \n repos\n \n \n \n \n tries\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n nofail\n \n \n \n \n \n \n \n \n nofail: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n only\n \n \n \n \n \n \n \n \n only: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n repos\n \n \n \n \n \n \n \n \n repos: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tries\n \n \n \n \n \n \n \n \n tries: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/BuildISOComponent.html":{"url":"components/BuildISOComponent.html","title":"component - BuildISOComponent","body":"\n \n\n\n\n\n\n Components\n \n BuildISOComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-build-iso\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatListModule\n FormsModule\n MatButton\n MatFormField\n MatInput\n MatLabel\n ReactiveFormsModule\n MatCheckbox\n \n \n\n \n styleUrls\n ./build-iso.component.scss\n \n\n\n\n \n templateUrl\n ./build-iso.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n buildisoFormGroup\n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runBuildiso\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:48\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:56\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runBuildiso\n \n \n \n \n \n \nrunBuildiso()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:36\n \n \n\n\n \n \n \n \n \n \n \n \n buildisoFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n iso: '',\n profiles: '',\n systems: '',\n buildisodir: '',\n distro: '',\n standalone: false,\n airgapped: false,\n source: '',\n excludeDNS: false,\n xorrisofsOpts: '',\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts:51\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { FormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\nimport { MatListModule } from '@angular/material/list';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { BackgroundBuildisoOptions, CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-build-iso',\n templateUrl: './build-iso.component.html',\n styleUrls: ['./build-iso.component.scss'],\n standalone: true,\n imports: [\n MatListModule,\n FormsModule,\n MatButton,\n MatFormField,\n MatInput,\n MatLabel,\n ReactiveFormsModule,\n MatCheckbox,\n ],\n})\nexport class BuildISOComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n buildisoFormGroup = this._formBuilder.group({\n iso: '',\n profiles: '',\n systems: '',\n buildisodir: '',\n distro: '',\n standalone: false,\n airgapped: false,\n source: '',\n excludeDNS: false,\n xorrisofsOpts: '',\n });\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runBuildiso(): void {\n const buildisoOptions: BackgroundBuildisoOptions = {\n iso: this.buildisoFormGroup.controls.iso.value,\n profiles: this.buildisoFormGroup.controls.profiles.value,\n systems: this.buildisoFormGroup.controls.systems.value,\n buildisodir: this.buildisoFormGroup.controls.buildisodir.value,\n distro: this.buildisoFormGroup.controls.distro.value,\n standalone: this.buildisoFormGroup.controls.standalone.value,\n airgapped: this.buildisoFormGroup.controls.airgapped.value,\n source: this.buildisoFormGroup.controls.source.value,\n excludeDNS: this.buildisoFormGroup.controls.excludeDNS.value,\n xorrisofsOpts: this.buildisoFormGroup.controls.xorrisofsOpts.value,\n };\n if (this.buildisoFormGroup.invalid) {\n this._snackBar.open('Please fill out all required inputs!', 'Close', {\n duration: 2000,\n });\n return;\n }\n this.cobblerApiService\n .background_buildiso(buildisoOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n BUILD ISO IMAGES\n\n\n \n Distro\n \n \n \n ISO\n \n \n \n Profiles\n \n \n \n Systems\n \n \n \n Buildiso directory\n \n \n \n Source\n \n \n \n xorrisofs Options\n \n \n Standalone\n Airgapped\n Exclude DNS\n Run\n\n\n \n\n \n \n ./build-iso.component.scss\n \n .form-replicate {\n min-width: 150px;\n max-width: 600px;\n width: 100%;\n}\n\n.form-field-full-width {\n width: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'BUILD ISO IMAGES Distro ISO Profiles Systems Buildiso directory Source xorrisofs Options Standalone Airgapped Exclude DNS Run'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'BuildISOComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/CheckSysComponent.html":{"url":"components/CheckSysComponent.html","title":"component - CheckSysComponent","body":"\n \n\n\n\n\n\n Components\n \n CheckSysComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-check-sys\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatListModule\n CommonModule\n MatButton\n MatIconButton\n MatIcon\n MatTooltip\n MatProgressSpinner\n \n \n\n \n styleUrls\n ./check-sys.component.scss\n \n\n\n\n \n templateUrl\n ./check-sys.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n data\n \n \n Public\n isLoading\n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n updateChecks\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:38\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:46\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateChecks\n \n \n \n \n \n \nupdateChecks()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:55\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : of([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n isLoading\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts:41\n \n \n\n\n \n \n\n\n\n\n\n \n import { CommonModule } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatListModule } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { RouterOutlet } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Observable, of, Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-check-sys',\n templateUrl: './check-sys.component.html',\n styleUrls: ['./check-sys.component.scss'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatListModule,\n CommonModule,\n MatButton,\n MatIconButton,\n MatIcon,\n MatTooltip,\n MatProgressSpinner,\n ],\n})\nexport class CheckSysComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Data\n public data: Observable> = of([]);\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.updateChecks();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n updateChecks(): void {\n this.isLoading = true;\n this.cobblerApiService\n .check(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (data) => {\n this.data = of(data);\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n this.isLoading = false;\n },\n );\n }\n}\n\n \n\n \n \n \n \n \n \n CHECK\n \n \n refresh\n \n \n \n \n \n \n \n \n \n {{ element }}\n \n \n \n \n \n\n\n \n\n \n \n ./check-sys.component.scss\n \n .title-table {\n display: table;\n width: 100%;\n}\n\n.title-row {\n display: table-cell;\n width: 100%;\n}\n\n.title-cell-text {\n display: table-cell;\n width: 100%;\n vertical-align: middle;\n}\n\n.title-cell-button {\n display: table-cell;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' CHECK refresh {{ element }} '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'CheckSysComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/DateFormatter.html":{"url":"classes/DateFormatter.html","title":"class - DateFormatter","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n DateFormatter\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/date_formatter.ts\n \n\n\n \n Description\n \n \n The DateFormatter supports decoding from and encoding to ISO8601 formatted strings. Accepts formats with and without\nhyphen/colon separators and correctly parses zoning info.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n colons\n \n \n hyphens\n \n \n Static\n ISO8601\n \n \n local\n \n \n ms\n \n \n offset\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n decodeIso8601\n \n \n encodeIso8601\n \n \n Static\n formatCurrentOffset\n \n \n Static\n getLocalDateParts\n \n \n Static\n getUTCDateParts\n \n \n Static\n zeroPad\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(colons: boolean, hyphens: boolean, local: boolean, ms: boolean, offset: boolean)\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:122\n \n \n\n \n \n Constructor for creating a DateFormatter.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n colons\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/disable formatting the time portion with a colon as separator\n\n \n \n \n hyphens\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/disable formatting the date portion with a hyphen as separator\n\n \n \n \n local\n \n \n boolean\n \n \n \n No\n \n \n \n Encode as local time instead of UTC\n\n \n \n \n ms\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/Disable output of milliseconds\n\n \n \n \n offset\n \n \n boolean\n \n \n \n No\n \n \n \n Enable/Disable output of UTC offset\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n colons\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n hyphens\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n Static\n ISO8601\n \n \n \n \n \n \n Default value : new RegExp(\n '([0-9]{4})([-]?([0-9]{2}))([-]?([0-9]{2}))(T([0-9]{2})(((:?([0-9]{2}))?((:?([0-9]{2}))?(.([0-9]+))?))?)(Z|([+-]([0-9]{2}(:?([0-9]{2}))?)))?)?',\n )\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:10\n \n \n\n \n \n Regular Expression that dissects ISO 8601 formatted strings into an array of parts.\n\n \n \n\n \n \n \n \n \n \n \n \n local\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n ms\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n offset\n \n \n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:19\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n decodeIso8601\n \n \n \n \n \n \n \n decodeIso8601(time: string)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:80\n \n \n\n\n \n \n Converts a date time stamp following the ISO8601 format to a JavaScript Date\nobject.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n time\n \n string\n \n\n \n No\n \n\n\n \n \nString representation of timestamp.\n\n\n \n \n \n \n \n \n Returns : Date\n\n \n \n Date object from timestamp.\n\n \n \n \n \n \n \n \n \n \n \n \n encodeIso8601\n \n \n \n \n \n \nencodeIso8601(date: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:153\n \n \n\n\n \n \n Converts a JavaScript Date object to an ISO8601 timestamp.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n date\n \n Date\n \n\n \n No\n \n\n\n \n \nDate object.\n\n\n \n \n \n \n \n \n Returns : string\n\n \n \n String representation of timestamp.\n\n \n \n \n \n \n \n \n \n \n \n \n Static\n formatCurrentOffset\n \n \n \n \n \n \n \n formatCurrentOffset(d: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:61\n \n \n\n\n \n \n Helper function to get the current timezone to default decoding to rather than UTC. (for backward compatibility)\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n d\n \n Date\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : string\n\n \n \n in the format /Z|[+-]\\d{2}:\\d{2}/\n\n \n \n \n \n \n \n \n \n \n \n \n Static\n getLocalDateParts\n \n \n \n \n \n \n \n getLocalDateParts(date: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:110\n \n \n\n\n \n \n Helper function to get an array of zero-padded date parts, in the local time zone\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n date\n \n Date\n \n\n \n No\n \n\n\n \n \nDate Object\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n getUTCDateParts\n \n \n \n \n \n \n \n getUTCDateParts(date: Date)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:42\n \n \n\n\n \n \n Helper function to get an array of zero-padded date parts, in UTC\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n date\n \n Date\n \n\n \n No\n \n\n\n \n \nDate Object\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n zeroPad\n \n \n \n \n \n \n \n zeroPad(digit: number, length: number)\n \n \n\n\n \n \n Defined in projects/typescript-xmlrpc/src/lib/date_formatter.ts:29\n \n \n\n\n \n \n Helper function to pad the digits with 0s to meet date formatting\nrequirements.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n digit\n \n number\n \n\n \n No\n \n\n\n \n \nThe number to pad.\n\n\n \n \n \n length\n \n number\n \n\n \n No\n \n\n\n \n \nLength of digit string, prefix with 0s if not already length.\n\n\n \n \n \n \n \n \n Returns : string\n\n \n \n String with the padded digit\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export class DateFormatter {\n /**\n * Regular Expression that dissects ISO 8601 formatted strings into an array of parts.\n */\n /* eslint-disable max-len */\n static ISO8601 = new RegExp(\n '([0-9]{4})([-]?([0-9]{2}))([-]?([0-9]{2}))(T([0-9]{2})(((:?([0-9]{2}))?((:?([0-9]{2}))?(.([0-9]+))?))?)(Z|([+-]([0-9]{2}(:?([0-9]{2}))?)))?)?',\n );\n /* eslint-enable max-len */\n\n colons = true;\n hyphens = false;\n local = true;\n ms = false;\n offset = false;\n\n /**\n * Helper function to pad the digits with 0s to meet date formatting\n * requirements.\n *\n * @param digit - The number to pad.\n * @param length - Length of digit string, prefix with 0s if not already length.\n * @return String with the padded digit\n */\n static zeroPad(digit: number, length: number): string {\n let padded = '' + digit;\n while (padded.length \n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DialogBoxTextConfirmComponent.html":{"url":"components/DialogBoxTextConfirmComponent.html","title":"component - DialogBoxTextConfirmComponent","body":"\n \n\n\n\n\n\n Components\n \n DialogBoxTextConfirmComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-dialog-box-text-confirm\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButtonModule\n MatDialogActions\n MatDialogClose\n MatDialogTitle\n MatDialogContent\n \n \n\n \n styleUrls\n ./dialog-box-text-confirm.css\n \n\n\n\n \n templateUrl\n ./dialog-box-text-confirm.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(data: DialogData)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts:30\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n \n DialogData\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : DialogData\n\n \n \n \n \n Decorators : \n \n \n @Inject(MAT_DIALOG_DATA)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts:31\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\nexport interface DialogData {\n eventId: string;\n name: string;\n eventLog: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-box-text-confirm',\n templateUrl: './dialog-box-text-confirm.html',\n styleUrls: ['./dialog-box-text-confirm.css'],\n standalone: true,\n imports: [\n MatButtonModule,\n MatDialogActions,\n MatDialogClose,\n MatDialogTitle,\n MatDialogContent,\n ],\n})\nexport class DialogBoxTextConfirmComponent {\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogData) {}\n}\n\n \n\n \n Log for: {{ data.name }}\n{{ data.eventLog }}\n\n Close\n\n\n \n\n \n \n ./dialog-box-text-confirm.css\n \n .content {\n white-space: pre-line;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Log for: {{ data.name }}{{ data.eventLog }} Close'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DialogBoxTextConfirmComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DialogData.html":{"url":"interfaces/DialogData.html","title":"interface - DialogData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DialogData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n eventId\n \n \n \n \n eventLog\n \n \n \n \n name\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n eventId\n \n \n \n \n \n \n \n \n eventId: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n eventLog\n \n \n \n \n \n \n \n \n eventLog: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, Inject } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\nexport interface DialogData {\n eventId: string;\n name: string;\n eventLog: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-box-text-confirm',\n templateUrl: './dialog-box-text-confirm.html',\n styleUrls: ['./dialog-box-text-confirm.css'],\n standalone: true,\n imports: [\n MatButtonModule,\n MatDialogActions,\n MatDialogClose,\n MatDialogTitle,\n MatDialogContent,\n ],\n})\nexport class DialogBoxTextConfirmComponent {\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogData) {}\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DialogItemCopyComponent.html":{"url":"components/DialogItemCopyComponent.html","title":"component - DialogItemCopyComponent","body":"\n \n\n\n\n\n\n Components\n \n DialogItemCopyComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-dialog-item-copy\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatDialogModule\n MatButtonModule\n ReactiveFormsModule\n MatFormFieldModule\n MatInputModule\n FormsModule\n \n \n\n\n\n\n \n templateUrl\n ./dialog-item-copy.component.html\n \n\n\n\n \n styleUrl\n ./dialog-item-copy.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n data\n \n \n Readonly\n dialogCloseSignal\n \n \n Readonly\n dialogRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n onNoClick\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(data: DialogItemCopyData)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts:41\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n \n DialogItemCopyData\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n onNoClick\n \n \n \n \n \n \nonNoClick()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts:45\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : DialogItemCopyData\n\n \n \n \n \n Decorators : \n \n \n @Inject(MAT_DIALOG_DATA)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogCloseSignal\n \n \n \n \n \n \n Default value : model('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogRef\n \n \n \n \n \n \n Default value : inject(MatDialogRef)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts:40\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n inject,\n Inject,\n model,\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton, MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogModule,\n MatDialogRef,\n} from '@angular/material/dialog';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n\nexport interface DialogItemCopyData {\n itemType: string;\n itemName: string;\n itemUid: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-item-copy',\n standalone: true,\n imports: [\n MatDialogModule,\n MatButtonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ],\n templateUrl: './dialog-item-copy.component.html',\n styleUrl: './dialog-item-copy.component.scss',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogItemCopyComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly dialogCloseSignal = model('');\n\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemCopyData) {}\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n \n Copy {{ data.itemType }}\n\n \n Old name\n \n \n\n \n New name\n \n \n\n\n Close\n Copy\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Copy {{ data.itemType }} Old name New name Close Copy'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DialogItemCopyComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DialogItemCopyData.html":{"url":"interfaces/DialogItemCopyData.html","title":"interface - DialogItemCopyData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DialogItemCopyData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n itemName\n \n \n \n \n itemType\n \n \n \n \n itemUid\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n itemName\n \n \n \n \n \n \n \n \n itemName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n itemType\n \n \n \n \n \n \n \n \n itemType: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n itemUid\n \n \n \n \n \n \n \n \n itemUid: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n inject,\n Inject,\n model,\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton, MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogModule,\n MatDialogRef,\n} from '@angular/material/dialog';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n\nexport interface DialogItemCopyData {\n itemType: string;\n itemName: string;\n itemUid: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-item-copy',\n standalone: true,\n imports: [\n MatDialogModule,\n MatButtonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ],\n templateUrl: './dialog-item-copy.component.html',\n styleUrl: './dialog-item-copy.component.scss',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogItemCopyComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly dialogCloseSignal = model('');\n\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemCopyData) {}\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DialogItemRenameComponent.html":{"url":"components/DialogItemRenameComponent.html","title":"component - DialogItemRenameComponent","body":"\n \n\n\n\n\n\n Components\n \n DialogItemRenameComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-dialog-item-rename\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatDialogModule\n MatButtonModule\n ReactiveFormsModule\n MatFormFieldModule\n MatInputModule\n FormsModule\n \n \n\n\n\n\n \n templateUrl\n ./dialog-item-rename.component.html\n \n\n\n\n \n styleUrl\n ./dialog-item-rename.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n data\n \n \n Readonly\n dialogCloseSignal\n \n \n Readonly\n dialogRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n onNoClick\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(data: DialogItemRenameData)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:41\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n \n DialogItemRenameData\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n onNoClick\n \n \n \n \n \n \nonNoClick()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:45\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : DialogItemRenameData\n\n \n \n \n \n Decorators : \n \n \n @Inject(MAT_DIALOG_DATA)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogCloseSignal\n \n \n \n \n \n \n Default value : model('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogRef\n \n \n \n \n \n \n Default value : inject(MatDialogRef)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts:40\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n inject,\n Inject,\n model,\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton, MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogModule,\n MatDialogRef,\n} from '@angular/material/dialog';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n\nexport interface DialogItemRenameData {\n itemType: string;\n itemName: string;\n itemUid: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-item-rename',\n standalone: true,\n imports: [\n MatDialogModule,\n MatButtonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ],\n templateUrl: './dialog-item-rename.component.html',\n styleUrl: './dialog-item-rename.component.scss',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogItemRenameComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly dialogCloseSignal = model('');\n\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemRenameData) {}\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n \n Rename {{ data.itemType }}\n\n \n Old name\n \n \n\n \n New name\n \n \n\n\n Close\n Rename\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Rename {{ data.itemType }} Old name New name Close Rename'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DialogItemRenameComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DialogItemRenameData.html":{"url":"interfaces/DialogItemRenameData.html","title":"interface - DialogItemRenameData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DialogItemRenameData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n itemName\n \n \n \n \n itemType\n \n \n \n \n itemUid\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n itemName\n \n \n \n \n \n \n \n \n itemName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n itemType\n \n \n \n \n \n \n \n \n itemType: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n itemUid\n \n \n \n \n \n \n \n \n itemUid: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import {\n ChangeDetectionStrategy,\n Component,\n inject,\n Inject,\n model,\n} from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton, MatButtonModule } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogModule,\n MatDialogRef,\n} from '@angular/material/dialog';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n\nexport interface DialogItemRenameData {\n itemType: string;\n itemName: string;\n itemUid: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-item-rename',\n standalone: true,\n imports: [\n MatDialogModule,\n MatButtonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ],\n templateUrl: './dialog-item-rename.component.html',\n styleUrl: './dialog-item-rename.component.scss',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogItemRenameComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly dialogCloseSignal = model('');\n\n constructor(@Inject(MAT_DIALOG_DATA) public data: DialogItemRenameData) {}\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DialogTextInputComponent.html":{"url":"components/DialogTextInputComponent.html","title":"component - DialogTextInputComponent","body":"\n \n\n\n\n\n\n Components\n \n DialogTextInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-dialog-text-input\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatDialogContent\n MatDialogTitle\n MatFormField\n MatDialogActions\n MatButton\n MatDialogClose\n MatInput\n MatLabel\n FormsModule\n \n \n\n\n\n\n \n templateUrl\n ./dialog-text-input.component.html\n \n\n\n\n \n styleUrl\n ./dialog-text-input.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n data\n \n \n Readonly\n dialogCloseSignal\n \n \n Readonly\n dialogRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n onNoClick\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n onNoClick\n \n \n \n \n \n \nonNoClick()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:41\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Readonly\n data\n \n \n \n \n \n \n Default value : inject(MAT_DIALOG_DATA)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogCloseSignal\n \n \n \n \n \n \n Default value : model(this.data.text)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n dialogRef\n \n \n \n \n \n \n Default value : inject(MatDialogRef)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts:37\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, model } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\n\nexport interface DialogTextInputData {\n text: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-text-input',\n standalone: true,\n imports: [\n MatDialogContent,\n MatDialogTitle,\n MatFormField,\n MatDialogActions,\n MatButton,\n MatDialogClose,\n MatInput,\n MatLabel,\n FormsModule,\n ],\n templateUrl: './dialog-text-input.component.html',\n styleUrl: './dialog-text-input.component.scss',\n})\nexport class DialogTextInputComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly data = inject(MAT_DIALOG_DATA);\n readonly dialogCloseSignal = model(this.data.text);\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n \n Add new Option:\n\n \n New Option\n \n \n\n\n No Thanks\n \n Ok\n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Add new Option: New Option No Thanks Ok '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DialogTextInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DialogTextInputData.html":{"url":"interfaces/DialogTextInputData.html","title":"interface - DialogTextInputData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DialogTextInputData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n text\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n text\n \n \n \n \n \n \n \n \n text: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, inject, model } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\n\nexport interface DialogTextInputData {\n text: string;\n}\n\n@Component({\n selector: 'cobbler-dialog-text-input',\n standalone: true,\n imports: [\n MatDialogContent,\n MatDialogTitle,\n MatFormField,\n MatDialogActions,\n MatButton,\n MatDialogClose,\n MatInput,\n MatLabel,\n FormsModule,\n ],\n templateUrl: './dialog-text-input.component.html',\n styleUrl: './dialog-text-input.component.scss',\n})\nexport class DialogTextInputComponent {\n readonly dialogRef = inject(MatDialogRef);\n readonly data = inject(MAT_DIALOG_DATA);\n readonly dialogCloseSignal = model(this.data.text);\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Distro.html":{"url":"interfaces/Distro.html","title":"interface - Distro","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Distro\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n arch\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n boot_loaders\n \n \n \n \n breed\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n initrd\n \n \n \n \n is_subobject\n \n \n \n \n kernel\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n name\n \n \n \n \n os_version\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n redhat_management_key\n \n \n \n \n remote_boot_initrd\n \n \n \n \n remote_boot_kernel\n \n \n \n \n remote_grub_initrd\n \n \n \n \n remote_grub_kernel\n \n \n \n \n source_repos\n \n \n \n \n template_files\n \n \n \n \n tree_build_time\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_loaders\n \n \n \n \n \n \n \n \n boot_loaders: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n initrd\n \n \n \n \n \n \n \n \n initrd: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel\n \n \n \n \n \n \n \n \n kernel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n redhat_management_key\n \n \n \n \n \n \n \n \n redhat_management_key: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_boot_initrd\n \n \n \n \n \n \n \n \n remote_boot_initrd: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_boot_kernel\n \n \n \n \n \n \n \n \n remote_boot_kernel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_grub_initrd\n \n \n \n \n \n \n \n \n remote_grub_initrd: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n remote_grub_kernel\n \n \n \n \n \n \n \n \n remote_grub_kernel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n source_repos\n \n \n \n \n \n \n \n \n source_repos: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tree_build_time\n \n \n \n \n \n \n \n \n tree_build_time: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DistroEditComponent.html":{"url":"components/DistroEditComponent.html","title":"component - DistroEditComponent","body":"\n \n\n\n\n\n\n Components\n \n DistroEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatIcon\n MatIconButton\n ReactiveFormsModule\n MatFormField\n MatInput\n MatLabel\n FormsModule\n MatTooltip\n MatButton\n MatCheckbox\n MatSelect\n MatOption\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./distro-edit.component.html\n \n\n\n\n \n styleUrl\n ./distro-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n distro\n \n \n distroFormGroup\n \n \n isEditMode\n \n \n name\n \n \n Private\n ngUnsubscribe\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyDistro\n \n \n editDistro\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeDistro\n \n \n saveDistro\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n distroOwners\n \n \n distroAutoinstallMeta\n \n \n distroBootFiles\n \n \n distroFetchableFiles\n \n \n distroKernelOptions\n \n \n distroKernelOptionsPost\n \n \n distroTemplateFiles\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:104\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyDistro\n \n \n \n \n \n \ncopyDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:280\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editDistro\n \n \n \n \n \n \neditDistro()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:275\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:121\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:117\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:126\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeDistro\n \n \n \n \n \n \nremoveDistro()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:253\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveDistro\n \n \n \n \n \n \nsaveDistro()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:320\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n distro\n \n \n \n \n \n \n Type : Distro\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n distroFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n tree_build_time: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n kernel: new FormControl({ value: '', disabled: true }),\n initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_kernel: new FormControl({ value: '', disabled: true }),\n remote_grub_initrd: new FormControl({ value: '', disabled: true }),\n remote_grub_kernel: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:104\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:51\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n distroOwners\n \n \n\n \n \n getdistroOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:324\n \n \n\n \n \n \n \n \n \n \n distroAutoinstallMeta\n \n \n\n \n \n getdistroAutoinstallMeta()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:334\n \n \n\n \n \n \n \n \n \n \n distroBootFiles\n \n \n\n \n \n getdistroBootFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:344\n \n \n\n \n \n \n \n \n \n \n distroFetchableFiles\n \n \n\n \n \n getdistroFetchableFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:354\n \n \n\n \n \n \n \n \n \n \n distroKernelOptions\n \n \n\n \n \n getdistroKernelOptions()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:364\n \n \n\n \n \n \n \n \n \n \n distroKernelOptionsPost\n \n \n\n \n \n getdistroKernelOptionsPost()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:374\n \n \n\n \n \n \n \n \n \n \n distroTemplateFiles\n \n \n\n \n \n getdistroTemplateFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts:384\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatOption, MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Distro } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n MatIcon,\n MatIconButton,\n ReactiveFormsModule,\n MatFormField,\n MatInput,\n MatLabel,\n FormsModule,\n MatTooltip,\n MatButton,\n MatCheckbox,\n MatSelect,\n MatOption,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './distro-edit.component.html',\n styleUrl: './distro-edit.component.scss',\n})\nexport class DistroEditComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n name: string;\n distro: Distro;\n private readonly _formBuilder = inject(FormBuilder);\n distroFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n tree_build_time: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n kernel: new FormControl({ value: '', disabled: true }),\n initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_initrd: new FormControl({ value: '', disabled: true }),\n remote_boot_kernel: new FormControl({ value: '', disabled: true }),\n remote_grub_initrd: new FormControl({ value: '', disabled: true }),\n remote_grub_kernel: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_distro(this.name, false, false, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.distro = value;\n this.distroFormGroup.controls.name.setValue(this.distro.name);\n this.distroFormGroup.controls.uid.setValue(this.distro.uid);\n this.distroFormGroup.controls.mtime.setValue(\n new Date(this.distro.mtime * 1000).toString(),\n );\n this.distroFormGroup.controls.ctime.setValue(\n new Date(this.distro.ctime * 1000).toString(),\n );\n this.distroFormGroup.controls.depth.setValue(this.distro.depth);\n this.distroFormGroup.controls.arch.setValue(this.distro.arch);\n this.distroFormGroup.controls.is_subobject.setValue(\n this.distro.is_subobject,\n );\n this.distroFormGroup.controls.tree_build_time.setValue(\n new Date(this.distro.tree_build_time * 1000).toString(),\n );\n this.distroFormGroup.controls.breed.setValue(this.distro.breed);\n this.distroFormGroup.controls.comment.setValue(this.distro.comment);\n this.distroFormGroup.controls.kernel.setValue(this.distro.kernel);\n this.distroFormGroup.controls.initrd.setValue(this.distro.initrd);\n this.distroFormGroup.controls.remote_boot_initrd.setValue(\n this.distro.remote_boot_initrd,\n );\n this.distroFormGroup.controls.remote_boot_kernel.setValue(\n this.distro.remote_boot_kernel,\n );\n this.distroFormGroup.controls.remote_grub_initrd.setValue(\n this.distro.remote_grub_initrd,\n );\n this.distroFormGroup.controls.remote_grub_kernel.setValue(\n this.distro.remote_grub_kernel,\n );\n this.distroFormGroup.controls.os_version.setValue(\n this.distro.os_version,\n );\n this.distroFormGroup.controls.redhat_management_key.setValue(\n this.distro.redhat_management_key,\n );\n if (typeof this.distro.boot_loaders === 'string') {\n this.distroFormGroup.controls.bootloader_inherited.setValue(true);\n } else {\n this.distroFormGroup.controls.bootloader_inherited.setValue(false);\n this.distroFormGroup.controls.boot_loaders.setValue(\n this.distro.boot_loaders,\n );\n }\n if (typeof this.distro.owners === 'string') {\n this.distroFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.distroFormGroup.controls.owners_inherited.setValue(false);\n this.distroFormGroup.controls.owners.setValue(this.distro.owners);\n }\n if (typeof this.distro.autoinstall_meta === 'string') {\n this.distroFormGroup.controls.autoinstall_meta_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.autoinstall_meta_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.autoinstall_meta.setValue(\n this.distro.autoinstall_meta,\n );\n }\n if (typeof this.distro.fetchable_files === 'string') {\n this.distroFormGroup.controls.fetchable_files_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.fetchable_files_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.fetchable_files.setValue(\n this.distro.fetchable_files,\n );\n }\n if (typeof this.distro.kernel_options === 'string') {\n this.distroFormGroup.controls.kernel_options_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.kernel_options_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.kernel_options.setValue(\n this.distro.kernel_options,\n );\n }\n if (typeof this.distro.kernel_options_post === 'string') {\n this.distroFormGroup.controls.kernel_options_post_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.kernel_options_post_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.kernel_options_post.setValue(\n this.distro.kernel_options_post,\n );\n }\n if (typeof this.distro.template_files === 'string') {\n this.distroFormGroup.controls.template_files_inherited.setValue(\n true,\n );\n } else {\n this.distroFormGroup.controls.template_files_inherited.setValue(\n false,\n );\n this.distroFormGroup.controls.template_files.setValue(\n this.distro.template_files,\n );\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeDistro(): void {\n this.cobblerApiService\n .remove_distro(this.name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'distro']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editDistro(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyDistro(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemCopyComponent, {\n data: {\n itemType: 'Distro',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the distro\n return;\n }\n this.cobblerApiService\n .get_distro_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (distroHandle) => {\n this.cobblerApiService\n .copy_distro(distroHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.router.navigate(['/items', 'distro', newItemName]);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n saveDistro(): void {\n // TODO\n }\n\n get distroOwners(): string[] {\n if (this.distro && this.distro.owners) {\n const ownersResult = this.distro.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n\n get distroAutoinstallMeta(): object {\n if (this.distro && this.distro.autoinstall_meta) {\n const autoinstallMetaResult = this.distro.autoinstall_meta;\n if (typeof autoinstallMetaResult !== 'string') {\n return autoinstallMetaResult;\n }\n }\n return {};\n }\n\n get distroBootFiles(): object {\n if (this.distro && this.distro.boot_files) {\n const bootFilesResult = this.distro.boot_files;\n if (typeof bootFilesResult !== 'string') {\n return bootFilesResult;\n }\n }\n return {};\n }\n\n get distroFetchableFiles(): object {\n if (this.distro && this.distro.fetchable_files) {\n const fetchableFilesResult = this.distro.fetchable_files;\n if (typeof fetchableFilesResult !== 'string') {\n return fetchableFilesResult;\n }\n }\n return {};\n }\n\n get distroKernelOptions(): object {\n if (this.distro && this.distro.kernel_options) {\n const kernelOptionsResult = this.distro.kernel_options;\n if (typeof kernelOptionsResult !== 'string') {\n return kernelOptionsResult;\n }\n }\n return {};\n }\n\n get distroKernelOptionsPost(): object {\n if (this.distro && this.distro.kernel_options_post) {\n const kernelOptionsPostResult = this.distro.kernel_options_post;\n if (typeof kernelOptionsPostResult !== 'string') {\n return kernelOptionsPostResult;\n }\n }\n return {};\n }\n\n get distroTemplateFiles(): object {\n if (this.distro && this.distro.template_files) {\n const templateFilesResult = this.distro.template_files;\n if (typeof templateFilesResult !== 'string') {\n return templateFilesResult;\n }\n }\n return {};\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n \n Architecture\n \n \n Is Subobject?\n \n Tree Build Time\n \n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n Breed\n \n \n \n Comment\n \n \n \n \n Inherited\n \n \n kernel\n \n \n \n initrd\n \n \n \n Remote Boot Initrd\n \n \n \n Remote Boot Kernel\n \n \n \n Remote GRUB Initrd\n \n \n \n Remote GRUB Kernel\n \n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n Operating System Version\n \n \n \n \n Inherited\n \n \n RedHat Management Key\n \n \n \n \n Inherited\n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Architecture Is Subobject? Tree Build Time Inherited Inherited Inherited Breed Comment Inherited kernel initrd Remote Boot Initrd Remote Boot Kernel Remote GRUB Initrd Remote GRUB Kernel Inherited Inherited Inherited Operating System Version Inherited RedHat Management Key Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DistroEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DistroSignatureOsVersion.html":{"url":"interfaces/DistroSignatureOsVersion.html","title":"interface - DistroSignatureOsVersion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DistroSignatureOsVersion\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n boot_files\n \n \n \n Optional\n \n boot_loaders\n \n \n \n \n default_autoinstall\n \n \n \n \n initrd_file\n \n \n \n Optional\n \n isolinux_ok\n \n \n \n \n kernel_arch\n \n \n \n Optional\n \n kernel_arch_regex\n \n \n \n \n kernel_file\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n signatures\n \n \n \n \n supported_arches\n \n \n \n \n supported_repo_breeds\n \n \n \n Optional\n \n template_files\n \n \n \n \n version_file\n \n \n \n Optional\n \n version_file_regex\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n boot_loaders\n \n \n \n \n \n \n \n \n boot_loaders: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n default_autoinstall\n \n \n \n \n \n \n \n \n default_autoinstall: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n initrd_file\n \n \n \n \n \n \n \n \n initrd_file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n isolinux_ok\n \n \n \n \n \n \n \n \n isolinux_ok: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n kernel_arch\n \n \n \n \n \n \n \n \n kernel_arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_arch_regex\n \n \n \n \n \n \n \n \n kernel_arch_regex: string | null\n\n \n \n\n\n \n \n Type : string | null\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n kernel_file\n \n \n \n \n \n \n \n \n kernel_file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n signatures\n \n \n \n \n \n \n \n \n signatures: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n supported_arches\n \n \n \n \n \n \n \n \n supported_arches: (\"arm\" | \"ARM64\" | \"armhfp\" | \"aarch64\" | \"i386\" | \"i586\" | \"ia64\" | \"ppc\" | \"ppc64\" | \"ppc64le\" | \"ppc64el\" | \"s390\" | \"s390x\" | \"x86_64\" | \"amd64\" | \"AMD64\" | \"x86\")[]\n\n \n \n\n\n \n \n Type : (\"arm\" | \"ARM64\" | \"armhfp\" | \"aarch64\" | \"i386\" | \"i586\" | \"ia64\" | \"ppc\" | \"ppc64\" | \"ppc64le\" | \"ppc64el\" | \"s390\" | \"s390x\" | \"x86_64\" | \"amd64\" | \"AMD64\" | \"x86\")[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n supported_repo_breeds\n \n \n \n \n \n \n \n \n supported_repo_breeds: (\"rsync\" | \"rhn\" | \"yum\" | \"apt\")[]\n\n \n \n\n\n \n \n Type : (\"rsync\" | \"rhn\" | \"yum\" | \"apt\")[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n version_file\n \n \n \n \n \n \n \n \n version_file: string | null\n\n \n \n\n\n \n \n Type : string | null\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n version_file_regex\n \n \n \n \n \n \n \n \n version_file_regex: string | null\n\n \n \n\n\n \n \n Type : string | null\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n\n\n \n export interface DistroSignatureOsVersion {\n signatures: string[];\n version_file: string | null;\n version_file_regex?: string | null;\n kernel_arch: string;\n kernel_arch_regex?: string | null;\n supported_arches: (\n | 'arm'\n | 'ARM64'\n | 'armhfp'\n | 'aarch64'\n | 'i386'\n | 'i586'\n | 'ia64'\n | 'ppc'\n | 'ppc64'\n | 'ppc64le'\n | 'ppc64el'\n | 's390'\n | 's390x'\n | 'x86_64'\n | 'amd64'\n | 'AMD64'\n | 'x86'\n )[];\n supported_repo_breeds: ('rsync' | 'rhn' | 'yum' | 'apt')[];\n kernel_file: string;\n initrd_file: string;\n isolinux_ok?: boolean;\n default_autoinstall: string;\n kernel_options: string;\n kernel_options_post: string;\n template_files?: string;\n boot_files?: string[];\n boot_loaders?: {\n arm?: ('pxe' | 'ipxe' | 'grub')[];\n armhfp?: ('pxe' | 'ipxe' | 'grub')[];\n aarch64?: ('pxe' | 'ipxe' | 'grub')[];\n i386?: ('pxe' | 'ipxe' | 'grub')[];\n ia64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64le?: ('pxe' | 'ipxe' | 'grub')[];\n s390?: ('pxe' | 'ipxe' | 'grub')[];\n s390x?: ('pxe' | 'ipxe' | 'grub')[];\n x86_64?: ('pxe' | 'ipxe' | 'grub')[];\n [k: string]: unknown;\n };\n}\n\n/**\n * The different distributions supported by Cobbler. This schema is valid for Cobbler with major version 3.\n *\n * Generated via: https://transform.tools/json-schema-to-typescript\n */\nexport interface DistroSignatures {\n breeds: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"redhat|debian|ubuntu|suse|vmware|freebsd|xen|unix|windows|powerkvm|generic\".\n */\n [k: string]: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"^[a-zA-Z0-9]*$\".\n */\n [k: string]: DistroSignatureOsVersion;\n };\n };\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DistroSignatures.html":{"url":"interfaces/DistroSignatures.html","title":"interface - DistroSignatures","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DistroSignatures\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n\n\n \n Description\n \n \n The different distributions supported by Cobbler. This schema is valid for Cobbler with major version 3.\nGenerated via: https://transform.tools/json-schema-to-typescript\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n breeds\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n breeds\n \n \n \n \n \n \n \n \n breeds: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface DistroSignatureOsVersion {\n signatures: string[];\n version_file: string | null;\n version_file_regex?: string | null;\n kernel_arch: string;\n kernel_arch_regex?: string | null;\n supported_arches: (\n | 'arm'\n | 'ARM64'\n | 'armhfp'\n | 'aarch64'\n | 'i386'\n | 'i586'\n | 'ia64'\n | 'ppc'\n | 'ppc64'\n | 'ppc64le'\n | 'ppc64el'\n | 's390'\n | 's390x'\n | 'x86_64'\n | 'amd64'\n | 'AMD64'\n | 'x86'\n )[];\n supported_repo_breeds: ('rsync' | 'rhn' | 'yum' | 'apt')[];\n kernel_file: string;\n initrd_file: string;\n isolinux_ok?: boolean;\n default_autoinstall: string;\n kernel_options: string;\n kernel_options_post: string;\n template_files?: string;\n boot_files?: string[];\n boot_loaders?: {\n arm?: ('pxe' | 'ipxe' | 'grub')[];\n armhfp?: ('pxe' | 'ipxe' | 'grub')[];\n aarch64?: ('pxe' | 'ipxe' | 'grub')[];\n i386?: ('pxe' | 'ipxe' | 'grub')[];\n ia64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64?: ('pxe' | 'ipxe' | 'grub')[];\n ppc64le?: ('pxe' | 'ipxe' | 'grub')[];\n s390?: ('pxe' | 'ipxe' | 'grub')[];\n s390x?: ('pxe' | 'ipxe' | 'grub')[];\n x86_64?: ('pxe' | 'ipxe' | 'grub')[];\n [k: string]: unknown;\n };\n}\n\n/**\n * The different distributions supported by Cobbler. This schema is valid for Cobbler with major version 3.\n *\n * Generated via: https://transform.tools/json-schema-to-typescript\n */\nexport interface DistroSignatures {\n breeds: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"redhat|debian|ubuntu|suse|vmware|freebsd|xen|unix|windows|powerkvm|generic\".\n */\n [k: string]: {\n /**\n * This interface was referenced by `undefined`'s JSON-Schema definition\n * via the `patternProperty` \"^[a-zA-Z0-9]*$\".\n */\n [k: string]: DistroSignatureOsVersion;\n };\n };\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DistrosOverviewComponent.html":{"url":"components/DistrosOverviewComponent.html","title":"component - DistrosOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n DistrosOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-distros\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n MatTable\n MatHeaderCell\n MatCell\n MatColumnDef\n MatHeaderCellDef\n MatCellDef\n MatHeaderRow\n MatRow\n MatRowDef\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatMenuTrigger\n \n \n\n \n styleUrls\n ./distros-overview.component.css\n \n\n\n\n \n templateUrl\n ./distros-overview.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteDistro\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameDistro\n \n \n Private\n retrieveDistros\n \n \n showDistro\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:61\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteDistro\n \n \n \n \n \n \ndeleteDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:139\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:75\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:71\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameDistro\n \n \n \n \n \n \nrenameDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:99\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveDistros\n \n \n \n \n \n \n \n retrieveDistros()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:80\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showDistro\n \n \n \n \n \n \nshowDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:95\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:59\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'breed', 'os_version', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts:64\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Distro } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogBoxTextConfirmComponent } from '../../../common/dialog-box-text-confirm/dialog-box-text-confirm';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-distros',\n templateUrl: './distros-overview.component.html',\n styleUrls: ['./distros-overview.component.css'],\n\n standalone: true,\n imports: [\n MatButton,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRow,\n MatRow,\n MatRowDef,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatMenuTrigger,\n ],\n})\nexport class DistrosOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'breed', 'os_version', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveDistros();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveDistros(): void {\n this.cobblerApiService\n .get_distros()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showDistro(uid: string, name: string): void {\n this.router.navigate(['/items', 'distro', name]);\n }\n\n renameDistro(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Distro',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the distro\n return;\n }\n this.cobblerApiService\n .get_distro_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (distroHandle) => {\n this.cobblerApiService\n .rename_distro(distroHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveDistros();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteDistro(uid: string, name: string): void {\n this.cobblerApiService\n .remove_distro(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveDistros();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n DISTROS\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Breed\n {{ element.breed }}\n \n\n \n \n Operating System Version\n {{ element.os_version }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n \n \n ./distros-overview.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'DISTROS Name {{ element.name }} Breed {{ element.breed }} Operating System Version {{ element.os_version }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'DistrosOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Event.html":{"url":"interfaces/Event.html","title":"interface - Event","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Event\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n id\n \n \n \n \n name\n \n \n \n \n readByWho\n \n \n \n \n state\n \n \n \n \n statetime\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n id\n \n \n \n \n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n readByWho\n \n \n \n \n \n \n \n \n readByWho: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n state\n \n \n \n \n \n \n \n \n state: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n statetime\n \n \n \n \n \n \n \n \n statetime: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ExampleFlatNode.html":{"url":"interfaces/ExampleFlatNode.html","title":"interface - ExampleFlatNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ExampleFlatNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n\n\n \n Description\n \n \n Flat node with expandable and level information\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n expandable\n \n \n \n \n level\n \n \n \n \n name\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n expandable\n \n \n \n \n \n \n \n \n expandable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n level\n \n \n \n \n \n \n \n \n level: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { FlatTreeControl } from '@angular/cdk/tree';\nimport { Component, Input, OnInit } from '@angular/core';\nimport {\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeModule,\n} from '@angular/material/tree';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface ObjectNode {\n name: string;\n value: any;\n children?: ObjectNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-viewable-tree',\n templateUrl: './viewable-tree.component.html',\n styleUrls: ['./viewable-tree.component.scss'],\n standalone: true,\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n})\nexport class ViewableTreeComponent implements OnInit {\n @Input() inputObject: object = {};\n viewableTreeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n private _transformer = (node: ObjectNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n value: node.value,\n level: level,\n };\n };\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n );\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n constructor() {}\n\n inputLength(inputObject: object): number {\n return Object.keys(inputObject).length;\n }\n\n private transformObject(inputObject: object): ObjectNode[] {\n const resultStructure = [];\n let children = [];\n Object.keys(inputObject).forEach((key) => {\n if (\n !Array.isArray(inputObject[key]) &&\n typeof inputObject[key] === 'object'\n ) {\n children = this.transformObject(inputObject[key]);\n }\n resultStructure.push({\n name: key,\n value: inputObject[key],\n children: children,\n });\n });\n return resultStructure;\n }\n\n ngOnInit(): void {\n this.dataSource.data = this.transformObject(this.inputObject);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ExtendedVersion.html":{"url":"interfaces/ExtendedVersion.html","title":"interface - ExtendedVersion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ExtendedVersion\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n builddate\n \n \n \n \n gitdate\n \n \n \n \n gitstamp\n \n \n \n \n version\n \n \n \n \n versionTuple\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n builddate\n \n \n \n \n \n \n \n \n builddate: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n gitdate\n \n \n \n \n \n \n \n \n gitdate: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n gitstamp\n \n \n \n \n \n \n \n \n gitstamp: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n version\n \n \n \n \n \n \n \n \n version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n versionTuple\n \n \n \n \n \n \n \n \n versionTuple: Version\n\n \n \n\n\n \n \n Type : Version\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/File.html":{"url":"interfaces/File.html","title":"interface - File","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n File\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n action\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n group\n \n \n \n \n is_dir\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n mode\n \n \n \n \n name\n \n \n \n \n owner\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n path\n \n \n \n \n template\n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n \n \n \n \n action: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n group\n \n \n \n \n \n \n \n \n group: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_dir\n \n \n \n \n \n \n \n \n is_dir: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mode\n \n \n \n \n \n \n \n \n mode: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owner\n \n \n \n \n \n \n \n \n owner: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template\n \n \n \n \n \n \n \n \n template: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FileEditComponent.html":{"url":"components/FileEditComponent.html","title":"component - FileEditComponent","body":"\n \n\n\n\n\n\n Components\n \n FileEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./file-edit.component.html\n \n\n\n\n \n styleUrl\n ./file-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n file\n \n \n fileFormGroup\n \n \n isEditMode\n \n \n name\n \n \n Private\n ngUnsubscribe\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyFile\n \n \n editFile\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeFile\n \n \n saveFile\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:71\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyFile\n \n \n \n \n \n \ncopyFile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:154\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editFile\n \n \n \n \n \n \neditFile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:149\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:88\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:84\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:93\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeFile\n \n \n \n \n \n \nremoveFile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:127\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveFile\n \n \n \n \n \n \nsaveFile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:194\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:53\n \n \n\n\n \n \n \n \n \n \n \n \n file\n \n \n \n \n \n \n Type : File\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n fileFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_dir: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:71\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:51\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts:48\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, File } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n ],\n templateUrl: './file-edit.component.html',\n styleUrl: './file-edit.component.scss',\n})\nexport class FileEditComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n name: string;\n file: File;\n private readonly _formBuilder = inject(FormBuilder);\n fileFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_dir: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_file(this.name, false, false, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.file = value;\n this.fileFormGroup.controls.name.setValue(this.file.name);\n this.fileFormGroup.controls.uid.setValue(this.file.uid);\n this.fileFormGroup.controls.mtime.setValue(\n new Date(this.file.mtime * 1000).toString(),\n );\n this.fileFormGroup.controls.ctime.setValue(\n new Date(this.file.ctime * 1000).toString(),\n );\n this.fileFormGroup.controls.depth.setValue(this.file.depth);\n this.fileFormGroup.controls.is_subobject.setValue(\n this.file.is_subobject,\n );\n this.fileFormGroup.controls.comment.setValue(this.file.comment);\n this.fileFormGroup.controls.action.setValue(this.file.action);\n this.fileFormGroup.controls.group.setValue(this.file.group);\n this.fileFormGroup.controls.mode.setValue(this.file.mode);\n this.fileFormGroup.controls.owner.setValue(this.file.owner);\n this.fileFormGroup.controls.path.setValue(this.file.path);\n this.fileFormGroup.controls.template.setValue(this.file.template);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeFile(): void {\n this.cobblerApiService\n .remove_file(this.name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'file']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editFile(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyFile(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemCopyComponent, {\n data: {\n itemType: 'File',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the file\n return;\n }\n this.cobblerApiService\n .get_file_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (fileHandle) => {\n this.cobblerApiService\n .copy_file(fileHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.router.navigate(['/items', 'file', newItemName]);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n saveFile(): void {\n // TODO\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n \n Action\n \n \n \n Group\n \n \n \n Mode\n \n \n \n Owner\n \n \n \n Path\n \n \n \n Template\n \n \n Is Directory?\n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Action Group Mode Owner Path Template Is Directory? @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'FileEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FileOverviewComponent.html":{"url":"components/FileOverviewComponent.html","title":"component - FileOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n FileOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./file-overview.component.html\n \n\n\n\n \n styleUrl\n ./file-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteFile\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameFile\n \n \n Private\n retrieveFiles\n \n \n showDistro\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteFile\n \n \n \n \n \n \ndeleteFile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:136\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameFile\n \n \n \n \n \n \nrenameFile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveFiles\n \n \n \n \n \n \n \n retrieveFiles()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showDistro\n \n \n \n \n \n \nshowDistro(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'action', 'path', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, File } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './file-overview.component.html',\n styleUrl: './file-overview.component.scss',\n})\nexport class FileOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'action', 'path', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveFiles();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveFiles(): void {\n this.cobblerApiService\n .get_files()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showDistro(uid: string, name: string): void {\n this.router.navigate(['/items', 'file', name]);\n }\n\n renameFile(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Repository',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the file\n return;\n }\n this.cobblerApiService\n .get_file_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (fileHandle) => {\n this.cobblerApiService\n .rename_file(fileHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveFiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteFile(uid: string, name: string): void {\n this.cobblerApiService\n .remove_file(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveFiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n FILES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Action\n {{ element.action }}\n \n\n \n \n Path\n {{ element.path }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'FILES Name {{ element.name }} Action {{ element.action }} Path {{ element.path }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'FileOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GetObjService.html":{"url":"injectables/GetObjService.html","title":"injectable - GetObjService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n GetObjService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/get-obj.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n CurrentITEM\n \n \n CurrentITEM$\n \n \n MockObject\n \n \n MockObjname\n \n \n MockValues\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getITEMS\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n name\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:49\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getITEMS\n \n \n \n \n \n \ngetITEMS()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:65\n \n \n\n\n \n \n\n \n Returns : string[]\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n CurrentITEM\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Default value : new BehaviorSubject(\n this.MockObjname,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n CurrentITEM$\n \n \n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.CurrentITEM.asObservable()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n MockObject\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n MockObjname\n \n \n \n \n \n \n Default value : window.sessionStorage.getItem('CurrentItem')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n MockValues\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : ['Item 0x1', 'Item 1x2', 'Item 2x3']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:40\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n name\n \n \n\n\n \n \n setname(item: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/get-obj.service.ts:69\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\nimport { Observable } from 'rxjs';\n\n/*\nItem returned from XMLrpc will be an object that\nhouses a list of all the current mock data.\n Each item will have ['Distros', 'Profiles', 'Systems',\n 'Repos', 'Images', 'Templates',\n 'Snippets', 'Management Classes',\n 'Settings', 'Packages', 'Files']\n Example of component data:\n Management Classes : { MngclassesService }\n FIELDS = [\n # non-editable in UI (internal)\n FIELDS[0-4]\n\n FIELDS[5-11]\n # editable in UI\n 0-[\"class_name\", \"\", 0, \"Class Name\", True, \"Actual Class Name (leave blank to use the name field)\", 0, \"str\"],\n 1-[\"comment\", \"\", 0, \"Comment\", True, \"Free form text description\", 0, \"str\"],\n 2-[\"files\", [], 0, \"Files\", True, \"File resources\", 0, \"list\"],\n 3-[\"name\", \"\", 0, \"Name\", True, \"Ex: F10-i386-webserver\", 0, \"str\"],\n 4-[\"owners\", \"SETTINGS:default_ownership\", \"SETTINGS:default_ownership\", \"Owners\", True, \"Owners list for\n authz_ownership (space delimited)\", 0, \"list\"],\n 5-[\"packages\", [], 0, \"Packages\", True, \"Package resources\", 0, \"list\"],\n 6-[\"params\", {}, 0, \"Parameters/Variables\", True, \"List of parameters/variables\", 0, \"dict\"],\n]\n\nSee docs-additonal for each components data structure.\n\"../docs-additonal/component-schema.md\"\n\n*/\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GetObjService {\n MockObject = [];\n MockValues = ['Item 0x1', 'Item 1x2', 'Item 2x3'];\n // If MockObjname is not left blank/undefined, the value hear overrides the session value on construction.\n MockObjname = window.sessionStorage.getItem('CurrentItem');\n\n // ERROR is thrown if MockObjname is Left undefined before constructor\n\n public CurrentITEM: BehaviorSubject = new BehaviorSubject(\n this.MockObjname,\n );\n CurrentITEM$: Observable = this.CurrentITEM.asObservable();\n\n constructor() {\n // Add authorization check??\n const current = window.sessionStorage.getItem('CurrentItem');\n\n if (current) {\n this.MockObjname = current;\n }\n\n window.sessionStorage.setItem(\n 'CobblerITEMS',\n JSON.stringify(this.MockValues),\n );\n }\n\n getITEMS(): string[] {\n return this.MockValues;\n }\n\n set name(item: string) {\n window.sessionStorage.setItem('CurrentItem', item);\n const sessionItem = window.sessionStorage.getItem('CurrentItem');\n if (sessionItem) {\n this.MockObjname = sessionItem;\n }\n this.CurrentITEM.next(item);\n // let message = `Current Item is set to: ${this.MockObjname}`\n /// console.log(message)\n // window.sessionStorage.setItem('CurrentItem', this.MockObjname)\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/HardlinkComponent.html":{"url":"components/HardlinkComponent.html","title":"component - HardlinkComponent","body":"\n \n\n\n\n\n\n Components\n \n HardlinkComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-hardlink\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./hardlink.component.html\n \n\n\n\n \n styleUrl\n ./hardlink.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runHardlink\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runHardlink\n \n \n \n \n \n \nrunHardlink()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnDestroy } from '@angular/core';\nimport { MatButton } from '@angular/material/button';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-hardlink',\n standalone: true,\n imports: [MatButton],\n templateUrl: './hardlink.component.html',\n styleUrl: './hardlink.component.scss',\n})\nexport class HardlinkComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runHardlink(): void {\n this.cobblerApiService\n .background_hardlink(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n HARDLINK\n\nHardlink\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'HARDLINKHardlink'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'HardlinkComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Image.html":{"url":"interfaces/Image.html","title":"interface - Image","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Image\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n arch\n \n \n \n \n autoinstall\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n boot_loaders\n \n \n \n \n breed\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n file\n \n \n \n \n image_type\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n menu\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n name\n \n \n \n \n network_count\n \n \n \n \n os_version\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n template_files\n \n \n \n \n virt_auto_boot\n \n \n \n \n virt_bridge\n \n \n \n \n virt_cpus\n \n \n \n \n virt_disk_driver\n \n \n \n \n virt_file_size\n \n \n \n \n virt_path\n \n \n \n \n virt_ram\n \n \n \n \n virt_type\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall\n \n \n \n \n \n \n \n \n autoinstall: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_loaders\n \n \n \n \n \n \n \n \n boot_loaders: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n file\n \n \n \n \n \n \n \n \n file: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n image_type\n \n \n \n \n \n \n \n \n image_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n menu\n \n \n \n \n \n \n \n \n menu: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n network_count\n \n \n \n \n \n \n \n \n network_count: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_auto_boot\n \n \n \n \n \n \n \n \n virt_auto_boot: string | boolean\n\n \n \n\n\n \n \n Type : string | boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_bridge\n \n \n \n \n \n \n \n \n virt_bridge: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_cpus\n \n \n \n \n \n \n \n \n virt_cpus: string | number\n\n \n \n\n\n \n \n Type : string | number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_disk_driver\n \n \n \n \n \n \n \n \n virt_disk_driver: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_file_size\n \n \n \n \n \n \n \n \n virt_file_size: string | number\n\n \n \n\n\n \n \n Type : string | number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_path\n \n \n \n \n \n \n \n \n virt_path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_ram\n \n \n \n \n \n \n \n \n virt_ram: string | number\n\n \n \n\n\n \n \n Type : string | number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_type\n \n \n \n \n \n \n \n \n virt_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImageEditComponent.html":{"url":"components/ImageEditComponent.html","title":"component - ImageEditComponent","body":"\n \n\n\n\n\n\n Components\n \n ImageEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-image-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n \n \n\n\n\n\n \n templateUrl\n ./image-edit.component.html\n \n\n\n\n \n styleUrl\n ./image-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n image\n \n \n imageFormGroup\n \n \n isEditMode\n \n \n name\n \n \n Private\n ngUnsubscribe\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyImage\n \n \n editImage\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeImage\n \n \n saveImage\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n imageOwners\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:78\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyImage\n \n \n \n \n \n \ncopyImage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:185\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editImage\n \n \n \n \n \n \neditImage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:180\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:95\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:91\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:100\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeImage\n \n \n \n \n \n \nremoveImage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:158\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveImage\n \n \n \n \n \n \nsaveImage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:225\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n image\n \n \n \n \n \n \n Type : Image\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n imageFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n network_count: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n file: new FormControl({ value: '', disabled: true }),\n image_type: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:78\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:53\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:50\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n imageOwners\n \n \n\n \n \n getimageOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts:229\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Image } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-image-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n ],\n templateUrl: './image-edit.component.html',\n styleUrl: './image-edit.component.scss',\n})\nexport class ImageEditComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n name: string;\n image: Image;\n private readonly _formBuilder = inject(FormBuilder);\n imageFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n network_count: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n arch: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n file: new FormControl({ value: '', disabled: true }),\n image_type: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_image(this.name, false, false, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.image = value;\n this.imageFormGroup.controls.name.setValue(this.image.name);\n this.imageFormGroup.controls.uid.setValue(this.image.uid);\n this.imageFormGroup.controls.mtime.setValue(\n new Date(this.image.mtime * 1000).toString(),\n );\n this.imageFormGroup.controls.ctime.setValue(\n new Date(this.image.ctime * 1000).toString(),\n );\n this.imageFormGroup.controls.depth.setValue(this.image.depth);\n this.imageFormGroup.controls.network_count.setValue(\n this.image.network_count,\n );\n this.imageFormGroup.controls.is_subobject.setValue(\n this.image.is_subobject,\n );\n this.imageFormGroup.controls.comment.setValue(this.image.comment);\n this.imageFormGroup.controls.parent.setValue(this.image.parent);\n this.imageFormGroup.controls.arch.setValue(this.image.arch);\n this.imageFormGroup.controls.autoinstall.setValue(\n this.image.autoinstall,\n );\n this.imageFormGroup.controls.breed.setValue(this.image.breed);\n this.imageFormGroup.controls.file.setValue(this.image.file);\n this.imageFormGroup.controls.image_type.setValue(\n this.image.image_type,\n );\n this.imageFormGroup.controls.os_version.setValue(\n this.image.os_version,\n );\n if (typeof this.image.boot_loaders === 'string') {\n this.imageFormGroup.controls.bootloader_inherited.setValue(true);\n } else {\n this.imageFormGroup.controls.bootloader_inherited.setValue(false);\n this.imageFormGroup.controls.boot_loaders.setValue(\n this.image.boot_loaders,\n );\n }\n if (typeof this.image.owners === 'string') {\n this.imageFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.imageFormGroup.controls.owners_inherited.setValue(false);\n this.imageFormGroup.controls.owners.setValue(this.image.owners);\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeImage(): void {\n this.cobblerApiService\n .remove_image(this.name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'image']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editImage(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyImage(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemCopyComponent, {\n data: {\n itemType: 'Image',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the image\n return;\n }\n this.cobblerApiService\n .get_image_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (imageHandle) => {\n this.cobblerApiService\n .copy_image(imageHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.router.navigate(['/items', 'image', newItemName]);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n saveImage(): void {\n // TODO\n }\n\n get imageOwners(): string[] {\n if (this.image && this.image.owners) {\n const ownersResult = this.image.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n \n Inherited\n \n \n Comment\n \n \n \n Network Count\n \n \n \n Parent\n \n \n \n Arch\n \n \n \n Autoinstall\n \n \n \n Operating System Breed\n \n \n \n Image File\n \n \n \n Image Type\n \n \n \n Operating System Version\n \n \n \n \n Inherited\n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Inherited Comment Network Count Parent Arch Autoinstall Operating System Breed Image File Image Type Operating System Version Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ImageEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImageOverviewComponent.html":{"url":"components/ImageOverviewComponent.html","title":"component - ImageOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n ImageOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./image-overview.component.html\n \n\n\n\n \n styleUrl\n ./image-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteImage\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameImage\n \n \n Private\n retrieveImages\n \n \n showImage\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:64\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteImage\n \n \n \n \n \n \ndeleteImage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:142\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:78\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:74\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameImage\n \n \n \n \n \n \nrenameImage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:102\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveImages\n \n \n \n \n \n \n \n retrieveImages()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:83\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showImage\n \n \n \n \n \n \nshowImage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:98\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:62\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'name',\n 'arch',\n 'breed',\n 'os_version',\n 'actions',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:64\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts:67\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Image } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './image-overview.component.html',\n styleUrl: './image-overview.component.scss',\n})\nexport class ImageOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'name',\n 'arch',\n 'breed',\n 'os_version',\n 'actions',\n ];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveImages();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveImages(): void {\n this.cobblerApiService\n .get_images()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showImage(uid: string, name: string): void {\n this.router.navigate(['/items', 'image', name]);\n }\n\n renameImage(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Image',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the image\n return;\n }\n this.cobblerApiService\n .get_image_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (imageHandle) => {\n this.cobblerApiService\n .rename_image(imageHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveImages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteImage(uid: string, name: string): void {\n this.cobblerApiService\n .remove_distro(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveImages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n IMAGES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Architecture\n {{ element.arch }}\n \n\n \n \n Breed\n {{ element.breed }}\n \n\n \n \n Operating System Version\n {{ element.os_version }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'IMAGES Name {{ element.name }} Architecture {{ element.arch }} Breed {{ element.breed }} Operating System Version {{ element.os_version }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ImageOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImportDVDComponent.html":{"url":"components/ImportDVDComponent.html","title":"component - ImportDVDComponent","body":"\n \n\n\n\n\n\n Components\n \n ImportDVDComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-import-dvd\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatFormField\n MatInput\n MatLabel\n ReactiveFormsModule\n MatButton\n \n \n\n \n styleUrls\n ./import-dvd.component.scss\n \n\n\n\n \n templateUrl\n ./import-dvd.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n importFormGroup\n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runImport\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:42\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runImport\n \n \n \n \n \n \nrunImport()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:55\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n importFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n path: '',\n name: '',\n available_as: '',\n autoinstall_file: '',\n rsync_flags: '',\n arch: '',\n breed: '',\n os_version: '',\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts:45\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { FormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatInput } from '@angular/material/input';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { CobblerApiService, BackgroundImportOptions } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-import-dvd',\n templateUrl: './import-dvd.component.html',\n styleUrls: ['./import-dvd.component.scss'],\n standalone: true,\n imports: [\n FormsModule,\n MatFormField,\n MatInput,\n MatLabel,\n ReactiveFormsModule,\n MatButton,\n ],\n})\nexport class ImportDVDComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n importFormGroup = this._formBuilder.group({\n path: '',\n name: '',\n available_as: '',\n autoinstall_file: '',\n rsync_flags: '',\n arch: '',\n breed: '',\n os_version: '',\n });\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runImport(): void {\n const importOptions: BackgroundImportOptions = {\n path: this.importFormGroup.controls.path.value,\n name: this.importFormGroup.controls.name.value,\n available_as: this.importFormGroup.controls.available_as.value,\n autoinstall_file: this.importFormGroup.controls.autoinstall_file.value,\n rsync_flags: this.importFormGroup.controls.rsync_flags.value,\n arch: this.importFormGroup.controls.arch.value,\n breed: this.importFormGroup.controls.breed.value,\n os_version: this.importFormGroup.controls.os_version.value,\n };\n if (this.importFormGroup.invalid) {\n this._snackBar.open('Please give all inputs a system name!', 'Close', {\n duration: 2000,\n });\n return;\n }\n this.cobblerApiService\n .background_import(importOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n IMPORT DVD\n\n\n \n Path\n \n \n \n Name\n \n \n \n Available as\n \n \n \n Autoinstallation file\n \n \n \n rsync flags\n \n \n \n Architecture\n \n \n \n Operating System Breed\n \n \n \n Operating System Version\n \n \n Run\n\n\n \n\n \n \n ./import-dvd.component.scss\n \n .form-replicate {\n min-width: 150px;\n max-width: 600px;\n width: 100%;\n}\n\n.form-field-full-width {\n width: 100%;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'IMPORT DVD Path Name Available as Autoinstallation file rsync flags Architecture Operating System Breed Operating System Version Run'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ImportDVDComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/InstallationStatus.html":{"url":"interfaces/InstallationStatus.html","title":"interface - InstallationStatus","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n InstallationStatus\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n ip\n \n \n \n \n mostRecentStart\n \n \n \n \n mostRecentStop\n \n \n \n \n mostRecentTarget\n \n \n \n \n seenStart\n \n \n \n \n seenStop\n \n \n \n \n state\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n ip\n \n \n \n \n \n \n \n \n ip: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mostRecentStart\n \n \n \n \n \n \n \n \n mostRecentStart: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mostRecentStop\n \n \n \n \n \n \n \n \n mostRecentStop: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mostRecentTarget\n \n \n \n \n \n \n \n \n mostRecentTarget: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n seenStart\n \n \n \n \n \n \n \n \n seenStart: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n seenStop\n \n \n \n \n \n \n \n \n seenStop: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n state\n \n \n \n \n \n \n \n \n state: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Item.html":{"url":"interfaces/Item.html","title":"interface - Item","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Item\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n ctime\n \n \n \n \n depth\n \n \n \n \n mtime\n \n \n \n \n uid\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n ctime\n \n \n \n \n \n \n \n \n ctime: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n depth\n \n \n \n \n \n \n \n \n depth: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mtime\n \n \n \n \n \n \n \n \n mtime: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n uid\n \n \n \n \n \n \n \n \n uid: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ItemSettingsService.html":{"url":"injectables/ItemSettingsService.html","title":"injectable - ItemSettingsService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n ItemSettingsService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/item-settings.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n authO\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAll\n \n \n getitem\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authO: UserService, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authO\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getAll\n \n \n \n \n \n \ngetAll()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:19\n \n \n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n getitem\n \n \n \n \n \n \ngetitem(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n authO\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/item-settings.service.ts:13\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\nimport { Settings } from 'cobbler-api';\nimport { UserService } from './user.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ItemSettingsService {\n constructor(\n public authO: UserService,\n private cobblerApiService: CobblerApiService,\n ) {\n // Nothing to see here\n }\n\n getAll(): Observable {\n return this.cobblerApiService.get_settings(this.authO.token);\n }\n\n getitem(name: string): Observable {\n return this.cobblerApiService.get_settings(this.authO.token).pipe(\n map((data: Settings) => {\n if (name in data) {\n return data[name];\n }\n throw new Error('Requested name not found in the settings!');\n }),\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/KeyValueEditorComponent.html":{"url":"components/KeyValueEditorComponent.html","title":"component - KeyValueEditorComponent","body":"\n \n\n\n\n\n\n Components\n \n KeyValueEditorComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts\n\n\n\n\n\n \n Implements\n \n \n ControlValueAccessor\n Validator\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, multi: true, useExisting: KeyValueEditorComponent,\n}\n {\n provide: NG_VALIDATORS, multi: true, useExisting: KeyValueEditorComponent,\n}\n \n \n\n\n \n selector\n cobbler-key-value-editor\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCard\n MatCardHeader\n MatCardTitle\n CdkDropList\n CdkDrag\n MatFormField\n MatInput\n MatIconButton\n MatIcon\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./key-value-editor.component.html\n \n\n\n\n \n styleUrl\n ./key-value-editor.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n isDisabled\n \n \n keyOrder\n \n \n keyOrderFormGroup\n \n \n Protected\n Readonly\n Object\n \n \n onChange\n \n \n onTouched\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n buildFormGroup\n \n \n deleteKey\n \n \n drop\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n registerOnValidatorChange\n \n \n setDisabledState\n \n \n setFormGroupDisabledState\n \n \n validate\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n keyValueOptions\n \n \n label\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n keyValueOptions\n \n \n \n \n Type : {}\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:59\n \n \n \n \n \n \n \n \n \n label\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:58\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n buildFormGroup\n \n \n \n \n \n \nbuildFormGroup()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:99\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n deleteKey\n \n \n \n \n \n \ndeleteKey(key: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:116\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n drop\n \n \n \n \n \n \ndrop(event: CdkDragDrop)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:120\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n CdkDragDrop\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \nregisterOnChange(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:66\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \nregisterOnTouched(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:70\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnValidatorChange\n \n \n \n \n \n \nregisterOnValidatorChange(fn: () => void)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:74\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n function\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setDisabledState\n \n \n \n \n \n \nsetDisabledState(isDisabled: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:76\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n isDisabled\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setFormGroupDisabledState\n \n \n \n \n \n \nsetFormGroupDisabledState(isDisabled: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n isDisabled\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n validate\n \n \n \n \n \n \nvalidate(control: AbstractControl)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:89\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n control\n \n AbstractControl\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \nwriteValue(obj: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:93\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n obj\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n isDisabled\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:64\n \n \n\n\n \n \n \n \n \n \n \n \n keyOrder\n \n \n \n \n \n \n Default value : Object.keys(this.keyValueOptions)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:62\n \n \n\n\n \n \n \n \n \n \n \n \n keyOrderFormGroup\n \n \n \n \n \n \n Default value : new FormGroup({})\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n Protected\n Readonly\n Object\n \n \n \n \n \n \n Default value : Object\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:124\n \n \n\n\n \n \n \n \n \n \n \n \n onChange\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n onTouched\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n CdkDrag,\n CdkDragDrop,\n CdkDropList,\n moveItemInArray,\n} from '@angular/cdk/drag-drop';\nimport { Component, Input } from '@angular/core';\nimport {\n AbstractControl,\n ControlValueAccessor,\n FormControl,\n FormGroup,\n NG_VALIDATORS,\n NG_VALUE_ACCESSOR,\n ReactiveFormsModule,\n ValidationErrors,\n Validator,\n} from '@angular/forms';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatCard, MatCardHeader, MatCardTitle } from '@angular/material/card';\nimport { MatFormField } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\n\n@Component({\n selector: 'cobbler-key-value-editor',\n standalone: true,\n imports: [\n MatCard,\n MatCardHeader,\n MatCardTitle,\n CdkDropList,\n CdkDrag,\n MatFormField,\n MatInput,\n MatIconButton,\n MatIcon,\n ReactiveFormsModule,\n ],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n multi: true,\n useExisting: KeyValueEditorComponent,\n },\n {\n provide: NG_VALIDATORS,\n multi: true,\n useExisting: KeyValueEditorComponent,\n },\n ],\n templateUrl: './key-value-editor.component.html',\n styleUrl: './key-value-editor.component.scss',\n})\nexport class KeyValueEditorComponent\n implements ControlValueAccessor, Validator\n{\n @Input() label = '';\n @Input() keyValueOptions = {};\n onChange = (options: string[]) => {};\n onTouched = (options: string[]) => {};\n keyOrder = Object.keys(this.keyValueOptions);\n keyOrderFormGroup = new FormGroup({});\n isDisabled = true;\n\n registerOnChange(fn: any): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any): void {\n this.onTouched = fn;\n }\n\n registerOnValidatorChange(fn: () => void): void {}\n\n setDisabledState(isDisabled: boolean): void {\n this.isDisabled = isDisabled;\n this.setFormGroupDisabledState(isDisabled);\n }\n\n setFormGroupDisabledState(isDisabled: boolean): void {\n if (isDisabled) {\n this.keyOrderFormGroup.disable();\n } else {\n this.keyOrderFormGroup.enable();\n }\n }\n\n validate(control: AbstractControl): ValidationErrors | null {\n return undefined;\n }\n\n writeValue(obj: any): void {\n this.keyValueOptions = obj;\n this.keyOrder = Object.keys(this.keyValueOptions);\n this.buildFormGroup();\n }\n\n buildFormGroup(): void {\n for (let key of this.keyOrder) {\n const formGroupControls = {\n key: new FormControl({ value: key, disabled: true }),\n value: new FormControl({\n value: this.keyValueOptions[key],\n disabled: true,\n }),\n };\n this.keyOrderFormGroup.addControl(\n key + 'FormGroup',\n new FormGroup(formGroupControls),\n );\n }\n this.setFormGroupDisabledState(this.isDisabled);\n }\n\n deleteKey(key: string): void {\n // TODO: Delete key\n }\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.keyOrder, event.previousIndex, event.currentIndex);\n }\n\n protected readonly Object = Object;\n}\n\n \n\n \n \n \n {{ label }}\n \n @if (Object.keys(this.keyValueOptions).length === 0) {\n Empty list of options\n } @else {\n \n @for (key of keyOrder; track key) {\n \n \n \n \n  = \n \n \n \n \n delete\n \n \n menu\n \n \n }\n \n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{ label }} @if (Object.keys(this.keyValueOptions).length === 0) { Empty list of options } @else { @for (key of keyOrder; track key) {  =  delete menu } }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'KeyValueEditorComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LogInFormComponent.html":{"url":"components/LogInFormComponent.html","title":"component - LogInFormComponent","body":"\n \n\n\n\n\n\n Components\n \n LogInFormComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/login/login.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-login\n \n\n \n standalone\n true\n \n\n \n imports\n \n CommonModule\n ReactiveFormsModule\n MatFormFieldModule\n MatInputModule\n MatButtonModule\n \n \n\n \n styleUrls\n ./login.component.css\n \n\n\n\n \n templateUrl\n ./login.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n authO\n \n \n errMsgPassword\n \n \n errMsgServer\n \n \n errMsgUser\n \n \n login_form\n \n \n message\n \n \n server_prefilled\n \n \n subs\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Authorize\n \n \n ngOnDestroy\n \n \n updateErrPassword\n \n \n updateErrServer\n \n \n updateErrUser\n \n \n Private\n Static\n urlValidator\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n username\n \n \n password\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authO: UserService, router: Router, guard: AuthGuardService, url: URL, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:64\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authO\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n guard\n \n \n AuthGuardService\n \n \n \n No\n \n \n \n \n url\n \n \n URL\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Authorize\n \n \n \n \n \n \nAuthorize()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:120\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:104\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateErrPassword\n \n \n \n \n \n \nupdateErrPassword()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:171\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateErrServer\n \n \n \n \n \n \nupdateErrServer()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:147\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateErrUser\n \n \n \n \n \n \nupdateErrUser()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:157\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n Static\n urlValidator\n \n \n \n \n \n \n \n urlValidator(undefined: AbstractControl)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:55\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n \n AbstractControl\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : null | ValidationErrors\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n authO\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:67\n \n \n\n\n \n \n \n \n \n \n \n \n errMsgPassword\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n errMsgServer\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n errMsgUser\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n login_form\n \n \n \n \n \n \n Default value : new UntypedFormGroup({\n server: new UntypedFormControl('', [\n Validators.required,\n LogInFormComponent.urlValidator,\n ]),\n username: new UntypedFormControl('', [\n Validators.required,\n Validators.minLength(2),\n ]),\n password: new UntypedFormControl('', Validators.required),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n message\n \n \n \n \n \n \n Type : null\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n server_prefilled\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n subs\n \n \n \n \n \n \n Default value : new Subscription()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:36\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n\n \n \n getserver()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:108\n \n \n\n \n \n \n \n \n \n \n username\n \n \n\n \n \n getusername()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:112\n \n \n\n \n \n \n \n \n \n \n password\n \n \n\n \n \n getpassword()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/login/login.component.ts:116\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, OnDestroy, signal } from '@angular/core';\nimport {\n AbstractControl,\n ReactiveFormsModule,\n UntypedFormControl,\n UntypedFormGroup,\n ValidationErrors,\n Validators,\n} from '@angular/forms';\nimport { Router } from '@angular/router';\nimport { COBBLER_URL, CobblerApiService } from 'cobbler-api';\n\nimport { CommonModule } from '@angular/common';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { AuthGuardService } from '../services/auth-guard.service';\nimport { UserService } from '../services/user.service';\nimport { merge, Subscription } from 'rxjs';\nimport { distinctUntilChanged } from 'rxjs/operators';\nimport { MatButtonModule } from '@angular/material/button';\n\n@Component({\n selector: 'cobbler-login',\n templateUrl: './login.component.html',\n styleUrls: ['./login.component.css'],\n standalone: true,\n imports: [\n CommonModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class LogInFormComponent implements OnDestroy {\n subs = new Subscription();\n errMsgServer = signal('');\n errMsgUser = signal('');\n errMsgPassword = signal('');\n\n server_prefilled: string;\n message = null;\n login_form = new UntypedFormGroup({\n server: new UntypedFormControl('', [\n Validators.required,\n LogInFormComponent.urlValidator,\n ]),\n username: new UntypedFormControl('', [\n Validators.required,\n Validators.minLength(2),\n ]),\n password: new UntypedFormControl('', Validators.required),\n });\n\n private static urlValidator({\n value,\n }: AbstractControl): null | ValidationErrors {\n try {\n new URL(value);\n return null;\n } catch {\n return { pattern: true };\n }\n }\n\n constructor(\n public authO: UserService,\n private router: Router,\n private guard: AuthGuardService,\n @Inject(COBBLER_URL) url: URL,\n private cobblerApiService: CobblerApiService,\n ) {\n this.server_prefilled = url.toString();\n this.login_form.get('server').setValue(this.server_prefilled);\n\n this.subs.add(\n merge(\n this.login_form.controls['server'].statusChanges,\n this.login_form.controls['server'].valueChanges,\n )\n .pipe(distinctUntilChanged())\n .subscribe(() => this.updateErrServer()),\n );\n this.subs.add(\n merge(\n this.login_form.controls['username'].statusChanges,\n this.login_form.controls['username'].valueChanges,\n )\n .pipe(distinctUntilChanged())\n .subscribe(() => {\n this.updateErrUser();\n }),\n );\n this.subs.add(\n merge(\n this.login_form.controls['password'].statusChanges,\n this.login_form.controls['password'].valueChanges,\n )\n .pipe(distinctUntilChanged())\n .subscribe(() => this.updateErrPassword()),\n );\n }\n\n ngOnDestroy(): void {\n this.subs.unsubscribe();\n }\n\n get server(): AbstractControl {\n return this.login_form.get('server');\n }\n\n get username(): AbstractControl {\n return this.login_form.get('username');\n }\n\n get password(): AbstractControl {\n return this.login_form.get('password');\n }\n\n Authorize(): void {\n // Real data call goes to service which talks to server for that json data\n const formData = this.login_form.value;\n const user = formData.username;\n const pass = formData.password;\n this.authO.server = formData.server;\n this.cobblerApiService.reconfigureService(new URL(formData.server));\n\n this.subs.add(\n this.cobblerApiService.login(user, pass).subscribe(\n (data) => {\n this.authO.changeAuthorizedState(true);\n // sets username in session storage\n this.authO.username = user;\n this.authO.token = data;\n\n // AuthGuardService provides the boolean that allows users to activate links/components\n this.guard.setBool(true);\n this.router.navigate(['/manage']);\n },\n () =>\n (this.message =\n 'Server, Username or Password did not Validate. Please try again.'),\n ),\n );\n }\n\n updateErrServer() {\n if (this.login_form.controls['server'].hasError('required')) {\n this.errMsgServer.set('Server is required');\n } else if (this.login_form.controls['server'].hasError('pattern')) {\n this.errMsgServer.set('Server must be a valid URL.');\n } else {\n this.errMsgServer.set('');\n }\n }\n\n updateErrUser() {\n if (\n this.login_form.controls['username'].hasError('required') ||\n this.login_form.controls['username'].touched\n ) {\n this.errMsgUser.set('Username is required');\n } else if (this.login_form.controls['username'].hasError('minlength')) {\n this.errMsgUser.set(`Username must be minimum\n ${this.login_form.controls['username'].errors.minlength.requiredLength} characters.`);\n } else {\n this.errMsgUser.set('');\n }\n }\n\n updateErrPassword() {\n if (this.login_form.controls['password'].hasError('required')) {\n this.errMsgPassword.set('Password is required');\n } else {\n this.errMsgServer.set('');\n }\n }\n}\n\n \n\n \n \n \n Cobbler\n\n \n \n Server\n \n @if (server.touched && server.invalid) {\n ⚠ {{ errMsgServer() }}\n }\n \n \n\n \n \n Username\n \n @if (username.touched && username.invalid) {\n ⚠ {{ errMsgUser() }}\n }\n \n \n\n \n \n Password\n \n @if (password.touched && password.invalid) {\n ⚠ {{ errMsgPassword() }}\n }\n \n \n \n \n Log in\n \n \n @if (message) {\n \n {{ message }}\n \n }\n \n\n\n \n\n \n \n ./login.component.css\n \n .form-login {\n justify-content: center;\n display: flex;\n flex-direction: column;\n column-gap: 0.5rem;\n}\n\n.example-full-width {\n width: 100%;\n}\n\n.row {\n width: auto;\n min-width: 250px;\n}\n\n.login {\n height: 100%;\n padding: 0;\n margin: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Cobbler Server @if (server.touched && server.invalid) { ⚠ {{ errMsgServer() }} } Username @if (username.touched && username.invalid) { ⚠ {{ errMsgUser() }} } Password @if (password.touched && password.invalid) { ⚠ {{ errMsgPassword() }} } Log in @if (message) { {{ message }} } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'LogInFormComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ManageMenuComponent.html":{"url":"components/ManageMenuComponent.html","title":"component - ManageMenuComponent","body":"\n \n\n\n\n\n\n Components\n \n ManageMenuComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-manage-menu\n \n\n \n standalone\n true\n \n\n \n imports\n \n CommonModule\n RouterModule\n RouterOutlet\n MatSidenavModule\n MatDividerModule\n MatToolbarModule\n MatNavList\n NavbarComponent\n MatListModule\n MatIconModule\n \n \n\n \n styleUrls\n ./manage-menu.component.css\n \n\n\n\n \n templateUrl\n ./manage-menu.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n router\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts:29\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n Type : Router\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts:30\n \n \n\n\n \n \n\n\n\n\n\n \n import { CommonModule } from '@angular/common';\nimport { Component } from '@angular/core';\nimport { MatDividerModule } from '@angular/material/divider';\nimport { MatListModule, MatNavList } from '@angular/material/list';\nimport { MatSidenavModule } from '@angular/material/sidenav';\nimport { MatToolbarModule } from '@angular/material/toolbar';\nimport { Router, RouterModule, RouterOutlet } from '@angular/router';\nimport { NavbarComponent } from '../navbar/navbar.component';\nimport { MatIconModule } from '@angular/material/icon';\n\n@Component({\n selector: 'cobbler-manage-menu',\n templateUrl: './manage-menu.component.html',\n styleUrls: ['./manage-menu.component.css'],\n standalone: true,\n imports: [\n CommonModule,\n RouterModule,\n RouterOutlet,\n MatSidenavModule,\n MatDividerModule,\n MatToolbarModule,\n MatNavList,\n NavbarComponent,\n MatListModule,\n MatIconModule,\n ],\n})\nexport class ManageMenuComponent {\n constructor(public router: Router) {}\n}\n\n \n\n \n \n \n \n \n Cobbler\n \n \n\n \n Configuration\n \n »\n Distros\n \n \n »\n Profiles\n \n \n »\n Systems\n \n \n »\n Repos\n \n \n »\n Images\n \n \n »\n Templates\n \n \n »\n Snippets\n \n \n »\n Management Classes\n \n \n »\n Settings\n \n \n Resources\n \n ↬\n Packages\n \n \n ↬\n Files\n \n \n Actions\n \n ⚙\n Import DVD\n \n \n ⚙\n Sync\n \n ⚙\n Reposync\n \n ⚙\n Build ISO\n \n \n ⚙\n Hardlink\n \n \n ⚙\n Mkloaders\n \n \n ⚙\n Validate Autoinstalls\n \n \n ⚙\n Replicate\n \n \n Cobbler\n \n ⇆\n Check\n \n \n ⇆\n Status\n \n \n ⇆\n Events\n \n \n ⇆\n Signatures\n \n \n ⇆\n Documentation\n \n \n ⇆\n Online Help Chat\n \n \n \n \n\n \n @if (router.url !== \"/login\") {\n \n }\n\n \n \n \n \n\n\n \n\n \n \n ./manage-menu.component.css\n \n .content {\n margin: 32px;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Cobbler Configuration » Distros » Profiles » Systems » Repos » Images » Templates » Snippets » Management Classes » Settings Resources ↬ Packages ↬ Files Actions ⚙ Import DVD ⚙ Sync ⚙ Reposync ⚙ Build ISO ⚙ Hardlink ⚙ Mkloaders ⚙ Validate Autoinstalls ⚙ Replicate Cobbler ⇆ Check ⇆ Status ⇆ Events ⇆ Signatures ⇆ Documentation ⇆ Online Help Chat @if (router.url !== \"/login\") { } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ManageMenuComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ManagementClassEditComponent.html":{"url":"components/ManagementClassEditComponent.html","title":"component - ManagementClassEditComponent","body":"\n \n\n\n\n\n\n Components\n \n ManagementClassEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./management-class-edit.component.html\n \n\n\n\n \n styleUrl\n ./management-class-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n managementClass\n \n \n managementClassFormGroup\n \n \n name\n \n \n Private\n ngUnsubscribe\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyMgmtClass\n \n \n editProfile\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeManagementClass\n \n \n saveProfile\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n mgmtClassOwners\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:75\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyMgmtClass\n \n \n \n \n \n \ncopyMgmtClass(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:187\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editProfile\n \n \n \n \n \n \neditProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:182\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:92\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:88\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:97\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeManagementClass\n \n \n \n \n \n \nremoveManagementClass()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:160\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveProfile\n \n \n \n \n \n \nsaveProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:235\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:75\n \n \n\n\n \n \n \n \n \n \n \n \n managementClass\n \n \n \n \n \n \n Type : Mgmgtclass\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n managementClassFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_definition: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n class_name: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n params: new FormControl({ value: {}, disabled: true }),\n files: new FormControl({ value: [], disabled: true }),\n packages: new FormControl({ value: [], disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:52\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n mgmtClassOwners\n \n \n\n \n \n getmgmtClassOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts:239\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Mgmgtclass } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './management-class-edit.component.html',\n styleUrl: './management-class-edit.component.scss',\n})\nexport class ManagementClassEditComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n name: string;\n managementClass: Mgmgtclass;\n private readonly _formBuilder = inject(FormBuilder);\n managementClassFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n is_definition: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n class_name: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n params: new FormControl({ value: {}, disabled: true }),\n files: new FormControl({ value: [], disabled: true }),\n packages: new FormControl({ value: [], disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_mgmtclass(this.name, false, false, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.managementClass = value;\n this.managementClassFormGroup.controls.name.setValue(\n this.managementClass.name,\n );\n this.managementClassFormGroup.controls.uid.setValue(\n this.managementClass.uid,\n );\n this.managementClassFormGroup.controls.mtime.setValue(\n new Date(this.managementClass.mtime * 1000).toString(),\n );\n this.managementClassFormGroup.controls.ctime.setValue(\n new Date(this.managementClass.ctime * 1000).toString(),\n );\n this.managementClassFormGroup.controls.depth.setValue(\n this.managementClass.depth,\n );\n this.managementClassFormGroup.controls.is_subobject.setValue(\n this.managementClass.is_subobject,\n );\n this.managementClassFormGroup.controls.is_definition.setValue(\n this.managementClass.is_definition,\n );\n this.managementClassFormGroup.controls.comment.setValue(\n this.managementClass.comment,\n );\n this.managementClassFormGroup.controls.class_name.setValue(\n this.managementClass.class_name,\n );\n if (typeof this.managementClass.owners === 'string') {\n this.managementClassFormGroup.controls.owners_inherited.setValue(\n true,\n );\n } else {\n this.managementClassFormGroup.controls.owners_inherited.setValue(\n false,\n );\n this.managementClassFormGroup.controls.owners.setValue(\n this.managementClass.owners,\n );\n }\n this.managementClassFormGroup.controls.params.setValue(\n this.managementClass.params,\n );\n this.managementClassFormGroup.controls.files.setValue(\n this.managementClass.files,\n );\n this.managementClassFormGroup.controls.packages.setValue(\n this.managementClass.packages,\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeManagementClass(): void {\n this.cobblerApiService\n .remove_mgmtclass(this.name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'profile']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editProfile(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyMgmtClass(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemCopyComponent, {\n data: {\n itemType: 'Mangement Class',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the management class\n return;\n }\n this.cobblerApiService\n .get_mgmtclass_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (mgmtClassHandle) => {\n this.cobblerApiService\n .copy_mgmtclass(\n mgmtClassHandle,\n newItemName,\n this.userService.token,\n )\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.router.navigate([\n '/items',\n 'management-class',\n newItemName,\n ]);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n saveProfile(): void {\n // TODO\n }\n\n get mgmtClassOwners(): string[] {\n if (this.managementClass && this.managementClass.owners) {\n const ownersResult = this.managementClass.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n Is Definition?\n \n Class Name\n \n \n \n \n \n \n \n Inherited\n \n \n \n \n \n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Is Definition? Class Name Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ManagementClassEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ManagementClassOverviewComponent.html":{"url":"components/ManagementClassOverviewComponent.html","title":"component - ManagementClassOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n ManagementClassOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./management-class-overview.component.html\n \n\n\n\n \n styleUrl\n ./management-class-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteManagementClass\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameManagementClass\n \n \n Private\n retrieveManagementClasses\n \n \n showManagementClass\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:63\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteManagementClass\n \n \n \n \n \n \ndeleteManagementClass(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:145\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:73\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameManagementClass\n \n \n \n \n \n \nrenameManagementClass(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:101\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveManagementClasses\n \n \n \n \n \n \n \n retrieveManagementClasses()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showManagementClass\n \n \n \n \n \n \nshowManagementClass(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:97\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'name',\n 'class_name',\n 'is_definition',\n 'actions',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts:66\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Mgmgtclass } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './management-class-overview.component.html',\n styleUrl: './management-class-overview.component.scss',\n})\nexport class ManagementClassOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'name',\n 'class_name',\n 'is_definition',\n 'actions',\n ];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveManagementClasses();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveManagementClasses(): void {\n this.cobblerApiService\n .get_mgmtclasses()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showManagementClass(uid: string, name: string): void {\n this.router.navigate(['/items', 'management-class', name]);\n }\n\n renameManagementClass(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Management Class',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the management class\n return;\n }\n this.cobblerApiService\n .get_mgmtclass_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (mgmtclassHandle) => {\n this.cobblerApiService\n .rename_mgmtclass(\n mgmtclassHandle,\n newItemName,\n this.userService.token,\n )\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveManagementClasses();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteManagementClass(uid: string, name: string): void {\n this.cobblerApiService\n .remove_mgmtclass(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveManagementClasses();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n MANAGEMENT CLASSES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Class Name\n {{ element.class_name }}\n \n\n \n \n Is Definition?\n {{ element.is_definition }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'MANAGEMENT CLASSES Name {{ element.name }} Class Name {{ element.class_name }} Is Definition? {{ element.is_definition }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ManagementClassOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Member.html":{"url":"interfaces/Member.html","title":"interface - Member","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Member\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n name\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: XmlRpcTypes\n\n \n \n\n\n \n \n Type : XmlRpcTypes\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/MethodFault.html":{"url":"interfaces/MethodFault.html","title":"interface - MethodFault","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n MethodFault\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n faultCode\n \n \n \n \n faultString\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n faultCode\n \n \n \n \n \n \n \n \n faultCode: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n faultString\n \n \n \n \n \n \n \n \n faultString: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Mgmgtclass.html":{"url":"interfaces/Mgmgtclass.html","title":"interface - Mgmgtclass","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Mgmgtclass\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n class_name\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n files\n \n \n \n \n is_definition\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n name\n \n \n \n \n owners\n \n \n \n \n packages\n \n \n \n \n params\n \n \n \n \n parent\n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n class_name\n \n \n \n \n \n \n \n \n class_name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n files\n \n \n \n \n \n \n \n \n files: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_definition\n \n \n \n \n \n \n \n \n is_definition: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n packages\n \n \n \n \n \n \n \n \n packages: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n params\n \n \n \n \n \n \n \n \n params: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MkloadersComponent.html":{"url":"components/MkloadersComponent.html","title":"component - MkloadersComponent","body":"\n \n\n\n\n\n\n Components\n \n MkloadersComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-mkloaders\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./mkloaders.component.html\n \n\n\n\n \n styleUrl\n ./mkloaders.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runMkloaders\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runMkloaders\n \n \n \n \n \n \nrunMkloaders()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject, Subscription } from 'rxjs';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatButton } from '@angular/material/button';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-mkloaders',\n standalone: true,\n imports: [MatButton],\n templateUrl: './mkloaders.component.html',\n styleUrl: './mkloaders.component.scss',\n})\nexport class MkloadersComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runMkloaders(): void {\n this.cobblerApiService\n .background_hardlink(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe({\n next: (value) => {\n // TODO\n },\n error: (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n });\n }\n}\n\n \n\n \n MKLOADERS\n\nMkloaders\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'MKLOADERSMkloaders'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'MkloadersComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MultiSelectComponent.html":{"url":"components/MultiSelectComponent.html","title":"component - MultiSelectComponent","body":"\n \n\n\n\n\n\n Components\n \n MultiSelectComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n ControlValueAccessor\n Validator\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, multi: true, useExisting: MultiSelectComponent,\n}\n {\n provide: NG_VALIDATORS, multi: true, useExisting: MultiSelectComponent,\n}\n \n \n\n\n \n selector\n cobbler-multi-select\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatFormFieldModule\n MatSelectModule\n MatOption\n MatLabel\n ReactiveFormsModule\n AsyncPipe\n MatListItem\n NgForOf\n MatCheckbox\n MatButton\n MatIconButton\n MatIcon\n MatCard\n MatCardHeader\n MatCardTitle\n MatFabButton\n MatInput\n \n \n\n\n\n\n \n templateUrl\n ./multi-select.component.html\n \n\n\n\n \n styleUrl\n ./multi-select.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n dialog\n \n \n isDisabled\n \n \n matSelectOptionsFormGroup\n \n \n onChange\n \n \n onTouched\n \n \n Readonly\n optionSignal\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addOption\n \n \n buildFormGroup\n \n \n changeValues\n \n \n ngOnInit\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n registerOnValidatorChange\n \n \n setDisabledState\n \n \n updateFormGroup\n \n \n validate\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n label\n \n \n multiSelectOptions\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n label\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:70\n \n \n \n \n \n \n \n \n \n multiSelectOptions\n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:69\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addOption\n \n \n \n \n \n \naddOption()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:140\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n buildFormGroup\n \n \n \n \n \n \nbuildFormGroup(options: string[], checked)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:82\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n options\n \n string[]\n \n\n \n No\n \n\n \n \n\n \n \n checked\n \n \n\n \n No\n \n\n \n false\n \n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n changeValues\n \n \n \n \n \n \nchangeValues(e: MatCheckboxChange)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:125\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n e\n \n MatCheckboxChange\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:78\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \nregisterOnChange(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:97\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \nregisterOnTouched(fn: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:101\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnValidatorChange\n \n \n \n \n \n \nregisterOnValidatorChange(fn: () => void)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:119\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n fn\n \n function\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setDisabledState\n \n \n \n \n \n \nsetDisabledState(isDisabled: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:105\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n isDisabled\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateFormGroup\n \n \n \n \n \n \nupdateFormGroup(options: string[], checked)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:91\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n options\n \n string[]\n \n\n \n No\n \n\n \n \n\n \n \n checked\n \n \n\n \n No\n \n\n \n false\n \n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n validate\n \n \n \n \n \n \nvalidate(control: AbstractControl)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:121\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n control\n \n AbstractControl\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \nwriteValue(obj: string[])\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:114\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n obj\n \n string[]\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Readonly\n dialog\n \n \n \n \n \n \n Default value : inject(MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:74\n \n \n\n\n \n \n \n \n \n \n \n \n isDisabled\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:76\n \n \n\n\n \n \n \n \n \n \n \n \n matSelectOptionsFormGroup\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Default value : new FormGroup({})\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:71\n \n \n\n\n \n \n \n \n \n \n \n \n onChange\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:72\n \n \n\n\n \n \n \n \n \n \n \n \n onTouched\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:73\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n optionSignal\n \n \n \n \n \n \n Default value : signal('')\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts:75\n \n \n\n\n \n \n\n\n\n\n\n \n import { AsyncPipe, NgForOf } from '@angular/common';\nimport { Component, inject, Input, OnInit, signal } from '@angular/core';\nimport {\n AbstractControl,\n ControlValueAccessor,\n FormControl,\n FormGroup,\n NG_VALIDATORS,\n NG_VALUE_ACCESSOR,\n ReactiveFormsModule,\n ValidationErrors,\n Validator,\n} from '@angular/forms';\nimport {\n MatButton,\n MatFabButton,\n MatIconButton,\n} from '@angular/material/button';\nimport { MatCard, MatCardHeader, MatCardTitle } from '@angular/material/card';\nimport { MatCheckbox, MatCheckboxChange } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormFieldModule, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatListItem } from '@angular/material/list';\nimport { MatOption, MatSelectModule } from '@angular/material/select';\nimport { DialogTextInputComponent } from '../dialog-text-input/dialog-text-input.component';\n\n@Component({\n selector: 'cobbler-multi-select',\n standalone: true,\n imports: [\n MatFormFieldModule,\n MatSelectModule,\n MatOption,\n MatLabel,\n ReactiveFormsModule,\n AsyncPipe,\n MatListItem,\n NgForOf,\n MatCheckbox,\n MatButton,\n MatIconButton,\n MatIcon,\n MatCard,\n MatCardHeader,\n MatCardTitle,\n MatFabButton,\n MatInput,\n ],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n multi: true,\n useExisting: MultiSelectComponent,\n },\n {\n provide: NG_VALIDATORS,\n multi: true,\n useExisting: MultiSelectComponent,\n },\n ],\n templateUrl: './multi-select.component.html',\n styleUrl: './multi-select.component.scss',\n})\nexport class MultiSelectComponent\n implements OnInit, ControlValueAccessor, Validator\n{\n @Input() multiSelectOptions: Array = [];\n @Input() label = '';\n matSelectOptionsFormGroup: FormGroup = new FormGroup({});\n onChange = (options: string[]) => {};\n onTouched = (options: string[]) => {};\n readonly dialog = inject(MatDialog);\n readonly optionSignal = signal('');\n isDisabled = true;\n\n ngOnInit(): void {\n this.buildFormGroup(this.multiSelectOptions);\n }\n\n buildFormGroup(options: string[], checked = false): void {\n options.forEach((value) => {\n this.matSelectOptionsFormGroup.addControl(\n value,\n new FormControl({ value: checked, disabled: this.isDisabled }),\n );\n });\n }\n\n updateFormGroup(options: string[], checked = false): void {\n options.forEach((value) => {\n this.matSelectOptionsFormGroup.get(value).setValue(checked);\n });\n }\n\n registerOnChange(fn: any): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this.isDisabled = isDisabled;\n if (this.isDisabled) {\n this.matSelectOptionsFormGroup.disable();\n } else {\n this.matSelectOptionsFormGroup.enable();\n }\n }\n\n writeValue(obj: string[]): void {\n this.buildFormGroup(obj);\n this.updateFormGroup(obj, true);\n }\n\n registerOnValidatorChange(fn: () => void): void {}\n\n validate(control: AbstractControl): ValidationErrors | null {\n return undefined;\n }\n\n changeValues(e: MatCheckboxChange) {\n let options: string[] = [];\n Object.keys(this.matSelectOptionsFormGroup.controls).forEach((key) => {\n const control = this.matSelectOptionsFormGroup.get(key);\n if (control instanceof FormControl) {\n if (control.value) {\n options.push(key);\n }\n }\n });\n\n this.onTouched(options);\n this.onChange(options);\n }\n\n addOption(): void {\n const dialogRef = this.dialog.open(DialogTextInputComponent, {\n data: { data: this.optionSignal() },\n });\n\n dialogRef.afterClosed().subscribe((result) => {\n if (result !== undefined) {\n this.optionSignal.set(result);\n this.multiSelectOptions.push(result);\n this.buildFormGroup(this.multiSelectOptions);\n }\n });\n }\n}\n\n \n\n \n \n \n {{ label }}\n \n @if (multiSelectOptions.length === 0) {\n Empty list of options\n } @else {\n \n Search for option\n \n \n -->\n \n {{ option }}\n \n }\n \n Add option\n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{ label }} @if (multiSelectOptions.length === 0) { Empty list of options } @else { Search for option --> {{ option }} } Add option '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'MultiSelectComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NavbarComponent.html":{"url":"components/NavbarComponent.html","title":"component - NavbarComponent","body":"\n \n\n\n\n\n\n Components\n \n NavbarComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/navbar/navbar.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-navbar\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterLink\n MatToolbarModule\n MatIconModule\n CommonModule\n MatButtonModule\n \n \n\n \n styleUrls\n ./navbar.component.css\n \n\n\n\n \n templateUrl\n ./navbar.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n authO\n \n \n cobbler_version\n \n \n islogged\n \n \n Private\n ngUnsubscribe\n \n \n Public\n router\n \n \n subscription\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n logout\n \n \n ngOnDestroy\n \n \n \n \n\n\n \n \n Outputs\n \n \n \n \n \n \n toggleSidenav\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer, authO: UserService, router: Router, guard: AuthGuardService, _snackBar: MatSnackBar, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:36\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n iconRegistry\n \n \n MatIconRegistry\n \n \n \n No\n \n \n \n \n sanitizer\n \n \n DomSanitizer\n \n \n \n No\n \n \n \n \n authO\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n guard\n \n \n AuthGuardService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n \n Outputs\n \n \n \n \n \n toggleSidenav\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:33\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \nlogout()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Public\n authO\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n cobbler_version\n \n \n \n \n \n \n Type : String\n\n \n \n \n \n Default value : 'Unknown'\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n islogged\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n Type : Router\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n subscription\n \n \n \n \n \n \n Type : Subscription\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/navbar/navbar.component.ts:36\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, OnDestroy, Output } from '@angular/core';\nimport { MatIconModule, MatIconRegistry } from '@angular/material/icon';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { DomSanitizer } from '@angular/platform-browser';\nimport { Router, RouterLink } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject, Subscription } from 'rxjs';\nimport { AuthGuardService } from '../services/auth-guard.service';\nimport { UserService } from '../services/user.service';\nimport { MatToolbarModule } from '@angular/material/toolbar';\nimport { CommonModule } from '@angular/common';\nimport { MatButtonModule } from '@angular/material/button';\nimport { takeUntil } from 'rxjs/operators';\n\n@Component({\n selector: 'cobbler-navbar',\n templateUrl: './navbar.component.html',\n styleUrls: ['./navbar.component.css'],\n standalone: true,\n imports: [\n RouterLink,\n MatToolbarModule,\n MatIconModule,\n CommonModule,\n MatButtonModule,\n ],\n})\nexport class NavbarComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Navbar\n @Output() toggleSidenav = new EventEmitter();\n cobbler_version: String = 'Unknown';\n islogged: boolean = false;\n subscription: Subscription;\n\n constructor(\n iconRegistry: MatIconRegistry,\n sanitizer: DomSanitizer,\n public authO: UserService,\n public router: Router,\n private guard: AuthGuardService,\n private _snackBar: MatSnackBar,\n private cobblerApiService: CobblerApiService,\n ) {\n iconRegistry.addSvgIcon(\n 'cobbler-logo',\n sanitizer.bypassSecurityTrustResourceUrl(\n 'https://cobbler.github.io/images/logo-cobbler-new.svg',\n ),\n );\n\n this.subscription = this.authO.authorized\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value) => {\n if (value) {\n this.islogged = value;\n } else {\n this.islogged = false;\n }\n });\n cobblerApiService\n .extended_version()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobbler_version = value.version;\n },\n (error) => {\n this.cobbler_version = 'Error';\n this._snackBar.open(error.message, 'Close');\n },\n );\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n logout(): void {\n this.authO.changeAuthorizedState(false);\n this.authO.username = 'username';\n this.authO.token = '';\n this.guard.setBool(false);\n }\n}\n\n \n\n \n \n \n menu\n \n \n \n \n Cobbler\n \n \n \n \n Version: {{ cobbler_version }}\n @if (!islogged) {\n \n login\n \n }\n @if (islogged) {\n \n \n logout\n \n \n }\n \n\n\n \n\n \n \n ./navbar.component.css\n \n .navbar-spacer {\n flex: 1 1 auto;\n}\n\n.pad {\n padding-left: 5px;\n padding-right: 5px;\n}\n\n.align-center {\n vertical-align: middle;\n}\n\na {\n color: inherit;\n text-decoration: inherit;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' menu Cobbler Version: {{ cobbler_version }} @if (!islogged) { login } @if (islogged) { logout } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'NavbarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/NetworkInterface.html":{"url":"interfaces/NetworkInterface.html","title":"interface - NetworkInterface","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n NetworkInterface\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n bonding_opts\n \n \n \n \n bridge_opts\n \n \n \n \n cnames\n \n \n \n \n connected_mode\n \n \n \n \n dhcp_tag\n \n \n \n \n dns_name\n \n \n \n \n if_gateway\n \n \n \n \n interface_master\n \n \n \n \n interface_type\n \n \n \n \n ip_address\n \n \n \n \n ipv6_address\n \n \n \n \n ipv6_default_gateway\n \n \n \n \n ipv6_mtu\n \n \n \n \n ipv6_prefix\n \n \n \n \n ipv6_secondaries\n \n \n \n \n ipv6_static_routes\n \n \n \n \n mac_address\n \n \n \n \n management\n \n \n \n \n mtu\n \n \n \n \n netmask\n \n \n \n \n static\n \n \n \n \n static_routes\n \n \n \n \n virt_bridge\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n bonding_opts\n \n \n \n \n \n \n \n \n bonding_opts: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n bridge_opts\n \n \n \n \n \n \n \n \n bridge_opts: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n cnames\n \n \n \n \n \n \n \n \n cnames: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n connected_mode\n \n \n \n \n \n \n \n \n connected_mode: \n\n \n \n\n\n\n\n\n\n\n \n \n \n \n \n \n \n dhcp_tag\n \n \n \n \n \n \n \n \n dhcp_tag: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n dns_name\n \n \n \n \n \n \n \n \n dns_name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n if_gateway\n \n \n \n \n \n \n \n \n if_gateway: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n interface_master\n \n \n \n \n \n \n \n \n interface_master: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n interface_type\n \n \n \n \n \n \n \n \n interface_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ip_address\n \n \n \n \n \n \n \n \n ip_address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_address\n \n \n \n \n \n \n \n \n ipv6_address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_default_gateway\n \n \n \n \n \n \n \n \n ipv6_default_gateway: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_mtu\n \n \n \n \n \n \n \n \n ipv6_mtu: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_prefix\n \n \n \n \n \n \n \n \n ipv6_prefix: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_secondaries\n \n \n \n \n \n \n \n \n ipv6_secondaries: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n ipv6_static_routes\n \n \n \n \n \n \n \n \n ipv6_static_routes: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mac_address\n \n \n \n \n \n \n \n \n mac_address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n management\n \n \n \n \n \n \n \n \n management: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mtu\n \n \n \n \n \n \n \n \n mtu: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n netmask\n \n \n \n \n \n \n \n \n netmask: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n static\n \n \n \n \n \n \n \n \n static: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n static_routes\n \n \n \n \n \n \n \n \n static_routes: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n virt_bridge\n \n \n \n \n \n \n \n \n virt_bridge: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NotFoundComponent.html":{"url":"components/NotFoundComponent.html","title":"component - NotFoundComponent","body":"\n \n\n\n\n\n\n Components\n \n NotFoundComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/not-found/not-found.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-not-found\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterLink\n \n \n\n \n styleUrls\n ./not-found.component.css\n \n\n\n\n \n templateUrl\n ./not-found.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/not-found/not-found.component.ts:12\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { RouterLink } from '@angular/router';\n\n@Component({\n selector: 'cobbler-not-found',\n templateUrl: './not-found.component.html',\n styleUrls: ['./not-found.component.css'],\n\n standalone: true,\n imports: [RouterLink],\n})\nexport class NotFoundComponent {\n constructor() {}\n}\n\n \n\n \n \n Path not found, Or unavailable.\n Please Log in.\n Login\n\n\n \n\n \n \n ./not-found.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Path not found, Or unavailable. Please Log in. Login'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'NotFoundComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ObjectNode.html":{"url":"interfaces/ObjectNode.html","title":"interface - ObjectNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n ObjectNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n\n\n \n Description\n \n \n Food data with nested structure.\nEach node has a name and an optional list of children.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n children\n \n \n \n \n name\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n children\n \n \n \n \n \n \n \n \n children: ObjectNode[]\n\n \n \n\n\n \n \n Type : ObjectNode[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { FlatTreeControl } from '@angular/cdk/tree';\nimport { Component, Input, OnInit } from '@angular/core';\nimport {\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeModule,\n} from '@angular/material/tree';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface ObjectNode {\n name: string;\n value: any;\n children?: ObjectNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-viewable-tree',\n templateUrl: './viewable-tree.component.html',\n styleUrls: ['./viewable-tree.component.scss'],\n standalone: true,\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n})\nexport class ViewableTreeComponent implements OnInit {\n @Input() inputObject: object = {};\n viewableTreeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n private _transformer = (node: ObjectNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n value: node.value,\n level: level,\n };\n };\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n );\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n constructor() {}\n\n inputLength(inputObject: object): number {\n return Object.keys(inputObject).length;\n }\n\n private transformObject(inputObject: object): ObjectNode[] {\n const resultStructure = [];\n let children = [];\n Object.keys(inputObject).forEach((key) => {\n if (\n !Array.isArray(inputObject[key]) &&\n typeof inputObject[key] === 'object'\n ) {\n children = this.transformObject(inputObject[key]);\n }\n resultStructure.push({\n name: key,\n value: inputObject[key],\n children: children,\n });\n });\n return resultStructure;\n }\n\n ngOnInit(): void {\n this.dataSource.data = this.transformObject(this.inputObject);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/OsBreedFlatNode.html":{"url":"interfaces/OsBreedFlatNode.html","title":"interface - OsBreedFlatNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n OsBreedFlatNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n\n\n \n Description\n \n \n Flat node with expandable and level information\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n data\n \n \n \n \n expandable\n \n \n \n \n level\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n data: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n expandable\n \n \n \n \n \n \n \n \n expandable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n level\n \n \n \n \n \n \n \n \n level: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/OsNode.html":{"url":"interfaces/OsNode.html","title":"interface - OsNode","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n OsNode\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n\n\n \n Description\n \n \n Food data with nested structure.\nEach node has a name and an optional list of children.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n \n children\n \n \n \n \n data\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n children\n \n \n \n \n \n \n \n \n children: OsNode[]\n\n \n \n\n\n \n \n Type : OsNode[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n data: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Package.html":{"url":"interfaces/Package.html","title":"interface - Package","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Package\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n action\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n comment\n \n \n \n \n fetchable_files\n \n \n \n \n group\n \n \n \n \n installer\n \n \n \n \n is_subobject\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n mode\n \n \n \n \n name\n \n \n \n \n owner\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n path\n \n \n \n \n template\n \n \n \n \n template_files\n \n \n \n \n version\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n \n \n \n \n action: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n group\n \n \n \n \n \n \n \n \n group: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n installer\n \n \n \n \n \n \n \n \n installer: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mode\n \n \n \n \n \n \n \n \n mode: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owner\n \n \n \n \n \n \n \n \n owner: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template\n \n \n \n \n \n \n \n \n template: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n version\n \n \n \n \n \n \n \n \n version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PackageEditComponent.html":{"url":"components/PackageEditComponent.html","title":"component - PackageEditComponent","body":"\n \n\n\n\n\n\n Components\n \n PackageEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n \n \n\n\n\n\n \n templateUrl\n ./package-edit.component.html\n \n\n\n\n \n styleUrl\n ./package-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n name\n \n \n Private\n ngUnsubscribe\n \n \n package\n \n \n packageFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyPackage\n \n \n editPackage\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n refreshData\n \n \n removePackage\n \n \n savePackage\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n packageOwners\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:76\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyPackage\n \n \n \n \n \n \ncopyPackage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:171\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editPackage\n \n \n \n \n \n \neditPackage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:166\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:93\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:89\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:98\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removePackage\n \n \n \n \n \n \nremovePackage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:144\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n savePackage\n \n \n \n \n \n \nsavePackage()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:211\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:76\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:53\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:50\n \n \n\n\n \n \n \n \n \n \n \n \n package\n \n \n \n \n \n \n Type : Package\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n packageFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n installer: new FormControl({ value: '', disabled: true }),\n version: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:56\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n packageOwners\n \n \n\n \n \n getpackageOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts:215\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Package } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n ],\n templateUrl: './package-edit.component.html',\n styleUrl: './package-edit.component.scss',\n})\nexport class PackageEditComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n name: string;\n package: Package;\n private readonly _formBuilder = inject(FormBuilder);\n packageFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mode: new FormControl({ value: '', disabled: true }),\n owner: new FormControl({ value: '', disabled: true }),\n group: new FormControl({ value: '', disabled: true }),\n path: new FormControl({ value: '', disabled: true }),\n template: new FormControl({ value: '', disabled: true }),\n action: new FormControl({ value: '', disabled: true }),\n installer: new FormControl({ value: '', disabled: true }),\n version: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_package(this.name, false, false, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.package = value;\n this.packageFormGroup.controls.name.setValue(this.package.name);\n this.packageFormGroup.controls.uid.setValue(this.package.uid);\n this.packageFormGroup.controls.mtime.setValue(\n new Date(this.package.mtime * 1000).toString(),\n );\n this.packageFormGroup.controls.ctime.setValue(\n new Date(this.package.ctime * 1000).toString(),\n );\n this.packageFormGroup.controls.depth.setValue(this.package.depth);\n this.packageFormGroup.controls.is_subobject.setValue(\n this.package.is_subobject,\n );\n this.packageFormGroup.controls.comment.setValue(this.package.comment);\n this.packageFormGroup.controls.mode.setValue(this.package.mode);\n this.packageFormGroup.controls.owner.setValue(this.package.owner);\n this.packageFormGroup.controls.group.setValue(this.package.group);\n this.packageFormGroup.controls.path.setValue(this.package.path);\n this.packageFormGroup.controls.template.setValue(\n this.package.template,\n );\n this.packageFormGroup.controls.action.setValue(this.package.action);\n this.packageFormGroup.controls.installer.setValue(\n this.package.installer,\n );\n this.packageFormGroup.controls.version.setValue(this.package.version);\n if (typeof this.package.owners === 'string') {\n this.packageFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.packageFormGroup.controls.owners_inherited.setValue(false);\n this.packageFormGroup.controls.owners.setValue(this.package.owners);\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removePackage(): void {\n this.cobblerApiService\n .remove_package(this.name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'package']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editPackage(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyPackage(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemCopyComponent, {\n data: {\n itemType: 'Package',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the package\n return;\n }\n this.cobblerApiService\n .get_package_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (packageHandle) => {\n this.cobblerApiService\n .copy_package(packageHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.router.navigate(['/items', 'package', newItemName]);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n savePackage(): void {\n // TODO\n }\n\n get packageOwners(): string[] {\n if (this.package && this.package.owners) {\n const ownersResult = this.package.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n \n Mode\n \n \n \n Owner\n \n \n \n Group\n \n \n \n Path\n \n \n \n Template\n \n \n \n Action\n \n \n \n Installer\n \n \n \n Version\n \n \n \n \n Inherited\n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Mode Owner Group Path Template Action Installer Version Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'PackageEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PackageOverviewComponent.html":{"url":"components/PackageOverviewComponent.html","title":"component - PackageOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n PackageOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./package-overview.component.html\n \n\n\n\n \n styleUrl\n ./package-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deletePackage\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renamePackage\n \n \n Private\n retrievePackages\n \n \n showPackage\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deletePackage\n \n \n \n \n \n \ndeletePackage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:140\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renamePackage\n \n \n \n \n \n \nrenamePackage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrievePackages\n \n \n \n \n \n \n \n retrievePackages()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showPackage\n \n \n \n \n \n \nshowPackage(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'installer', 'version', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Package } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './package-overview.component.html',\n styleUrl: './package-overview.component.scss',\n})\nexport class PackageOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'installer', 'version', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrievePackages();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrievePackages(): void {\n this.cobblerApiService\n .get_packages()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showPackage(uid: string, name: string): void {\n this.router.navigate(['/items', 'package', name]);\n }\n\n renamePackage(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Repository',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the package\n return;\n }\n this.cobblerApiService\n .get_package_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (packageHandle) => {\n this.cobblerApiService\n .rename_package(\n packageHandle,\n newItemName,\n this.userService.token,\n )\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrievePackages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deletePackage(uid: string, name: string): void {\n this.cobblerApiService\n .remove_package(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrievePackages();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n PACKAGES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Installer\n {{ element.installer }}\n \n\n \n \n Version\n {{ element.version }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'PACKAGES Name {{ element.name }} Installer {{ element.installer }} Version {{ element.version }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'PackageOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/PageInfo.html":{"url":"interfaces/PageInfo.html","title":"interface - PageInfo","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n PageInfo\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n end_item\n \n \n \n \n items_per_page\n \n \n \n \n items_per_page_list\n \n \n \n \n next_page\n \n \n \n \n num_items\n \n \n \n \n num_pages\n \n \n \n \n page\n \n \n \n \n pages\n \n \n \n \n prev_page\n \n \n \n \n start_item\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n end_item\n \n \n \n \n \n \n \n \n end_item: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n items_per_page\n \n \n \n \n \n \n \n \n items_per_page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n items_per_page_list\n \n \n \n \n \n \n \n \n items_per_page_list: [\"10\", \"20\", \"50\", \"100\", \"200\", \"500\"]\n\n \n \n\n\n \n \n Type : [\"10\", \"20\", \"50\", \"100\", \"200\", \"500\"]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n next_page\n \n \n \n \n \n \n \n \n next_page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n num_items\n \n \n \n \n \n \n \n \n num_items: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n num_pages\n \n \n \n \n \n \n \n \n num_pages: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n page\n \n \n \n \n \n \n \n \n page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n pages\n \n \n \n \n \n \n \n \n pages: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n prev_page\n \n \n \n \n \n \n \n \n prev_page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n start_item\n \n \n \n \n \n \n \n \n start_item: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/PagesItemsResult.html":{"url":"interfaces/PagesItemsResult.html","title":"interface - PagesItemsResult","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n PagesItemsResult\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n items\n \n \n \n \n pageinfo\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n items\n \n \n \n \n \n \n \n \n items: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n pageinfo\n \n \n \n \n \n \n \n \n pageinfo: PageInfo\n\n \n \n\n\n \n \n Type : PageInfo\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Param.html":{"url":"interfaces/Param.html","title":"interface - Param","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Param\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: XmlRpcTypes\n\n \n \n\n\n \n \n Type : XmlRpcTypes\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ProfileEditComponent.html":{"url":"components/ProfileEditComponent.html","title":"component - ProfileEditComponent","body":"\n \n\n\n\n\n\n Components\n \n ProfileEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatIcon\n MatIconButton\n MatTooltip\n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatInput\n MatLabel\n MatOption\n MatSelect\n ReactiveFormsModule\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./profile-edit.component.html\n \n\n\n\n \n styleUrl\n ./profile-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n name\n \n \n Private\n ngUnsubscribe\n \n \n profile\n \n \n profileFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyProfile\n \n \n editProfile\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeProfile\n \n \n saveProfile\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n profileOwners\n \n \n profileAutoinstallMeta\n \n \n profileKernelOptions\n \n \n profileKernelOptionsPost\n \n \n profileBootFiles\n \n \n profileFetchableFiles\n \n \n profileMgmtParameters\n \n \n profileTemplateFiles\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:113\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyProfile\n \n \n \n \n \n \ncopyProfile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:326\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editProfile\n \n \n \n \n \n \neditProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:321\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:130\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:126\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:135\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeProfile\n \n \n \n \n \n \nremoveProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:299\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveProfile\n \n \n \n \n \n \nsaveProfile()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:366\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:113\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n profile\n \n \n \n \n \n \n Type : Profile\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n profileFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n dhcp_tag: new FormControl({ value: '', disabled: true }),\n distro: new FormControl({ value: '', disabled: true }),\n menu: new FormControl({ value: '', disabled: true }),\n next_server_v4: new FormControl({ value: '', disabled: true }),\n next_server_v6: new FormControl({ value: '', disabled: true }),\n filename: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n server: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_parameters: new FormControl({ value: {}, disabled: true }),\n mgmt_parameters_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n name_servers: new FormControl({ value: [], disabled: true }),\n name_servers_search: new FormControl({ value: [], disabled: true }),\n repos: new FormControl({ value: [], disabled: true }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:58\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n profileOwners\n \n \n\n \n \n getprofileOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:370\n \n \n\n \n \n \n \n \n \n \n profileAutoinstallMeta\n \n \n\n \n \n getprofileAutoinstallMeta()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:380\n \n \n\n \n \n \n \n \n \n \n profileKernelOptions\n \n \n\n \n \n getprofileKernelOptions()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:390\n \n \n\n \n \n \n \n \n \n \n profileKernelOptionsPost\n \n \n\n \n \n getprofileKernelOptionsPost()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:400\n \n \n\n \n \n \n \n \n \n \n profileBootFiles\n \n \n\n \n \n getprofileBootFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:410\n \n \n\n \n \n \n \n \n \n \n profileFetchableFiles\n \n \n\n \n \n getprofileFetchableFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:420\n \n \n\n \n \n \n \n \n \n \n profileMgmtParameters\n \n \n\n \n \n getprofileMgmtParameters()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:430\n \n \n\n \n \n \n \n \n \n \n profileTemplateFiles\n \n \n\n \n \n getprofileTemplateFiles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts:440\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Profile } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n MatIcon,\n MatIconButton,\n MatTooltip,\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n ReactiveFormsModule,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './profile-edit.component.html',\n styleUrl: './profile-edit.component.scss',\n})\nexport class ProfileEditComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n name: string;\n profile: Profile;\n private readonly _formBuilder = inject(FormBuilder);\n profileFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n autoinstall: new FormControl({ value: '', disabled: true }),\n dhcp_tag: new FormControl({ value: '', disabled: true }),\n distro: new FormControl({ value: '', disabled: true }),\n menu: new FormControl({ value: '', disabled: true }),\n next_server_v4: new FormControl({ value: '', disabled: true }),\n next_server_v6: new FormControl({ value: '', disabled: true }),\n filename: new FormControl({ value: '', disabled: true }),\n parent: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n server: new FormControl({ value: '', disabled: true }),\n boot_loaders: new FormControl({ value: [], disabled: true }),\n bootloader_inherited: new FormControl({ value: false, disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n autoinstall_meta: new FormControl({ value: {}, disabled: true }),\n autoinstall_meta_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n boot_files: new FormControl({ value: {}, disabled: true }),\n boot_files_inherited: new FormControl({ value: false, disabled: true }),\n fetchable_files: new FormControl({ value: {}, disabled: true }),\n fetchable_files_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n kernel_options: new FormControl({ value: {}, disabled: true }),\n kernel_options_inherited: new FormControl({ value: false, disabled: true }),\n kernel_options_post: new FormControl({ value: {}, disabled: true }),\n kernel_options_post_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n mgmt_classes: new FormControl({ value: [], disabled: true }),\n mgmt_classes_inherited: new FormControl({ value: false, disabled: true }),\n mgmt_parameters: new FormControl({ value: {}, disabled: true }),\n mgmt_parameters_inherited: new FormControl({\n value: false,\n disabled: true,\n }),\n name_servers: new FormControl({ value: [], disabled: true }),\n name_servers_search: new FormControl({ value: [], disabled: true }),\n repos: new FormControl({ value: [], disabled: true }),\n template_files: new FormControl({ value: {}, disabled: true }),\n template_files_inherited: new FormControl({ value: false, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_profile(this.name, false, false, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.profile = value;\n this.profileFormGroup.controls.name.setValue(this.profile.name);\n this.profileFormGroup.controls.uid.setValue(this.profile.uid);\n this.profileFormGroup.controls.mtime.setValue(\n new Date(this.profile.mtime * 1000).toString(),\n );\n this.profileFormGroup.controls.ctime.setValue(\n new Date(this.profile.ctime * 1000).toString(),\n );\n this.profileFormGroup.controls.depth.setValue(this.profile.depth);\n this.profileFormGroup.controls.is_subobject.setValue(\n this.profile.is_subobject,\n );\n this.profileFormGroup.controls.comment.setValue(this.profile.comment);\n this.profileFormGroup.controls.redhat_management_key.setValue(\n this.profile.redhat_management_key,\n );\n this.profileFormGroup.controls.autoinstall.setValue(\n this.profile.autoinstall,\n );\n this.profileFormGroup.controls.dhcp_tag.setValue(\n this.profile.dhcp_tag,\n );\n this.profileFormGroup.controls.distro.setValue(this.profile.distro);\n this.profileFormGroup.controls.menu.setValue(this.profile.menu);\n this.profileFormGroup.controls.next_server_v4.setValue(\n this.profile.next_server_v4,\n );\n this.profileFormGroup.controls.next_server_v6.setValue(\n this.profile.next_server_v6,\n );\n this.profileFormGroup.controls.filename.setValue(\n this.profile.filename,\n );\n this.profileFormGroup.controls.parent.setValue(this.profile.parent);\n this.profileFormGroup.controls.proxy.setValue(this.profile.proxy);\n this.profileFormGroup.controls.server.setValue(this.profile.server);\n this.profileFormGroup.controls.name_servers.setValue(\n this.profile.name_servers,\n );\n this.profileFormGroup.controls.name_servers_search.setValue(\n this.profile.name_servers_search,\n );\n this.profileFormGroup.controls.repos.setValue(this.profile.repos);\n if (typeof this.profile.boot_loaders === 'string') {\n this.profileFormGroup.controls.bootloader_inherited.setValue(true);\n } else {\n this.profileFormGroup.controls.bootloader_inherited.setValue(false);\n this.profileFormGroup.controls.boot_loaders.setValue(\n this.profile.boot_loaders,\n );\n }\n if (typeof this.profile.owners === 'string') {\n this.profileFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.profileFormGroup.controls.owners_inherited.setValue(false);\n this.profileFormGroup.controls.owners.setValue(this.profile.owners);\n }\n if (typeof this.profile.autoinstall_meta === 'string') {\n this.profileFormGroup.controls.autoinstall_meta_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.autoinstall_meta_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.autoinstall_meta.setValue(\n this.profile.autoinstall_meta,\n );\n }\n if (typeof this.profile.boot_files === 'string') {\n this.profileFormGroup.controls.boot_files_inherited.setValue(true);\n } else {\n this.profileFormGroup.controls.boot_files_inherited.setValue(false);\n this.profileFormGroup.controls.boot_files.setValue(\n this.profile.boot_files,\n );\n }\n if (typeof this.profile.fetchable_files === 'string') {\n this.profileFormGroup.controls.fetchable_files_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.fetchable_files_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.fetchable_files.setValue(\n this.profile.fetchable_files,\n );\n }\n if (typeof this.profile.kernel_options === 'string') {\n this.profileFormGroup.controls.kernel_options_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.kernel_options_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.kernel_options.setValue(\n this.profile.kernel_options,\n );\n }\n if (typeof this.profile.kernel_options_post === 'string') {\n this.profileFormGroup.controls.kernel_options_post_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.kernel_options_post_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.kernel_options_post.setValue(\n this.profile.kernel_options_post,\n );\n }\n if (typeof this.profile.mgmt_classes === 'string') {\n this.profileFormGroup.controls.mgmt_classes_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.mgmt_classes_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.mgmt_classes.setValue(\n this.profile.mgmt_classes,\n );\n }\n if (typeof this.profile.mgmt_parameters === 'string') {\n this.profileFormGroup.controls.mgmt_parameters_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.mgmt_parameters_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.mgmt_parameters.setValue(\n this.profile.mgmt_parameters,\n );\n }\n if (typeof this.profile.template_files === 'string') {\n this.profileFormGroup.controls.template_files_inherited.setValue(\n true,\n );\n } else {\n this.profileFormGroup.controls.template_files_inherited.setValue(\n false,\n );\n this.profileFormGroup.controls.template_files.setValue(\n this.profile.template_files,\n );\n }\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeProfile(): void {\n this.cobblerApiService\n .remove_profile(this.name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'profile']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editProfile(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyProfile(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemCopyComponent, {\n data: {\n itemType: 'Profile',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the profile\n return;\n }\n this.cobblerApiService\n .get_profile_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (profileHandle) => {\n this.cobblerApiService\n .copy_profile(profileHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.router.navigate(['/items', 'profile', newItemName]);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n saveProfile(): void {\n // TODO\n }\n\n get profileOwners(): string[] {\n if (this.profile && this.profile.owners) {\n const ownersResult = this.profile.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n\n get profileAutoinstallMeta(): object {\n if (this.profile && this.profile.autoinstall_meta) {\n const autoinstallMetaResult = this.profile.autoinstall_meta;\n if (typeof autoinstallMetaResult !== 'string') {\n return autoinstallMetaResult;\n }\n }\n return {};\n }\n\n get profileKernelOptions(): object {\n if (this.profile && this.profile.kernel_options) {\n const kernelOptionsResult = this.profile.kernel_options;\n if (typeof kernelOptionsResult !== 'string') {\n return kernelOptionsResult;\n }\n }\n return {};\n }\n\n get profileKernelOptionsPost(): object {\n if (this.profile && this.profile.kernel_options_post) {\n const kernelOptionsPost = this.profile.kernel_options_post;\n if (typeof kernelOptionsPost !== 'string') {\n return kernelOptionsPost;\n }\n }\n return {};\n }\n\n get profileBootFiles(): object {\n if (this.profile && this.profile.boot_files) {\n const bootFilesResult = this.profile.boot_files;\n if (typeof bootFilesResult !== 'string') {\n return bootFilesResult;\n }\n }\n return {};\n }\n\n get profileFetchableFiles(): object {\n if (this.profile && this.profile.fetchable_files) {\n const fetchableFilesResult = this.profile.fetchable_files;\n if (typeof fetchableFilesResult !== 'string') {\n return fetchableFilesResult;\n }\n }\n return {};\n }\n\n get profileMgmtParameters(): object {\n if (this.profile && this.profile.mgmt_parameters) {\n const mgmtParametersResult = this.profile.mgmt_parameters;\n if (typeof mgmtParametersResult !== 'string') {\n return mgmtParametersResult;\n }\n }\n return {};\n }\n\n get profileTemplateFiles(): object {\n if (this.profile && this.profile.template_files) {\n const templateFilesResult = this.profile.template_files;\n if (typeof templateFilesResult !== 'string') {\n return templateFilesResult;\n }\n }\n return {};\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n \n Inherited\n \n \n Comment\n \n \n \n Autoinstall\n \n \n \n DHCP Tag\n \n \n \n Distribution\n \n \n \n Menu\n \n \n \n Next-Server IPv4\n \n \n \n Next-Server IPv6\n \n \n \n Filename\n \n \n \n Parent\n \n \n \n Proxy\n \n \n \n RedHat Management Key\n \n \n \n Server\n \n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n Inherited\n \n \n \n \n \n \n \n \n \n Inherited\n \n \n \n \n \n \n Inherited\n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Inherited Comment Autoinstall DHCP Tag Distribution Menu Next-Server IPv4 Next-Server IPv6 Filename Parent Proxy RedHat Management Key Server Inherited Inherited Inherited Inherited Inherited Inherited Inherited Inherited Inherited @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ProfileEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ProfileOverviewComponent.html":{"url":"components/ProfileOverviewComponent.html","title":"component - ProfileOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n ProfileOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./profile-overview.component.html\n \n\n\n\n \n styleUrl\n ./profile-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteProfile\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameProfile\n \n \n Private\n retrieveProfiles\n \n \n showProfile\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteProfile\n \n \n \n \n \n \ndeleteProfile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:140\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameProfile\n \n \n \n \n \n \nrenameProfile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveProfiles\n \n \n \n \n \n \n \n retrieveProfiles()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showProfile\n \n \n \n \n \n \nshowProfile(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'distro', 'server', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Profile } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './profile-overview.component.html',\n styleUrl: './profile-overview.component.scss',\n})\nexport class ProfileOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'distro', 'server', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveProfiles();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveProfiles(): void {\n this.cobblerApiService\n .get_profiles()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showProfile(uid: string, name: string): void {\n this.router.navigate(['/items', 'profile', name]);\n }\n\n renameProfile(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Profile',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the profile\n return;\n }\n this.cobblerApiService\n .get_profile_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (profileHandle) => {\n this.cobblerApiService\n .rename_profile(\n profileHandle,\n newItemName,\n this.userService.token,\n )\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveProfiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteProfile(uid: string, name: string): void {\n this.cobblerApiService\n .remove_profile(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveProfiles();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n PROFILES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Distro\n {{ element.distro }}\n \n\n \n \n Server\n {{ element.server }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'PROFILES Name {{ element.name }} Distro {{ element.distro }} Server {{ element.server }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ProfileOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/RegisterOptions.html":{"url":"interfaces/RegisterOptions.html","title":"interface - RegisterOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n RegisterOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n hostname\n \n \n \n \n interfaces\n \n \n \n \n name\n \n \n \n \n profile\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n hostname\n \n \n \n \n \n \n \n \n hostname: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n interfaces\n \n \n \n \n \n \n \n \n interfaces: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n profile\n \n \n \n \n \n \n \n \n profile: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ReplicateComponent.html":{"url":"components/ReplicateComponent.html","title":"component - ReplicateComponent","body":"\n \n\n\n\n\n\n Components\n \n ReplicateComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-replicate\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatFormField\n ReactiveFormsModule\n MatLabel\n MatFormFieldModule\n MatInput\n MatSlideToggle\n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./replicate.component.html\n \n\n\n\n \n styleUrl\n ./replicate.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n Private\n ngUnsubscribe\n \n \n replicateFormGroup\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runReplicate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:50\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:58\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runReplicate\n \n \n \n \n \n \nrunReplicate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n replicateFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n master: '',\n port: '',\n distro_patterns: '',\n profile_patterns: '',\n system_patterns: '',\n repo_patterns: '',\n image_patterns: '',\n mgmtclass_patterns: '',\n package_patterns: '',\n file_patterns: '',\n prune: false,\n omit_data: false,\n sync_all: false,\n use_ssl: false,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnDestroy, OnInit } from '@angular/core';\nimport { FormBuilder, ReactiveFormsModule } from '@angular/forms';\nimport { MatButton } from '@angular/material/button';\nimport { MatFormFieldModule, MatLabel } from '@angular/material/form-field';\nimport { MatFormField, MatInput } from '@angular/material/input';\nimport { MatSlideToggle } from '@angular/material/slide-toggle';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { BackgroundReplicateOptions, CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-replicate',\n standalone: true,\n imports: [\n MatFormField,\n ReactiveFormsModule,\n MatLabel,\n MatFormFieldModule,\n MatInput,\n MatSlideToggle,\n MatButton,\n ],\n templateUrl: './replicate.component.html',\n styleUrl: './replicate.component.scss',\n})\nexport class ReplicateComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n replicateFormGroup = this._formBuilder.group({\n master: '',\n port: '',\n distro_patterns: '',\n profile_patterns: '',\n system_patterns: '',\n repo_patterns: '',\n image_patterns: '',\n mgmtclass_patterns: '',\n package_patterns: '',\n file_patterns: '',\n prune: false,\n omit_data: false,\n sync_all: false,\n use_ssl: false,\n });\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runReplicate(): void {\n const replicateOptions: BackgroundReplicateOptions = {\n master: this.replicateFormGroup.controls.master.value,\n port: this.replicateFormGroup.controls.port.value,\n distro_patterns: this.replicateFormGroup.controls.distro_patterns.value,\n profile_patterns: this.replicateFormGroup.controls.profile_patterns.value,\n system_patterns: this.replicateFormGroup.controls.system_patterns.value,\n repo_patterns: this.replicateFormGroup.controls.repo_patterns.value,\n image_patterns: this.replicateFormGroup.controls.image_patterns.value,\n mgmtclass_patterns:\n this.replicateFormGroup.controls.mgmtclass_patterns.value,\n package_patterns: this.replicateFormGroup.controls.package_patterns.value,\n file_patterns: this.replicateFormGroup.controls.file_patterns.value,\n prune: this.replicateFormGroup.controls.prune.value,\n omit_data: this.replicateFormGroup.controls.omit_data.value,\n sync_all: this.replicateFormGroup.controls.sync_all.value,\n use_ssl: this.replicateFormGroup.controls.use_ssl.value,\n };\n this.cobblerApiService\n .background_replicate(replicateOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n REPLICATE\n\n\n \n Master\n \n \n \n Port\n \n \n \n Distro Pattern\n \n \n \n Profile Pattern\n \n \n \n System Pattern\n \n \n \n Repository Pattern\n \n \n \n Image Pattern\n \n \n \n Management-Class Pattern\n \n \n \n File Pattern\n \n \n Prune\n Omit data\n Sync all\n Use SSL\n Run\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'REPLICATE Master Port Distro Pattern Profile Pattern System Pattern Repository Pattern Image Pattern Management-Class Pattern File Pattern Prune Omit data Sync all Use SSL Run'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ReplicateComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Repo.html":{"url":"interfaces/Repo.html","title":"interface - Repo","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Repo\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n\n\n\n \n Extends\n \n \n Item\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n apt_components\n \n \n \n \n apt_dists\n \n \n \n \n arch\n \n \n \n \n autoinstall_meta\n \n \n \n \n boot_files\n \n \n \n \n breed\n \n \n \n \n comment\n \n \n \n \n createrepo_flags\n \n \n \n \n environment\n \n \n \n \n fetchable_files\n \n \n \n \n is_subobject\n \n \n \n \n keep_updated\n \n \n \n \n kernel_options\n \n \n \n \n kernel_options_post\n \n \n \n \n mgmt_classes\n \n \n \n \n mgmt_parameters\n \n \n \n \n mirror\n \n \n \n \n mirror_locally\n \n \n \n \n mirror_type\n \n \n \n \n name\n \n \n \n \n os_version\n \n \n \n \n owners\n \n \n \n \n parent\n \n \n \n \n priority\n \n \n \n \n proxy\n \n \n \n \n rpm_list\n \n \n \n \n rsyncopts\n \n \n \n \n template_files\n \n \n \n \n yumopts\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n apt_components\n \n \n \n \n \n \n \n \n apt_components: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n apt_dists\n \n \n \n \n \n \n \n \n apt_dists: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n arch\n \n \n \n \n \n \n \n \n arch: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n autoinstall_meta\n \n \n \n \n \n \n \n \n autoinstall_meta: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n boot_files\n \n \n \n \n \n \n \n \n boot_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n breed\n \n \n \n \n \n \n \n \n breed: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n comment\n \n \n \n \n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n createrepo_flags\n \n \n \n \n \n \n \n \n createrepo_flags: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n \n \n environment: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fetchable_files\n \n \n \n \n \n \n \n \n fetchable_files: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n is_subobject\n \n \n \n \n \n \n \n \n is_subobject: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n keep_updated\n \n \n \n \n \n \n \n \n keep_updated: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options\n \n \n \n \n \n \n \n \n kernel_options: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n kernel_options_post\n \n \n \n \n \n \n \n \n kernel_options_post: string | object\n\n \n \n\n\n \n \n Type : string | object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_classes\n \n \n \n \n \n \n \n \n mgmt_classes: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mgmt_parameters\n \n \n \n \n \n \n \n \n mgmt_parameters: object | string\n\n \n \n\n\n \n \n Type : object | string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mirror\n \n \n \n \n \n \n \n \n mirror: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mirror_locally\n \n \n \n \n \n \n \n \n mirror_locally: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n mirror_type\n \n \n \n \n \n \n \n \n mirror_type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owners\n \n \n \n \n \n \n \n \n owners: string | Array\n\n \n \n\n\n \n \n Type : string | Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n \n parent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n priority\n \n \n \n \n \n \n \n \n priority: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n proxy\n \n \n \n \n \n \n \n \n proxy: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n rpm_list\n \n \n \n \n \n \n \n \n rpm_list: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n rsyncopts\n \n \n \n \n \n \n \n \n rsyncopts: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n template_files\n \n \n \n \n \n \n \n \n template_files: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n yumopts\n \n \n \n \n \n \n \n \n yumopts: object\n\n \n \n\n\n \n \n Type : object\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Item {\n ctime: number;\n depth: number;\n mtime: number;\n uid: string;\n}\n\nexport interface Distro extends Item {\n is_subobject: boolean;\n source_repos: Array;\n tree_build_time: number;\n arch: string;\n autoinstall_meta: object;\n boot_files: string | object;\n boot_loaders: string | Array;\n breed: string;\n comment: string;\n parent: string;\n fetchable_files: string | object;\n initrd: string;\n kernel: string;\n remote_boot_initrd: string;\n remote_boot_kernel: string;\n remote_grub_initrd: string;\n remote_grub_kernel: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n os_version: string;\n owners: string | Array;\n redhat_management_key: string;\n template_files: object;\n}\n\nexport interface Profile extends Item {\n is_subobject: boolean;\n boot_loaders: string | Array;\n autoinstall: string;\n autoinstall_meta: string | object;\n boot_files: string | Array;\n comment: string;\n dhcp_tag: string;\n distro: string;\n enable_ipxe: string | boolean;\n enable_menu: string | boolean;\n menu: string;\n fetchable_files: string | object;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n parent: string;\n proxy: string;\n redhat_management_key: string;\n repos: Array;\n server: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface NetworkInterface {\n bonding_opts: string;\n bridge_opts: string;\n cnames: Array;\n connected_mode: false;\n dhcp_tag: string;\n dns_name: string;\n if_gateway: string;\n interface_master: string;\n interface_type: string;\n ip_address: string;\n ipv6_address: string;\n ipv6_default_gateway: string;\n ipv6_mtu: string;\n ipv6_prefix: string;\n ipv6_secondaries: Array;\n ipv6_static_routes: Array;\n mac_address: string;\n management: boolean;\n mtu: string;\n netmask: string;\n static: boolean;\n static_routes: Array;\n virt_bridge: string;\n}\n\nexport interface System extends Item {\n ipv6_autoconfiguration: boolean;\n repos_enabled: boolean;\n autoinstall: string;\n interfaces: { [k: string]: NetworkInterface };\n autoinstall_meta: string | object;\n boot_files: string | Array;\n boot_loaders: string | Array;\n comment: string;\n parent: string;\n is_subobject: boolean;\n enable_ipxe: string | boolean;\n fetchable_files: string | object;\n gateway: string;\n hostname: string;\n image: string;\n ipv6_default_device: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n name: string;\n name_servers: Array;\n name_servers_search: Array;\n netboot_enabled: boolean;\n next_server_v4: string;\n next_server_v6: string;\n filename: string;\n owners: string | Array;\n power_address: string;\n power_id: string;\n power_pass: string;\n power_type: string;\n power_user: string;\n power_options: string;\n power_identity_file: string;\n profile: string;\n proxy: string;\n redhat_management_key: string;\n server: string;\n status: string;\n template_files: object;\n virt_auto_boot: string | boolean;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_pxe_boot: boolean;\n virt_ram: string | number;\n virt_type: string;\n serial_device: number;\n serial_baud_rate: number;\n}\n\nexport interface Repo extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n os_version: string;\n // Real attributes\n parent: string;\n apt_components: Array;\n apt_dists: Array;\n arch: string;\n breed: string;\n comment: string;\n createrepo_flags: string;\n environment: object;\n keep_updated: boolean;\n mirror: string;\n mirror_type: string;\n mirror_locally: boolean;\n name: string;\n owners: string | Array;\n priority: number;\n proxy: string;\n rpm_list: Array;\n yumopts: object;\n rsyncopts: object;\n}\n\nexport interface File extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n parent: string;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n action: string;\n comment: string;\n group: string;\n is_dir: boolean;\n mode: string;\n name: string;\n owner: string;\n owners: string | Array;\n path: string;\n template: string;\n}\n\nexport interface Image extends Item {\n // Base Item attributes (we actually don't want them)\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: string | object;\n boot_files: string | object;\n template_files: object;\n boot_loaders: string | Array;\n menu: string;\n // Real attributes\n parent: string;\n arch: string;\n autoinstall: string;\n breed: string;\n comment: string;\n file: string;\n image_type: string;\n name: string;\n network_count: number;\n os_version: string;\n owners: string | Array;\n virt_auto_boot: string | boolean;\n virt_bridge: string;\n virt_cpus: string | number;\n virt_disk_driver: string;\n virt_file_size: string | number;\n virt_path: string;\n virt_ram: string | number;\n virt_type: string;\n}\n\nexport interface Mgmgtclass extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n is_definition: boolean;\n class_name: string;\n comment: string;\n files: Array;\n name: string;\n owners: string | Array;\n packages: Array;\n params: object;\n}\n\nexport interface Package extends Item {\n // Base Item attributes (we actually don't want them)\n parent: string;\n kernel_options: string | object;\n kernel_options_post: string | object;\n mgmt_classes: string | Array;\n mgmt_parameters: object | string;\n is_subobject: boolean;\n fetchable_files: string | object;\n autoinstall_meta: object;\n boot_files: string | object;\n template_files: object;\n // Real attributes\n mode: string;\n owner: string;\n group: string;\n path: string;\n template: string;\n action: string;\n comment: string;\n installer: string;\n name: string;\n owners: string | Array;\n version: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/RepoSyncComponent.html":{"url":"components/RepoSyncComponent.html","title":"component - RepoSyncComponent","body":"\n \n\n\n\n\n\n Components\n \n RepoSyncComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-repo-sync\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatListModule\n MatButton\n FormsModule\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatPrefix\n MatSuffix\n MatLabel\n MatInputModule\n MatFormFieldModule\n ReactiveFormsModule\n \n \n\n \n styleUrls\n ./repo-sync.component.css\n \n\n\n\n \n templateUrl\n ./repo-sync.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n Private\n ngUnsubscribe\n \n \n repositoryFormArray\n \n \n reposyncFormGroup\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addNewRepoFG\n \n \n ngOnDestroy\n \n \n removeNewRepoFG\n \n \n runReposync\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n newRepositoryFormGroup\n \n \n repositoryArrayFGControls\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:67\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addNewRepoFG\n \n \n \n \n \n \naddNewRepoFG()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:89\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:74\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeNewRepoFG\n \n \n \n \n \n \nremoveNewRepoFG(index: number)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:93\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n index\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n runReposync\n \n \n \n \n \n \nrunReposync()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:97\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n repositoryFormArray\n \n \n \n \n \n \n Default value : new FormArray([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n reposyncFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n repoName: this.repositoryFormArray,\n reposyncNoFail: false,\n reposyncTries: 3,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:69\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n newRepositoryFormGroup\n \n \n\n \n \n getnewRepositoryFormGroup()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:79\n \n \n\n \n \n \n \n \n \n \n repositoryArrayFGControls\n \n \n\n \n \n getrepositoryArrayFGControls()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts:85\n \n \n\n \n \n\n\n\n\n \n import { Component, inject, OnDestroy } from '@angular/core';\nimport { MatListModule } from '@angular/material/list';\nimport { RouterOutlet } from '@angular/router';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { BackgroundReposyncOptions } from 'cobbler-api';\nimport {\n FormArray,\n FormBuilder,\n FormControl,\n FormGroup,\n FormsModule,\n ReactiveFormsModule,\n Validators,\n} from '@angular/forms';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport {\n MatFormField,\n MatFormFieldModule,\n MatLabel,\n MatPrefix,\n MatSuffix,\n} from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput, MatInputModule } from '@angular/material/input';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-repo-sync',\n templateUrl: './repo-sync.component.html',\n styleUrls: ['./repo-sync.component.css'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatListModule,\n MatButton,\n FormsModule,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatPrefix,\n MatSuffix,\n MatLabel,\n MatInputModule,\n MatFormFieldModule,\n ReactiveFormsModule,\n ],\n})\nexport class RepoSyncComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n repositoryFormArray = new FormArray([]);\n\n reposyncFormGroup = this._formBuilder.group({\n repoName: this.repositoryFormArray,\n reposyncNoFail: false,\n reposyncTries: 3,\n });\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n get newRepositoryFormGroup(): FormGroup {\n return new FormGroup({\n repoName: new FormControl(null, [Validators.required]),\n });\n }\n\n get repositoryArrayFGControls(): FormGroup[] {\n return this.repositoryFormArray.controls as FormGroup[];\n }\n\n addNewRepoFG(): void {\n this.repositoryFormArray.push(this.newRepositoryFormGroup);\n }\n\n removeNewRepoFG(index: number): void {\n this.repositoryFormArray.removeAt(index);\n }\n\n runReposync(): void {\n let repoNames: Array = [];\n for (let control of this.reposyncFormGroup.controls.repoName.controls) {\n if (control instanceof FormGroup) {\n repoNames.push(control.value.repoName);\n }\n }\n const reposyncOptions: BackgroundReposyncOptions = {\n repos: repoNames,\n only: '',\n tries: this.reposyncFormGroup.controls.reposyncTries.value,\n nofail: this.reposyncFormGroup.controls.reposyncNoFail.value,\n };\n this.cobblerApiService\n .background_reposync(reposyncOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n console.log(value);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n SYNC REPOSITORIES\n\n\n \n @if (repositoryArrayFGControls.length === 0) {\n Sync specific Repositories\n }\n @if (repositoryArrayFGControls.length > 0) {\n Add repository\n }\n \n @for (fg of repositoryArrayFGControls; track fg; let i = $index) {\n \n \n \n {{ i + 1 }}. \n \n \n remove\n \n @if (\n reposyncFormGroup.controls.repoName.controls[i].hasError(\"required\")\n ) {\n Repository name is required\n }\n \n \n \n } @empty {\n Syncing All Repositories\n }\n \n Tries\n \n \n No Fail\n\nRUN\n\n \n\n \n \n ./repo-sync.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'SYNC REPOSITORIES @if (repositoryArrayFGControls.length === 0) { Sync specific Repositories } @if (repositoryArrayFGControls.length > 0) { Add repository } @for (fg of repositoryArrayFGControls; track fg; let i = $index) { {{ i + 1 }}.  remove @if ( reposyncFormGroup.controls.repoName.controls[i].hasError(\"required\") ) { Repository name is required } } @empty { Syncing All Repositories } Tries No FailRUN'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'RepoSyncComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/RepositoryEditComponent.html":{"url":"components/RepositoryEditComponent.html","title":"component - RepositoryEditComponent","body":"\n \n\n\n\n\n\n Components\n \n RepositoryEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n MultiSelectComponent\n KeyValueEditorComponent\n \n \n\n\n\n\n \n templateUrl\n ./repository-edit.component.html\n \n\n\n\n \n styleUrl\n ./repository-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n isEditMode\n \n \n name\n \n \n Private\n ngUnsubscribe\n \n \n repository\n \n \n repositoryFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyRepository\n \n \n editRepository\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeRepository\n \n \n saveRepository\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n repositoryOwners\n \n \n repositoryYumopts\n \n \n repositoryRsyncopts\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:85\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyRepository\n \n \n \n \n \n \ncopyRepository(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:219\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editRepository\n \n \n \n \n \n \neditRepository()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:214\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:102\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:98\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:107\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeRepository\n \n \n \n \n \n \nremoveRepository()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:192\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveRepository\n \n \n \n \n \n \nsaveRepository()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:259\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:85\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n repository\n \n \n \n \n \n \n Type : Repo\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n repositoryFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n priority: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n keep_updated: new FormControl({ value: false, disabled: true }),\n mirror_locally: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mirror_type: new FormControl({ value: '', disabled: true }),\n mirror: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n createrepo_flags: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n apt_components: new FormControl({ value: [], disabled: true }),\n apt_dists: new FormControl({ value: [], disabled: true }),\n rpm_list: new FormControl({ value: [], disabled: true }),\n environment: new FormControl({ value: {}, disabled: true }),\n yumopts: new FormControl({ value: {}, disabled: true }),\n rsyncopts: new FormControl({ value: {}, disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:58\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n repositoryOwners\n \n \n\n \n \n getrepositoryOwners()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:263\n \n \n\n \n \n \n \n \n \n \n repositoryYumopts\n \n \n\n \n \n getrepositoryYumopts()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:273\n \n \n\n \n \n \n \n \n \n \n repositoryRsyncopts\n \n \n\n \n \n getrepositoryRsyncopts()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts:283\n \n \n\n \n \n\n\n\n\n \n import { Component, Inject, inject, OnDestroy, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService, Repo } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemCopyComponent } from '../../../common/dialog-item-copy/dialog-item-copy.component';\nimport { KeyValueEditorComponent } from '../../../common/key-value-editor/key-value-editor.component';\nimport { MultiSelectComponent } from '../../../common/multi-select/multi-select.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n MultiSelectComponent,\n KeyValueEditorComponent,\n ],\n templateUrl: './repository-edit.component.html',\n styleUrl: './repository-edit.component.scss',\n})\nexport class RepositoryEditComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n name: string;\n repository: Repo;\n private readonly _formBuilder = inject(FormBuilder);\n repositoryFormGroup = this._formBuilder.group({\n name: new FormControl({ value: '', disabled: true }),\n uid: new FormControl({ value: '', disabled: true }),\n mtime: new FormControl({ value: '', disabled: true }),\n ctime: new FormControl({ value: '', disabled: true }),\n depth: new FormControl({ value: 0, disabled: true }),\n priority: new FormControl({ value: 0, disabled: true }),\n is_subobject: new FormControl({ value: false, disabled: true }),\n keep_updated: new FormControl({ value: false, disabled: true }),\n mirror_locally: new FormControl({ value: false, disabled: true }),\n comment: new FormControl({ value: '', disabled: true }),\n redhat_management_key: new FormControl({ value: '', disabled: true }),\n mirror_type: new FormControl({ value: '', disabled: true }),\n mirror: new FormControl({ value: '', disabled: true }),\n breed: new FormControl({ value: '', disabled: true }),\n os_version: new FormControl({ value: '', disabled: true }),\n proxy: new FormControl({ value: '', disabled: true }),\n createrepo_flags: new FormControl({ value: '', disabled: true }),\n owners: new FormControl({ value: [], disabled: true }),\n owners_inherited: new FormControl({ value: false, disabled: true }),\n apt_components: new FormControl({ value: [], disabled: true }),\n apt_dists: new FormControl({ value: [], disabled: true }),\n rpm_list: new FormControl({ value: [], disabled: true }),\n environment: new FormControl({ value: {}, disabled: true }),\n yumopts: new FormControl({ value: {}, disabled: true }),\n rsyncopts: new FormControl({ value: {}, disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .get_repo(this.name, false, false, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.repository = value;\n this.repositoryFormGroup.controls.name.setValue(this.repository.name);\n this.repositoryFormGroup.controls.uid.setValue(this.repository.uid);\n this.repositoryFormGroup.controls.mtime.setValue(\n new Date(this.repository.mtime * 1000).toString(),\n );\n this.repositoryFormGroup.controls.ctime.setValue(\n new Date(this.repository.ctime * 1000).toString(),\n );\n this.repositoryFormGroup.controls.depth.setValue(\n this.repository.depth,\n );\n this.repositoryFormGroup.controls.priority.setValue(\n this.repository.priority,\n );\n this.repositoryFormGroup.controls.is_subobject.setValue(\n this.repository.is_subobject,\n );\n this.repositoryFormGroup.controls.keep_updated.setValue(\n this.repository.keep_updated,\n );\n this.repositoryFormGroup.controls.mirror_locally.setValue(\n this.repository.mirror_locally,\n );\n this.repositoryFormGroup.controls.comment.setValue(\n this.repository.comment,\n );\n this.repositoryFormGroup.controls.proxy.setValue(\n this.repository.proxy,\n );\n this.repositoryFormGroup.controls.mirror_type.setValue(\n this.repository.mirror_type,\n );\n this.repositoryFormGroup.controls.mirror.setValue(\n this.repository.mirror,\n );\n this.repositoryFormGroup.controls.breed.setValue(\n this.repository.breed,\n );\n this.repositoryFormGroup.controls.os_version.setValue(\n this.repository.os_version,\n );\n this.repositoryFormGroup.controls.createrepo_flags.setValue(\n this.repository.createrepo_flags,\n );\n this.repositoryFormGroup.controls.rpm_list.setValue(\n this.repository.rpm_list,\n );\n this.repositoryFormGroup.controls.apt_dists.setValue(\n this.repository.apt_dists,\n );\n this.repositoryFormGroup.controls.apt_components.setValue(\n this.repository.apt_components,\n );\n if (typeof this.repository.owners === 'string') {\n this.repositoryFormGroup.controls.owners_inherited.setValue(true);\n } else {\n this.repositoryFormGroup.controls.owners_inherited.setValue(false);\n this.repositoryFormGroup.controls.owners.setValue(\n this.repository.owners,\n );\n }\n this.repositoryFormGroup.controls.environment.setValue(\n this.repository.environment,\n );\n this.repositoryFormGroup.controls.yumopts.setValue(\n this.repository.yumopts,\n );\n this.repositoryFormGroup.controls.rsyncopts.setValue(\n this.repository.rsyncopts,\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeRepository(): void {\n this.cobblerApiService\n .remove_repo(this.name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'repository']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editRepository(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyRepository(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemCopyComponent, {\n data: {\n itemType: 'Repository',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the repository\n return;\n }\n this.cobblerApiService\n .get_repo_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (repositoryHandle) => {\n this.cobblerApiService\n .copy_repo(repositoryHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.router.navigate(['/items', 'repository', newItemName]);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n saveRepository(): void {\n // TODO\n }\n\n get repositoryOwners(): string[] {\n if (this.repository && this.repository.owners) {\n const ownersResult = this.repository.owners;\n if (typeof ownersResult !== 'string') {\n return ownersResult;\n }\n }\n return [];\n }\n\n get repositoryYumopts(): object {\n if (this.repository && this.repository.yumopts) {\n const yumoptsResult = this.repository.yumopts;\n if (typeof yumoptsResult !== 'string') {\n return yumoptsResult;\n }\n }\n return {};\n }\n\n get repositoryRsyncopts(): object {\n if (this.repository && this.repository.rsyncopts) {\n const rsyncoptsResult = this.repository.rsyncopts;\n if (typeof rsyncoptsResult !== 'string') {\n return rsyncoptsResult;\n }\n }\n return {};\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Name\n \n \n \n UID\n \n \n \n Last modified time\n \n \n \n Creation time\n \n \n \n Depth\n \n \n Is Subobject?\n \n Comment\n \n \n \n Operating System Version\n \n \n \n Operating System Breed\n \n \n \n Mirror\n \n \n \n Mirror Type\n \n \n \n Proxy\n \n \n \n Priority\n \n \n Keep updated?\n Mirror Locally?\n \n \n \n \n \n \n \n \n \n \n Createrepo Flags\n \n \n \n \n \n \n \n \n \n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Name UID Last modified time Creation time Depth Is Subobject? Comment Operating System Version Operating System Breed Mirror Mirror Type Proxy Priority Keep updated? Mirror Locally? Createrepo Flags @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'RepositoryEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/RepositoryOverviewComponent.html":{"url":"components/RepositoryOverviewComponent.html","title":"component - RepositoryOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n RepositoryOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./repository-overview.component.html\n \n\n\n\n \n styleUrl\n ./repository-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteRepository\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameRepository\n \n \n Private\n retrieveRepositories\n \n \n showRepository\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteRepository\n \n \n \n \n \n \ndeleteRepository(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:136\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameRepository\n \n \n \n \n \n \nrenameRepository(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveRepositories\n \n \n \n \n \n \n \n retrieveRepositories()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showRepository\n \n \n \n \n \n \nshowRepository(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'breed', 'mirror_type', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, Repo } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './repository-overview.component.html',\n styleUrl: './repository-overview.component.scss',\n})\nexport class RepositoryOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'breed', 'mirror_type', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveRepositories();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveRepositories(): void {\n this.cobblerApiService\n .get_repos()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showRepository(uid: string, name: string): void {\n this.router.navigate(['/items', 'repository', name]);\n }\n\n renameRepository(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'Repository',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the repository\n return;\n }\n this.cobblerApiService\n .get_repo_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (repoHandle) => {\n this.cobblerApiService\n .rename_repo(repoHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveRepositories();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteRepository(uid: string, name: string): void {\n this.cobblerApiService\n .remove_repo(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveRepositories();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n REPOSITORIES\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Breed\n {{ element.breed }}\n \n\n \n \n Mirror Type\n {{ element.mirror_type }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'REPOSITORIES Name {{ element.name }} Breed {{ element.breed }} Mirror Type {{ element.mirror_type }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'RepositoryOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SettingsTableRowData.html":{"url":"interfaces/SettingsTableRowData.html","title":"interface - SettingsTableRowData","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n SettingsTableRowData\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n name\n \n \n \n \n type\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n name\n \n \n \n \n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n type\n \n \n \n \n \n \n \n \n type: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AfterViewInit, Component, OnDestroy, ViewChild } from '@angular/core';\nimport { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { MatSort, MatSortModule } from '@angular/material/sort';\nimport { Settings } from '../../../../../cobbler-api/src/lib/custom-types/settings';\nimport { ItemSettingsService } from '../../services/item-settings.service';\nimport { RouterOutlet } from '@angular/router';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\nimport { MatListModule } from '@angular/material/list';\nimport { ViewableTreeComponent } from '../../common/viewable-tree/viewable-tree.component';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatTooltipModule } from '@angular/material/tooltip';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\n\ninterface SettingsTableRowData {\n name: string;\n value: any;\n type: any;\n}\n\n@Component({\n selector: 'cobbler-settings-view',\n templateUrl: './settings-view.component.html',\n styleUrls: ['./settings-view.component.css'],\n\n standalone: true,\n imports: [\n RouterOutlet,\n MatFormFieldModule,\n MatPaginatorModule,\n MatIconModule,\n MatSlideToggleModule,\n MatListModule,\n MatInputModule,\n MatTableModule,\n MatButtonModule,\n ViewableTreeComponent,\n MatTooltipModule,\n MatSortModule,\n ],\n})\nexport class SettingsViewComponent implements AfterViewInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n data = new MatTableDataSource([]);\n displayedColumns: string[] = ['name', 'value', 'actions'];\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(service: ItemSettingsService) {\n service\n .getAll()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((data: Settings) => {\n const settings_data: SettingsTableRowData[] = [];\n for (const key in data) {\n settings_data.push({\n name: key,\n value: data[key],\n type: typeof data[key],\n });\n }\n this.data.data = settings_data;\n });\n }\n\n ngAfterViewInit() {\n this.data.paginator = this.paginator;\n this.data.sort = this.sort;\n }\n\n ngOnDestroy() {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.data.filter = filterValue.trim().toLowerCase();\n\n if (this.data.paginator) {\n this.data.paginator.firstPage();\n }\n }\n\n isArray(input: any): boolean {\n return Array.isArray(input);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SettingsViewComponent.html":{"url":"components/SettingsViewComponent.html","title":"component - SettingsViewComponent","body":"\n \n\n\n\n\n\n Components\n \n SettingsViewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n\n\n\n\n\n \n Implements\n \n \n AfterViewInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-settings-view\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatFormFieldModule\n MatPaginatorModule\n MatIconModule\n MatSlideToggleModule\n MatListModule\n MatInputModule\n MatTableModule\n MatButtonModule\n ViewableTreeComponent\n MatTooltipModule\n MatSortModule\n \n \n\n \n styleUrls\n ./settings-view.component.css\n \n\n\n\n \n templateUrl\n ./settings-view.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n data\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n paginator\n \n \n \n sort\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyFilter\n \n \n isArray\n \n \n ngAfterViewInit\n \n \n ngOnDestroy\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(service: ItemSettingsService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:55\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n service\n \n \n ItemSettingsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n applyFilter\n \n \n \n \n \n \napplyFilter(event: Event)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:84\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n Event\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isArray\n \n \n \n \n \n \nisArray(input: any)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:93\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n input\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:74\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:79\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n data\n \n \n \n \n \n \n Default value : new MatTableDataSource([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:51\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'value', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { AfterViewInit, Component, OnDestroy, ViewChild } from '@angular/core';\nimport { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { MatSort, MatSortModule } from '@angular/material/sort';\nimport { Settings } from '../../../../../cobbler-api/src/lib/custom-types/settings';\nimport { ItemSettingsService } from '../../services/item-settings.service';\nimport { RouterOutlet } from '@angular/router';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\nimport { MatListModule } from '@angular/material/list';\nimport { ViewableTreeComponent } from '../../common/viewable-tree/viewable-tree.component';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatTooltipModule } from '@angular/material/tooltip';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\n\ninterface SettingsTableRowData {\n name: string;\n value: any;\n type: any;\n}\n\n@Component({\n selector: 'cobbler-settings-view',\n templateUrl: './settings-view.component.html',\n styleUrls: ['./settings-view.component.css'],\n\n standalone: true,\n imports: [\n RouterOutlet,\n MatFormFieldModule,\n MatPaginatorModule,\n MatIconModule,\n MatSlideToggleModule,\n MatListModule,\n MatInputModule,\n MatTableModule,\n MatButtonModule,\n ViewableTreeComponent,\n MatTooltipModule,\n MatSortModule,\n ],\n})\nexport class SettingsViewComponent implements AfterViewInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n data = new MatTableDataSource([]);\n displayedColumns: string[] = ['name', 'value', 'actions'];\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(service: ItemSettingsService) {\n service\n .getAll()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((data: Settings) => {\n const settings_data: SettingsTableRowData[] = [];\n for (const key in data) {\n settings_data.push({\n name: key,\n value: data[key],\n type: typeof data[key],\n });\n }\n this.data.data = settings_data;\n });\n }\n\n ngAfterViewInit() {\n this.data.paginator = this.paginator;\n this.data.sort = this.sort;\n }\n\n ngOnDestroy() {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.data.filter = filterValue.trim().toLowerCase();\n\n if (this.data.paginator) {\n this.data.paginator.firstPage();\n }\n }\n\n isArray(input: any): boolean {\n return Array.isArray(input);\n }\n}\n\n \n\n \n \n \n \n \n \n Settings\n \n \n add\n \n \n \n \n \n \n Filter\n \n \n \n \n \n \n Name\n {{ element.name }}\n \n\n \n \n Value\n \n \n @if (element.type === \"string\" || element.type === \"number\") {\n \"{{ element.value }}\" \n }\n\n \n @if (element.type === \"boolean\") {\n \n \n }\n\n \n @if (isArray(element.value)) {\n \n @for (c of element.value; track c) {\n {{ c }} \n }\n \n }\n\n \n @if (element.type === \"object\" && !isArray(element.value)) {\n \n }\n \n \n\n \n \n Actions\n \n \n \n edit\n \n \n clear_all\n \n \n \n \n\n \n \n\n \n \n \n No data matching the filter \"{{ input.value }}\"\n \n \n \n \n \n \n\n\n \n\n \n \n ./settings-view.component.css\n \n table {\n width: 100%;\n}\n\n.mat-form-field {\n font-size: 14px;\n width: 100%;\n}\n\n.title-table {\n display: table;\n width: 100%;\n}\n\n.title-row {\n display: table-cell;\n width: 100%;\n}\n\n.title-cell-text {\n display: table-cell;\n width: 100%;\n vertical-align: middle;\n}\n\n.title-cell-button {\n display: table-cell;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Settings add Filter Name {{ element.name }} Value @if (element.type === \"string\" || element.type === \"number\") { \"{{ element.value }}\" } @if (element.type === \"boolean\") { } @if (isArray(element.value)) { @for (c of element.value; track c) { {{ c }} } } @if (element.type === \"object\" && !isArray(element.value)) { } Actions edit clear_all No data matching the filter \"{{ input.value }}\" '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SettingsViewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SignaturesComponent.html":{"url":"components/SignaturesComponent.html","title":"component - SignaturesComponent","body":"\n \n\n\n\n\n\n Components\n \n SignaturesComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-signatures\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatTree\n MatTreeNode\n MatIcon\n MatIconButton\n MatTreeNodeToggle\n MatTreeNodePadding\n MatTreeNodeDef\n MatTable\n MatHeaderCell\n MatCell\n MatHeaderRow\n MatRow\n MatColumnDef\n MatHeaderCellDef\n MatCellDef\n MatHeaderRowDef\n MatRowDef\n MatDivider\n AsyncPipe\n MatList\n MatListItem\n MatProgressSpinner\n NgForOf\n NgIf\n \n \n\n\n\n\n \n templateUrl\n ./signatures.component.html\n \n\n\n\n \n styleUrl\n ./signatures.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n _transformer\n \n \n columns\n \n \n dataSource\n \n \n displayedColumns\n \n \n hasChild\n \n \n hasOsVersion\n \n \n Public\n isLoading\n \n \n Private\n ngUnsubscribe\n \n \n treeControl\n \n \n treeFlattener\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n generateSignatureUiData\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n updateSignatures\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:133\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n generateSignatureUiData\n \n \n \n \n \n \ngenerateSignatureUiData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:155\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:145\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:141\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n updateSignatures\n \n \n \n \n \n \nupdateSignatures()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:186\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n _transformer\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:111\n \n \n\n\n \n \n \n \n \n \n \n \n columns\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:95\n \n \n\n\n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Default value : new MatTreeFlatDataSource(this.treeControl, this.treeFlattener)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:130\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Default value : this.columns.map((c) => c.columnDef)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:108\n \n \n\n\n \n \n \n \n \n \n \n \n hasChild\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:150\n \n \n\n\n \n \n \n \n \n \n \n \n hasOsVersion\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:152\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n isLoading\n \n \n \n \n \n \n Default value : true\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:133\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:92\n \n \n\n\n \n \n \n \n \n \n \n \n treeControl\n \n \n \n \n \n \n Default value : new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:119\n \n \n\n\n \n \n \n \n \n \n \n \n treeFlattener\n \n \n \n \n \n \n Default value : new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:124\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/signatures/signatures.component.ts:136\n \n \n\n\n \n \n\n\n\n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n Signatures\n \n \n refresh\n \n \n \n\n\n\n\n \n \n \n \n \n {{ node.data }}\n \n \n \n \n \n {{ treeControl.isExpanded(node) ? \"expand_more\" : \"chevron_right\" }}\n \n \n {{ node.data }}\n \n \n \n \n \n @for (column of columns; track column) {\n \n \n {{ column.header }}\n \n \n {{ column.cell(row) }}\n \n \n }\n \n \n \n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Signatures refresh {{ node.data }} {{ treeControl.isExpanded(node) ? \"expand_more\" : \"chevron_right\" }} {{ node.data }} @for (column of columns; track column) { {{ column.header }} {{ column.cell(row) }} } '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SignaturesComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SnippetEditComponent.html":{"url":"components/SnippetEditComponent.html","title":"component - SnippetEditComponent","body":"\n \n\n\n\n\n\n Components\n \n SnippetEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./snippet-edit.component.html\n \n\n\n\n \n styleUrl\n ./snippet-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n content\n \n \n isEditMode\n \n \n name\n \n \n snippetFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copySnippet\n \n \n editSnippet\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeSnippet\n \n \n saveSnippet\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:49\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copySnippet\n \n \n \n \n \n \ncopySnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:108\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editSnippet\n \n \n \n \n \n \neditSnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:103\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:65\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeSnippet\n \n \n \n \n \n \nremoveSnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveSnippet\n \n \n \n \n \n \nsaveSnippet()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:113\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n content\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:44\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n snippetFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts:46\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n ],\n templateUrl: './snippet-edit.component.html',\n styleUrl: './snippet-edit.component.scss',\n})\nexport class SnippetEditComponent implements OnInit {\n name: string;\n content: string;\n private readonly _formBuilder = inject(FormBuilder);\n snippetFormGroup = this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .read_autoinstall_snippet(this.name, this.userService.token)\n .subscribe(\n (value) => {\n this.content = value;\n this.snippetFormGroup.controls.content.setValue(\n Utils.toHTML(this.content),\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeSnippet(): void {\n this.cobblerApiService\n .remove_autoinstall_snippet(this.name, this.userService.token)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'profile']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editSnippet(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copySnippet(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n saveSnippet(): void {\n // TODO\n this.cobblerApiService\n .write_autoinstall_snippet(this.name, '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Template Content\n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Template Content @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SnippetEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SnippetOverviewComponent.html":{"url":"components/SnippetOverviewComponent.html","title":"component - SnippetOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n SnippetOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatMenuTrigger\n MatHeaderCellDef\n \n \n\n\n\n\n \n templateUrl\n ./snippet-overview.component.html\n \n\n\n\n \n styleUrl\n ./snippet-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteSnippet\n \n \n editSnippet\n \n \n ngOnInit\n \n \n Private\n retrieveSnippets\n \n \n showSnippet\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:50\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteSnippet\n \n \n \n \n \n \ndeleteSnippet(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:85\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editSnippet\n \n \n \n \n \n \neditSnippet(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:59\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveSnippets\n \n \n \n \n \n \n \n retrieveSnippets()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showSnippet\n \n \n \n \n \n \nshowSnippet(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:77\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:50\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatMenuTrigger,\n MatHeaderCellDef,\n ],\n templateUrl: './snippet-overview.component.html',\n styleUrl: './snippet-overview.component.scss',\n})\nexport class SnippetOverviewComponent implements OnInit {\n displayedColumns: string[] = ['name', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {}\n\n ngOnInit(): void {\n this.retrieveSnippets();\n }\n\n private retrieveSnippets(): void {\n this.cobblerApiService\n .get_autoinstall_snippets(this.userService.token)\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showSnippet(name: string): void {\n this.router.navigate(['/items', 'snippet', name]);\n }\n\n editSnippet(name: string): void {\n // TODO\n }\n\n deleteSnippet(name: string): void {\n this.cobblerApiService\n .remove_autoinstall_snippet(name, this.userService.token)\n .subscribe(\n (value) => {\n this.retrieveSnippets();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n SNIPPETS\n\n\n \n \n Name\n {{ element }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'SNIPPETS Name {{ element }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SnippetOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/StatusComponent.html":{"url":"components/StatusComponent.html","title":"component - StatusComponent","body":"\n \n\n\n\n\n\n Components\n \n StatusComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/status/status.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n AfterViewInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-status\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatFormFieldModule\n MatInputModule\n MatTableModule\n MatPaginatorModule\n MatSort\n DatePipe\n \n \n\n\n\n\n \n templateUrl\n ./status.component.html\n \n\n\n\n \n styleUrl\n ./status.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n paginator\n \n \n \n sort\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyFilter\n \n \n ngAfterViewInit\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:53\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n applyFilter\n \n \n \n \n \n \napplyFilter(event: Event)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:80\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n event\n \n Event\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:75\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:70\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:60\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Default value : new MatTableDataSource(\n [],\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : [\n 'ip',\n 'objType',\n 'name',\n 'mostRecentStart',\n 'mostRecentStop',\n 'seenStart',\n 'seenStop',\n 'state',\n ]\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:53\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/status/status.component.ts:56\n \n \n\n\n \n \n\n\n\n\n\n \n import { DatePipe } from '@angular/common';\nimport {\n AfterViewInit,\n Component,\n OnDestroy,\n OnInit,\n ViewChild,\n} from '@angular/core';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { MatTableDataSource, MatTableModule } from '@angular/material/table';\nimport { CobblerApiService, InstallationStatus } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\n\n@Component({\n selector: 'cobbler-status',\n standalone: true,\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatTableModule,\n MatPaginatorModule,\n MatSort,\n DatePipe,\n ],\n templateUrl: './status.component.html',\n styleUrl: './status.component.scss',\n})\nexport class StatusComponent implements OnInit, OnDestroy, AfterViewInit {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = [\n 'ip',\n 'objType',\n 'name',\n 'mostRecentStart',\n 'mostRecentStop',\n 'seenStart',\n 'seenStop',\n 'state',\n ];\n dataSource: MatTableDataSource = new MatTableDataSource(\n [],\n );\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n ) {}\n\n ngOnInit(): void {\n this.cobblerApiService\n .get_status('normal', this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe((value) => {\n console.log(value);\n this.dataSource.data = value;\n });\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n ngAfterViewInit() {\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.dataSource.filter = filterValue.trim().toLowerCase();\n\n if (this.dataSource.paginator) {\n this.dataSource.paginator.firstPage();\n }\n }\n}\n\n \n\n \n Installation Status\n\n\n Filter\n \n\n\n\n \n \n \n IP\n {{ element.ip }}\n \n\n \n \n Object Type\n \n {{ element.mostRecentTarget.split(\":\")[0] }}\n \n \n\n \n \n Name\n \n {{ element.mostRecentTarget.split(\":\")[1] }}\n \n \n\n \n \n Most Recent Start\n \n {{ element.mostRecentStart * 1000 | date: \"short\" }}\n \n \n\n \n \n Most Recent Stop\n \n {{ element.mostRecentStop * 1000 | date: \"short\" }}\n \n \n\n \n \n Seen Start Counter\n {{ element.seenStop }}\n \n\n \n \n Seen Stop Counter\n {{ element.seenStop }}\n \n\n \n \n State\n {{ element.state }}\n \n\n \n \n\n \n \n \n No data matching the filter \"{{ input.value }}\"\n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'Installation Status Filter IP {{ element.ip }} Object Type {{ element.mostRecentTarget.split(\":\")[0] }} Name {{ element.mostRecentTarget.split(\":\")[1] }} Most Recent Start {{ element.mostRecentStart * 1000 | date: \"short\" }} Most Recent Stop {{ element.mostRecentStop * 1000 | date: \"short\" }} Seen Start Counter {{ element.seenStop }} Seen Stop Counter {{ element.seenStop }} State {{ element.state }} No data matching the filter \"{{ input.value }}\" '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'StatusComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SyncComponent.html":{"url":"components/SyncComponent.html","title":"component - SyncComponent","body":"\n \n\n\n\n\n\n Components\n \n SyncComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/sync/sync.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-sync\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterOutlet\n MatButton\n MatDialogClose\n ReactiveFormsModule\n MatCheckbox\n CommonModule\n MatInput\n MatIconButton\n MatIcon\n MatFormField\n MatPrefix\n MatSuffix\n \n \n\n \n styleUrls\n ./sync.component.css\n \n\n\n\n \n templateUrl\n ./sync.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n Readonly\n fullSync\n \n \n keyValueFA\n \n \n Private\n ngUnsubscribe\n \n \n systemsSync\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addNewKeyValueFG\n \n \n ngOnDestroy\n \n \n removeNewKeyValueFG\n \n \n syncFullSubmit\n \n \n syncSystemsSubmit\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n newKeyValueFG\n \n \n keyValueArrayFGControls\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(cobblerApiService: CobblerApiService, userService: UserService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:72\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n addNewKeyValueFG\n \n \n \n \n \n \naddNewKeyValueFG()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:95\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:80\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeNewKeyValueFG\n \n \n \n \n \n \nremoveNewKeyValueFG(index: number)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:99\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n index\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n syncFullSubmit\n \n \n \n \n \n \nsyncFullSubmit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:103\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n syncSystemsSubmit\n \n \n \n \n \n \nsyncSystemsSubmit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:126\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n Readonly\n fullSync\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n fullSyncDhcp: false,\n fullSyncDns: false,\n fullSyncVerbose: false,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:61\n \n \n\n\n \n \n \n \n \n \n \n \n keyValueFA\n \n \n \n \n \n \n Default value : new FormArray([])\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:67\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:57\n \n \n\n\n \n \n \n \n \n \n \n \n systemsSync\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n keyValue: this.keyValueFA,\n systemsSyncVerbose: false,\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:69\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n newKeyValueFG\n \n \n\n \n \n getnewKeyValueFG()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:85\n \n \n\n \n \n \n \n \n \n \n keyValueArrayFGControls\n \n \n\n \n \n getkeyValueArrayFGControls()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/sync/sync.component.ts:91\n \n \n\n \n \n\n\n\n\n \n import { CommonModule } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n inject,\n OnDestroy,\n} from '@angular/core';\nimport {\n FormArray,\n FormBuilder,\n FormControl,\n FormGroup,\n ReactiveFormsModule,\n Validators,\n} from '@angular/forms';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatDialogClose } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport {\n MatFormField,\n MatInput,\n MatPrefix,\n MatSuffix,\n} from '@angular/material/input';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { RouterOutlet } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-sync',\n templateUrl: './sync.component.html',\n styleUrls: ['./sync.component.css'],\n standalone: true,\n imports: [\n RouterOutlet,\n MatButton,\n MatDialogClose,\n ReactiveFormsModule,\n MatCheckbox,\n CommonModule,\n MatInput,\n MatIconButton,\n MatIcon,\n MatFormField,\n MatPrefix,\n MatSuffix,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SyncComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Form\n private readonly _formBuilder = inject(FormBuilder);\n readonly fullSync = this._formBuilder.group({\n fullSyncDhcp: false,\n fullSyncDns: false,\n fullSyncVerbose: false,\n });\n\n keyValueFA = new FormArray([]);\n\n systemsSync = this._formBuilder.group({\n keyValue: this.keyValueFA,\n systemsSyncVerbose: false,\n });\n\n constructor(\n private cobblerApiService: CobblerApiService,\n private userService: UserService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n get newKeyValueFG(): FormGroup {\n return new FormGroup({\n systemName: new FormControl(null, [Validators.required]),\n });\n }\n\n get keyValueArrayFGControls(): FormGroup[] {\n return this.keyValueFA.controls as FormGroup[];\n }\n\n addNewKeyValueFG(): void {\n this.keyValueFA.push(this.newKeyValueFG);\n }\n\n removeNewKeyValueFG(index: number): void {\n this.keyValueFA.removeAt(index);\n }\n\n syncFullSubmit(): void {\n const syncOptions = {\n dhcp: this.fullSync.controls.fullSyncDhcp.value,\n dns: this.fullSync.controls.fullSyncDns.value,\n verbose: this.fullSync.controls.fullSyncVerbose.value,\n };\n this.fullSync.controls.fullSyncDhcp.reset(false);\n this.fullSync.controls.fullSyncDns.reset(false);\n this.fullSync.controls.fullSyncVerbose.reset(false);\n this.cobblerApiService\n .background_sync(syncOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n console.log(value);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n syncSystemsSubmit(): void {\n if (this.systemsSync.invalid) {\n for (let control of this.systemsSync.controls.keyValue.controls) {\n control.markAsTouched();\n }\n this._snackBar.open('Please give all inputs a system name!', 'Close', {\n duration: 2000,\n });\n return;\n }\n let systemNames: Array = [];\n for (let control of this.systemsSync.controls.keyValue.controls) {\n if (control instanceof FormGroup) {\n systemNames.push(control.value.systemName);\n }\n }\n const syncOptions = {\n systems: systemNames,\n verbose: this.systemsSync.controls.systemsSyncVerbose.value,\n };\n this.systemsSync.controls.systemsSyncVerbose.reset(false);\n this.systemsSync.controls.keyValue.reset([]);\n\n this.cobblerApiService\n .background_syncsystems(syncOptions, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n console.log(value);\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n \n SYNC\n Full Sync\n \n \n DHCP\n DNS\n Verbose\n \n Sync\n \n Systems Sync\n \n \n @if (keyValueArrayFGControls.length === 0) {\n Sync specific Systems\n }\n @if (keyValueArrayFGControls.length > 0) {\n Add system\n }\n \n @for (fg of keyValueArrayFGControls; track fg; let i = $index) {\n \n \n \n {{ i + 1 }}. \n \n \n remove\n \n @if (\n systemsSync.controls.keyValue.controls[i].hasError(\"required\")\n ) {\n System name is required\n }\n \n \n \n } @empty {\n Syncing All Systems\n }\n Verbose\n \n Sync\n \n\n\n \n\n \n \n ./sync.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' SYNC Full Sync DHCP DNS Verbose Sync Systems Sync @if (keyValueArrayFGControls.length === 0) { Sync specific Systems } @if (keyValueArrayFGControls.length > 0) { Add system } @for (fg of keyValueArrayFGControls; track fg; let i = $index) { {{ i + 1 }}.  remove @if ( systemsSync.controls.keyValue.controls[i].hasError(\"required\") ) { System name is required } } @empty { Syncing All Systems } Verbose Sync '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SyncComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SyncOptions.html":{"url":"interfaces/SyncOptions.html","title":"interface - SyncOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n SyncOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n dhcp\n \n \n \n \n dns\n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n dhcp\n \n \n \n \n \n \n \n \n dhcp: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n dns\n \n \n \n \n \n \n \n \n dns: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n verbose: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SyncSystemsOptions.html":{"url":"interfaces/SyncSystemsOptions.html","title":"interface - SyncSystemsOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n SyncSystemsOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n systems\n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n systems\n \n \n \n \n \n \n \n \n systems: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n verbose\n \n \n \n \n \n \n \n \n verbose: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SystemOverviewComponent.html":{"url":"components/SystemOverviewComponent.html","title":"component - SystemOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n SystemOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./system-overview.component.html\n \n\n\n\n \n styleUrl\n ./system-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n Private\n ngUnsubscribe\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteSystem\n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n renameSystem\n \n \n Private\n retrieveSystems\n \n \n showSystem\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router, dialog: MatDialog)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:58\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteSystem\n \n \n \n \n \n \ndeleteSystem(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:136\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:72\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:68\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n renameSystem\n \n \n \n \n \n \nrenameSystem(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:96\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveSystems\n \n \n \n \n \n \n \n retrieveSystems()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showSystem\n \n \n \n \n \n \nshowSystem(uid: string, name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:92\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n uid\n \n string\n \n\n \n No\n \n\n\n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:56\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'profile', 'image', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:55\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:52\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts:61\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Inject, OnDestroy, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatDialog } from '@angular/material/dialog';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService, System } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { DialogItemRenameComponent } from '../../../common/dialog-item-rename/dialog-item-rename.component';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './system-overview.component.html',\n styleUrl: './system-overview.component.scss',\n})\nexport class SystemOverviewComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n displayedColumns: string[] = ['name', 'profile', 'image', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n @Inject(MatDialog) readonly dialog: MatDialog,\n ) {}\n\n ngOnInit(): void {\n this.retrieveSystems();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n private retrieveSystems(): void {\n this.cobblerApiService\n .get_systems()\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showSystem(uid: string, name: string): void {\n this.router.navigate(['/items', 'system', name]);\n }\n\n renameSystem(uid: string, name: string): void {\n const dialogRef = this.dialog.open(DialogItemRenameComponent, {\n data: {\n itemType: 'System',\n itemName: name,\n itemUid: uid,\n },\n });\n\n dialogRef.afterClosed().subscribe((newItemName) => {\n if (newItemName === undefined) {\n // Cancel means we don't need to rename the system\n return;\n }\n this.cobblerApiService\n .get_system_handle(name, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (systemHandle) => {\n this.cobblerApiService\n .rename_system(systemHandle, newItemName, this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveSystems();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n });\n }\n\n deleteSystem(uid: string, name: string): void {\n this.cobblerApiService\n .remove_system(name, this.userService.token, false)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.retrieveSystems();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n SYSTEMS\n\n\n \n \n Name\n {{ element.name }}\n \n\n \n \n Profile\n {{ element.profile }}\n \n\n \n \n Image\n {{ element.image }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'SYSTEMS Name {{ element.name }} Profile {{ element.profile }} Image {{ element.image }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'SystemOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/TableRow.html":{"url":"interfaces/TableRow.html","title":"interface - TableRow","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n TableRow\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n key\n \n \n \n \n value\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n key\n \n \n \n \n \n \n \n \n key: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n \n value: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AsyncPipe, NgForOf, NgIf } from '@angular/common';\nimport { Component, OnDestroy, OnInit } from '@angular/core';\nimport { MatDivider } from '@angular/material/divider';\nimport { MatList, MatListItem } from '@angular/material/list';\nimport { MatProgressSpinner } from '@angular/material/progress-spinner';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { filter, repeat, take, takeUntil } from 'rxjs/operators';\nimport { UserService } from '../services/user.service';\nimport { CobblerApiService } from 'cobbler-api';\nimport {\n MatTree,\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeNode,\n MatTreeNodeDef,\n MatTreeNodePadding,\n MatTreeNodeToggle,\n} from '@angular/material/tree';\nimport { FlatTreeControl } from '@angular/cdk/tree';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatIconButton } from '@angular/material/button';\nimport { Subject } from 'rxjs';\nimport Utils from '../utils';\n\ninterface TableRow {\n key: string;\n value: any;\n}\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface OsNode {\n data: string | Array;\n children?: OsNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface OsBreedFlatNode {\n expandable: boolean;\n data: string | Array;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-signatures',\n standalone: true,\n imports: [\n MatTree,\n MatTreeNode,\n MatIcon,\n MatIconButton,\n MatTreeNodeToggle,\n MatTreeNodePadding,\n MatTreeNodeDef,\n MatTable,\n MatHeaderCell,\n MatCell,\n MatHeaderRow,\n MatRow,\n MatColumnDef,\n MatHeaderCellDef,\n MatCellDef,\n MatHeaderRowDef,\n MatRowDef,\n MatDivider,\n AsyncPipe,\n MatList,\n MatListItem,\n MatProgressSpinner,\n NgForOf,\n NgIf,\n ],\n templateUrl: './signatures.component.html',\n styleUrl: './signatures.component.scss',\n})\nexport class SignaturesComponent implements OnInit, OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n // Table\n columns = [\n {\n columnDef: 'key',\n header: 'Attribute',\n cell: (element: TableRow) => `${element.key}`,\n },\n {\n columnDef: 'value',\n header: 'Value',\n cell: (element: TableRow) => `${element.value}`,\n },\n ];\n\n displayedColumns = this.columns.map((c) => c.columnDef);\n\n // Tree\n private _transformer = (node: OsNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n data: node.data,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n // Spinner\n public isLoading = true;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnInit(): void {\n this.generateSignatureUiData();\n }\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n hasChild = (_: number, node: OsBreedFlatNode) => node.expandable;\n\n hasOsVersion = (_: number, node: OsBreedFlatNode) =>\n typeof node.data !== 'string';\n\n generateSignatureUiData(): void {\n this.cobblerApiService\n .get_signatures(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n const newData: Array = [];\n for (const k in value.breeds) {\n const children: Array = [];\n for (const j in value.breeds[k]) {\n const osVersionData: Array = [];\n for (const i in value.breeds[k][j]) {\n osVersionData.push({ key: i, value: value.breeds[k][j][i] });\n }\n children.push({\n data: j,\n children: [{ data: osVersionData, children: [] }],\n });\n }\n newData.push({ data: k, children: children });\n }\n this.dataSource.data = newData;\n this.isLoading = false;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n updateSignatures(): void {\n this.isLoading = true;\n this.cobblerApiService\n .background_signature_update(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n this.cobblerApiService\n .get_task_status(value)\n .pipe(\n repeat(),\n filter(\n (data) => data.state === 'failed' || data.state === 'complete',\n ),\n take(1),\n )\n .subscribe((value1) => {\n this.isLoading = false;\n this.generateSignatureUiData();\n });\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TemplateEditComponent.html":{"url":"components/TemplateEditComponent.html","title":"component - TemplateEditComponent","body":"\n \n\n\n\n\n\n Components\n \n TemplateEditComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-edit\n \n\n \n standalone\n true\n \n\n \n imports\n \n FormsModule\n MatButton\n MatCheckbox\n MatFormField\n MatIcon\n MatIconButton\n MatInput\n MatLabel\n MatOption\n MatSelect\n MatTooltip\n ReactiveFormsModule\n \n \n\n\n\n\n \n templateUrl\n ./template-edit.component.html\n \n\n\n\n \n styleUrl\n ./template-edit.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n content\n \n \n isEditMode\n \n \n name\n \n \n templateFormGroup\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyTemplate\n \n \n editTemplate\n \n \n ngOnInit\n \n \n refreshData\n \n \n removeTemplate\n \n \n saveTemplate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:49\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n copyTemplate\n \n \n \n \n \n \ncopyTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:108\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n editTemplate\n \n \n \n \n \n \neditTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:103\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n refreshData\n \n \n \n \n \n \nrefreshData()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:65\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n removeTemplate\n \n \n \n \n \n \nremoveTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n saveTemplate\n \n \n \n \n \n \nsaveTemplate()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:113\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n Readonly\n _formBuilder\n \n \n \n \n \n \n Default value : inject(FormBuilder)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n content\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:44\n \n \n\n\n \n \n \n \n \n \n \n \n isEditMode\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:49\n \n \n\n\n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n templateFormGroup\n \n \n \n \n \n \n Default value : this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n })\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts:46\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, inject, OnInit } from '@angular/core';\nimport {\n FormBuilder,\n FormControl,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport { MatOption } from '@angular/material/autocomplete';\nimport { MatButton, MatIconButton } from '@angular/material/button';\nimport { MatCheckbox } from '@angular/material/checkbox';\nimport { MatFormField, MatLabel } from '@angular/material/form-field';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatInput } from '@angular/material/input';\nimport { MatSelect } from '@angular/material/select';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { MatTooltip } from '@angular/material/tooltip';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-edit',\n standalone: true,\n imports: [\n FormsModule,\n MatButton,\n MatCheckbox,\n MatFormField,\n MatIcon,\n MatIconButton,\n MatInput,\n MatLabel,\n MatOption,\n MatSelect,\n MatTooltip,\n ReactiveFormsModule,\n ],\n templateUrl: './template-edit.component.html',\n styleUrl: './template-edit.component.scss',\n})\nexport class TemplateEditComponent implements OnInit {\n name: string;\n content: string;\n private readonly _formBuilder = inject(FormBuilder);\n templateFormGroup = this._formBuilder.group({\n content: new FormControl({ value: '', disabled: true }),\n });\n isEditMode: boolean = false;\n\n constructor(\n private route: ActivatedRoute,\n private userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {\n this.name = this.route.snapshot.paramMap.get('name');\n }\n\n ngOnInit(): void {\n this.refreshData();\n }\n\n refreshData(): void {\n this.cobblerApiService\n .read_autoinstall_template(this.name, this.userService.token)\n .subscribe(\n (value) => {\n this.content = value;\n this.templateFormGroup.controls.content.setValue(\n Utils.toHTML(this.content),\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n removeTemplate(): void {\n this.cobblerApiService\n .remove_autoinstall_template(this.name, this.userService.token)\n .subscribe(\n (value) => {\n if (value) {\n this.router.navigate(['/items', 'template']);\n }\n // HTML encode the error message since it originates from XML\n this._snackBar.open(\n 'Delete failed! Check server logs for more information.',\n 'Close',\n );\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n editTemplate(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n copyTemplate(): void {\n // TODO\n this._snackBar.open('Not implemented at the moment!', 'Close');\n }\n\n saveTemplate(): void {\n // TODO\n this.cobblerApiService\n .write_autoinstall_template(this.name, '', this.userService.token)\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n \n \n Name: {{ name }}\n \n \n refresh\n \n \n \n \n content_copy\n \n \n \n \n edit\n \n \n \n \n delete\n \n \n \n\n\n\n \n Template Content\n \n \n @if (isEditMode) {\n Save Distro\n }\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Name: {{ name }} refresh content_copy edit delete Template Content @if (isEditMode) { Save Distro }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'TemplateEditComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TemplateOverviewComponent.html":{"url":"components/TemplateOverviewComponent.html","title":"component - TemplateOverviewComponent","body":"\n \n\n\n\n\n\n Components\n \n TemplateOverviewComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-overview\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatCell\n MatCellDef\n MatColumnDef\n MatHeaderCell\n MatHeaderRow\n MatHeaderRowDef\n MatIcon\n MatIconButton\n MatMenu\n MatMenuItem\n MatRow\n MatRowDef\n MatTable\n MatHeaderCellDef\n MatMenuTrigger\n \n \n\n\n\n\n \n templateUrl\n ./template-overview.component.html\n \n\n\n\n \n styleUrl\n ./template-overview.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n displayedColumns\n \n \n \n table\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n deleteTemplate\n \n \n editTemplate\n \n \n ngOnInit\n \n \n Private\n retrieveDistros\n \n \n showTemplate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar, router: Router)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:50\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n deleteTemplate\n \n \n \n \n \n \ndeleteTemplate(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:85\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n editTemplate\n \n \n \n \n \n \neditTemplate(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:59\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n retrieveDistros\n \n \n \n \n \n \n \n retrieveDistros()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n showTemplate\n \n \n \n \n \n \nshowTemplate(name: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:77\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : string[]\n\n \n \n \n \n Default value : ['name', 'actions']\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n \n table\n \n \n \n \n \n \n Type : MatTable\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatTable)\n \n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:50\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ViewChild } from '@angular/core';\nimport { MatIconButton } from '@angular/material/button';\nimport { MatIcon } from '@angular/material/icon';\nimport { MatMenu, MatMenuItem, MatMenuTrigger } from '@angular/material/menu';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport {\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderCellDef,\n MatHeaderRow,\n MatHeaderRowDef,\n MatRow,\n MatRowDef,\n MatTable,\n} from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { CobblerApiService } from 'cobbler-api';\nimport { UserService } from '../../../services/user.service';\nimport Utils from '../../../utils';\n\n@Component({\n selector: 'cobbler-overview',\n standalone: true,\n imports: [\n MatCell,\n MatCellDef,\n MatColumnDef,\n MatHeaderCell,\n MatHeaderRow,\n MatHeaderRowDef,\n MatIcon,\n MatIconButton,\n MatMenu,\n MatMenuItem,\n MatRow,\n MatRowDef,\n MatTable,\n MatHeaderCellDef,\n MatMenuTrigger,\n ],\n templateUrl: './template-overview.component.html',\n styleUrl: './template-overview.component.scss',\n})\nexport class TemplateOverviewComponent implements OnInit {\n displayedColumns: string[] = ['name', 'actions'];\n dataSource: Array = [];\n\n @ViewChild(MatTable) table: MatTable;\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n private router: Router,\n ) {}\n\n ngOnInit(): void {\n this.retrieveDistros();\n }\n\n private retrieveDistros(): void {\n this.cobblerApiService\n .get_autoinstall_templates(this.userService.token)\n .subscribe(\n (value) => {\n this.dataSource = value;\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n\n showTemplate(name: string): void {\n this.router.navigate(['/items', 'template', name]);\n }\n\n editTemplate(name: string): void {\n // TODO\n }\n\n deleteTemplate(name: string): void {\n this.cobblerApiService\n .remove_autoinstall_template(name, this.userService.token)\n .subscribe(\n (value) => {\n this.retrieveDistros();\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n TEMPLATES\n\n\n \n \n Name\n {{ element }}\n \n\n \n \n \n \n more_vert\n \n \n \n visibility\n Show details\n \n \n edit\n Rename\n \n \n delete\n Delete\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'TEMPLATES Name {{ element }} more_vert visibility Show details edit Rename delete Delete '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'TemplateOverviewComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/UnauthorizedComponent.html":{"url":"components/UnauthorizedComponent.html","title":"component - UnauthorizedComponent","body":"\n \n\n\n\n\n\n Components\n \n UnauthorizedComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/unauthorized/unauthorized.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-unauthorized\n \n\n \n standalone\n true\n \n\n \n imports\n \n RouterLink\n \n \n\n \n styleUrls\n ./unauthorized.component.css\n \n\n\n\n \n templateUrl\n ./unauthorized.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/unauthorized/unauthorized.component.ts:11\n \n \n\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { RouterLink } from '@angular/router';\n\n@Component({\n selector: 'cobbler-unauthorized',\n templateUrl: './unauthorized.component.html',\n styleUrls: ['./unauthorized.component.css'],\n standalone: true,\n imports: [RouterLink],\n})\nexport class UnauthorizedComponent {\n constructor() {}\n}\n\n \n\n \n \n You are not authorized to continue.\n Please Log in.\n Login\n\n\n \n\n \n \n ./unauthorized.component.css\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' You are not authorized to continue. Please Log in. Login'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'UnauthorizedComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UserService.html":{"url":"injectables/UserService.html","title":"injectable - UserService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UserService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/services/user.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n _active\n \n \n Private\n _roles\n \n \n Private\n _token\n \n \n Private\n _username\n \n \n authorized\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n changeAuthorizedState\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n username\n \n \n token\n \n \n active\n \n \n roles\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:14\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n changeAuthorizedState\n \n \n \n \n \n \nchangeAuthorizedState(authorized: boolean)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:62\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n authorized\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n _active\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n _roles\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n _token\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n Private\n _username\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n authorized\n \n \n \n \n \n \n Type : BehaviorSubject\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:14\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n server\n \n \n\n \n \n getserver()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:25\n \n \n\n \n \n setserver(url: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:33\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n username\n \n \n\n \n \n getusername()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:37\n \n \n\n \n \n setusername(name: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:49\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n token\n \n \n\n \n \n gettoken()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:41\n \n \n\n \n \n settoken(token: string)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:45\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n token\n \n \n string\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n active\n \n \n\n\n \n \n setactive(bool: boolean)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:54\n \n \n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n bool\n \n \n boolean\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n roles\n \n \n\n \n \n getroles()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/services/user.service.ts:58\n \n \n\n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\n\nconst COBBLER_URL_KEY_NAME = 'COBBLER_URL';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class UserService {\n private _username: string;\n private _token: string;\n private _active: boolean;\n private _roles: [];\n authorized: BehaviorSubject;\n\n constructor() {\n // Apply https://stackoverflow.com/a/50067730/4730773 to this service\n this._username = 'unknown user';\n this._token = '';\n this._active = false;\n this.authorized = new BehaviorSubject(false);\n this._roles = [];\n }\n\n get server(): string {\n const server_value = localStorage.getItem(COBBLER_URL_KEY_NAME);\n if (server_value) {\n return server_value;\n }\n return 'http://localhost/cobbler_api';\n }\n\n set server(url: string) {\n window.localStorage.setItem(COBBLER_URL_KEY_NAME, url);\n }\n\n get username(): string {\n return this._username;\n }\n\n get token(): string {\n return this._token;\n }\n\n set token(token: string) {\n this._token = token;\n }\n\n set username(name: string) {\n this._username = name;\n this._token = '';\n }\n\n set active(bool: boolean) {\n this._active = bool;\n }\n\n get roles(): any[] {\n return this._roles;\n }\n\n changeAuthorizedState(authorized: boolean) {\n this.authorized.next(authorized);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Utils.html":{"url":"classes/Utils.html","title":"class - Utils","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Utils\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-frontend/src/app/utils.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n toHTML\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Static\n toHTML\n \n \n \n \n \n \n \n toHTML(input: string)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/utils.ts:2\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n input\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export default class Utils {\n static toHTML(input: string): any {\n return new DOMParser().parseFromString(input, 'text/html').documentElement\n .textContent;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/V3_3_1.html":{"url":"interfaces/V3_3_1.html","title":"interface - V3_3_1","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n V3_3_1\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n\n\n\n\n\n\n\n \n\n\n \n export type Settings = V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0;\n\nexport interface V3_3_1 {\n // TODO\n}\n\nexport interface V3_3_2 {\n // TODO\n}\n\nexport interface V3_3_3 {\n auto_migrate_settings: boolean;\n allow_duplicate_hostnames: boolean;\n allow_duplicate_ips: boolean;\n allow_duplicate_macs: boolean;\n allow_dynamic_settings: boolean;\n always_write_dhcp_entries: boolean;\n anamon_enabled: boolean;\n auth_token_expiration: number;\n authn_pam_service: string;\n autoinstall_snippets_dir: string;\n autoinstall_templates_dir: string;\n bind_chroot_path: string;\n bind_zonefile_path: string;\n bind_master: string;\n boot_loader_conf_template_dir: string;\n bootloaders_dir?: string;\n bootloaders_formats?: object;\n bootloaders_modules?: Array;\n bootloaders_shim_folder?: string;\n bootloaders_shim_file?: string;\n bootloaders_ipxe_folder?: string;\n syslinux_dir?: string;\n syslinux_memdisk_folder?: string;\n syslinux_pxelinux_folder?: string;\n grub2_mod_dir?: string;\n grubconfig_dir?: string;\n build_reporting_enabled: boolean;\n build_reporting_email: Array;\n build_reporting_ignorelist: Array;\n build_reporting_sender: string;\n build_reporting_smtp_server: string;\n build_reporting_subject: string;\n buildisodir?: string;\n cheetah_import_whitelist?: string;\n client_use_https: boolean;\n client_use_localhost: boolean;\n cobbler_master?: string;\n convert_server_to_ip?: boolean;\n createrepo_flags: string;\n autoinstall: string;\n default_name_servers: Array;\n default_name_servers_search: Array;\n default_ownership: Array;\n default_password_crypted: string;\n default_template_type: string;\n default_virt_bridge: string;\n default_virt_disk_driver?: string;\n default_virt_file_size: number;\n default_virt_ram: number;\n default_virt_type: string;\n enable_ipxe: boolean;\n enable_menu: boolean;\n http_port: number;\n include: Array;\n iso_template_dir?: string;\n jinja2_includedir?: string;\n kernel_options: object;\n ldap_anonymous_bind?: boolean;\n ldap_base_dn?: string;\n ldap_port?: number;\n ldap_search_bind_dn?: string;\n ldap_search_passwd?: string;\n ldap_search_prefix?: string;\n ldap_server?: string;\n ldap_tls?: boolean;\n ldap_tls_cacertdir?: string;\n ldap_tls_cacertfile?: string;\n ldap_tls_certfile?: string;\n ldap_tls_keyfile?: string;\n ldap_tls_reqcert?: string;\n ldap_tls_cipher_suite?: string;\n bind_manage_ipmi?: boolean;\n manage_dhcp: boolean;\n manage_dhcp_v4: boolean;\n manage_dhcp_v6: boolean;\n manage_dns: boolean;\n manage_forward_zones: Array;\n manage_reverse_zones: Array;\n manage_genders?: boolean;\n manage_rsync: boolean;\n manage_tftpd: boolean;\n mgmt_classes: Array;\n mgmt_parameters: object;\n next_server_v4: string;\n next_server_v6: string;\n nsupdate_enabled?: boolean;\n nsupdate_log?: string;\n nsupdate_tsig_algorithm?: string;\n nsupdate_tsig_key?: Array;\n power_management_default_type: string;\n proxies?: Array;\n proxy_url_ext: string;\n proxy_url_int: string;\n puppet_auto_setup: boolean;\n puppet_parameterized_classes?: boolean;\n puppet_server?: string;\n puppet_version?: number;\n puppetca_path: string;\n pxe_just_once: boolean;\n nopxe_with_triggers: boolean;\n redhat_management_permissive: boolean;\n redhat_management_server: string;\n redhat_management_key: string;\n register_new_installs: boolean;\n remove_old_puppet_certs_automatically: boolean;\n replicate_repo_rsync_options: string;\n replicate_rsync_options: string;\n reposync_flags: string;\n reposync_rsync_flags: string;\n restart_dhcp: boolean;\n restart_dns: boolean;\n run_install_triggers: boolean;\n scm_track_enabled: boolean;\n scm_track_mode: string;\n scm_track_author: string;\n scm_push_script: string;\n serializer_pretty_json: boolean;\n server: string;\n sign_puppet_certs_automatically: boolean;\n signature_path?: string;\n signature_url?: string;\n tftpboot_location: string;\n virt_auto_boot: boolean;\n webdir: string;\n webdir_whitelist: Array;\n xmlrpc_port: number;\n yum_distro_priority: number;\n yum_post_install_mirror: boolean;\n yumdownloader_flags: string;\n windows_enabled?: boolean;\n windows_template_dir?: string;\n samba_distro_share?: string;\n}\n\nexport interface V3_4_0 {\n // TODO\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/V3_3_2.html":{"url":"interfaces/V3_3_2.html","title":"interface - V3_3_2","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n V3_3_2\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n\n\n\n\n\n\n\n \n\n\n \n export type Settings = V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0;\n\nexport interface V3_3_1 {\n // TODO\n}\n\nexport interface V3_3_2 {\n // TODO\n}\n\nexport interface V3_3_3 {\n auto_migrate_settings: boolean;\n allow_duplicate_hostnames: boolean;\n allow_duplicate_ips: boolean;\n allow_duplicate_macs: boolean;\n allow_dynamic_settings: boolean;\n always_write_dhcp_entries: boolean;\n anamon_enabled: boolean;\n auth_token_expiration: number;\n authn_pam_service: string;\n autoinstall_snippets_dir: string;\n autoinstall_templates_dir: string;\n bind_chroot_path: string;\n bind_zonefile_path: string;\n bind_master: string;\n boot_loader_conf_template_dir: string;\n bootloaders_dir?: string;\n bootloaders_formats?: object;\n bootloaders_modules?: Array;\n bootloaders_shim_folder?: string;\n bootloaders_shim_file?: string;\n bootloaders_ipxe_folder?: string;\n syslinux_dir?: string;\n syslinux_memdisk_folder?: string;\n syslinux_pxelinux_folder?: string;\n grub2_mod_dir?: string;\n grubconfig_dir?: string;\n build_reporting_enabled: boolean;\n build_reporting_email: Array;\n build_reporting_ignorelist: Array;\n build_reporting_sender: string;\n build_reporting_smtp_server: string;\n build_reporting_subject: string;\n buildisodir?: string;\n cheetah_import_whitelist?: string;\n client_use_https: boolean;\n client_use_localhost: boolean;\n cobbler_master?: string;\n convert_server_to_ip?: boolean;\n createrepo_flags: string;\n autoinstall: string;\n default_name_servers: Array;\n default_name_servers_search: Array;\n default_ownership: Array;\n default_password_crypted: string;\n default_template_type: string;\n default_virt_bridge: string;\n default_virt_disk_driver?: string;\n default_virt_file_size: number;\n default_virt_ram: number;\n default_virt_type: string;\n enable_ipxe: boolean;\n enable_menu: boolean;\n http_port: number;\n include: Array;\n iso_template_dir?: string;\n jinja2_includedir?: string;\n kernel_options: object;\n ldap_anonymous_bind?: boolean;\n ldap_base_dn?: string;\n ldap_port?: number;\n ldap_search_bind_dn?: string;\n ldap_search_passwd?: string;\n ldap_search_prefix?: string;\n ldap_server?: string;\n ldap_tls?: boolean;\n ldap_tls_cacertdir?: string;\n ldap_tls_cacertfile?: string;\n ldap_tls_certfile?: string;\n ldap_tls_keyfile?: string;\n ldap_tls_reqcert?: string;\n ldap_tls_cipher_suite?: string;\n bind_manage_ipmi?: boolean;\n manage_dhcp: boolean;\n manage_dhcp_v4: boolean;\n manage_dhcp_v6: boolean;\n manage_dns: boolean;\n manage_forward_zones: Array;\n manage_reverse_zones: Array;\n manage_genders?: boolean;\n manage_rsync: boolean;\n manage_tftpd: boolean;\n mgmt_classes: Array;\n mgmt_parameters: object;\n next_server_v4: string;\n next_server_v6: string;\n nsupdate_enabled?: boolean;\n nsupdate_log?: string;\n nsupdate_tsig_algorithm?: string;\n nsupdate_tsig_key?: Array;\n power_management_default_type: string;\n proxies?: Array;\n proxy_url_ext: string;\n proxy_url_int: string;\n puppet_auto_setup: boolean;\n puppet_parameterized_classes?: boolean;\n puppet_server?: string;\n puppet_version?: number;\n puppetca_path: string;\n pxe_just_once: boolean;\n nopxe_with_triggers: boolean;\n redhat_management_permissive: boolean;\n redhat_management_server: string;\n redhat_management_key: string;\n register_new_installs: boolean;\n remove_old_puppet_certs_automatically: boolean;\n replicate_repo_rsync_options: string;\n replicate_rsync_options: string;\n reposync_flags: string;\n reposync_rsync_flags: string;\n restart_dhcp: boolean;\n restart_dns: boolean;\n run_install_triggers: boolean;\n scm_track_enabled: boolean;\n scm_track_mode: string;\n scm_track_author: string;\n scm_push_script: string;\n serializer_pretty_json: boolean;\n server: string;\n sign_puppet_certs_automatically: boolean;\n signature_path?: string;\n signature_url?: string;\n tftpboot_location: string;\n virt_auto_boot: boolean;\n webdir: string;\n webdir_whitelist: Array;\n xmlrpc_port: number;\n yum_distro_priority: number;\n yum_post_install_mirror: boolean;\n yumdownloader_flags: string;\n windows_enabled?: boolean;\n windows_template_dir?: string;\n samba_distro_share?: string;\n}\n\nexport interface V3_4_0 {\n // TODO\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/V3_4_0.html":{"url":"interfaces/V3_4_0.html","title":"interface - V3_4_0","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n V3_4_0\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n\n\n\n\n\n\n\n \n\n\n \n export type Settings = V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0;\n\nexport interface V3_3_1 {\n // TODO\n}\n\nexport interface V3_3_2 {\n // TODO\n}\n\nexport interface V3_3_3 {\n auto_migrate_settings: boolean;\n allow_duplicate_hostnames: boolean;\n allow_duplicate_ips: boolean;\n allow_duplicate_macs: boolean;\n allow_dynamic_settings: boolean;\n always_write_dhcp_entries: boolean;\n anamon_enabled: boolean;\n auth_token_expiration: number;\n authn_pam_service: string;\n autoinstall_snippets_dir: string;\n autoinstall_templates_dir: string;\n bind_chroot_path: string;\n bind_zonefile_path: string;\n bind_master: string;\n boot_loader_conf_template_dir: string;\n bootloaders_dir?: string;\n bootloaders_formats?: object;\n bootloaders_modules?: Array;\n bootloaders_shim_folder?: string;\n bootloaders_shim_file?: string;\n bootloaders_ipxe_folder?: string;\n syslinux_dir?: string;\n syslinux_memdisk_folder?: string;\n syslinux_pxelinux_folder?: string;\n grub2_mod_dir?: string;\n grubconfig_dir?: string;\n build_reporting_enabled: boolean;\n build_reporting_email: Array;\n build_reporting_ignorelist: Array;\n build_reporting_sender: string;\n build_reporting_smtp_server: string;\n build_reporting_subject: string;\n buildisodir?: string;\n cheetah_import_whitelist?: string;\n client_use_https: boolean;\n client_use_localhost: boolean;\n cobbler_master?: string;\n convert_server_to_ip?: boolean;\n createrepo_flags: string;\n autoinstall: string;\n default_name_servers: Array;\n default_name_servers_search: Array;\n default_ownership: Array;\n default_password_crypted: string;\n default_template_type: string;\n default_virt_bridge: string;\n default_virt_disk_driver?: string;\n default_virt_file_size: number;\n default_virt_ram: number;\n default_virt_type: string;\n enable_ipxe: boolean;\n enable_menu: boolean;\n http_port: number;\n include: Array;\n iso_template_dir?: string;\n jinja2_includedir?: string;\n kernel_options: object;\n ldap_anonymous_bind?: boolean;\n ldap_base_dn?: string;\n ldap_port?: number;\n ldap_search_bind_dn?: string;\n ldap_search_passwd?: string;\n ldap_search_prefix?: string;\n ldap_server?: string;\n ldap_tls?: boolean;\n ldap_tls_cacertdir?: string;\n ldap_tls_cacertfile?: string;\n ldap_tls_certfile?: string;\n ldap_tls_keyfile?: string;\n ldap_tls_reqcert?: string;\n ldap_tls_cipher_suite?: string;\n bind_manage_ipmi?: boolean;\n manage_dhcp: boolean;\n manage_dhcp_v4: boolean;\n manage_dhcp_v6: boolean;\n manage_dns: boolean;\n manage_forward_zones: Array;\n manage_reverse_zones: Array;\n manage_genders?: boolean;\n manage_rsync: boolean;\n manage_tftpd: boolean;\n mgmt_classes: Array;\n mgmt_parameters: object;\n next_server_v4: string;\n next_server_v6: string;\n nsupdate_enabled?: boolean;\n nsupdate_log?: string;\n nsupdate_tsig_algorithm?: string;\n nsupdate_tsig_key?: Array;\n power_management_default_type: string;\n proxies?: Array;\n proxy_url_ext: string;\n proxy_url_int: string;\n puppet_auto_setup: boolean;\n puppet_parameterized_classes?: boolean;\n puppet_server?: string;\n puppet_version?: number;\n puppetca_path: string;\n pxe_just_once: boolean;\n nopxe_with_triggers: boolean;\n redhat_management_permissive: boolean;\n redhat_management_server: string;\n redhat_management_key: string;\n register_new_installs: boolean;\n remove_old_puppet_certs_automatically: boolean;\n replicate_repo_rsync_options: string;\n replicate_rsync_options: string;\n reposync_flags: string;\n reposync_rsync_flags: string;\n restart_dhcp: boolean;\n restart_dns: boolean;\n run_install_triggers: boolean;\n scm_track_enabled: boolean;\n scm_track_mode: string;\n scm_track_author: string;\n scm_push_script: string;\n serializer_pretty_json: boolean;\n server: string;\n sign_puppet_certs_automatically: boolean;\n signature_path?: string;\n signature_url?: string;\n tftpboot_location: string;\n virt_auto_boot: boolean;\n webdir: string;\n webdir_whitelist: Array;\n xmlrpc_port: number;\n yum_distro_priority: number;\n yum_post_install_mirror: boolean;\n yumdownloader_flags: string;\n windows_enabled?: boolean;\n windows_template_dir?: string;\n samba_distro_share?: string;\n}\n\nexport interface V3_4_0 {\n // TODO\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ValidateAutoinstallsComponent.html":{"url":"components/ValidateAutoinstallsComponent.html","title":"component - ValidateAutoinstallsComponent","body":"\n \n\n\n\n\n\n Components\n \n ValidateAutoinstallsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-validate-autoinstalls\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatButton\n \n \n\n\n\n\n \n templateUrl\n ./validate-autoinstalls.component.html\n \n\n\n\n \n styleUrl\n ./validate-autoinstalls.component.scss\n \n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n Public\n userService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n runValidateAutoinstalls\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n cobblerApiService\n \n \n CobblerApiService\n \n \n \n No\n \n \n \n \n _snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n runValidateAutoinstalls\n \n \n \n \n \n \nrunValidateAutoinstalls()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n ngUnsubscribe\n \n \n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n Public\n userService\n \n \n \n \n \n \n Type : UserService\n\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnDestroy } from '@angular/core';\nimport { MatButton } from '@angular/material/button';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { CobblerApiService } from 'cobbler-api';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { UserService } from '../../services/user.service';\nimport Utils from '../../utils';\n\n@Component({\n selector: 'cobbler-validate-autoinstalls',\n standalone: true,\n imports: [MatButton],\n templateUrl: './validate-autoinstalls.component.html',\n styleUrl: './validate-autoinstalls.component.scss',\n})\nexport class ValidateAutoinstallsComponent implements OnDestroy {\n // Unsubscribe\n private ngUnsubscribe = new Subject();\n\n constructor(\n public userService: UserService,\n private cobblerApiService: CobblerApiService,\n private _snackBar: MatSnackBar,\n ) {}\n\n ngOnDestroy(): void {\n this.ngUnsubscribe.next();\n this.ngUnsubscribe.complete();\n }\n\n runValidateAutoinstalls(): void {\n this.cobblerApiService\n .background_validate_autoinstall_files(this.userService.token)\n .pipe(takeUntil(this.ngUnsubscribe))\n .subscribe(\n (value) => {\n // TODO\n },\n (error) => {\n // HTML encode the error message since it originates from XML\n this._snackBar.open(Utils.toHTML(error.message), 'Close');\n },\n );\n }\n}\n\n \n\n \n VALIDATE AUTOINSTALLS\n\nRun\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'VALIDATE AUTOINSTALLSRun'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ValidateAutoinstallsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Version.html":{"url":"interfaces/Version.html","title":"interface - Version","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n Version\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n major\n \n \n \n \n minor\n \n \n \n \n patch\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n major\n \n \n \n \n \n \n \n \n major: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n minor\n \n \n \n \n \n \n \n \n minor: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n patch\n \n \n \n \n \n \n \n \n patch: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export interface Version {\n major: number;\n minor: number;\n patch: number;\n}\n\nexport interface ExtendedVersion {\n gitdate: string;\n gitstamp: string;\n builddate: string;\n version: string;\n versionTuple: Version;\n}\n\nexport interface BackgroundBuildisoOptions {\n iso: string;\n profiles: string;\n systems: string;\n buildisodir: string;\n distro: string;\n standalone: boolean;\n airgapped: boolean;\n source: string;\n excludeDNS: boolean;\n xorrisofsOpts: string;\n}\n\nexport interface BackgroundAclSetupOptions {\n adduser: string;\n addgroup: string;\n removeuser: string;\n removegroup: string;\n}\n\nexport interface SyncOptions {\n dhcp: boolean;\n dns: boolean;\n verbose: boolean;\n}\n\nexport interface SyncSystemsOptions {\n systems: Array;\n verbose: boolean;\n}\n\nexport interface BackgroundReplicateOptions {\n master: string;\n port: string;\n distro_patterns: string;\n profile_patterns: string;\n system_patterns: string;\n repo_patterns: string;\n image_patterns: string;\n mgmtclass_patterns: string;\n package_patterns: string;\n file_patterns: string;\n prune: boolean;\n omit_data: boolean;\n sync_all: boolean;\n use_ssl: boolean;\n}\n\nexport interface BackgroundImportOptions {\n path: string;\n name: string;\n available_as: string;\n autoinstall_file: string;\n rsync_flags: string;\n arch: string;\n breed: string;\n os_version: string;\n}\n\nexport interface BackgroundReposyncOptions {\n repos: Array;\n only: string;\n nofail: boolean;\n tries: number;\n}\n\nexport interface BackgroundPowerSystem {\n systems: Array;\n power: string;\n}\n\nexport interface RegisterOptions {\n name: string;\n profile: string;\n hostname: string;\n interfaces: object;\n}\n\nexport interface PagesItemsResult {\n items: object;\n pageinfo: PageInfo;\n}\n\nexport interface PageInfo {\n page: number;\n prev_page: number;\n next_page: number;\n pages: Array;\n num_pages: number;\n num_items: number;\n start_item: number;\n end_item: number;\n items_per_page: number;\n items_per_page_list: [10, 20, 50, 100, 200, 500];\n}\n\nexport interface Event {\n id: string;\n statetime: number;\n name: string;\n state: string;\n readByWho: Array;\n}\n\nexport interface InstallationStatus {\n ip: string;\n mostRecentStart: number;\n mostRecentStop: number;\n mostRecentTarget: string;\n seenStart: number;\n seenStop: number;\n state: string;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ViewableTreeComponent.html":{"url":"components/ViewableTreeComponent.html","title":"component - ViewableTreeComponent","body":"\n \n\n\n\n\n\n Components\n \n ViewableTreeComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n selector\n cobbler-viewable-tree\n \n\n \n standalone\n true\n \n\n \n imports\n \n MatTreeModule\n MatButtonModule\n MatIconModule\n \n \n\n \n styleUrls\n ./viewable-tree.component.scss\n \n\n\n\n \n templateUrl\n ./viewable-tree.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n _transformer\n \n \n dataSource\n \n \n hasChild\n \n \n treeFlattener\n \n \n viewableTreeControl\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n inputLength\n \n \n ngOnInit\n \n \n Private\n transformObject\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n inputObject\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:63\n \n \n\n \n \n\n\n \n Inputs\n \n \n \n \n \n inputObject\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:36\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n inputLength\n \n \n \n \n \n \ninputLength(inputObject: object)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:67\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n inputObject\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:90\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n Private\n transformObject\n \n \n \n \n \n \n \n transformObject(inputObject: object)\n \n \n\n\n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n inputObject\n \n object\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : ObjectNode[]\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n Private\n _transformer\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Default value : new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:58\n \n \n\n\n \n \n \n \n \n \n \n \n hasChild\n \n \n \n \n \n \n Default value : () => {...}\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:63\n \n \n\n\n \n \n \n \n \n \n \n \n treeFlattener\n \n \n \n \n \n \n Default value : new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:51\n \n \n\n\n \n \n \n \n \n \n \n \n viewableTreeControl\n \n \n \n \n \n \n Default value : new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n )\n \n \n \n \n Defined in projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts:37\n \n \n\n\n \n \n\n\n\n\n\n \n import { FlatTreeControl } from '@angular/cdk/tree';\nimport { Component, Input, OnInit } from '@angular/core';\nimport {\n MatTreeFlatDataSource,\n MatTreeFlattener,\n MatTreeModule,\n} from '@angular/material/tree';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface ObjectNode {\n name: string;\n value: any;\n children?: ObjectNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n@Component({\n selector: 'cobbler-viewable-tree',\n templateUrl: './viewable-tree.component.html',\n styleUrls: ['./viewable-tree.component.scss'],\n standalone: true,\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n})\nexport class ViewableTreeComponent implements OnInit {\n @Input() inputObject: object = {};\n viewableTreeControl = new FlatTreeControl(\n (node) => node.level,\n (node) => node.expandable,\n );\n\n private _transformer = (node: ObjectNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n value: node.value,\n level: level,\n };\n };\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n (node) => node.level,\n (node) => node.expandable,\n (node) => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(\n this.viewableTreeControl,\n this.treeFlattener,\n );\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n constructor() {}\n\n inputLength(inputObject: object): number {\n return Object.keys(inputObject).length;\n }\n\n private transformObject(inputObject: object): ObjectNode[] {\n const resultStructure = [];\n let children = [];\n Object.keys(inputObject).forEach((key) => {\n if (\n !Array.isArray(inputObject[key]) &&\n typeof inputObject[key] === 'object'\n ) {\n children = this.transformObject(inputObject[key]);\n }\n resultStructure.push({\n name: key,\n value: inputObject[key],\n children: children,\n });\n });\n return resultStructure;\n }\n\n ngOnInit(): void {\n this.dataSource.data = this.transformObject(this.inputObject);\n }\n}\n\n \n\n \n @if (inputLength(inputObject) > 0) {\n \n \n \n \n \n {{ node.name }}: {{ node.value }}\n \n \n \n \n \n {{\n viewableTreeControl.isExpanded(node)\n ? \"expand_more\"\n : \"chevron_right\"\n }}\n \n \n {{ node.name }}\n \n \n}\n@if (inputLength(inputObject) === 0) {\n { } \n}\n\n \n\n \n \n ./viewable-tree.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = '@if (inputLength(inputObject) > 0) { {{ node.name }}: {{ node.value }} {{ viewableTreeControl.isExpanded(node) ? \"expand_more\" : \"chevron_right\" }} {{ node.name }} }@if (inputLength(inputObject) === 0) { { } }'\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'cobbler-root'},{'name': 'AppEventsComponent', 'selector': 'cobbler-app-events'},{'name': 'AppManageComponent', 'selector': 'cobbler-app-manage'},{'name': 'BuildISOComponent', 'selector': 'cobbler-build-iso'},{'name': 'CheckSysComponent', 'selector': 'cobbler-check-sys'},{'name': 'DialogBoxTextConfirmComponent', 'selector': 'cobbler-dialog-box-text-confirm'},{'name': 'DialogItemCopyComponent', 'selector': 'cobbler-dialog-item-copy'},{'name': 'DialogItemRenameComponent', 'selector': 'cobbler-dialog-item-rename'},{'name': 'DialogTextInputComponent', 'selector': 'cobbler-dialog-text-input'},{'name': 'DistroEditComponent', 'selector': 'cobbler-edit'},{'name': 'DistrosOverviewComponent', 'selector': 'cobbler-distros'},{'name': 'FileEditComponent', 'selector': 'cobbler-edit'},{'name': 'FileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'HardlinkComponent', 'selector': 'cobbler-hardlink'},{'name': 'ImageEditComponent', 'selector': 'cobbler-image-edit'},{'name': 'ImageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ImportDVDComponent', 'selector': 'cobbler-import-dvd'},{'name': 'KeyValueEditorComponent', 'selector': 'cobbler-key-value-editor'},{'name': 'LogInFormComponent', 'selector': 'cobbler-login'},{'name': 'ManagementClassEditComponent', 'selector': 'cobbler-edit'},{'name': 'ManagementClassOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ManageMenuComponent', 'selector': 'cobbler-manage-menu'},{'name': 'MkloadersComponent', 'selector': 'cobbler-mkloaders'},{'name': 'MultiSelectComponent', 'selector': 'cobbler-multi-select'},{'name': 'NavbarComponent', 'selector': 'cobbler-navbar'},{'name': 'NotFoundComponent', 'selector': 'cobbler-not-found'},{'name': 'PackageEditComponent', 'selector': 'cobbler-edit'},{'name': 'PackageOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ProfileEditComponent', 'selector': 'cobbler-edit'},{'name': 'ProfileOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'ReplicateComponent', 'selector': 'cobbler-replicate'},{'name': 'RepositoryEditComponent', 'selector': 'cobbler-edit'},{'name': 'RepositoryOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'RepoSyncComponent', 'selector': 'cobbler-repo-sync'},{'name': 'SettingsViewComponent', 'selector': 'cobbler-settings-view'},{'name': 'SignaturesComponent', 'selector': 'cobbler-signatures'},{'name': 'SnippetEditComponent', 'selector': 'cobbler-edit'},{'name': 'SnippetOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'StatusComponent', 'selector': 'cobbler-status'},{'name': 'SyncComponent', 'selector': 'cobbler-sync'},{'name': 'SystemEditComponent', 'selector': 'cobbler-edit'},{'name': 'SystemOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'TemplateEditComponent', 'selector': 'cobbler-edit'},{'name': 'TemplateOverviewComponent', 'selector': 'cobbler-overview'},{'name': 'UnauthorizedComponent', 'selector': 'cobbler-unauthorized'},{'name': 'ValidateAutoinstallsComponent', 'selector': 'cobbler-validate-autoinstalls'},{'name': 'ViewableTreeComponent', 'selector': 'cobbler-viewable-tree'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'ViewableTreeComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/XmlRpcArray.html":{"url":"interfaces/XmlRpcArray.html","title":"interface - XmlRpcArray","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n XmlRpcArray\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n data\n \n \n \n \n \n \n \n \n data: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/XmlRpcStruct.html":{"url":"interfaces/XmlRpcStruct.html","title":"interface - XmlRpcStruct","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n XmlRpcStruct\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n members\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n members\n \n \n \n \n \n \n \n \n members: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n export type XmlRpcTypes =\n | number\n | boolean\n | string\n | Date\n | ArrayBuffer\n | XmlRpcStruct\n | XmlRpcArray;\nexport type MethodResponse = Param;\n\nexport interface MethodFault {\n faultCode: number;\n faultString: string;\n}\n\nexport interface XmlRpcArray {\n data: Array;\n}\n\nexport interface XmlRpcStruct {\n members: Array;\n}\n\nexport interface Member {\n name: string;\n value: XmlRpcTypes;\n}\n\nexport interface Param {\n value: XmlRpcTypes;\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"contributing.html":{"url":"contributing.html","title":"getting-started - contributing","body":"\n \n\nContributing\nPlease use our GitHub Wiki or our\ndocumentation for Cobbler-Web to get started on your contributions.\nIf you need personal help please contact SchoolGuy to get started with contributing.\nFor any opinions, feedback or other topics to discuss please use GitHub Discussions.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n projects/cobbler-api/src/lib/cobbler-api.service.ts\n \n injectable\n CobblerApiService\n \n 0 %\n (0/187)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Distro\n \n 0 %\n (0/27)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n File\n \n 0 %\n (0/21)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Image\n \n 0 %\n (0/31)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Item\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Mgmgtclass\n \n 0 %\n (0/19)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n NetworkInterface\n \n 0 %\n (0/24)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Package\n \n 0 %\n (0/22)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Profile\n \n 0 %\n (0/38)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n Repo\n \n 0 %\n (0/30)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/items.ts\n \n interface\n System\n \n 0 %\n (0/52)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundAclSetupOptions\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundBuildisoOptions\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundImportOptions\n \n 0 %\n (0/9)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundPowerSystem\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundReplicateOptions\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n BackgroundReposyncOptions\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n Event\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n ExtendedVersion\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n InstallationStatus\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n PageInfo\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n PagesItemsResult\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n RegisterOptions\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n SyncOptions\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n SyncSystemsOptions\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/misc.ts\n \n interface\n Version\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_3_1\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_3_2\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_3_3\n \n 0 %\n (0/133)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n interface\n V3_4_0\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n interface\n DistroSignatureOsVersion\n \n 0 %\n (0/17)\n \n \n \n \n \n projects/cobbler-api/src/lib/custom-types/signatures.ts\n \n interface\n DistroSignatures\n \n 50 %\n (1/2)\n \n \n \n \n \n projects/cobbler-api/src/lib/lib.config.ts\n \n variable\n COBBLER_URL\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-api/src/lib/lib.config.ts\n \n variable\n cobblerUrlFactory\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-frontend/e2e/src/app.po.ts\n \n class\n AppPage\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/build-iso/build-iso.component.ts\n \n component\n BuildISOComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/check-sys/check-sys.component.ts\n \n component\n CheckSysComponent\n \n 0 %\n (0/9)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/hardlink/hardlink.component.ts\n \n component\n HardlinkComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/import-dvd/import-dvd.component.ts\n \n component\n ImportDVDComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/mkloaders/mkloaders.component.ts\n \n component\n MkloadersComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/replicate/replicate.component.ts\n \n component\n ReplicateComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/repo-sync/repo-sync.component.ts\n \n component\n RepoSyncComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/status/status.component.ts\n \n component\n StatusComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/sync/sync.component.ts\n \n component\n SyncComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n projects/cobbler-frontend/src/app/actions/validate-autoinstalls/validate-autoinstalls.component.ts\n \n component\n ValidateAutoinstallsComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/app-events/app-events.component.ts\n \n component\n AppEventsComponent\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/appManage/app-manage.component.ts\n \n component\n AppManageComponent\n \n 0 %\n (0/7)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n \n component\n DialogBoxTextConfirmComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-box-text-confirm/dialog-box-text-confirm.ts\n \n interface\n DialogData\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts\n \n component\n DialogItemCopyComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-item-copy/dialog-item-copy.component.ts\n \n interface\n DialogItemCopyData\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n \n component\n DialogItemRenameComponent\n \n 0 %\n (0/6)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-item-rename/dialog-item-rename.component.ts\n \n interface\n DialogItemRenameData\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n \n component\n DialogTextInputComponent\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/dialog-text-input/dialog-text-input.component.ts\n \n interface\n DialogTextInputData\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/key-value-editor/key-value-editor.component.ts\n \n component\n KeyValueEditorComponent\n \n 0 %\n (0/19)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/multi-select/multi-select.component.ts\n \n component\n MultiSelectComponent\n \n 0 %\n (0/20)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n component\n ViewableTreeComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n interface\n ExampleFlatNode\n \n 25 %\n (1/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/common/viewable-tree/viewable-tree.component.ts\n \n interface\n ObjectNode\n \n 25 %\n (1/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/distro/edit/distro-edit.component.ts\n \n component\n DistroEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/distro/overview/distros-overview.component.ts\n \n component\n DistrosOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/file/edit/file-edit.component.ts\n \n component\n FileEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/file/overview/file-overview.component.ts\n \n component\n FileOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/image/edit/image-edit.component.ts\n \n component\n ImageEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/image/overview/image-overview.component.ts\n \n component\n ImageOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/management-class/edit/management-class-edit.component.ts\n \n component\n ManagementClassEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/management-class/overview/management-class-overview.component.ts\n \n component\n ManagementClassOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/package/edit/package-edit.component.ts\n \n component\n PackageEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/package/overview/package-overview.component.ts\n \n component\n PackageOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/profile/edit/profile-edit.component.ts\n \n component\n ProfileEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/profile/overview/profile-overview.component.ts\n \n component\n ProfileOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/repository/edit/repository-edit.component.ts\n \n component\n RepositoryEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/repository/overview/repository-overview.component.ts\n \n component\n RepositoryOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/snippet/edit/snippet-edit.component.ts\n \n component\n SnippetEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/snippet/overview/snippet-overview.component.ts\n \n component\n SnippetOverviewComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/system/edit/system-edit.component.ts\n \n component\n SystemEditComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/system/overview/system-overview.component.ts\n \n component\n SystemOverviewComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/template/edit/template-edit.component.ts\n \n component\n TemplateEditComponent\n \n 0 %\n (0/13)\n \n \n \n \n \n projects/cobbler-frontend/src/app/items/template/overview/template-overview.component.ts\n \n component\n TemplateOverviewComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/login/login.component.ts\n \n component\n LogInFormComponent\n \n 0 %\n (0/16)\n \n \n \n \n \n projects/cobbler-frontend/src/app/manage-menu/manage-menu.component.ts\n \n component\n ManageMenuComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/navbar/navbar.component.ts\n \n component\n NavbarComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/not-found/not-found.component.ts\n \n component\n NotFoundComponent\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/auth-guard.service.ts\n \n injectable\n AuthGuardService\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/get-obj.service.ts\n \n injectable\n GetObjService\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/item-settings.service.ts\n \n injectable\n ItemSettingsService\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/user.service.ts\n \n injectable\n UserService\n \n 0 %\n (0/8)\n \n \n \n \n \n projects/cobbler-frontend/src/app/services/user.service.ts\n \n variable\n COBBLER_URL_KEY_NAME\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n \n component\n SettingsViewComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n projects/cobbler-frontend/src/app/settings/view/settings-view.component.ts\n \n interface\n SettingsTableRowData\n \n 0 %\n (0/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n component\n SignaturesComponent\n \n 0 %\n (0/17)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n interface\n OsBreedFlatNode\n \n 25 %\n (1/4)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n interface\n OsNode\n \n 33 %\n (1/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/signatures/signatures.component.ts\n \n interface\n TableRow\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/cobbler-frontend/src/app/unauthorized/unauthorized.component.ts\n \n component\n UnauthorizedComponent\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/app/utils.ts\n \n class\n Utils\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/cobbler-frontend/src/environments/environment.prod.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/cobbler-frontend/src/environments/environment.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/constants.ts\n \n variable\n applicationError\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/date_formatter.ts\n \n class\n DateFormatter\n \n 64 %\n (9/14)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertArray\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertDomToObject\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertFault\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertMember\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertMethodResponse\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertName\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertParam\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertParams\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertStruct\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n convertValue\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n deserialize\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n function\n deserializeResponse\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendArray\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendBoolean\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendBuffer\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendDatetime\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendNumber\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendString\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n appendStruct\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n arrayBufferToBase64\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n serializeMethodCall\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n function\n serializeValue\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n injectable\n AngularXmlrpcService\n \n 18 %\n (2/11)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n variable\n BODY\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n variable\n TEXT\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n Member\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n MethodFault\n \n 0 %\n (0/3)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n Param\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n XmlRpcArray\n \n 0 %\n (0/2)\n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n interface\n XmlRpcStruct\n \n 0 %\n (0/2)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : ^17.3.12\n \n @angular/cdk : ^17.3.9\n \n @angular/common : ^17.3.12\n \n @angular/compiler : ^17.3.12\n \n @angular/core : ^17.3.12\n \n @angular/forms : ^17.3.12\n \n @angular/material : ^17.3.10\n \n @angular/platform-browser : ^17.3.12\n \n @angular/platform-browser-dynamic : ^17.3.12\n \n @angular/router : ^17.3.12\n \n rxjs : ~6.6.6\n \n stream : 0.0.2\n \n timers : ^0.1.1\n \n tslib : ^2.6.3\n \n xmlbuilder2 : ^2.4.1\n \n zone.js : ^0.14.7\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n appendArray   (projects/.../serializer.ts)\n \n \n appendBoolean   (projects/.../serializer.ts)\n \n \n appendBuffer   (projects/.../serializer.ts)\n \n \n appendDatetime   (projects/.../serializer.ts)\n \n \n appendNumber   (projects/.../serializer.ts)\n \n \n appendString   (projects/.../serializer.ts)\n \n \n appendStruct   (projects/.../serializer.ts)\n \n \n arrayBufferToBase64   (projects/.../serializer.ts)\n \n \n convertArray   (projects/.../deserializer.ts)\n \n \n convertDomToObject   (projects/.../deserializer.ts)\n \n \n convertFault   (projects/.../deserializer.ts)\n \n \n convertMember   (projects/.../deserializer.ts)\n \n \n convertMethodResponse   (projects/.../deserializer.ts)\n \n \n convertName   (projects/.../deserializer.ts)\n \n \n convertParam   (projects/.../deserializer.ts)\n \n \n convertParams   (projects/.../deserializer.ts)\n \n \n convertStruct   (projects/.../deserializer.ts)\n \n \n convertValue   (projects/.../deserializer.ts)\n \n \n deserialize   (projects/.../deserializer.ts)\n \n \n deserializeResponse   (projects/.../deserializer.ts)\n \n \n serializeMethodCall   (projects/.../serializer.ts)\n \n \n serializeValue   (projects/.../serializer.ts)\n \n \n \n \n \n \n\n\n projects/typescript-xmlrpc/src/lib/serializer.ts\n \n \n \n \n \n \n \n appendArray\n \n \n \n \n \n \nappendArray(value: XmlRpcArray, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n XmlRpcArray\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendBoolean\n \n \n \n \n \n \nappendBoolean(value: boolean, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n This method appends to a node a boolean in XMLRPC style. This means that true is converted to 1 and false is\nconverted to 0.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n value\n \n boolean\n \n\n \n No\n \n\n\n \n Either true or false.\n\n \n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n The parent node the value should be appended to.\n\n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendBuffer\n \n \n \n \n \n \nappendBuffer(value: ArrayBuffer, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n ArrayBuffer\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendDatetime\n \n \n \n \n \n \nappendDatetime(value: Date, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n Date\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendNumber\n \n \n \n \n \n \nappendNumber(value: number, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n number\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendString\n \n \n \n \n \n \nappendString(value: string, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n This method appends to a node a string in XMLRPC style.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n The string to append. Escaping if needed is done by XMLBuilder2\n\n \n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n The parent node the value should be appended to.\n\n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n appendStruct\n \n \n \n \n \n \nappendStruct(value: XmlRpcStruct, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n XmlRpcStruct\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n arrayBufferToBase64\n \n \n \n \n \n \narrayBufferToBase64(buffer: ArrayBuffer)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n buffer\n \n ArrayBuffer\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n serializeMethodCall\n \n \n \n \n \n \nserializeMethodCall(method: string, params?: Array, encoding?: string)\n \n \n\n\n\n\n \n \n Creates the XML for an XML-RPC method call.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n method\n \n string\n \n\n \n No\n \n\n\n \n \nThe method name.\n\n\n \n \n \n params\n \n Array\n \n\n \n Yes\n \n\n\n \n \nParams to pass in the call. If none are needed this parameter can be skipped.\n\n\n \n \n \n encoding\n \n string\n \n\n \n Yes\n \n\n\n \n \nThe encoding which is added to the XML document. If no specific is required just skip it.\n\n\n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n serializeValue\n \n \n \n \n \n \nserializeValue(value: XmlRpcTypes, xml: XMLBuilder)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n XmlRpcTypes\n \n\n \n No\n \n\n\n \n \n xml\n \n XMLBuilder\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n projects/typescript-xmlrpc/src/lib/deserializer.ts\n \n \n \n \n \n \n \n convertArray\n \n \n \n \n \n \nconvertArray(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcArray\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertDomToObject\n \n \n \n \n \n \nconvertDomToObject(document: Document)\n \n \n\n\n\n\n \n \n This method converts any document either in a meaningful response object or throws an error.\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n document\n \n Document\n \n\n \n No\n \n\n\n \n The document to convert.\n\n \n \n \n \n \n \n Returns : MethodResponse | MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertFault\n \n \n \n \n \n \nconvertFault(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertMember\n \n \n \n \n \n \nconvertMember(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Member\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertMethodResponse\n \n \n \n \n \n \nconvertMethodResponse(document: Document)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n document\n \n Document\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodResponse | MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertName\n \n \n \n \n \n \nconvertName(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertParam\n \n \n \n \n \n \nconvertParam(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Param\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertParams\n \n \n \n \n \n \nconvertParams(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertStruct\n \n \n \n \n \n \nconvertStruct(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcStruct\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n convertValue\n \n \n \n \n \n \nconvertValue(element: Element)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n Element\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : XmlRpcTypes\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n deserialize\n \n \n \n \n \n \ndeserialize(content: string)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n content\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n Returns : MethodResponse | MethodFault\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n deserializeResponse\n \n \n \n \n \n \ndeserializeResponse(content: string)\n \n \n\n\n\n\n \n \n Deserializes a response of the XMLRPC API into a XML Document\n\n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n content\n \n string\n \n\n \n No\n \n\n\n \n The content of XML which is to be parsed.\n\n \n \n \n \n \n \n Returns : Document\n\n \n \n \n \n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nCobbler-Web\n\n\nOur new separate Angular based web interface for Cobbler!\nInitial developer: @nelliesnoodles & @SchoolGuy\n@ https://github.com/nelliesnoodles/Angular-CBBLR\nPrerequisites\n\nNode.js and npm\ninstall Node.js dependencies with npm install\nbuild required projects\n\nExample :npm run build typescript-xmlrpc\nnpm run build cobbler-apiDevelopment server\nRun ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change\nany of the source files.\nNote: Since this is a multi-project repo you need to add the project name. The only project which is a frontend is\ncurrently cobbler-frontend though. Serving will only work if you have built our two libraries as described above.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use\nng generate directive|pipe|service|class|guard|interface|enum|module.\nBuild\nRun ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod\nflag for a production build.\nRunning unit tests\nRun ng test to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the\nAngular CLI Overview and Command Reference page.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2022 Cobbler Project cobbler.project@gmail.com\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n \n \n \n 47 Components\n \n \n \n \n \n \n \n 6 Injectables\n \n \n \n \n \n \n \n 3 Classes\n \n \n \n \n \n \n \n 46 Interfaces\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"properties.html":{"url":"properties.html","title":"package-properties - properties","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Properties\n \n \n \n Version : 0.0.0\n \n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n MethodResponse   (projects/.../xmlrpc-types.ts)\n \n \n Settings   (projects/.../settings.ts)\n \n \n XmlRpcTypes   (projects/.../xmlrpc-types.ts)\n \n \n \n \n \n \n\n\n projects/typescript-xmlrpc/src/lib/xmlrpc-types.ts\n \n \n \n \n \n \n MethodResponse\n \n \n \n \n Param\n\n \n \n \n \n \n \n \n \n \n XmlRpcTypes\n \n \n \n \n number | boolean | string | Date | ArrayBuffer | XmlRpcStruct | XmlRpcArray\n\n \n \n \n \n projects/cobbler-api/src/lib/custom-types/settings.ts\n \n \n \n \n \n \n Settings\n \n \n \n \n V3_3_1 | V3_3_2 | V3_3_3 | V3_4_0\n\n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n applicationError   (projects/.../constants.ts)\n \n \n BODY   (projects/.../typescript-xmlrpc.service.ts)\n \n \n COBBLER_URL   (projects/.../lib.config.ts)\n \n \n COBBLER_URL_KEY_NAME   (projects/.../user.service.ts)\n \n \n cobblerUrlFactory   (projects/.../lib.config.ts)\n \n \n environment   (projects/.../environment.prod.ts)\n \n \n environment   (projects/.../environment.ts)\n \n \n TEXT   (projects/.../typescript-xmlrpc.service.ts)\n \n \n \n \n \n \n\n\n projects/typescript-xmlrpc/src/lib/constants.ts\n \n \n \n \n \n \n \n applicationError\n \n \n \n \n \n \n Type : MethodFault\n\n \n \n \n \n Default value : {\n faultCode: -1,\n faultString: 'Problem while processing data.',\n}\n \n \n\n\n \n \n\n projects/typescript-xmlrpc/src/lib/typescript-xmlrpc.service.ts\n \n \n \n \n \n \n \n BODY\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'body'\n \n \n\n\n \n \n \n \n \n \n \n \n TEXT\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'text'\n \n \n\n\n \n \n\n projects/cobbler-api/src/lib/lib.config.ts\n \n \n \n \n \n \n \n COBBLER_URL\n \n \n \n \n \n \n Default value : new InjectionToken('COBBLER_URL')\n \n \n\n\n \n \n \n \n \n \n \n \n cobblerUrlFactory\n \n \n \n \n \n \n Default value : () => {\n const value = localStorage.getItem('COBBLER_URL');\n if (value) {\n return new URL(value);\n }\n return new URL('http://localhost/cobbler_api');\n}\n \n \n\n\n \n \n\n projects/cobbler-frontend/src/app/services/user.service.ts\n \n \n \n \n \n \n \n COBBLER_URL_KEY_NAME\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'COBBLER_URL'\n \n \n\n\n \n \n\n projects/cobbler-frontend/src/environments/environment.prod.ts\n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true,\n}\n \n \n\n\n \n \n\n projects/cobbler-frontend/src/environments/environment.ts\n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n}\n \n \n\n\n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/development-setup.html":{"url":"additional-documentation/development-setup.html","title":"additional-page - Development Setup","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDevelopment Setup for Cobbler-Web\nRequirements\nPlease install the following things system-wide and prior to working with any of our guide:\n\ndocker: Follow this guide or use your package manager to install it.\nnode: Use this download link or use your package manager to install it.\nnpm: Should be bundled along with node.\nangular/cli: Use this link to install it.\n\nBasic setup\n\nPlease ensure that if you are on Windows that you have set the git setting core.autocrlf to false and core.eol to lf!\n\nThis will give you a setup of both repositories of the main Git branches.\n\nClone Cobbler: git clone git@github.com:cobbler/cobbler.git\nClone Cobbler Web: git clone git@github.com:cobbler/cobbler-web.git\nGo into the cobbler directory and execute the following steps:\nBuild the Docker image: docker build -f docker/develop/develop.dockerfile -t cobbler-dev .\nRun the built image: docker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev\nExecute the setup script in the running container: ./docker/develop/scripts/setup-supervisor.sh\nLet the container run in the foreground! You may want to tail the Cobbler log:\ntail -f /var/log/cobbler/cobbler.log\n\n\nGo into the cobbler-web directory and follow these steps:\nRun an npm install to install the development and runtime dependencies.\nBuild the TS-XMLRPC API via: npm run build typescript-xmlrpc\nBuild the Cobbler-API project via: npm run build cobbler-api\nServe the Cobbler frontend via: npm run start cobbler-frontend\n\n\nGo to http://localhost:4200 to see the frontend.\nLogin is:\nUsername: cobbler\nPassword: cobbler\n\n\n\nAdvanced setup\nWhen developing the Web Frontend it is needed sometimes to switch between different release codestreams. In the following, a few examples of the current codestreams can be seen:\nMain\n\nThis assumes that you are in the root folder of the backend repository.\n\nExample :git checkout main\ndocker build -f docker/develop/develop.dockerfile -t cobbler-dev .\ndocker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev\nmake clean\n./docker/develop/scripts/setup-supervisor.shrelease33\n\nThis assumes that you are in the root folder of the backend repository.\n\nExample :git checkout release33\ndocker build -f docker/develop/develop.dockerfile -t cobbler-dev:release33 .\ndocker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev:release33\nmake clean\n./docker/develop/scripts/setup-supervisor.shError handling\nCORS\nWhen you are running Angular applications this is a common issue. Please check the following things:\n\nif the request is blocked by the browser or the server (so Cobbler).\nif the request is lacking the required headers, check the Apache webserver configuration in the Cobbler testing\ncontainer at /etc/apache2/vhosts.d/cobbler.conf\nif the request is resulting in a 404, check the proxy.conf.json for the correct URL.\n\nWe will only be guiding you as a developer very limited here as this is a very environment specific setting. Most of the\ntime will be \"Here is a random Stackoverflow link, please read and debug yourself.\".\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} } diff --git a/overview.html b/overview.html index 0ee596de..c21ee9bf 100644 --- a/overview.html +++ b/overview.html @@ -93,7 +93,7 @@

      -

      46 Components

      +

      47 Components

      @@ -117,7 +117,7 @@

      -

      45 Interfaces

      +

      46 Interfaces