├── .gitattributes ├── .gitignore ├── 404.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _data ├── alerts.yml ├── definitions.yml ├── glossary.yml ├── strings.yml └── topnav.yml ├── _includes ├── archive.html ├── callout.html ├── custom │ ├── download_tracking.html │ ├── getting_started_series.html │ ├── getting_started_series_next.html │ ├── series_acme.html │ ├── series_acme_next.html │ ├── sidebarconfigs.html │ ├── usermap.html │ └── usermapcomplex.html ├── disqus.html ├── feedback.html ├── footer.html ├── google_analytics.html ├── head.html ├── head_print.html ├── header.html ├── image.html ├── important.html ├── initialize_shuffle.html ├── inline_image.html ├── links.html ├── note.html ├── sidebar.html ├── taglogic.html ├── tip.html ├── toc.html ├── topnav.html └── warning.html ├── _layouts ├── default.html ├── default_print.html ├── none.html ├── page.html ├── page_print.html └── post.html ├── _posts ├── 2015-04-12-test-post-last-year.md ├── 2016-02-24-first-post.md └── 2016-02-26-sample-post-jekyll.md ├── _tooltips ├── baseball.html ├── basketball.html ├── football.html └── soccer.html ├── css ├── bootstrap.min.css ├── customstyles.css ├── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── lavish-bootstrap.css ├── modern-business.css ├── printstyles.css ├── syntax.css ├── theme-blue.css └── theme-green.css ├── download_files ├── CleverLeaf-2.0.tar.gz ├── CloverLeaf-1.1.tar.gz ├── CloverLeaf3D-1.0.tar.gz ├── CloverLeaf3D_ref-1.0.tar.gz ├── CloverLeaf_ref-1.1.tar.gz ├── CoMD_Ref.tgz ├── EpetraBenchmarkTest-1.0.tar.gz ├── HPCCG-1.0.tar.gz ├── MiniAero-v1.0-Mantevo.tar.gz ├── PathFinder_1.0.0.tgz ├── TeaLeaf-1.0.tar.gz ├── TeaLeaf_ref-1.0.tar.gz ├── Test_case_5kx5k.tar.gz ├── Test_case_7kx7k.tar.gz ├── miniAMR_1.0_all.tgz ├── miniAMR_1.0_ref.tgz ├── miniFE-2.0.1.tgz ├── miniFE_ref-2.0.tgz ├── miniGhost_1.0.1.tar.gz ├── miniGhost_ref_1.0.1.tar.gz ├── miniMD_1.2.tgz ├── miniMD_ref-2.0.tgz ├── miniSMAC2D-2.0.tgz └── miniXyce_1.0.tar.gz ├── feed.xml ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── images ├── DontCodesignWithoutThem.png ├── copy-logo_mantevo_blue1.jpg ├── favicon.ico ├── helpapi.svg └── logo_rd100.png ├── index.md ├── js ├── customscripts.js ├── jekyll-search.js ├── jquery.ba-throttle-debounce.min.js ├── jquery.localScroll.min.js ├── jquery.navgoco.min.js ├── jquery.scrollTo.min.js ├── jquery.shuffle.min.js ├── mydoc_scroll.html └── toc.js ├── licenses ├── LICENSE └── LICENSE-BSD-NAVGOCO.txt ├── pages ├── about.md ├── about │ ├── applications.md │ ├── documentation.md │ ├── publications.md │ ├── software_design.md │ └── team.md ├── community.md ├── community │ ├── 2010_miniapps_validation_workshop.md │ ├── contact.md │ ├── contributing_to_mantevo.md │ ├── developer_tools.md │ ├── events.md │ ├── mail_lists.md │ ├── sc12_proxy_app_tutorial.md │ └── test_download.md ├── download.md ├── download │ ├── license.md │ ├── previous_releases.md │ ├── release_note.md │ └── tutorial.md ├── mantevo_suite_1-0_chosen_for_rd_100_award.md ├── mantevo_suite_3-0_release_now_available.md └── packages.md ├── pdf-all.sh ├── pdf-mydoc.sh ├── pdf-product1.sh ├── pdf-product2.sh ├── pdfconfigs ├── config_mydoc_pdf.yml ├── prince-list.txt ├── titlepage.html └── tocpage.html ├── pdfs ├── LAMMPS.pdf ├── MantevoOverview.pdf ├── MantevoReleaseChecklist111714.docx ├── MantevoReleaseFramework1114.docx ├── ProposingNewMantevoCodes.docx ├── SST-SAND2010-5718P.pdf ├── Sierra_MiniFE.pdf ├── mantevo-corporate-contributor-agreement-v02.doc ├── mantevo-individual-contributor-agreement-v02.doc ├── miniXyceValidation.pdf └── ptlin-minife-charon-revised.pdf ├── search.json ├── sitemap.xml ├── tooltips.html ├── tooltips.json └── update.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.gz filter=lfs diff=lfs merge=lfs -text 2 | *.tgz filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-metadata 4 | _pdf 5 | .idea/ 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" 3 | search: exclude 4 | --- 5 | 6 | Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct. 7 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ruby:2.1 2 | MAINTAINER mrafayaleem@gmail.com 3 | 4 | RUN apt-get clean \ 5 | && mv /var/lib/apt/lists /var/lib/apt/lists.broke \ 6 | && mkdir -p /var/lib/apt/lists/partial 7 | 8 | RUN apt-get update 9 | 10 | RUN apt-get install -y \ 11 | node \ 12 | python-pygments \ 13 | && apt-get clean \ 14 | && rm -rf /var/lib/apt/lists/ 15 | 16 | WORKDIR /tmp 17 | ADD Gemfile /tmp/ 18 | ADD Gemfile.lock /tmp/ 19 | RUN bundle install 20 | 21 | VOLUME /src 22 | EXPOSE 4000 23 | 24 | WORKDIR /src 25 | ENTRYPOINT ["jekyll"] 26 | 27 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'github-pages', group: :jekyll_plugins -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | activesupport (7.1.3.2) 5 | base64 6 | bigdecimal 7 | concurrent-ruby (~> 1.0, >= 1.0.2) 8 | connection_pool (>= 2.2.5) 9 | drb 10 | i18n (>= 1.6, < 2) 11 | minitest (>= 5.1) 12 | mutex_m 13 | tzinfo (~> 2.0) 14 | addressable (2.8.6) 15 | public_suffix (>= 2.0.2, < 6.0) 16 | base64 (0.2.0) 17 | bigdecimal (3.1.7) 18 | coffee-script (2.4.1) 19 | coffee-script-source 20 | execjs 21 | coffee-script-source (1.12.2) 22 | colorator (1.1.0) 23 | commonmarker (0.23.10) 24 | concurrent-ruby (1.2.3) 25 | connection_pool (2.4.1) 26 | dnsruby (1.72.0) 27 | simpleidn (~> 0.2.1) 28 | drb (2.2.1) 29 | em-websocket (0.5.3) 30 | eventmachine (>= 0.12.9) 31 | http_parser.rb (~> 0) 32 | ethon (0.16.0) 33 | ffi (>= 1.15.0) 34 | eventmachine (1.2.7) 35 | execjs (2.9.1) 36 | faraday (2.9.0) 37 | faraday-net_http (>= 2.0, < 3.2) 38 | faraday-net_http (3.1.0) 39 | net-http 40 | ffi (1.16.3) 41 | forwardable-extended (2.6.0) 42 | gemoji (4.1.0) 43 | github-pages (231) 44 | github-pages-health-check (= 1.18.2) 45 | jekyll (= 3.9.5) 46 | jekyll-avatar (= 0.8.0) 47 | jekyll-coffeescript (= 1.2.2) 48 | jekyll-commonmark-ghpages (= 0.4.0) 49 | jekyll-default-layout (= 0.1.5) 50 | jekyll-feed (= 0.17.0) 51 | jekyll-gist (= 1.5.0) 52 | jekyll-github-metadata (= 2.16.1) 53 | jekyll-include-cache (= 0.2.1) 54 | jekyll-mentions (= 1.6.0) 55 | jekyll-optional-front-matter (= 0.3.2) 56 | jekyll-paginate (= 1.1.0) 57 | jekyll-readme-index (= 0.3.0) 58 | jekyll-redirect-from (= 0.16.0) 59 | jekyll-relative-links (= 0.6.1) 60 | jekyll-remote-theme (= 0.4.3) 61 | jekyll-sass-converter (= 1.5.2) 62 | jekyll-seo-tag (= 2.8.0) 63 | jekyll-sitemap (= 1.4.0) 64 | jekyll-swiss (= 1.0.0) 65 | jekyll-theme-architect (= 0.2.0) 66 | jekyll-theme-cayman (= 0.2.0) 67 | jekyll-theme-dinky (= 0.2.0) 68 | jekyll-theme-hacker (= 0.2.0) 69 | jekyll-theme-leap-day (= 0.2.0) 70 | jekyll-theme-merlot (= 0.2.0) 71 | jekyll-theme-midnight (= 0.2.0) 72 | jekyll-theme-minimal (= 0.2.0) 73 | jekyll-theme-modernist (= 0.2.0) 74 | jekyll-theme-primer (= 0.6.0) 75 | jekyll-theme-slate (= 0.2.0) 76 | jekyll-theme-tactile (= 0.2.0) 77 | jekyll-theme-time-machine (= 0.2.0) 78 | jekyll-titles-from-headings (= 0.5.3) 79 | jemoji (= 0.13.0) 80 | kramdown (= 2.4.0) 81 | kramdown-parser-gfm (= 1.1.0) 82 | liquid (= 4.0.4) 83 | mercenary (~> 0.3) 84 | minima (= 2.5.1) 85 | nokogiri (>= 1.13.6, < 2.0) 86 | rouge (= 3.30.0) 87 | terminal-table (~> 1.4) 88 | github-pages-health-check (1.18.2) 89 | addressable (~> 2.3) 90 | dnsruby (~> 1.60) 91 | octokit (>= 4, < 8) 92 | public_suffix (>= 3.0, < 6.0) 93 | typhoeus (~> 1.3) 94 | html-pipeline (2.14.3) 95 | activesupport (>= 2) 96 | nokogiri (>= 1.4) 97 | http_parser.rb (0.8.0) 98 | i18n (1.14.4) 99 | concurrent-ruby (~> 1.0) 100 | jekyll (3.9.5) 101 | addressable (~> 2.4) 102 | colorator (~> 1.0) 103 | em-websocket (~> 0.5) 104 | i18n (>= 0.7, < 2) 105 | jekyll-sass-converter (~> 1.0) 106 | jekyll-watch (~> 2.0) 107 | kramdown (>= 1.17, < 3) 108 | liquid (~> 4.0) 109 | mercenary (~> 0.3.3) 110 | pathutil (~> 0.9) 111 | rouge (>= 1.7, < 4) 112 | safe_yaml (~> 1.0) 113 | jekyll-avatar (0.8.0) 114 | jekyll (>= 3.0, < 5.0) 115 | jekyll-coffeescript (1.2.2) 116 | coffee-script (~> 2.2) 117 | coffee-script-source (~> 1.12) 118 | jekyll-commonmark (1.4.0) 119 | commonmarker (~> 0.22) 120 | jekyll-commonmark-ghpages (0.4.0) 121 | commonmarker (~> 0.23.7) 122 | jekyll (~> 3.9.0) 123 | jekyll-commonmark (~> 1.4.0) 124 | rouge (>= 2.0, < 5.0) 125 | jekyll-default-layout (0.1.5) 126 | jekyll (>= 3.0, < 5.0) 127 | jekyll-feed (0.17.0) 128 | jekyll (>= 3.7, < 5.0) 129 | jekyll-gist (1.5.0) 130 | octokit (~> 4.2) 131 | jekyll-github-metadata (2.16.1) 132 | jekyll (>= 3.4, < 5.0) 133 | octokit (>= 4, < 7, != 4.4.0) 134 | jekyll-include-cache (0.2.1) 135 | jekyll (>= 3.7, < 5.0) 136 | jekyll-mentions (1.6.0) 137 | html-pipeline (~> 2.3) 138 | jekyll (>= 3.7, < 5.0) 139 | jekyll-optional-front-matter (0.3.2) 140 | jekyll (>= 3.0, < 5.0) 141 | jekyll-paginate (1.1.0) 142 | jekyll-readme-index (0.3.0) 143 | jekyll (>= 3.0, < 5.0) 144 | jekyll-redirect-from (0.16.0) 145 | jekyll (>= 3.3, < 5.0) 146 | jekyll-relative-links (0.6.1) 147 | jekyll (>= 3.3, < 5.0) 148 | jekyll-remote-theme (0.4.3) 149 | addressable (~> 2.0) 150 | jekyll (>= 3.5, < 5.0) 151 | jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0) 152 | rubyzip (>= 1.3.0, < 3.0) 153 | jekyll-sass-converter (1.5.2) 154 | sass (~> 3.4) 155 | jekyll-seo-tag (2.8.0) 156 | jekyll (>= 3.8, < 5.0) 157 | jekyll-sitemap (1.4.0) 158 | jekyll (>= 3.7, < 5.0) 159 | jekyll-swiss (1.0.0) 160 | jekyll-theme-architect (0.2.0) 161 | jekyll (> 3.5, < 5.0) 162 | jekyll-seo-tag (~> 2.0) 163 | jekyll-theme-cayman (0.2.0) 164 | jekyll (> 3.5, < 5.0) 165 | jekyll-seo-tag (~> 2.0) 166 | jekyll-theme-dinky (0.2.0) 167 | jekyll (> 3.5, < 5.0) 168 | jekyll-seo-tag (~> 2.0) 169 | jekyll-theme-hacker (0.2.0) 170 | jekyll (> 3.5, < 5.0) 171 | jekyll-seo-tag (~> 2.0) 172 | jekyll-theme-leap-day (0.2.0) 173 | jekyll (> 3.5, < 5.0) 174 | jekyll-seo-tag (~> 2.0) 175 | jekyll-theme-merlot (0.2.0) 176 | jekyll (> 3.5, < 5.0) 177 | jekyll-seo-tag (~> 2.0) 178 | jekyll-theme-midnight (0.2.0) 179 | jekyll (> 3.5, < 5.0) 180 | jekyll-seo-tag (~> 2.0) 181 | jekyll-theme-minimal (0.2.0) 182 | jekyll (> 3.5, < 5.0) 183 | jekyll-seo-tag (~> 2.0) 184 | jekyll-theme-modernist (0.2.0) 185 | jekyll (> 3.5, < 5.0) 186 | jekyll-seo-tag (~> 2.0) 187 | jekyll-theme-primer (0.6.0) 188 | jekyll (> 3.5, < 5.0) 189 | jekyll-github-metadata (~> 2.9) 190 | jekyll-seo-tag (~> 2.0) 191 | jekyll-theme-slate (0.2.0) 192 | jekyll (> 3.5, < 5.0) 193 | jekyll-seo-tag (~> 2.0) 194 | jekyll-theme-tactile (0.2.0) 195 | jekyll (> 3.5, < 5.0) 196 | jekyll-seo-tag (~> 2.0) 197 | jekyll-theme-time-machine (0.2.0) 198 | jekyll (> 3.5, < 5.0) 199 | jekyll-seo-tag (~> 2.0) 200 | jekyll-titles-from-headings (0.5.3) 201 | jekyll (>= 3.3, < 5.0) 202 | jekyll-watch (2.2.1) 203 | listen (~> 3.0) 204 | jemoji (0.13.0) 205 | gemoji (>= 3, < 5) 206 | html-pipeline (~> 2.2) 207 | jekyll (>= 3.0, < 5.0) 208 | kramdown (2.4.0) 209 | rexml 210 | kramdown-parser-gfm (1.1.0) 211 | kramdown (~> 2.0) 212 | liquid (4.0.4) 213 | listen (3.9.0) 214 | rb-fsevent (~> 0.10, >= 0.10.3) 215 | rb-inotify (~> 0.9, >= 0.9.10) 216 | mercenary (0.3.6) 217 | mini_portile2 (2.8.6) 218 | minima (2.5.1) 219 | jekyll (>= 3.5, < 5.0) 220 | jekyll-feed (~> 0.9) 221 | jekyll-seo-tag (~> 2.1) 222 | minitest (5.22.3) 223 | mutex_m (0.2.0) 224 | net-http (0.4.1) 225 | uri 226 | nokogiri (1.16.5) 227 | mini_portile2 (~> 2.8.2) 228 | racc (~> 1.4) 229 | octokit (4.25.1) 230 | faraday (>= 1, < 3) 231 | sawyer (~> 0.9) 232 | pathutil (0.16.2) 233 | forwardable-extended (~> 2.6) 234 | public_suffix (5.0.4) 235 | racc (1.7.3) 236 | rb-fsevent (0.11.2) 237 | rb-inotify (0.10.1) 238 | ffi (~> 1.0) 239 | rexml (3.3.9) 240 | rouge (3.30.0) 241 | rubyzip (2.3.2) 242 | safe_yaml (1.0.5) 243 | sass (3.7.4) 244 | sass-listen (~> 4.0.0) 245 | sass-listen (4.0.0) 246 | rb-fsevent (~> 0.9, >= 0.9.4) 247 | rb-inotify (~> 0.9, >= 0.9.7) 248 | sawyer (0.9.2) 249 | addressable (>= 2.3.5) 250 | faraday (>= 0.17.3, < 3) 251 | simpleidn (0.2.1) 252 | unf (~> 0.1.4) 253 | terminal-table (1.8.0) 254 | unicode-display_width (~> 1.1, >= 1.1.1) 255 | typhoeus (1.4.1) 256 | ethon (>= 0.9.0) 257 | tzinfo (2.0.6) 258 | concurrent-ruby (~> 1.0) 259 | unf (0.1.4) 260 | unf_ext 261 | unf_ext (0.0.9.1) 262 | unicode-display_width (1.8.0) 263 | uri (0.13.0) 264 | 265 | PLATFORMS 266 | ruby 267 | 268 | DEPENDENCIES 269 | github-pages 270 | 271 | BUNDLED WITH 272 | 2.5.3 273 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mantevo.github.io 2 | 3 | Core Mantevo Repository containing common resources 4 | 5 | 6 | # Instructions on editting and maintaining repos 7 | 8 | ## Running locally 9 | 10 | Running `bundle exec jekyll serve` test website locally before pushing to Github repo 11 | 12 | ## Edit top navigation 13 | 14 | Material on top navigation is located in `_data/topnav.yml` 15 | Items on top navigation are listed in order with **title** and **url** 16 | _Note_: Careful on indentation. Wrong indentation leads to build page errors. 17 | 18 | ## Edit home page 19 | 20 | Home page is in **index.md** 21 | 22 | ## Edit contents 23 | 24 | All the contents are in **pages** directory and located in appropriate sub_folders correspond to the website 25 | All the contents are written in `markdown` and editable. 26 | 27 | --- 28 | 29 | More details on update website can be found [here](https://cse-software.github.io/Howto/MantevoMaintenance.html) 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | repository: duongdo27/Mantevo 2 | 3 | output: web 4 | # this property is useful for conditional filtering of content that is separate from the PDF. 5 | 6 | topnav_title: Mantevo 7 | # this appears on the top navigation bar next to the home button 8 | 9 | site_title: Mantevo 10 | # this appears in the html browser tab for the site title (seen mostly by search engines, not users) 11 | 12 | company_name: Mantevo Organization 13 | # this appears in the footer 14 | 15 | github_editme_path: duongdo27/Mantevo/gh-pages/ 16 | # if you're using Github, provide the basepath to the branch you've created for reviews, following the sample here. if not, leave this value blank. 17 | 18 | disqus_shortname: dhdmantevo 19 | # if you're using disqus for comments, add the shortname here. if not, leave this value blank. 20 | 21 | host: 127.0.0.1 22 | # the preview server used. Leave as is. 23 | 24 | port: 4002 25 | # the port where the preview is rendered. You can leave this as is unless you have other Jekyll builds using this same port that might cause conflicts. in that case, use another port such as 4006. 26 | 27 | exclude: 28 | - .idea/ 29 | - .gitignore 30 | # these are the files and directories that jekyll will exclude from the build 31 | 32 | feedback_subject_line: Mantevo 33 | 34 | feedback_email: maherou@sandia.gov 35 | # used as a contact email for the Feedback link in the top navigation bar 36 | 37 | # feedback_disable: true 38 | # if you uncomment the previous line, the Feedback link gets removed 39 | 40 | # feedback_text: "Need help?" 41 | # if you uncomment the previous line, it changes the Feedback text 42 | 43 | # feedback_link: "http://helpy.io/" 44 | # if you uncomment the previous line, it changes where the feedback link points to 45 | 46 | highlighter: rouge 47 | # library used for syntax highlighting 48 | 49 | markdown: kramdown 50 | kramdown: 51 | input: GFM 52 | auto_ids: true 53 | hard_wrap: false 54 | syntax_highlighter: rouge 55 | 56 | # filter used to process markdown. note that kramdown differs from github-flavored markdown in some subtle ways 57 | 58 | collections: 59 | tooltips: 60 | output: false 61 | # collections are declared here. this renders the content in _tooltips and processes it, but doesn't output it as actual files in the output unless you change output to true 62 | 63 | defaults: 64 | - 65 | scope: 66 | path: "" 67 | type: "pages" 68 | values: 69 | layout: "page" 70 | comments: true 71 | search: true 72 | sidebar: home_sidebar 73 | - 74 | scope: 75 | path: "" 76 | type: "tooltips" 77 | values: 78 | layout: "page" 79 | comments: true 80 | search: true 81 | tooltip: true 82 | 83 | - 84 | scope: 85 | path: "" 86 | type: "posts" 87 | values: 88 | layout: "post" 89 | comments: true 90 | search: true 91 | sidebar: home_sidebar 92 | 93 | # these are defaults used for the frontmatter for these file types 94 | 95 | sidebars: 96 | - home_sidebar 97 | - mydoc_sidebar 98 | - product1_sidebar 99 | - product2_sidebar 100 | - other 101 | 102 | description: "Intended as a documentation theme based on Jekyll for technical writers documenting software and other technical products, this theme has all the elements you would need to handle multiple products with both multi-level sidebar navigation, tags, and other documentation features." 103 | # the description is used in the feed.xml file 104 | 105 | # needed for sitemap.xml file only 106 | url: http://mantevo.github.io 107 | 108 | google_analytics: true 109 | 110 | google_analytics_id: "UA-107396815-1" 111 | -------------------------------------------------------------------------------- /_data/alerts.yml: -------------------------------------------------------------------------------- 1 | tip: '