Skip to content

Commit

Permalink
Add HTML documentation resource
Browse files Browse the repository at this point in the history
  • Loading branch information
rcarvello committed May 24, 2024
1 parent 1c8ba1b commit f83066a
Show file tree
Hide file tree
Showing 57 changed files with 128 additions and 0 deletions.
Binary file added wiki/wiki_resource/CustomerManagerApp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/CustomerManagerTemplates.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/DataRepeater.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-01b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-02 - templates.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-02 - views.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-02 models.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-02-controllers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-all.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC-structure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVC.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/HMVCFS.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/RBACdb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/WebMVCFolders.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/WebMVCRequestHandling.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/ecommerce-grab-00.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/ecommerce-grab-01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/ecommerce-grab-02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/ecommerce-grab-03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/ecommerce-grab-04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/home_web_pge_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wiki/wiki_resource/home_web_pge_02.png
Binary file added wiki/wiki_resource/home_web_pge_03.png
Binary file added wiki/wiki_resource/home_web_pge_04.png
Binary file added wiki/wiki_resource/inventory_output.png
Binary file added wiki/wiki_resource/locale_folders.png
Binary file added wiki/wiki_resource/locale_gui.png
Binary file added wiki/wiki_resource/locale_gui_en.png
Binary file added wiki/wiki_resource/locale_gui_it.png
Binary file added wiki/wiki_resource/locale_tree.png
Binary file added wiki/wiki_resource/locallization.png
Binary file added wiki/wiki_resource/minierp_structure.png
Binary file added wiki/wiki_resource/mvc_soc_sot_sor_matrix.png
128 changes: 128 additions & 0 deletions wiki/wiki_resource/mvc_wiki.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
-- MySQL Script for mvc_wiki database

-- Disabling DB constraints checking
SET @OLD_UNIQUE_CHECKS = @@UNIQUE_CHECKS, UNIQUE_CHECKS = 0;
SET @OLD_FOREIGN_KEY_CHECKS = @@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS = 0;
SET @OLD_SQL_MODE = @@SQL_MODE, SQL_MODE = 'TRADITIONAL,ALLOW_INVALID_DATES';


-- -----------------------------------------------------
-- Create the schema for a simple database named mvc_wiki
-- -----------------------------------------------------
CREATE DATABASE IF NOT EXISTS `mvc_wiki` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `mvc_wiki`;

-- -----------------------------------------------------
-- Create table `user`
-- Stores users information
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `user`
(
`user_id` INT NOT NULL AUTO_INCREMENT,
`user_name` VARCHAR(45) NULL,
`user_email` VARCHAR(100) NULL,
PRIMARY KEY (`user_id`)
)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Create table `application_role`
-- Stores all available application roles
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `application_role`
(
`role_id` INT NOT NULL AUTO_INCREMENT,
`role_name` VARCHAR(45) NULL,
PRIMARY KEY (`role_id`)
)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Create table `users_roles`
-- Stores users roles
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `users_roles`
(
`user_id` INT NOT NULL,
`role_id` INT NOT NULL,
PRIMARY KEY (`user_id`, `role_id`),
INDEX `fk_user_has_application_role_application_role1_idx` (`role_id` ASC),
INDEX `fk_user_has_application_role_user_idx` (`user_id` ASC),
CONSTRAINT `fk_user_has_application_role_user`
FOREIGN KEY (`user_id`)
REFERENCES `user` (`user_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_user_has_application_role_application_role1`
FOREIGN KEY (`role_id`)
REFERENCES `application_role` (`role_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION
)
ENGINE = InnoDB;


SET SQL_MODE = @OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS = @OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS = @OLD_UNIQUE_CHECKS;

-- -----------------------------------------------------
-- Sample data for table `user`
-- -----------------------------------------------------
START TRANSACTION;

INSERT INTO `user` (`user_id`, `user_name`, `user_email`)
VALUES (1, 'Mark', '[email protected]');
INSERT INTO `user` (`user_id`, `user_name`, `user_email`)
VALUES (2, 'Elen', '[email protected]');
INSERT INTO `user` (`user_id`, `user_name`, `user_email`)
VALUES (3, 'John', '[email protected]');

COMMIT;


-- -----------------------------------------------------
-- Sample data data for table `application_role`
-- -----------------------------------------------------
START TRANSACTION;

INSERT INTO `application_role` (`role_id`, `role_name`)
VALUES (5, 'admin');
INSERT INTO `application_role` (`role_id`, `role_name`)
VALUES (4, 'webmaster');
INSERT INTO `application_role` (`role_id`, `role_name`)
VALUES (3, 'moderator');
INSERT INTO `application_role` (`role_id`, `role_name`)
VALUES (2, 'editor');
INSERT INTO `application_role` (`role_id`, `role_name`)
VALUES (1, 'user');

COMMIT;


-- -----------------------------------------------------
-- Data for table `users_roles`
-- -----------------------------------------------------
START TRANSACTION;

INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (1, 5);
INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (1, 4);
INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (1, 3);
INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (2, 3);
INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (2, 2);
INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (2, 1);
INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (3, 2);
INSERT INTO `users_roles` (`user_id`, `role_id`)
VALUES (3, 1);

COMMIT;

Binary file added wiki/wiki_resource/naming_convention.png
Binary file added wiki/wiki_resource/nested_blocks00.png
Binary file added wiki/wiki_resource/nested_blocks01.png
Binary file added wiki/wiki_resource/nested_blocks02.png
Binary file added wiki/wiki_resource/nested_blocks03.png
Binary file added wiki/wiki_resource/nested_blocks04.png
Binary file added wiki/wiki_resource/placeholder.png
Binary file added wiki/wiki_resource/programming-languages.png
Binary file added wiki/wiki_resource/request-handling-in-webmvc.png
Binary file added wiki/wiki_resource/request-handling-view.png
Binary file added wiki/wiki_resource/system_architecture.png
Binary file added wiki/wiki_resource/umlcomponent.png
Binary file added wiki/wiki_resource/users_roles_array.png
Binary file added wiki/wiki_resource/view_tree._01.png
Binary file added wiki/wiki_resource/view_tree_02.png
Binary file added wiki/wiki_resource/view_tree_mvc.png
Binary file added wiki/wiki_resource/wiki_db.png

0 comments on commit f83066a

Please sign in to comment.