Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamSteffanick committed Feb 11, 2019
1 parent bc84099 commit 317be71
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 31 deletions.
25 changes: 16 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

## [0.2.1] - 2019-02-11
### Changed
* /webapp/modules/ → [/modules/]

### Removed
* /webapp/

## [0.2.0] - 2018-09-25
### Added
* [/webapp/modules/]
* /webapp/modules/
* [bootstrap.xquery]
* `bootstrap:card()` ([bootstrap.xquery])
* `bootstrap:card-layout()` ([bootstrap.xquery])
Expand Down Expand Up @@ -54,7 +61,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [0.0.2] - 2018-04-03
### Added
* [/webapp/]
* /webapp/
* [model.xquery]
* [view.xquery]
* [controller.xquery]
Expand All @@ -70,7 +77,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
* [LISENCE]
* [README.md]

[Unreleased]: https://github.com/AdamSteffanick/mvc-xquery/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/AdamSteffanick/mvc-xquery/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/AdamSteffanick/mvc-xquery/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/AdamSteffanick/mvc-xquery/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/AdamSteffanick/mvc-xquery/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/AdamSteffanick/mvc-xquery/compare/v0.0.2...v0.1.0
Expand All @@ -82,11 +90,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
[LISENCE]: https://github.com/AdamSteffanick/mvc-xquery/blob/master/LICENSE
[README.md]: ./README.md

[/webapp/]: ./webapp/
[/webapp/modules/]: ./webapp/modules/
[model.xquery]: ./webapp/model.xquery
[view.xquery]: ./webapp/view.xquery
[controller.xquery]: ./webapp/controller.xquery
[bootstrap.xquery]: ./webapp/modules/bootstrap.xquery
[/modules/]: ./modules/
[model.xquery]: ./model.xquery
[view.xquery]: ./view.xquery
[controller.xquery]: ./controller.xquery
[bootstrap.xquery]: ./modules/bootstrap.xquery

[shields.io]: http://shields.io/
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Copyright (C) 2018 [Adam Steffanick](https://www.steffanick.com/adam/)
* [**Latest release**](https://github.com/AdamSteffanick/mvc-xquery/releases/latest)

## Documentation
### BaseX 9.0.2:
* Download this repository and place all files within the appropriate subdirectories of `basex`
### BaseX 9.1.2:
* Download this repository and place all files within the `webapp` subdirectory of `basex`
* Modify [model.xquery], [view.xquery], and [controller.xquery] as needed
* Run the [BaseX HTTP Server](http://docs.basex.org/wiki/Startup#HTTP_Server)
* Navigate to http://localhost:8984 in your browser
Expand Down Expand Up @@ -41,14 +41,13 @@ mvc-xquery
├── CHANGELOG.md
├── LICENSE
├── README.md
└── webapp
├── controller.xquery
├── model.xquery
├── modules
│   └── bootstrap.xquery
└── view.xquery
2 directories, 7 files
├── controller.xquery
├── model.xquery
├── modules
│   └── bootstrap.xquery
└── view.xquery
1 directory, 7 files
```

## License
Expand All @@ -59,12 +58,12 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.

[CHANGELOG]: ./CHANGELOG.md
[version-badge]: https://img.shields.io/badge/mvc--xquery-v0.2.0-0038e2.svg?style=flat-square
[version-badge]: https://img.shields.io/badge/mvc--xquery-v0.2.1-0038e2.svg?style=flat-square
[LICENSE]: ./LICENSE
[license-badge]: https://img.shields.io/badge/license-GPL-0038e2.svg?style=flat-square

[model.xquery]: ./webapp/model.xquery
[view.xquery]: ./webapp/view.xquery
[controller.xquery]: ./webapp/controller.xquery
[model.xquery]: ./model.xquery
[view.xquery]: ./view.xquery
[controller.xquery]: ./controller.xquery

[Bootstrap]: https://getbootstrap.com/
4 changes: 2 additions & 2 deletions webapp/controller.xquery → controller.xquery
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ xquery version "3.1" encoding "UTF-8";
:
: @author Adam Steffanick
: @see https://www.steffanick.com/adam/
: @version v0.2.0
: @version v0.2.1
: @see https://github.com/AdamSteffanick/mvc-xquery
: September 25, 2018
: February 11, 2019
: @since v0.0.2
:
: This program is free software: you can redistribute it and/or modify
Expand Down
4 changes: 2 additions & 2 deletions webapp/model.xquery → model.xquery
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ xquery version "3.1" encoding "UTF-8";
:
: @author Adam Steffanick
: @see https://www.steffanick.com/adam/
: @version v0.2.0
: @version v0.2.1
: @see https://github.com/AdamSteffanick/mvc-xquery
: September 25, 2018
: February 11, 2019
: @since v0.0.2
:
: This program is free software: you can redistribute it and/or modify
Expand Down
4 changes: 2 additions & 2 deletions webapp/modules/bootstrap.xquery → modules/bootstrap.xquery
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ xquery version "3.1" encoding "UTF-8";
:
: @author Adam Steffanick
: @see https://www.steffanick.com/adam/
: @version v0.2.0
: @version v0.2.1
: @see https://github.com/AdamSteffanick/mvc-xquery
: September 25, 2018
: February 11, 2019
: @since v0.2.0
:
: This program is free software: you can redistribute it and/or modify
Expand Down
4 changes: 2 additions & 2 deletions webapp/view.xquery → view.xquery
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ xquery version "3.1" encoding "UTF-8";
:
: @author Adam Steffanick
: @see https://www.steffanick.com/adam/
: @version v0.2.0
: @version v0.2.1
: @see https://github.com/AdamSteffanick/mvc-xquery
: September 25, 2018
: February 11, 2019
: @since v0.0.2
:
: This program is free software: you can redistribute it and/or modify
Expand Down

0 comments on commit 317be71

Please sign in to comment.