Skip to content

Commit

Permalink
Merge pull request #101 from dbarzin/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
dbarzin committed May 6, 2022
2 parents 268f691 + e6ab99f commit 5aeadda
Show file tree
Hide file tree
Showing 22 changed files with 1,328 additions and 12 deletions.
39 changes: 29 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,41 @@
/node_modules
/public/hot
/public/storage
/storage/*.key
/storage/logs
/vendor
.idea/
.env
.env.backup
.phpunit.result.cache
.editorconfig
node_modules
vendor
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.editorconfig
mercator.sublime-project
mercator.sublime-workspace
composer.lock
.idea/
config/datatables-buttons.php
config/datatables-fractal.php
config/datatables-html.php
config/datatables.php
config/excel.php
config/flare.php
config/ide-helper.php
config/ignition.php
config/insights.php
config/mercator-config.php
config/passport.php
config/tinker.php
config/trustedproxy.php
database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php
database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php
database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php
database/migrations/2016_06_01_000004_create_oauth_clients_table.php
database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php
database/migrations/*add_ldap_columns_to_users_table.php
docker/data/
docker/.env
database/migrate/*add_ldap_columns_to_users_table.php

public/hot
public/storage
public/vendor/
resources/views/vendor/
storage/*.key
storage/logs
2 changes: 1 addition & 1 deletion README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ L’élaboration d’une cartographie participe à la protection, à la défense

## Fonctions majeures
- Gestion des vues (écosystème, système d’information, administration, logique, applications, et physique)
- Génération du rapport d'Architecture du Système d'Informtion
- Génération du rapport d'Architecture du Système d'Information
- Dessin des schémas de cartographie
- Calcul des niveaux de conformité
- Extraction en Excel, CSV, PDF … de toutes les listes
Expand Down
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ Ce document reprend les évolutions prévues sur Mercator sur l'année 2022.

- [ ] Généraliser la notion de cartographe à d'atres objets
- [ ] Générer les cartographes dans la gestion des utilisateurs
- [ ] Ajouter des fonctions de manipulation des graphes d'objet
- [ ] Ajouter des fonctions de manipulation des graphes d'objets

5 changes: 5 additions & 0 deletions resources/views/errors/401.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@extends('errors::minimal')

@section('title', __('Unauthorized'))
@section('code', '401')
@section('message', __('Unauthorized'))
5 changes: 5 additions & 0 deletions resources/views/errors/403.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@extends('errors::minimal')

@section('title', __('Forbidden'))
@section('code', '403')
@section('message', __($exception->getMessage() ?: 'Forbidden'))
5 changes: 5 additions & 0 deletions resources/views/errors/404.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@extends('errors::minimal')

@section('title', __('Not Found'))
@section('code', '404')
@section('message', __('Not Found'))
5 changes: 5 additions & 0 deletions resources/views/errors/419.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@extends('errors::minimal')

@section('title', __('Page Expired'))
@section('code', '419')
@section('message', __('Page Expired'))
5 changes: 5 additions & 0 deletions resources/views/errors/429.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@extends('errors::minimal')

@section('title', __('Too Many Requests'))
@section('code', '429')
@section('message', __('Too Many Requests'))
5 changes: 5 additions & 0 deletions resources/views/errors/500.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@extends('errors::minimal')

@section('title', __('Server Error'))
@section('code', '500')
@section('message', __('Server Error'))
5 changes: 5 additions & 0 deletions resources/views/errors/503.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@extends('errors::minimal')

@section('title', __('Service Unavailable'))
@section('code', '503')
@section('message', __('Service Unavailable'))
Loading

0 comments on commit 5aeadda

Please sign in to comment.