Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 421f048ddb9f077f99e761be07bb545ac2eaa05b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" encoding="UTF-8"?>
<project name="Reflow Maven Skin"
  xmlns="http://maven.apache.org/DECORATION/1.3.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.3.0 http://maven.apache.org/xsd/decoration-1.3.0.xsd">

  <bannerLeft>
    <name><![CDATA[
     Eclipse <span class="color-highlight">Papyrus</span> project
      ]]>
    </name>
    <href>https://www.eclipse.org/papyrus/</href>
  </bannerLeft>
  
  <publishDate position="bottom" format="yyyy-MM-dd" />
  <version position="bottom" />
  <googleAnalyticsAccountId>UA-XXXXXX</googleAnalyticsAccountId>

  <skin>
    <groupId>lt.velykis.maven.skins</groupId>
    <artifactId>reflow-maven-skin</artifactId>
    <version>1.1.1</version>
  </skin>
  <custom>
    <reflowSkin>
      <!-- Make this to 'false' for local development, i.e. file:// URLs -->
      <protocolRelativeURLs>false</protocolRelativeURLs>
      <smoothScroll>true</smoothScroll>
      <theme>bootswatch-cosmo</theme>
      <highlightJs>true</highlightJs>
      <highlightJsTheme>github</highlightJsTheme>
      <!-- absoluteResourceURL>http://flefevre.github.io/testpapy/</absoluteResourceURL-->
      <brand>
        <!-- Brand text in top-left part of the site -->
        <name>
          <![CDATA[
          Eclipse <span class="color-highlight">Papyrus</span> Project
          ]]>
        </name>
        <href>https://www.eclipse.org/papyrus/</href>
      </brand>
      <slogan>an integrated and user-consumable environment for editing any kind of EMF model (UML, SysML, MARTE...)</slogan>
      <titleTemplate>%2$s | %1$s</titleTemplate>
      <!-- Use Table of Contents at the top of the page (max 6 elements) -->
      <toc>top</toc>
      <tocTopMax>6</tocTopMax>
      <!-- Include the documentation and tools in the top navigation (in addition to links) -->
      <topNav>Main|reports|modules|parent</topNav>
      <!-- Split menus in the bottom navigation -->
      <bottomNav maxSpan="9" >
        <column>Main</column>
        <column>Download</column>
        <column>reports|modules|parent</column>
      </bottomNav>
      <bottomDescription>
        <![CDATA[
         Eclipse <span class="color-highlight">Papyrus</span> project is aiming at providing an ntegrated and user-consumable environment for editing any kind of EMF model and particularly supporting UML and related modeling languages such as SysML and MARTE.
        ]]>
      </bottomDescription>
      <pages>
        <index project="infra.ui">
          <!-- Override the title -->
          <titleTemplate>Papyrus</titleTemplate>
          <!-- no breadcrumbs on the main index page -->
          <breadcrumbs>false</breadcrumbs>
          <!-- no ToC on the main index page -->
          <toc>false</toc>
          <markPageHeader>false</markPageHeader>
          <sections>
            <!-- carousel /-->
            <columns>2</columns>
            <body />
            <sidebar />
          </sections>
        </index>
        <contribute>
          <breadcrumbs>false</breadcrumbs>
        </contribute>
        <!-- Disable source highlighting for Maven reports -->
        <source-repository>
          <highlightJs>false</highlightJs>
        </source-repository>
        <issue-tracking>
          <highlightJs>false</highlightJs>
          <toc>false</toc>
        </issue-tracking>
        <license>
          <highlightJs>false</highlightJs>
          <toc>false</toc>
        </license>
        <!-- Disable ToC for some Maven reports -->
        <project-info>
          <toc>false</toc>
        </project-info>
        <!-- github-report>
          <toc>false</toc>
        </github-report-->
        <dependencies>
          <tocTopMax>4</tocTopMax>
        </dependencies>
      </pages>
    </reflowSkin>
  </custom>

  <body>
  
    <links>
      <item name="Online" href="http://www.eclipse.org/papyrus" />
      <item name="Nexus repository" href="https://repo.eclipse.org/index.html#welcome" />
      <item name="Pdf" href="org.eclipse.papyrus.infra.ui.doc.pdf" />
    </links>

    <breadcrumbs>
      <item name="nf-doc" href="/" />
    </breadcrumbs>
  
    <menu name="Main" inherit="top">
      <item name="Home" href="home.html" />
      <item name="Index" href="index.html" />
    </menu>
    <menu name="Maven documentation" ref="reports" inherit="bottom"/>
    <menu ref="modules" inherit="top" />
	<menu ref="parent" inherit="top" />
  </body>
</project>

Back to the top