From 297ab16c1ae7c2175da750d2f808bea234668f25 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sat, 18 Jul 2009 20:23:37 +0200 Subject: Added credits page. --- website/credits.html | 72 +++++++++++++++++++++++++++++++++++++ website/features/Cleanup.html | 2 +- website/features/Data.html | 2 +- website/features/GetterSetter.html | 2 +- website/features/SneakyThrows.html | 2 +- website/features/Synchronized.html | 2 +- website/features/features.css | 5 +++ website/features/index.html | 2 +- website/index.css | 5 +++ website/index.html | 2 +- website/lombokBullet.png | Bin 0 -> 863 bytes 11 files changed, 89 insertions(+), 7 deletions(-) create mode 100644 website/credits.html create mode 100644 website/lombokBullet.png diff --git a/website/credits.html b/website/credits.html new file mode 100644 index 00000000..f480e47e --- /dev/null +++ b/website/credits.html @@ -0,0 +1,72 @@ + + + + + + + Project Lombok - Credits + + +
+

Project Lombok - About the authors and everyone that's helped us create Project Lombok.

+
+
+ + +

+ Project Lombok is created by us: Reinier Zwitserloot (on the left) and Roel Spilker (on the right). +

+
+
+ We'd like to thank:
    +
  • Perry Nguyen (pfn on ##java on freenode) for creating the inspiration for project lombok.
  • +
  • Google Code Hosting for hosting our issue tracker as well as the lombok releases.
  • +
  • Github for hosting lombok's repository and website.
  • +
  • The ASM team at ObjectWeb for creating an excellent class file editing tool. + Lombok uses ASM to interact with Eclipse.
  • +
  • Markus Gebhard for creating java2html which we use for the example code snippets on the + features pages.
  • +
  • Tor Norbye for some feedback on how Netbeans works internally. We haven't cracked the netbeans nut quite yet, and help is + very welcome. Still, we've made some progress in adding netbeans support to Project Lombok thanks to Tor.
  • +
  • The Java Posse for making the java community awesome. Listen to their podcast!
  • +
+
+
+ + diff --git a/website/features/Cleanup.html b/website/features/Cleanup.html index 098f111c..ee8542e1 100644 --- a/website/features/Cleanup.html +++ b/website/features/Cleanup.html @@ -55,7 +55,7 @@
diff --git a/website/features/Data.html b/website/features/Data.html index b02bdd0e..71634ef2 100644 --- a/website/features/Data.html +++ b/website/features/Data.html @@ -74,7 +74,7 @@
diff --git a/website/features/GetterSetter.html b/website/features/GetterSetter.html index 9ca8ac19..b96af8a6 100644 --- a/website/features/GetterSetter.html +++ b/website/features/GetterSetter.html @@ -53,7 +53,7 @@
diff --git a/website/features/SneakyThrows.html b/website/features/SneakyThrows.html index 14319cde..1e98cc53 100644 --- a/website/features/SneakyThrows.html +++ b/website/features/SneakyThrows.html @@ -70,7 +70,7 @@
diff --git a/website/features/Synchronized.html b/website/features/Synchronized.html index 99cf4501..c7994de0 100644 --- a/website/features/Synchronized.html +++ b/website/features/Synchronized.html @@ -55,7 +55,7 @@
diff --git a/website/features/features.css b/website/features/features.css index d726f679..5de41654 100644 --- a/website/features/features.css +++ b/website/features/features.css @@ -133,3 +133,8 @@ h1 { font-size: 11px; font-style: italic; } + +.creditsLink { + font-style: normal; + font-weight: bold; +} diff --git a/website/features/index.html b/website/features/index.html index 5c318e78..a929dd26 100644 --- a/website/features/index.html +++ b/website/features/index.html @@ -27,7 +27,7 @@
diff --git a/website/index.css b/website/index.css index bc3f9e3c..e2884250 100644 --- a/website/index.css +++ b/website/index.css @@ -134,3 +134,8 @@ code { width: 100%; text-align: center; } + +.creditsLink { + font-style: normal; + font-weight: bold; +} diff --git a/website/index.html b/website/index.html index dec0c7b5..db06400f 100644 --- a/website/index.html +++ b/website/index.html @@ -49,7 +49,7 @@ I don't want to see a video - show me a slideshow instead! diff --git a/website/lombokBullet.png b/website/lombokBullet.png new file mode 100644 index 00000000..b19beee2 Binary files /dev/null and b/website/lombokBullet.png differ -- cgit