├── MIMWebClient
├── Error
│ ├── error.txt
│ └── Error.cs
├── Core
│ ├── Item
│ │ ├── itemReadMe.txt
│ │ ├── ArmourRating.cs
│ │ ├── Action.cs
│ │ ├── Actions
│ │ │ └── use.cs
│ │ ├── Stats.cs
│ │ └── Description.cs
│ ├── World
│ │ ├── Anker
│ │ │ └── GoblinHideoutMap.txt
│ │ └── Items
│ │ │ ├── Weapons
│ │ │ ├── Mob
│ │ │ │ └── mobWeapons.cs
│ │ │ └── Flail
│ │ │ │ └── FlailBasic.cs
│ │ │ ├── MiscEQ
│ │ │ ├── Materials
│ │ │ │ └── Materials.cs
│ │ │ └── Containers
│ │ │ │ └── Containers.cs
│ │ │ ├── Armour
│ │ │ ├── LightArmour
│ │ │ │ ├── Clothing
│ │ │ │ │ ├── Arms
│ │ │ │ │ │ └── ClothingArms.cs
│ │ │ │ │ ├── Feet
│ │ │ │ │ │ └── ClothingFeet.cs
│ │ │ │ │ ├── Head
│ │ │ │ │ │ └── ClothingHead.cs
│ │ │ │ │ └── Hands
│ │ │ │ │ │ └── ClothingHands.cs
│ │ │ │ ├── Padded
│ │ │ │ │ ├── Arms
│ │ │ │ │ │ └── PaddedSleeves.cs
│ │ │ │ │ ├── Legs
│ │ │ │ │ │ └── PaddedLegsBasic.cs
│ │ │ │ │ └── Hands
│ │ │ │ │ │ └── PaddedHandsBasic.cs
│ │ │ │ └── Leather
│ │ │ │ │ └── Waist
│ │ │ │ │ └── LeatherBootBasic.cs
│ │ │ └── MediumArmour
│ │ │ │ └── ScaleMail
│ │ │ │ ├── Head
│ │ │ │ └── ScalemailHead.cs
│ │ │ │ ├── Feet
│ │ │ │ └── ScalemailFeet.cs
│ │ │ │ ├── Legs
│ │ │ │ └── ScalemailLegs.cs
│ │ │ │ ├── Arms
│ │ │ │ └── ScalemailArms.cs
│ │ │ │ ├── Hands
│ │ │ │ └── ScalemailHands.cs
│ │ │ │ └── Body
│ │ │ │ └── ScaleMailBody.cs
│ │ │ └── Consumables
│ │ │ └── Drinks
│ │ │ └── magicalSpring.cs
│ ├── PlayerSetup
│ │ ├── Data
│ │ │ └── Img
│ │ │ │ └── RaceImg
│ │ │ │ ├── elf.jpg
│ │ │ │ ├── dwarf.jpg
│ │ │ │ ├── human.jpg
│ │ │ │ └── darkElf.jpg
│ │ └── PlayerLocation.cs
│ ├── Events
│ │ ├── Cooking.cs
│ │ ├── FindNth.cs
│ │ ├── Fight
│ │ │ └── PlayerStatus.cs
│ │ ├── FindFirstAndLast.cs
│ │ ├── Emote.cs
│ │ └── FindWhere.cs
│ ├── Mob
│ │ ├── Events
│ │ │ ├── Aggro.cs
│ │ │ ├── Welcome.cs
│ │ │ └── Greeting.cs
│ │ ├── Responses.cs
│ │ └── DialogTree.cs
│ ├── Player
│ │ ├── Spells.cs
│ │ ├── Recall.cs
│ │ ├── Death.cs
│ │ ├── Inventory.cs
│ │ ├── Prompt.cs
│ │ ├── Skills
│ │ │ ├── ShortBlades.cs
│ │ │ ├── HandtoHand.cs
│ │ │ ├── Tumble.cs
│ │ │ ├── Axe.cs
│ │ │ ├── Dodge.cs
│ │ │ ├── Flail.cs
│ │ │ ├── Parry.cs
│ │ │ └── Staff.cs
│ │ ├── Classes
│ │ │ └── Reclasses
│ │ │ │ └── Ranger.cs
│ │ └── Races
│ │ │ ├── Elf.cs
│ │ │ └── PlayerRace.cs
│ ├── Room
│ │ ├── Keyword.cs
│ │ ├── Coordinates.cs
│ │ ├── RoomObject.cs
│ │ └── Exit.cs
│ ├── AI
│ │ └── Node.cs
│ ├── Util
│ │ ├── DateTimeExtensions.cs
│ │ └── TruncateString.cs
│ ├── Data.cs
│ └── Loging
│ │ └── Logging.cs
├── UI
│ ├── Css
│ │ ├── Lib
│ │ │ ├── RPGAwesome
│ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ ├── fonts
│ │ │ │ │ ├── rpgawesome-webfont.eot
│ │ │ │ │ ├── rpgawesome-webfont.ttf
│ │ │ │ │ └── rpgawesome-webfont.woff
│ │ │ │ ├── .gitignore
│ │ │ │ ├── scss
│ │ │ │ │ ├── _fixed-width.scss
│ │ │ │ │ ├── _core.scss
│ │ │ │ │ ├── _bordered-pulled.scss
│ │ │ │ │ ├── _larger.scss
│ │ │ │ │ ├── _list.scss
│ │ │ │ │ ├── rpg-awesome.scss
│ │ │ │ │ ├── _stacked.scss
│ │ │ │ │ ├── _spinning.scss
│ │ │ │ │ ├── _path.scss
│ │ │ │ │ ├── _rotated-flipped.scss
│ │ │ │ │ └── _mixins.scss
│ │ │ │ ├── package.json
│ │ │ │ ├── bower.json
│ │ │ │ ├── .versions
│ │ │ │ └── LICENSE.md
│ │ │ ├── bootstrap
│ │ │ │ ├── mixins
│ │ │ │ │ ├── _center-block.scss
│ │ │ │ │ ├── _opacity.scss
│ │ │ │ │ ├── _size.scss
│ │ │ │ │ ├── _text-overflow.scss
│ │ │ │ │ ├── _labels.scss
│ │ │ │ │ ├── _resize.scss
│ │ │ │ │ ├── _progress-bar.scss
│ │ │ │ │ ├── _text-emphasis.scss
│ │ │ │ │ ├── _reset-filter.scss
│ │ │ │ │ ├── _nav-divider.scss
│ │ │ │ │ ├── _background-variant.scss
│ │ │ │ │ ├── _alerts.scss
│ │ │ │ │ ├── _tab-focus.scss
│ │ │ │ │ ├── _nav-vertical-align.scss
│ │ │ │ │ ├── _reset-text.scss
│ │ │ │ │ ├── _border-radius.scss
│ │ │ │ │ ├── _pagination.scss
│ │ │ │ │ ├── _responsive-visibility.scss
│ │ │ │ │ ├── _panels.scss
│ │ │ │ │ ├── _hide-text.scss
│ │ │ │ │ ├── _clearfix.scss
│ │ │ │ │ ├── _list-group.scss
│ │ │ │ │ ├── _table-row.scss
│ │ │ │ │ └── _image.scss
│ │ │ │ ├── _wells.scss
│ │ │ │ ├── _responsive-embed.scss
│ │ │ │ ├── _breadcrumbs.scss
│ │ │ │ ├── _close.scss
│ │ │ │ ├── _component-animations.scss
│ │ │ │ ├── _utilities.scss
│ │ │ │ ├── _thumbnails.scss
│ │ │ │ ├── _pager.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _media.scss
│ │ │ │ ├── _jumbotron.scss
│ │ │ │ ├── _labels.scss
│ │ │ │ └── _badges.scss
│ │ │ ├── _bootstrap-sprockets.scss
│ │ │ ├── _bootstrap-compass.scss
│ │ │ └── _bootstrap-mincer.scss
│ │ └── Sass
│ │ │ ├── builder.scss
│ │ │ └── fonts
│ │ │ ├── slick.eot
│ │ │ ├── slick.ttf
│ │ │ └── slick.woff
│ └── img
│ │ ├── dwarf.jpg
│ │ ├── elf.jpg
│ │ ├── human.jpg
│ │ ├── compass.png
│ │ ├── darkElf.jpg
│ │ ├── elfPort.jpg
│ │ ├── humanPort.jpg
│ │ └── humanPortLarge.jpg
├── error.txt
├── Views
│ ├── _ViewStart.cshtml
│ ├── Home
│ │ ├── About.cshtml
│ │ ├── Contact.cshtml
│ │ └── Partial
│ │ │ └── CharacterCreation
│ │ │ ├── ClassSelection.cshtml
│ │ │ └── RaceSelection.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ └── _Layout.cshtml
│ └── Room
│ │ ├── Details.cshtml
│ │ └── Index.cshtml
├── MyData.db
├── favicon.ico
├── Global.asax
├── Scripts
│ └── _references.js
├── compilerconfig.json
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── Models
│ ├── Admin
│ │ ├── Mob
│ │ │ ├── AddMob.cs
│ │ │ ├── ViewMob.cs
│ │ │ └── UpdateMob.cs
│ │ └── Object
│ │ │ ├── AddObject.cs
│ │ │ ├── UpdateObject.cs
│ │ │ └── ViewObject.cs
│ └── Account.cs
├── ViewModels
│ └── RoomModel.cs
├── App_Start
│ ├── FilterConfig.cs
│ ├── BundleConfig.cs
│ └── RouteConfig.cs
├── LICENSE
├── compilerconfig.json.defaults
├── Global.asax.cs
├── app.config
├── Web.Debug.config
├── Web.Release.config
└── Properties
│ └── AssemblyInfo.cs
├── MIMDashboard
├── Views
│ ├── _ViewStart.cshtml
│ ├── Shared
│ │ └── Error.cshtml
│ └── Home
│ │ └── Index.cshtml
├── favicon.ico
├── Global.asax
├── Areas
│ └── HelpPage
│ │ ├── Views
│ │ ├── Help
│ │ │ ├── DisplayTemplates
│ │ │ │ ├── ImageSample.cshtml
│ │ │ │ ├── TextSample.cshtml
│ │ │ │ ├── SimpleTypeModelDescription.cshtml
│ │ │ │ ├── ComplexTypeModelDescription.cshtml
│ │ │ │ ├── CollectionModelDescription.cshtml
│ │ │ │ ├── InvalidSample.cshtml
│ │ │ │ ├── DictionaryModelDescription.cshtml
│ │ │ │ ├── KeyValuePairModelDescription.cshtml
│ │ │ │ ├── EnumTypeModelDescription.cshtml
│ │ │ │ ├── Samples.cshtml
│ │ │ │ ├── ModelDescriptionLink.cshtml
│ │ │ │ └── ApiGroup.cshtml
│ │ │ ├── ResourceModel.cshtml
│ │ │ ├── Api.cshtml
│ │ │ └── Index.cshtml
│ │ ├── _ViewStart.cshtml
│ │ └── Shared
│ │ │ └── _Layout.cshtml
│ │ ├── ModelDescriptions
│ │ ├── SimpleTypeModelDescription.cs
│ │ ├── DictionaryModelDescription.cs
│ │ ├── CollectionModelDescription.cs
│ │ ├── ParameterAnnotation.cs
│ │ ├── EnumValueDescription.cs
│ │ ├── KeyValuePairModelDescription.cs
│ │ ├── IModelDocumentationProvider.cs
│ │ ├── ModelDescription.cs
│ │ ├── ComplexTypeModelDescription.cs
│ │ ├── EnumTypeModelDescription.cs
│ │ ├── ParameterDescription.cs
│ │ ├── ModelNameAttribute.cs
│ │ └── ModelNameHelper.cs
│ │ ├── SampleGeneration
│ │ ├── SampleDirection.cs
│ │ ├── TextSample.cs
│ │ ├── InvalidSample.cs
│ │ └── ImageSample.cs
│ │ └── HelpPageAreaRegistration.cs
├── Client
│ ├── Sass
│ │ └── style.scss
│ ├── index.html
│ ├── Components
│ │ ├── PlayerStats
│ │ │ ├── reducers
│ │ │ │ ├── player.index.tsx
│ │ │ │ └── player.items.tsx
│ │ │ ├── store
│ │ │ │ └── configureStore.tsx
│ │ │ └── actions
│ │ │ │ └── player.action.tsx
│ │ ├── fake.json
│ │ └── Dashboard.tsx
│ └── index.js
├── .babelrc
├── App_Start
│ ├── FilterConfig.cs
│ ├── RouteConfig.cs
│ ├── WebApiConfig.cs
│ └── BundleConfig.cs
├── Controllers
│ ├── HomeController.cs
│ ├── DashboardController.cs
│ └── ValuesController.cs
├── Startup.cs
├── tsconfig.json
├── Models
│ ├── Core
│ │ ├── PlayerStats.cs
│ │ └── Db.cs
│ ├── AccountViewModels.cs
│ └── IdentityModels.cs
├── Global.asax.cs
├── Results
│ └── ChallengeResult.cs
├── package.json
├── Web.Debug.config
├── Web.Release.config
└── Properties
│ └── AssemblyInfo.cs
├── UpdateDB
├── packages.config
├── App.config
└── Properties
│ └── AssemblyInfo.cs
├── MIM.Test
├── Core
│ ├── Player
│ │ ├── Spells
│ │ │ ├── ArmourTest.cs
│ │ │ └── MagicMissileTest.cs
│ │ └── PlayerTest.cs
│ ├── Events
│ │ └── CommunicateTest.cs
│ └── PlayerSetup
│ │ ├── PlayerStatsTest.cs
│ │ ├── PlayerRaceTest.cs
│ │ └── PlayerClassTest.cs
├── app.config
├── packages.config
└── Properties
│ └── AssemblyInfo.cs
└── LICENSE
/MIMWebClient/Error/error.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/MIMWebClient/Core/Item/itemReadMe.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/MIMWebClient/UI/Css/Lib/RPGAwesome/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/MIMWebClient/UI/Css/Sass/builder.scss:
--------------------------------------------------------------------------------
1 | body {
2 | }
3 |
--------------------------------------------------------------------------------
/MIMWebClient/error.txt:
--------------------------------------------------------------------------------
1 | Date: 30/04/2017 23:33:25,Method: UpdateTime, error:
2 |
--------------------------------------------------------------------------------
/MIMDashboard/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/MIMWebClient/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/MIMDashboard/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMDashboard/favicon.ico
--------------------------------------------------------------------------------
/MIMWebClient/MyData.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/MyData.db
--------------------------------------------------------------------------------
/MIMWebClient/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/favicon.ico
--------------------------------------------------------------------------------
/MIMWebClient/Core/World/Anker/GoblinHideoutMap.txt:
--------------------------------------------------------------------------------
1 |
2 | Hideout
3 | x-x-x x-x-
4 | | |
5 | x-x-x
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/dwarf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/dwarf.jpg
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/elf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/elf.jpg
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/human.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/human.jpg
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/compass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/compass.png
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/darkElf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/darkElf.jpg
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/elfPort.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/elfPort.jpg
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/humanPort.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/humanPort.jpg
--------------------------------------------------------------------------------
/MIMDashboard/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MIMDashboard.WebApiApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/MIMWebClient/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MIMWebClient.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/MIMWebClient/Scripts/_references.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/Scripts/_references.js
--------------------------------------------------------------------------------
/MIMWebClient/UI/img/humanPortLarge.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/img/humanPortLarge.jpg
--------------------------------------------------------------------------------
/MIMWebClient/UI/Css/Sass/fonts/slick.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/Css/Sass/fonts/slick.eot
--------------------------------------------------------------------------------
/MIMWebClient/UI/Css/Sass/fonts/slick.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/Css/Sass/fonts/slick.ttf
--------------------------------------------------------------------------------
/MIMWebClient/UI/Css/Sass/fonts/slick.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/Css/Sass/fonts/slick.woff
--------------------------------------------------------------------------------
/MIMWebClient/compilerconfig.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "outputFile": "UI/Css/master.css",
4 | "inputFile": "UI/Css/Sass/master.scss"
5 | }
6 | ]
--------------------------------------------------------------------------------
/MIMWebClient/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/MIMWebClient/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/MIMDashboard/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml:
--------------------------------------------------------------------------------
1 | @using MIMDashboard.Areas.HelpPage
2 | @model ImageSample
3 |
4 |
--------------------------------------------------------------------------------
/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/elf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/elf.jpg
--------------------------------------------------------------------------------
/MIMWebClient/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/dwarf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/dwarf.jpg
--------------------------------------------------------------------------------
/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/human.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/human.jpg
--------------------------------------------------------------------------------
/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/darkElf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/Core/PlayerSetup/Data/Img/RaceImg/darkElf.jpg
--------------------------------------------------------------------------------
/MIMDashboard/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml:
--------------------------------------------------------------------------------
1 | @using MIMDashboard.Areas.HelpPage
2 | @model TextSample
3 |
4 |
5 | @Model.Text 6 |-------------------------------------------------------------------------------- /MIMWebClient/UI/Css/Lib/RPGAwesome/fonts/rpgawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/Css/Lib/RPGAwesome/fonts/rpgawesome-webfont.eot -------------------------------------------------------------------------------- /MIMWebClient/UI/Css/Lib/RPGAwesome/fonts/rpgawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/Css/Lib/RPGAwesome/fonts/rpgawesome-webfont.ttf -------------------------------------------------------------------------------- /MIMWebClient/UI/Css/Lib/RPGAwesome/fonts/rpgawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamKenneth/ArchaicQuest/HEAD/MIMWebClient/UI/Css/Lib/RPGAwesome/fonts/rpgawesome-webfont.woff -------------------------------------------------------------------------------- /MIMDashboard/Client/Sass/style.scss: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | color:green; 4 | 5 | 6 | } 7 | 8 | p { 9 | color:red; 10 | &:hover { 11 | color: blue; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MIMWebClient/UI/Css/Lib/RPGAwesome/.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore 2 | .DS_Store 3 | .sass-cache/ 4 | node_modules/* 5 | temp/* 6 | upstream 7 | node_modules 8 | phantom_runner.js 9 | start_test.js 10 | -------------------------------------------------------------------------------- /MIMWebClient/UI/Css/Lib/RPGAwesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$ra-css-prefix}-fw { 4 | text-align: center; 5 | width: (18em / 14); 6 | } 7 | -------------------------------------------------------------------------------- /MIMDashboard/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- 1 | @using MIMDashboard.Areas.HelpPage.ModelDescriptions 2 | @model SimpleTypeModelDescription 3 | @Model.Documentation -------------------------------------------------------------------------------- /MIMWebClient/UI/Css/Lib/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /MIMWebClient/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |
Use this Area to provide additional information.
8 | -------------------------------------------------------------------------------- /MIMDashboard/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages 3 | Layout = "~/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /MIMDashboard/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- 1 | namespace MIMDashboard.Areas.HelpPage.ModelDescriptions 2 | { 3 | public class SimpleTypeModelDescription : ModelDescription 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /MIMDashboard/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- 1 | @using MIMDashboard.Areas.HelpPage.ModelDescriptions 2 | @model ComplexTypeModelDescription 3 | @Html.DisplayFor(m => m.Properties, "Parameters") -------------------------------------------------------------------------------- /MIMWebClient/UI/Css/Lib/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /MIMDashboard/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- 1 | namespace MIMDashboard.Areas.HelpPage.ModelDescriptions 2 | { 3 | public class DictionaryModelDescription : KeyValuePairModelDescription 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /MIMDashboard/Client/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |Sample not available.
13 | } -------------------------------------------------------------------------------- /MIMWebClient/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |10 | @Html.ActionLink("Help Page Home", "Index") 11 |
12 |@Model.Documentation
16 |15 | @Html.ActionLink("Help Page Home", "Index") 16 |
17 |Possible enumeration values:
5 | 6 || Name | Value | Description |
|---|---|---|
| @value.Name | 15 |
16 | @value.Value 17 | |
18 |
19 | @value.Documentation 20 | |
21 |
Sample not available.
22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |28 | Provide a general description of your APIs here. 29 |
30 |Terrain: @Model.terrain
@Model.description
17 | 18 |None
48 | } 49 | } 50 | 51 |@room.region
27 | 28 | //find all rooms in region 29 | } 30 | } 31 | 32 |@room.area - @room.title
42 | 43 | 44 | } 45 | } 46 | 47 |@controllerDocumentation
18 | } 19 || API | Description |
|---|---|
| @api.HttpMethod.Method @api.RelativePath | 28 |
29 | @if (api.Documentation != null)
30 | {
31 | @api.Documentation 32 | } 33 | else 34 | { 35 |No documentation available. 36 | } 37 | |
38 |
Loading…
; 27 | } 28 | 29 | return ( 30 |Dashboard, users: {this.state.props.newUsersDay}
34 | 35 |ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS, and JavaScript.
4 | 5 |ASP.NET Web API is a framework that makes it easy to build HTTP services that reach 10 | a broad range of clients, including browsers and mobile devices. ASP.NET Web API 11 | is an ideal platform for building RESTful applications on the .NET Framework.
12 | 13 |NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.
17 | 18 |You can easily find a web hosting company that offers the right mix of features and price for your applications.
22 | 23 |