You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2018/01/26 17:44:32 UTC

cayenne-website git commit: cleanup of the devguide pages

Repository: cayenne-website
Updated Branches:
  refs/heads/asf-site d3fe73f02 -> e75b30048


cleanup of the devguide pages


Project: http://git-wip-us.apache.org/repos/asf/cayenne-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/cayenne-website/commit/e75b3004
Tree: http://git-wip-us.apache.org/repos/asf/cayenne-website/tree/e75b3004
Diff: http://git-wip-us.apache.org/repos/asf/cayenne-website/diff/e75b3004

Branch: refs/heads/asf-site
Commit: e75b30048a3d1a8158179c72838b6e36c5093e6b
Parents: d3fe73f
Author: Andrus Adamchik <an...@objectstyle.com>
Authored: Fri Jan 26 20:44:29 2018 +0300
Committer: Andrus Adamchik <an...@objectstyle.com>
Committed: Fri Jan 26 20:44:29 2018 +0300

----------------------------------------------------------------------
 .htaccess                                       |   3 +-
 dev/building-cayenne.html                       |  26 +-
 dev/code-repository.html                        |  24 +-
 dev/eclipse.html                                | 261 -------------------
 dev/how_development_happens.html                |  19 +-
 dev/index.html                                  |   4 -
 .../android-chrome-192x192-c8e800d2b0.png       | Bin 1118 -> 0 bytes
 .../android-chrome-512x512-f4a2f5a020.png       | Bin 3391 -> 0 bytes
 img/favicon/mstile-144x144-5f1d044e49.png       | Bin 1144 -> 0 bytes
 img/favicon/mstile-144x144-a94ba73eaf.png       | Bin 1047 -> 0 bytes
 img/favicon/mstile-150x150-0fe674a907.png       | Bin 869 -> 0 bytes
 img/favicon/mstile-150x150-13e731f590.png       | Bin 1043 -> 0 bytes
 img/favicon/mstile-310x150-0d0c5a17af.png       | Bin 1141 -> 0 bytes
 img/favicon/mstile-310x150-ff5e1a04ff.png       | Bin 861 -> 0 bytes
 img/favicon/mstile-310x310-a40d63b59e.png       | Bin 1781 -> 0 bytes
 img/favicon/mstile-310x310-b51c330c59.png       | Bin 2371 -> 0 bytes
 img/favicon/mstile-70x70-6e391d6d5c.png         | Bin 650 -> 0 bytes
 img/favicon/mstile-70x70-c524897489.png         | Bin 724 -> 0 bytes
 img/logo_mono_full-b893724c6c.svg.png           | Bin 1468 -> 0 bytes
 sitemap.xml                                     |   4 -
 20 files changed, 35 insertions(+), 306 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/.htaccess
----------------------------------------------------------------------
diff --git a/.htaccess b/.htaccess
index 5b52dff..36f7960 100644
--- a/.htaccess
+++ b/.htaccess
@@ -18,7 +18,8 @@ Redirect permanent /doc/ /docs/3.0/
 Redirect permanent /developer-guide.html /dev/index.html
 Redirect permanent /how_development_happens.html /dev/how_development_happens.html
 Redirect permanent /code-repository.html /dev/code-repository.html
-Redirect permanent /eclipse.html /dev/eclipse.html
+Redirect permanent /eclipse.html /dev/
+Redirect permanent /dev/eclipse.html /dev/
 Redirect permanent /building-cayenne.html /dev/building-cayenne.html
 Redirect permanent /release-guide.html /dev/release-guide.html
 Redirect permanent /running-unit-tests.html /dev/running-unit-tests.html

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/dev/building-cayenne.html
----------------------------------------------------------------------
diff --git a/dev/building-cayenne.html b/dev/building-cayenne.html
index cc46889..abb88f6 100644
--- a/dev/building-cayenne.html
+++ b/dev/building-cayenne.html
@@ -116,17 +116,9 @@ but these should probably work for everyone:</p>
 <p>Depending on what you want to do, there are various flavors of the builds
 discussed below. All builds should be executed from the root folder of the source checkout.</p>
 
-<p>Building the framework and installing it to the local repository (the most
-common flavor) :</p>
+<p>The most common flavor is building Cayenne and executing unit and integration tests :</p>
 
