Skip to content

Commit

Permalink
more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
GitPaulo committed May 2, 2018
1 parent 2272b54 commit 999d057
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 1 deletion.
4 changes: 4 additions & 0 deletions GroupProjectRASQL/View/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
File: app.vue
Description: Definition of the markup for the navigation between views.
-->
<template>
<div class="container-fluid app d-flex flex-column">
<nav class="nav-main navbar navbar-dark bg-primary">
Expand Down
2 changes: 1 addition & 1 deletion GroupProjectRASQL/View/src/assets/sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ body{
padding: 16px;
}

/* Code Mirro CSS */
/* Code Mirror CSS */
.codemirror{
padding: 0px;
overflow: hidden;
Expand Down
6 changes: 6 additions & 0 deletions GroupProjectRASQL/View/src/components/views/output.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
File: output.vue
Description: Output view markup for the user interface view 1.
Here the user iteracts with the parsed query's tree.
He is allowed to implement heuristics via UI
-->
<template>
<div>
<div v-if="model.SQL != ''" class="row" style="margin-bottom: 0px;">
Expand Down
6 changes: 6 additions & 0 deletions GroupProjectRASQL/View/src/components/views/schema.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
File: schema.vue
Description: Schema view mark up for the user interface.
Here the user is able to create data tables for use in
the application.
-->
<template>
<div class="container-fluid app d-flex flex-column">
<div class="row d-flex flex-row" style="flex-shrink: 0;">
Expand Down
4 changes: 4 additions & 0 deletions GroupProjectRASQL/View/src/entry.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* File: entry.js
* Description: build vue option function.
*/
import Vue from 'vue'
import App from './App.vue'
import {install, vueInstanceOption} from './install'
Expand Down
4 changes: 4 additions & 0 deletions GroupProjectRASQL/View/src/install.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* File: install.js
* Description: Defines install: require for vue, style and component dependencies.
*/
function install(Vue) {
require('./assets/sass/main.scss');
require('bootstrap');
Expand Down
4 changes: 4 additions & 0 deletions GroupProjectRASQL/View/src/integrated.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* File: integrated.js
* Description: imports and installs vue and neutronium dependencies and sets options for the instance.
*/
import Vue from 'vue'
import App from './App.vue'
import { install, vueInstanceOption } from './install'
Expand Down
4 changes: 4 additions & 0 deletions GroupProjectRASQL/View/src/main.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* File: main.js
* Description: imports and installs vue and neutronium dependencies.
*/
import Vue from 'vue'
import App from './App.vue'
import rawVm from '../data/vm'
Expand Down

0 comments on commit 999d057

Please sign in to comment.