New release 0.9.5: added news, updated download page
diff --git a/websites/www.eclipse.org-app4mc-hugo/site/config.toml b/websites/www.eclipse.org-app4mc-hugo/site/config.toml index 6a7da3f..bc1bdc1 100644 --- a/websites/www.eclipse.org-app4mc-hugo/site/config.toml +++ b/websites/www.eclipse.org-app4mc-hugo/site/config.toml
@@ -9,6 +9,8 @@ canonifyURLs = true +pygmentsUseClasses=true + [params] description = "APP4MC website" google_tag_manager = "GTM-5WLCZXC"
diff --git a/websites/www.eclipse.org-app4mc-hugo/site/content/downloads/index.md b/websites/www.eclipse.org-app4mc-hugo/site/content/downloads/index.md index 1e442bf..cca3dc8 100644 --- a/websites/www.eclipse.org-app4mc-hugo/site/content/downloads/index.md +++ b/websites/www.eclipse.org-app4mc-hugo/site/content/downloads/index.md
@@ -1,5 +1,5 @@ --- -date: 2019-05-02 +date: 2019-08-02 title: "Downloads" weight: 5 hide_sidebar: "true" @@ -7,27 +7,25 @@ --- -### **Release 0.9.4** -##### 2019-04-30 - based on Oxygen.3a +### **Release 0.9.5** +##### 2019-07-31 - based on Photon --- #### Products -* APP4MC Platform 0.9.4 for **Linux (64 Bit)** - [Zip-archive]( -http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.4/org.eclipse.app4mc.platform-0.9.4-20190430-133945-linux.gtk.x86_64.zip) (362 MB) +* APP4MC Platform 0.9.5 for **Linux (64 Bit)** - [Zip-archive]( +http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.5/org.eclipse.app4mc.platform-0.9.5-20190731-125340-linux.gtk.x86_64.zip) (385 MB) -* APP4MC Platform 0.9.4 for **OSX (64 Bit)** - [Zip-archive](http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.4/org.eclipse.app4mc.platform-0.9.4-20190430-133945-macosx.cocoa.x86_64.zip) (362 MB) +* APP4MC Platform 0.9.5 for **OSX (64 Bit)** - [Zip-archive](http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.5/org.eclipse.app4mc.platform-0.9.5-20190731-125340-macosx.cocoa.x86_64.zip) (385 MB) -* APP4MC Platform 0.9.4 for **Windows (32 Bit)** - [Zip-archive](http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.4/org.eclipse.app4mc.platform-0.9.4-20190430-133945-win32.win32.x86.zip) (362 MB) - -* APP4MC Platform 0.9.4 for **Windows (64 Bit)** - [Zip-archive](http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.4/org.eclipse.app4mc.platform-0.9.4-20190430-133945-win32.win32.x86_64.zip) (362 MB) +* APP4MC Platform 0.9.5 for **Windows (64 Bit)** - [Zip-archive](http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.5/org.eclipse.app4mc.platform-0.9.5-20190731-125340-win32.win32.x86_64.zip) (385 MB) #### Update Site -* direct link: http://download.eclipse.org/app4mc/updatesites/releases/0.9.4/ +* direct link: http://download.eclipse.org/app4mc/updatesites/releases/0.9.5/ -* for offline installation: [Zip-archive of APP4MC 0.9.4 p2 repository](http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.4/org.eclipse.app4mc.p2repo-0.9.4.zip) +* for offline installation: [Zip-archive of APP4MC 0.9.5 p2 repository](http://www.eclipse.org/downloads/download.php?file=/app4mc/products/releases/0.9.5/org.eclipse.app4mc.p2repo-0.9.5.zip) ---
diff --git a/websites/www.eclipse.org-app4mc-hugo/site/content/news/2019-08-02_release_0-9-5.md b/websites/www.eclipse.org-app4mc-hugo/site/content/news/2019-08-02_release_0-9-5.md new file mode 100644 index 0000000..0a6df70 --- /dev/null +++ b/websites/www.eclipse.org-app4mc-hugo/site/content/news/2019-08-02_release_0-9-5.md
@@ -0,0 +1,29 @@ +--- +date: 2019-08-02 +title: "APP4MC - Release 0.9.5 published" +categories: ["news"] +slug: "2019-08-02-release-0-9-5" +--- + +We released a new version of APP4MC with a couple of new features and improvements. + +<!--more--> + +__Extract of APP4MC 0.9.5__ + +Model handling + + Model migration support (0.9.4 -> 0.9.5) + New model validation framework + Extended validations (bounds, offsets, ...) + + + +Model changes / Improvements + + Consolidated call graph: items of tasks and runnables are unified, call sequences are removed + Simplified clock definitions (used in scenarios of variable rate stimuli) + + + +* Visit the [APP4MC download page](http://projects.eclipse.org/projects/technology.app4mc/downloads)
diff --git a/websites/www.eclipse.org-app4mc-hugo/site/content/snippets/index.md b/websites/www.eclipse.org-app4mc-hugo/site/content/snippets/index.md new file mode 100644 index 0000000..084f314 --- /dev/null +++ b/websites/www.eclipse.org-app4mc-hugo/site/content/snippets/index.md
@@ -0,0 +1,38 @@ +--- +date: 2019-06-24 +menu: + main: + parent: "About" +title: Snippets +weight: 7 +hide_sidebar: "true" +--- + +--- +### Java +--- + +{{< highlight java "linenos=table,linenostart=1" >}} +/** + * Basic validations for AMALTHEA + */ + +@ValidationGroup( + severity = Severity.ERROR, + validations = { + AmBasicQuantity.class, + AmBasicTimeRange.class + } +) + +@ValidationGroup( + severity = Severity.WARNING, + validations = { + AmBasicCustomPropertyKey.class + } +) + +public class BasicProfile implements IProfile { + // Do nothing +} +{{< / highlight >}}
diff --git a/websites/www.eclipse.org-app4mc-hugo/site/static/css/syntax.css b/websites/www.eclipse.org-app4mc-hugo/site/static/css/syntax.css new file mode 100644 index 0000000..c477b04 --- /dev/null +++ b/websites/www.eclipse.org-app4mc-hugo/site/static/css/syntax.css
@@ -0,0 +1,68 @@ +/* Background */ .chroma { background-color: #f0f0f0 } +/* Error */ .chroma .err { } +/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; } +/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; } +/* LineHighlight */ .chroma .hl { display: block; width: 100%;background-color: #ffffcc } +/* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } +/* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } +/* Keyword */ .chroma .k { color: #007020; font-weight: bold } +/* KeywordConstant */ .chroma .kc { color: #007020; font-weight: bold } +/* KeywordDeclaration */ .chroma .kd { color: #007020; font-weight: bold } +/* KeywordNamespace */ .chroma .kn { color: #007020; font-weight: bold } +/* KeywordPseudo */ .chroma .kp { color: #007020 } +/* KeywordReserved */ .chroma .kr { color: #007020; font-weight: bold } +/* KeywordType */ .chroma .kt { color: #902000 } +/* NameAttribute */ .chroma .na { color: #4070a0 } +/* NameBuiltin */ .chroma .nb { color: #007020 } +/* NameClass */ .chroma .nc { color: #0e84b5; font-weight: bold } +/* NameConstant */ .chroma .no { color: #60add5 } +/* NameDecorator */ .chroma .nd { color: #555555; font-weight: bold } +/* NameEntity */ .chroma .ni { color: #d55537; font-weight: bold } +/* NameException */ .chroma .ne { color: #007020 } +/* NameFunction */ .chroma .nf { color: #06287e } +/* NameLabel */ .chroma .nl { color: #002070; font-weight: bold } +/* NameNamespace */ .chroma .nn { color: #0e84b5; font-weight: bold } +/* NameTag */ .chroma .nt { color: #062873; font-weight: bold } +/* NameVariable */ .chroma .nv { color: #bb60d5 } +/* LiteralString */ .chroma .s { color: #4070a0 } +/* LiteralStringAffix */ .chroma .sa { color: #4070a0 } +/* LiteralStringBacktick */ .chroma .sb { color: #4070a0 } +/* LiteralStringChar */ .chroma .sc { color: #4070a0 } +/* LiteralStringDelimiter */ .chroma .dl { color: #4070a0 } +/* LiteralStringDoc */ .chroma .sd { color: #4070a0; font-style: italic } +/* LiteralStringDouble */ .chroma .s2 { color: #4070a0 } +/* LiteralStringEscape */ .chroma .se { color: #4070a0; font-weight: bold } +/* LiteralStringHeredoc */ .chroma .sh { color: #4070a0 } +/* LiteralStringInterpol */ .chroma .si { color: #70a0d0; font-style: italic } +/* LiteralStringOther */ .chroma .sx { color: #c65d09 } +/* LiteralStringRegex */ .chroma .sr { color: #235388 } +/* LiteralStringSingle */ .chroma .s1 { color: #4070a0 } +/* LiteralStringSymbol */ .chroma .ss { color: #517918 } +/* LiteralNumber */ .chroma .m { color: #40a070 } +/* LiteralNumberBin */ .chroma .mb { color: #40a070 } +/* LiteralNumberFloat */ .chroma .mf { color: #40a070 } +/* LiteralNumberHex */ .chroma .mh { color: #40a070 } +/* LiteralNumberInteger */ .chroma .mi { color: #40a070 } +/* LiteralNumberIntegerLong */ .chroma .il { color: #40a070 } +/* LiteralNumberOct */ .chroma .mo { color: #40a070 } +/* Operator */ .chroma .o { color: #666666 } +/* OperatorWord */ .chroma .ow { color: #007020; font-weight: bold } +/* Comment */ .chroma .c { color: #60a0b0; font-style: italic } +/* CommentHashbang */ .chroma .ch { color: #60a0b0; font-style: italic } +/* CommentMultiline */ .chroma .cm { color: #60a0b0; font-style: italic } +/* CommentSingle */ .chroma .c1 { color: #60a0b0; font-style: italic } +/* CommentSpecial */ .chroma .cs { color: #60a0b0; background-color: #fff0f0 } +/* CommentPreproc */ .chroma .cp { color: #007020 } +/* CommentPreprocFile */ .chroma .cpf { color: #007020 } +/* GenericDeleted */ .chroma .gd { color: #a00000 } +/* GenericEmph */ .chroma .ge { font-style: italic } +/* GenericError */ .chroma .gr { color: #ff0000 } +/* GenericHeading */ .chroma .gh { color: #000080; font-weight: bold } +/* GenericInserted */ .chroma .gi { color: #00a000 } +/* GenericOutput */ .chroma .go { color: #888888 } +/* GenericPrompt */ .chroma .gp { color: #c65d09; font-weight: bold } +/* GenericStrong */ .chroma .gs { font-weight: bold } +/* GenericSubheading */ .chroma .gu { color: #800080; font-weight: bold } +/* GenericTraceback */ .chroma .gt { color: #0044dd } +/* GenericUnderline */ .chroma .gl { text-decoration: underline } +/* TextWhitespace */ .chroma .w { color: #bbbbbb }
diff --git a/websites/www.eclipse.org-app4mc-hugo/site/themes/hugo-solstice-theme/layouts/partials/head_includes.html b/websites/www.eclipse.org-app4mc-hugo/site/themes/hugo-solstice-theme/layouts/partials/head_includes.html new file mode 100644 index 0000000..fc8404e --- /dev/null +++ b/websites/www.eclipse.org-app4mc-hugo/site/themes/hugo-solstice-theme/layouts/partials/head_includes.html
@@ -0,0 +1,2 @@ + +<link href="/static/css/syntax.css" rel="stylesheet">