-<pre><code>mvn clean install
-</code></pre>
-
-<p>In order to skip the unit tests (to speed up the build process or because
-some tests are failing), add <em>&rdquo;-DskipTests&rdquo;</em> to any build
-flavor:</p>
-
-<pre><code>mvn clean install -DskipTests
+<pre><code>mvn clean verify
 </code></pre>
 
 <p>For the build to produce a release-like assembly, activate &ldquo;assembly&rdquo;
@@ -135,27 +127,27 @@ of a given assembly (otherwise assembly profile won&rsquo;t produce anything).</
 
 <p>Source assembly:</p>
 
-<pre><code>mvn clean install -Passembly,src
+<pre><code>mvn clean verify -Passembly,src
 </code></pre>
 
 <p>Cross-platform assembly:</p>
 
-<pre><code>mvn clean install -Passembly,generic
+<pre><code>mvn clean verify -Passembly,generic
 </code></pre>
 
 <p>Windows assembly:</p>
 
-<pre><code>mvn clean install -Passembly,windows
+<pre><code>mvn clean verify -Passembly,windows
 </code></pre>
 
 <p>Mac OS X assembly:</p>
 
-<pre><code>mvn clean install -Passembly,mac
+<pre><code>mvn clean verify -Passembly,mac
 </code></pre>
 
 <p>Multiple assemblies built at once:</p>
 
-<pre><code>mvn clean install -Passembly,src,generic,mac
+<pre><code>mvn clean verify -Passembly,src,generic,mac
 </code></pre>
 
                     </article>
@@ -166,10 +158,10 @@ of a given assembly (otherwise assembly profile won&rsquo;t produce anything).</
         <div class="row">
             <div class="col-12 col-md-6  text-center text-md-left">
                 
-                <a class="btn btn-link" href='/dev/eclipse.html'>
+                <a class="btn btn-link" href='/dev/code-repository.html'>
                     <span class="d-block d-md-none  text-muted">Prev: </span>
                     <i class="small  fa fa-chevron-left  mr-3l2  d-none d-md-inline"></i>
-                    Working with Cayenne code in Eclipse
+                    Code Repository
                 </a>
                 
             </div>

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/dev/code-repository.html
----------------------------------------------------------------------
diff --git a/dev/code-repository.html b/dev/code-repository.html
index f72427f..cf997ae 100644
--- a/dev/code-repository.html
+++ b/dev/code-repository.html
@@ -89,15 +89,23 @@
                         <h1 class="text-center">Code Repository</h1>
                         
 
-<h2 id="git-repository">Git Repository</h2>
+<h2 id="github-repository">GitHub Repository</h2>
 
-<p>Cayenne uses Git for source code version control. &ldquo;Master&rdquo; writable repository is located here:<br />
-<a href="https://git-wip-us.apache.org/repos/asf/cayenne.git">https://git-wip-us.apache.org/repos/asf/cayenne.git</a></p>
-
-<p>It can be cloned by anyone, and that&rsquo;s where committers would ultimately push the code. We also have a GitHub read-only copy:<br />
+<p>A read-only mirror of Cayenne sources is published on GitHub:<br />
 <a href="https://github.com/apache/cayenne">https://github.com/apache/cayenne</a></p>
 
-<p>Feel free to fork and/or star Cayenne there.</p>
+<p>Feel free to clone, fork, star Cayenne there. And of course submit pull requests.</p>
+
+
+<div class="pb-3"></div>
+
+<h2 id="master-git-repository">Master Git Repository</h2>
+
+<p>&ldquo;Master&rdquo; writable repository is located here:<br />
+<a href="https://git-wip-us.apache.org/repos/asf/cayenne.git">https://git-wip-us.apache.org/repos/asf/cayenne.git</a></p>
+
+<p>It is publicly readable, but only committers have write access. That&rsquo;s where committers would ultimately push
+the code. It is synchronized to GitHub usually within seconds.</p>
 
 
 <div class="pb-3"></div>
@@ -127,9 +135,9 @@ in a read-only mode:<br />
             </div>
             <div class="col-12 col-md-6  text-center text-md-right">
                 
-                <a class="btn btn-link" href='/dev/eclipse.html'>
+                <a class="btn btn-link" href='/dev/building-cayenne.html'>
                     <span class="d-block d-md-none  text-muted">Next: </span>
