mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2024-12-04 18:51:32 +00:00
Remove copyright headers
This commit is contained in:
parent
26b1deadf5
commit
97b911689b
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
|
||||
|
@ -1,4 +1 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<router-outlet></router-outlet>
|
||||
|
@ -1,3 +0,0 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { Title } from '@angular/platform-browser';
|
||||
import { config } from './config';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
export const config = {
|
||||
documentTitle: 'Avatao Tutorials',
|
||||
dashboard: {
|
||||
|
@ -1,6 +1,3 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<textarea [(ngModel)]="console_content"
|
||||
#tfwconsole
|
||||
[scrollTop]="tfwconsole.scrollHeight"
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import "../../assets/scss/variables.scss";
|
||||
|
||||
.tfw-console {
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { WebSocketService } from '../services/websocket.service';
|
||||
import { WebSocketMessage } from '../message-types/websocket-message';
|
||||
|
@ -1,6 +1,3 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<div [attr.class]="layout">
|
||||
<div class="tfw-grid-main-components">
|
||||
<div class="tfw-header"><app-header></app-header></div>
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import "../../assets/scss/variables.scss";
|
||||
@import "../../assets/scss/mixins/layout.scss";
|
||||
@import "../../assets/scss/mixins/scrollbar";
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Component, OnDestroy, OnInit, ChangeDetectorRef, ElementRef, ViewChild } from '@angular/core';
|
||||
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
||||
import { Subscription } from 'rxjs';
|
||||
|
@ -1,6 +1,3 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<div class="tfw-grid-navbar tao-grid-center-center">
|
||||
<img src="images/avatao_logo.svg" routerLink="/" class="tao-grid-center-left tfw-company-logo" alt="">
|
||||
<span class="tfw-header-title">Tutorials</span>
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import "../../assets/scss/variables.scss";
|
||||
|
||||
.tfw-header-title {
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
|
@ -1,6 +1,3 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<div class="tfw-grid-ide-statusbar">
|
||||
<div class="btn-group btn-group-sm flex-wrap tao-grid-center-left">
|
||||
<button *ngFor="let file of files"
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import "../../assets/scss/variables.scss";
|
||||
|
||||
.tfw-grid-ide-statusbar {
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { ChangeDetectorRef, Component, EventEmitter, OnInit, Output } from '@angular/core';
|
||||
|
||||
import { WebSocketService } from '../services/websocket.service';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
export const LanguageMap: { [extension: string]: string; } = {
|
||||
bat: 'bat',
|
||||
clje: 'clojure',
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { WebSocketMessage } from './websocket-message';
|
||||
|
||||
export interface MessageConfig extends WebSocketMessage {
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { SetValueCommand } from './set-value-command';
|
||||
import { WebSocketMessage } from './websocket-message';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { SetValueCommand } from './set-value-command';
|
||||
import { WebSocketMessage } from './websocket-message';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { WebSocketMessage } from './websocket-message';
|
||||
|
||||
export interface FSMUpdateMessage extends WebSocketMessage {
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { WebSocketMessage } from './websocket-message';
|
||||
|
||||
export interface IDEMessage extends WebSocketMessage {
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
export interface LogMessage {
|
||||
stdout: string;
|
||||
stderr: string;
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { LogMessage } from './log-message';
|
||||
import { WebSocketMessage } from './websocket-message';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { LogMessage } from './log-message';
|
||||
import { WebSocketMessage } from './websocket-message';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
export interface SetValueCommand<T> {
|
||||
value: T;
|
||||
}
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
export interface WebSocketMessage {
|
||||
key: string;
|
||||
}
|
||||
|
@ -1,6 +1,3 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<div class="tfw-messages-main">
|
||||
<div class="tfw-grid-message"
|
||||
*ngFor="let message of messages.slice(); let last = last"
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import "../../assets/scss/variables.scss";
|
||||
@import "../../assets/scss/mixins/layout";
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { ChangeDetectorRef, Component, OnInit, EventEmitter, Output } from '@angular/core';
|
||||
import { MessageConfig, MessageData, Message, MessageQueue } from '../message-types/bot-messages';
|
||||
import { MarkdownService } from '../services/markdown.service';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Pipe, PipeTransform } from '@angular/core';
|
||||
import { DomSanitizer } from '@angular/platform-browser';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { Subject } from 'rxjs';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { WebSocketService } from './websocket.service';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { Converter } from 'showdown';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { WebSocketService } from './websocket.service';
|
||||
import { LogMessage } from '../message-types/log-message';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
|
||||
import { WebSocketService } from './websocket.service';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { Terminal } from 'xterm';
|
||||
import * as fit from 'xterm/lib/addons/fit/fit';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { Observable } from 'rxjs';
|
||||
import { webSocket, WebSocketSubject } from 'rxjs/webSocket';
|
||||
|
@ -1,6 +1,3 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<div class="tfw-ide-pin" *ngFor="let layoutIter of enabledLayouts">
|
||||
|
||||
<div>
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import "../../assets/scss/variables.scss";
|
||||
@import "../../assets/scss/mixins/layout.scss";
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
||||
import { config } from '../config';
|
||||
|
||||
|
@ -1,4 +1 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<div #xterm class="tfw-xterm" (window:resize)="fit()"></div>
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import "../../assets/scss/mixins/layout.scss";
|
||||
@import "../../app/dashboard/dashboard.component.scss";
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { AfterViewInit, Component, ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
||||
import { TerminadoService } from '../services/terminado.service';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<textarea [(ngModel)]="messageStr"
|
||||
cols="33"
|
||||
rows="7"
|
||||
|
@ -1,3 +0,0 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { WebSocketService } from '../services/websocket.service';
|
||||
|
||||
|
@ -1,5 +1,2 @@
|
||||
<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
All Rights Reserved. See LICENSE file for details. -->
|
||||
|
||||
<h2>WebComponent is here!</h2>
|
||||
<p>Edit me if you want to write your own component in Angular!</p>
|
||||
|
@ -1,3 +0,0 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
// Edit me if you want to write your own component in Angular!
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
.tao-grid-center-center {
|
||||
justify-self: center;
|
||||
align-self: center;
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
@import
|
||||
'variables',
|
||||
'grid';
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
//
|
||||
// Spaces
|
||||
//
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
$grid-columns-count: 100;
|
||||
$grid-rows-count: 30;
|
||||
|
||||
|
@ -1,6 +1,3 @@
|
||||
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||
// All Rights Reserved. See LICENSE file for details.
|
||||
|
||||
.tao-btn-primary {
|
||||
color: $tao-blue-500;
|
||||
font-size: $font-size-base;
|
||||
|
Loading…
Reference in New Issue
Block a user