diff options
author | Bulgakov Alexander <buls@yandex.ru> | 2019-04-25 23:35:01 +0300 |
---|---|---|
committer | Bulgakov Alexander <buls@yandex.ru> | 2019-04-25 23:35:01 +0300 |
commit | afe9e374975c85a87fdf6c0d45171ac44f616a37 (patch) | |
tree | d49b9f905a564729d5cdefa2f9626266b0b541f0 /website/templates | |
parent | f0343886a331f3cb2175545a062f3736610f9179 (diff) | |
parent | 150be0a186d880503cb23d056ea4cf229ebc37e5 (diff) | |
download | lombok-afe9e374975c85a87fdf6c0d45171ac44f616a37.tar.gz lombok-afe9e374975c85a87fdf6c0d45171ac44f616a37.tar.bz2 lombok-afe9e374975c85a87fdf6c0d45171ac44f616a37.zip |
Merge branch 'master' into feature/typeInferenceImprovements
Diffstat (limited to 'website/templates')
-rw-r--r-- | website/templates/credits.html | 2 | ||||
-rw-r--r-- | website/templates/main.html | 2 | ||||
-rw-r--r-- | website/templates/presentations/7lessons.html | 25 |
3 files changed, 28 insertions, 1 deletions
diff --git a/website/templates/credits.html b/website/templates/credits.html index 3390d762..b5c033ad 100644 --- a/website/templates/credits.html +++ b/website/templates/credits.html @@ -29,6 +29,8 @@ </li><li> <strong>Tor Norbye</strong>, <strong>Jan Lahoda</strong>, and <strong>Petr Jiricka</strong> for helping out with Netbeans internals and/or javac. </li><li> + <strong>nqzero</strong> for the <a href="https://github.com/nqzero/permit-reflect">permit-reflect</a> library, whose ideas are also used in lombok. + </li><li> All contributors who submitted patches or helped answering questions!</li> </ul> diff --git a/website/templates/main.html b/website/templates/main.html index fc925d61..03073436 100644 --- a/website/templates/main.html +++ b/website/templates/main.html @@ -25,7 +25,7 @@ </video> <div class="row"> <div class="text-center"> - <a href="http://jnb.ociweb.com/jnb/jnbJan2010.html">Show me a text and images based explanation and tutorial instead!</a> + <a href="https://objectcomputing.com/resources/publications/sett/january-2010-reducing-boilerplate-code-with-project-lombok">Show me a text and images based explanation and tutorial instead!</a> </div> </div> </div> diff --git a/website/templates/presentations/7lessons.html b/website/templates/presentations/7lessons.html new file mode 100644 index 00000000..3027fbad --- /dev/null +++ b/website/templates/presentations/7lessons.html @@ -0,0 +1,25 @@ +<#import "../_scaffold.html" as main> +<@main.scaffold> + <div class="page-header top5"> + <div class="row text-center"> + <@main.h1 title="The 7 biggest mistakes we made in Project Lombok" /> + <p> + A presentation by Lombok's 2 core authors: Roel Spilker and Reinier Zwitserloot.<br /> + We talk about the 7 biggest mistakes we made managing an open source project for the past 10 years.<br /> + First given at <a href="https://programm.javaland.eu/2019/#/scheduledEvent/579921">Javaland (in Brühl, Germany) on March 19th, 2019</a>. Total length: 40 minutes. + </p> + </div> + <div class="video text-center"> + <video id="presentationVideo" width="640" height="360" poster="/presentations/7lessons-poster.jpg" controls="controls" preload="none"> + <source src="https://projectlombok.org/presentations/7lessons-vp9.webm" type="video/webm" /> + <source src="https://projectlombok.org/presentations/7lessons.webm" type="video/webm" /> + <source src="https://projectlombok.org/presentations/7lessons.mp4" type="video/mp4" /> + <@main.h1 title="Can't watch the video?" /> + <p> + You can download it and watch it with, for example, <a href="https://www.videolan.org/vlc/index.html">The open source VLC media player</a>:<br /> + <a href="/videos/7lessons.mp4">Download: 7 biggest mistakes we made in Project Lombok</a> + </p> + </video> + </div> + </div> +</@main.scaffold> |