-                    Working with Cayenne code in Eclipse
+                    Building Cayenne
                     <i class="small  fa fa-chevron-right  ml-3l2  d-none d-md-inline"></i>
                 </a>
                 

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/dev/eclipse.html
----------------------------------------------------------------------
diff --git a/dev/eclipse.html b/dev/eclipse.html
deleted file mode 100644
index 4a03c7d..0000000
--- a/dev/eclipse.html
+++ /dev/null
@@ -1,261 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        <meta charset="utf-8">
-        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.3">
-        <link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon-04cb17e028.png">
-        <link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32-12431ee8eb.png">
-        <link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16-4f316e4d55.png">
-        <link rel="manifest" href="/img/favicon/manifest-65e6aaa49e.json">
-        <link rel="mask-icon" href="/img/favicon/safari-pinned-tab-558c1991b1.svg" color="#dc5656">
-        <link rel="shortcut icon" href="/img/favicon/favicon-6cef91375b.ico">
-        <meta name="msapplication-TileColor" content="#ffffff">
-        <meta name="msapplication-TileImage" content="/img/favicon/mstile-144x144-34e7696278.png">
-        <meta name="msapplication-config" content="/img/favicon/browserconfig-82ff158058.xml">
-        <meta name="theme-color" content="#ffffff">
-        <link rel="stylesheet" href="https://cayenne.apache.org/css/styles-179887de6c.css"/>
-        <script src="https://cayenne.apache.org/js/bundle-bcaaf59313.js"></script>
-        <title>Working with Cayenne code in Eclipse &middot; Apache Cayenne</title>
-    </head>
-    <body>
-
-
-
-<header class="page-header">
-    <nav id="topbar" class="bg-dark" aria-label="breadcrumb" role="navigation">
-      <ul class="breadcrumb breadcrumb-sm breadcrumb-dark  container  mb-0">
-        <li class="breadcrumb-item dropdown">
-          <a class="dropdown-toggle  text-nowrap  pr-1" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-            <img class="mw-15px  mr-1" src="/img/feather-641aa69d09.svg" />Apache Software Foundation</a>
-          <div class="dropdown-menu rounded-0" aria-labelledby="navbarDropdown">
-            <a class="dropdown-item" href="https://www.apache.org">Apache Homepage</a>
-            <a class="dropdown-item" href="https://www.apache.org/licenses/">License</a>
-            <a class="dropdown-item" href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a>
-            <a class="dropdown-item" href="https://www.apache.org/foundation/thanks.html">Thanks</a>
-            <a class="dropdown-item" href="https://www.apache.org/security/">Security</a>
-          </div>
-        </li>
-        
-      </ul>
-    </nav>
-    <nav class="navbar navbar-expand-lg navbar-dark bg-primary">
-      <div class="container">
-        <a class="navbar-brand" href="https://cayenne.apache.org/">
-           <img src="/img/logo_mono_full-d7a19eef61.svg" alt="Apache Cayenne" />
-        </a>
-        <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#mainMenu" aria-controls="mainMenu" aria-expanded="false" aria-label="Toggle navigation">
-          <span class="navbar-toggler-icon"></span>
-        </button>
-
-        <div class="collapse navbar-collapse" id="mainMenu">
-          <ul class="navbar-nav  mt-3 mt-lg-0 mr-auto">
-            
-            <li class="nav-item">
-              <a class="nav-link" href="/download/">DOWNLOAD</a>
-            </li>
-            
-            <li class="nav-item">
-              <a class="nav-link" href="/docs/4.0/getting-started-guide/">DOCUMENTATION</a>
-            </li>
-            
-            <li class="nav-item">
-              <a class="nav-link" href="/about/support/">SUPPORT</a>
-            </li>
-            
-          </ul>
-          <ul class="navbar-nav  flex-row justify-content-center  mt-2 mt-lg-0 mb-2 mb-lg-0 " id="social-links-menu">
-            <li class="nav-item  d-flex">
-              <a class="nav-link  d-flex justify-content-center align-items-center" href="https://github.com/apache/cayenne">
-                <img src="/img/icon_octocat_stars-c24dac94b8.svg" alt="GitHub" /><span class="stargazers_count  ml-1l2"></span></a>
-            </li>
-            <li class="nav-item  d-flex">
-              <a class="nav-link  d-flex justify-content-center align-items-center" href="https://twitter.com/ApacheCayenne">
-                <img src="/img/icon_twitter-220a129d14.svg" alt="Twitter" />
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </nav>
-</header>
-
-
-
-
-    <main class="container  py-5">
-        
-                <section>
-                    <article>
-                        <h1 class="text-center">Working with Cayenne code in Eclipse</h1>
-                        <ul>
-<li>Get code from Git and <a href="building-cayenne.html">build it from command line</a>
-to seed the local repository.</li>
-<li>Create a workspace outside of the main checkout folder.</li>
-<li>Install <a href="http://www.sonatype.org/m2eclipse/">Maven2 Eclipse plugin</a></li>
-<li>Install any other plugins that you would normally use.</li>
-<li>Go to &ldquo;File &gt; Import &hellip; &gt; Existing Maven Projects&rdquo;, and import the projects that you want.</li>
-</ul>
-
-                    </article>
-                </section>
-            
-        
-        <div class="pb-3"></div>
-        <div class="row">
-            <div class="col-12 col-md-6  text-center text-md-left">
-                
-                <a class="btn btn-link" href='/dev/code-repository.html'>
-                    <span class="d-block d-md-none  text-muted">Prev: </span>
-                    <i class="small  fa fa-chevron-left  mr-3l2  d-none d-md-inline"></i>
-                    Code Repository
-                </a>
-                
-            </div>
-            <div class="col-12 col-md-6  text-center text-md-right">
-                
-                <a class="btn btn-link" href='/dev/building-cayenne.html'>
-                    <span class="d-block d-md-none  text-muted">Next: </span>
-                    Building Cayenne
-                    <i class="small  fa fa-chevron-right  ml-3l2  d-none d-md-inline"></i>
-                </a>
-                
-            </div>
-        </div>
-    </main>
-
-
-<footer class="bg-dark">
-    <div class="footer-nav container  text-center text-lg-left  pb-3">
-        <div class="row  pt-5 pb-3">
-            
-            <div class="col-sm-6 col-lg-3">
-                <h4>About</h4>
-                <ul class="list-unstyled">
-                    
-                    <li>
-                        <a href="/why-cayenne.html">Why Cayenne?</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/download/">Download</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/success-stories.html">Success Stories</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/about/support/">Support</a>
-                    </li>
-                    
-                </ul>
-            </div>
-            
-            <div class="col-sm-6 col-lg-3">
-                <h4>Documentation</h4>
-                <ul class="list-unstyled">
-                    
-                    <li>
-                        <a href="/docs/4.0/getting-started-guide/">Getting Started (4.0)</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/docs/4.1/getting-started-guide/">Getting Started (4.1)</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/docs/4.0/cayenne-guide/">Cayenne Guide (4.0)</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/docs/4.1/cayenne-guide/">Cayenne Guide (4.1)</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/docs/4.1/getting-started-db-first/">Database First tutorial (4.1)</a>
-                    </li>
-                    
-                </ul>
-            </div>
-            
-            <div class="col-sm-6 col-lg-3">
-                <h4>Collaboration</h4>
-                <ul class="list-unstyled">
-                    
-                    <li>
-                        <a href="https://issues.apache.org/jira/browse/CAY">Bug/Feature Tracker</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/mailing-lists.html">Mailing Lists</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/dev/code-repository.html">Code Repository</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/dev/">Developer Guide</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/how-can-i-help.html">How can I help?</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/contributors.html">Contributors</a>
-                    </li>
-                    
-                    <li>
-                        <a href="/thanks.html">Thanks</a>
-                    </li>
-                    
-                </ul>
-            </div>
-            
-            <div class="col-sm-6 col-lg-3">
-                <h4>News</h4>
-                <ul class="list-multiline-items list-unstyled  mb-0">
-                    
-                    <li>
-                        <time datetime="2017-11-20 12:00:00 &#43;0300 &#43;03" class="xsmall d-block">Nov 20, 2017</time>
-                        <a href="/2017/11/cayenne-312-released.html">Cayenne 3.1.2 Released</a>
-                    </li>
-                    
-                    <li>
-                        <time datetime="2017-10-14 12:00:00 &#43;0300 &#43;03" class="xsmall d-block">Oct 14, 2017</time>
-                        <a href="/2017/10/cayenne-41m1-released.html">Cayenne 4.1 Milestone 1 Released</a>
-                    </li>
-                    
-                    <li>
-                        <time datetime="2017-10-06 17:38:42 &#43;0300 &#43;03" class="xsmall d-block">Oct 06, 2017</time>
-                        <a href="/2017/10/cayenne-40B2-released.html">Cayenne 4.0 Beta 2 Released</a>
-                    </li>
-                    
-                </ul>
-                <a class="btn-link text-uppercase xsmall" href="https://cayenne.apache.org/news">
-                    More news
-                    <i class="fa fa-lg fa-long-arrow-right" aria-hidden="true"></i>
-                </a>
-            </div>
-        </div>
-        <hr class="mt-0 mb-3" />
-        <p class="copy xsmall text-center  mw-75 mx-auto mb-0">
-            Copyright © 2001-2018 Apache Software Foundation. Apache Cayenne, Cayenne, Apache, the Apache feather logo, and the Apache Cayenne project logo are trademarks of The Apache Software Foundation. <a href="https://cayenne.apache.org/privacy-policy.html">Privacy policy</a>.
-            <img class="d-block  mx-auto mt-2" src="/img/logo_mono-3302daa3cf.svg" alt="Apache Cayenne" />
-        </p>
-    </div>
-</footer>
-    
-<script>
-(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-ga('create', 'UA-7036673-1', 'auto');
-ga('send', 'pageview');
-</script>
-
-    </body>
-</html>

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/dev/how_development_happens.html
----------------------------------------------------------------------
diff --git a/dev/how_development_happens.html b/dev/how_development_happens.html
index 59afe64..4c0617d 100644
--- a/dev/how_development_happens.html
+++ b/dev/how_development_happens.html
@@ -89,21 +89,18 @@
                         <h1 class="text-center">How development happens</h1>
                         
 
-<p>There are several levels of access to the Cayenne project and source.</p>
+<p>There are several levels of access to the Cayenne project and source:</p>
 
 <ol>
-<li>Documentation only access. Access to the Confluence system for creating
-documentation means that these users are able to edit and create content
-which then available on this web site and bundled with the download.</li>
-<li>Committers have direct access to Git and are able to make changes to the
-entire source repository.</li>
-<li>Project Management Committee (PMC) members have further responsibility
+<li>Anyone on the internet can clone or fork the code from Git (and of course send
+back pull requests).</li>
+<li><em>Committers</em> have write access to Git.</li>
+<li><em>Project Management Committee (PMC) members</em> have further responsibility
 for the project as a whole and for ensuring that releases meet all the
 appropriate standards.</li>
-<li>PMC Chair. This person has a leadership role in the project and has a
-special responsibility to the Apache board.<br />
-For further details consult the official <a href="http://www.apache.org/foundation/how-it-works.html#roles">Apache handbook</a>
-.</li>
+<li><em>PMC Chair</em>. This person has a has a special responsibility to the Apache board,
+but otherwise is an equal member of the PMC.
+For further details consult the official <a href="http://www.apache.org/foundation/how-it-works.html#roles">Apache handbook</a>.</li>
 </ol>
 
 <p>In addition to the general Apache responsibilities, this is what is

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/dev/index.html
----------------------------------------------------------------------
diff --git a/dev/index.html b/dev/index.html
index 2df3873..9efa48d 100644
--- a/dev/index.html
+++ b/dev/index.html
@@ -105,10 +105,6 @@ information is probably of no use to you. Consult Cayenne user docs instead.</p>
                         </li>
                         
                         <li class="list-group-item list-group-item-action  border-0">
-                            <a class="d-flex justify-content-center   mw-100" href="https://cayenne.apache.org/dev/eclipse.html">Working with Cayenne code in Eclipse</a>
-                        </li>
-                        
-                        <li class="list-group-item list-group-item-action  border-0">
                             <a class="d-flex justify-content-center   mw-100" href="https://cayenne.apache.org/dev/building-cayenne.html">Building Cayenne</a>
                         </li>
                         

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/android-chrome-192x192-c8e800d2b0.png
----------------------------------------------------------------------
diff --git a/img/favicon/android-chrome-192x192-c8e800d2b0.png b/img/favicon/android-chrome-192x192-c8e800d2b0.png
deleted file mode 100644
index 2d7a971..0000000
Binary files a/img/favicon/android-chrome-192x192-c8e800d2b0.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/android-chrome-512x512-f4a2f5a020.png
----------------------------------------------------------------------
diff --git a/img/favicon/android-chrome-512x512-f4a2f5a020.png b/img/favicon/android-chrome-512x512-f4a2f5a020.png
deleted file mode 100644
index 53eaf3a..0000000
Binary files a/img/favicon/android-chrome-512x512-f4a2f5a020.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-144x144-5f1d044e49.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-144x144-5f1d044e49.png b/img/favicon/mstile-144x144-5f1d044e49.png
deleted file mode 100644
index e9ad16c..0000000
Binary files a/img/favicon/mstile-144x144-5f1d044e49.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-144x144-a94ba73eaf.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-144x144-a94ba73eaf.png b/img/favicon/mstile-144x144-a94ba73eaf.png
deleted file mode 100644
index b0c413a..0000000
Binary files a/img/favicon/mstile-144x144-a94ba73eaf.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-150x150-0fe674a907.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-150x150-0fe674a907.png b/img/favicon/mstile-150x150-0fe674a907.png
deleted file mode 100644
index c7e2f37..0000000
Binary files a/img/favicon/mstile-150x150-0fe674a907.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-150x150-13e731f590.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-150x150-13e731f590.png b/img/favicon/mstile-150x150-13e731f590.png
deleted file mode 100644
index 2a23695..0000000
Binary files a/img/favicon/mstile-150x150-13e731f590.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-310x150-0d0c5a17af.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-310x150-0d0c5a17af.png b/img/favicon/mstile-310x150-0d0c5a17af.png
deleted file mode 100644
index 39eb111..0000000
Binary files a/img/favicon/mstile-310x150-0d0c5a17af.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-310x150-ff5e1a04ff.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-310x150-ff5e1a04ff.png b/img/favicon/mstile-310x150-ff5e1a04ff.png
deleted file mode 100644
index a16a0fb..0000000
Binary files a/img/favicon/mstile-310x150-ff5e1a04ff.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-310x310-a40d63b59e.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-310x310-a40d63b59e.png b/img/favicon/mstile-310x310-a40d63b59e.png
deleted file mode 100644
index 1038484..0000000
Binary files a/img/favicon/mstile-310x310-a40d63b59e.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-310x310-b51c330c59.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-310x310-b51c330c59.png b/img/favicon/mstile-310x310-b51c330c59.png
deleted file mode 100644
index bfd3116..0000000
Binary files a/img/favicon/mstile-310x310-b51c330c59.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-70x70-6e391d6d5c.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-70x70-6e391d6d5c.png b/img/favicon/mstile-70x70-6e391d6d5c.png
deleted file mode 100644
index 960737d..0000000
Binary files a/img/favicon/mstile-70x70-6e391d6d5c.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/favicon/mstile-70x70-c524897489.png
----------------------------------------------------------------------
diff --git a/img/favicon/mstile-70x70-c524897489.png b/img/favicon/mstile-70x70-c524897489.png
deleted file mode 100644
index 5c85dac..0000000
Binary files a/img/favicon/mstile-70x70-c524897489.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/img/logo_mono_full-b893724c6c.svg.png
----------------------------------------------------------------------
diff --git a/img/logo_mono_full-b893724c6c.svg.png b/img/logo_mono_full-b893724c6c.svg.png
deleted file mode 100644
index d0f01cd..0000000
Binary files a/img/logo_mono_full-b893724c6c.svg.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cayenne-website/blob/e75b3004/sitemap.xml
----------------------------------------------------------------------
diff --git a/sitemap.xml b/sitemap.xml
index 1a7c75f..fb9cc85 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -87,10 +87,6 @@
   </url>
   
   <url>
-    <loc>https://cayenne.apache.org/dev/eclipse.html</loc>
-  </url>
-  
-  <url>
     <loc>https://cayenne.apache.org/docs/3.1/getting-started-rop/</loc>
   </url>