Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1 | = Gerrit Code Review - Developer Setup |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 2 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 3 | Bazel or Facebook Buck is needed to compile the code, and an SQL database to |
David Ostrovsky | dcee572 | 2013-05-15 00:10:55 +0200 | [diff] [blame] | 4 | house the review metadata. H2 is recommended for development |
| 5 | databases, as it requires no external server process. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 6 | |
David Pursehouse | fec5879 | 2013-05-10 15:34:02 +0100 | [diff] [blame] | 7 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 8 | == Getting the Source |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 9 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 10 | Create a new client workspace: |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 11 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 12 | ---- |
David Pursehouse | 4f2be53 | 2013-05-09 13:47:17 +0100 | [diff] [blame] | 13 | git clone --recursive https://gerrit.googlesource.com/gerrit |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 14 | cd gerrit |
| 15 | ---- |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 16 | |
David Pursehouse | 4f2be53 | 2013-05-09 13:47:17 +0100 | [diff] [blame] | 17 | The `--recursive` option is needed on `git clone` to ensure that |
| 18 | the core plugins, which are included as git submodules, are also |
| 19 | cloned. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 20 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 21 | [[compile_project]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 22 | == Compiling |
David Pursehouse | 6de7ee2 | 2013-05-20 11:08:51 +0900 | [diff] [blame] | 23 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 24 | Please refer to either <<dev-buck#,Building with Buck>> or |
| 25 | <<dev-bazel#,Building with Bazel>>. |
David Pursehouse | 6de7ee2 | 2013-05-20 11:08:51 +0900 | [diff] [blame] | 26 | |
| 27 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 28 | == Switching between branches |
David Pursehouse | d106c8e | 2013-12-13 15:03:02 +0900 | [diff] [blame] | 29 | |
| 30 | When switching between branches with `git checkout`, be aware that |
| 31 | submodule revisions are not altered. This may result in the wrong |
| 32 | plugin revisions being present, unneeded plugins being present, or |
| 33 | expected plugins being missing. |
| 34 | |
| 35 | After switching branches, make sure the submodules are at the correct |
| 36 | revisions for the new branch with the commands: |
| 37 | |
| 38 | ---- |
| 39 | git submodule update |
| 40 | git clean -fdx |
| 41 | ---- |
| 42 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 43 | CAUTION: If you decide to store your Eclipse/IntelliJ project files in the |
| 44 | Gerrit source directories, executing `git clean -fdx` will remove them and hence |
| 45 | screw up your project. |
| 46 | |
David Pursehouse | d106c8e | 2013-12-13 15:03:02 +0900 | [diff] [blame] | 47 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 48 | == Configuring Eclipse |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 49 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 50 | To use the Eclipse IDE for development, please see |
David Pursehouse | fec5879 | 2013-05-10 15:34:02 +0100 | [diff] [blame] | 51 | link:dev-eclipse.html[Eclipse Setup]. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 52 | |
David Pursehouse | 5d9ef41 | 2013-05-22 13:33:45 +0900 | [diff] [blame] | 53 | For details on how to configure the Eclipse workspace with Buck, |
| 54 | refer to: link:dev-buck.html#eclipse[Eclipse integration with Buck]. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 55 | |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 56 | |
Urs Wolfer | c0948bd | 2014-04-27 21:16:25 +0200 | [diff] [blame] | 57 | == Configuring IntelliJ IDEA |
| 58 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 59 | === Build based on Buck |
| 60 | |
Urs Wolfer | c0948bd | 2014-04-27 21:16:25 +0200 | [diff] [blame] | 61 | To use IntelliJ IDEA for development, the easiest way is to follow |
| 62 | Eclipse integration and then open it as Eclipse project in IDEA. |
| 63 | You need the Eclipse plugin activated in IntelliJ IDEA. |
| 64 | |
Marco Miller | e7790b2 | 2015-03-16 10:28:26 -0400 | [diff] [blame] | 65 | Once you start compiling using both buck and your Gerrit project in |
| 66 | IDEA, you will likely need to mark the below directories as generated |
| 67 | sources roots. You can do so using the IDEA "Project" view. In the |
| 68 | context menu of each one of these, use "Mark Directory As" to mark |
| 69 | them as "Generated Sources Root": |
| 70 | |
| 71 | ---- |
| 72 | __auto_value_tests_gen__ |
| 73 | __httpd_gen__ |
| 74 | __server_gen__ |
| 75 | ---- |
Urs Wolfer | c0948bd | 2014-04-27 21:16:25 +0200 | [diff] [blame] | 76 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 77 | === Build based on Bazel |
| 78 | |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 79 | Please refer to <<dev-intellij#,IntelliJ Setup>> for detailed |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 80 | instructions. |
| 81 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 82 | == Mac OS X |
David Pursehouse | fec5879 | 2013-05-10 15:34:02 +0100 | [diff] [blame] | 83 | |
Khai Do | ea9e4b7 | 2014-03-30 07:43:31 -0700 | [diff] [blame] | 84 | On Mac OS X ensure "Java For Mac OS X 10.5 Update 4" (or later) has |
| 85 | been installed, and that `JAVA_HOME` is set to the |
| 86 | link:install.html#Requirements[required Java version]. |
Shawn O. Pearce | 461c2cc | 2009-02-25 09:09:31 -0800 | [diff] [blame] | 87 | |
Khai Do | ea9e4b7 | 2014-03-30 07:43:31 -0700 | [diff] [blame] | 88 | Java installations can typically be found in |
| 89 | "/System/Library/Frameworks/JavaVM.framework/Versions". |
| 90 | |
| 91 | You can check the installed Java version by running `java -version` in |
| 92 | the terminal. |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 93 | |
| 94 | [[init]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 95 | == Site Initialization |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 96 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 97 | After compiling <<compile_project,(above)>>, run Gerrit's 'init' command to |
| 98 | create a testing site for development use: |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 99 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 100 | .Build based on Buck |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 101 | ---- |
David Ostrovsky | f377aa9 | 2015-09-14 17:46:28 +0900 | [diff] [blame] | 102 | java -jar buck-out/gen/gerrit/gerrit.war init -d ../gerrit_testsite |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 103 | ---- |
| 104 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 105 | .Build based on Bazel |
| 106 | ---- |
| 107 | $(bazel info output_base)/external/local_jdk/bin/java \ |
| 108 | -jar bazel-bin/gerrit.war init -d ../gerrit_testsite |
| 109 | ---- |
| 110 | |
| 111 | [[special_bazel_java_version]] |
| 112 | NOTE: You must use the same Java version that Bazel used for the build. |
| 113 | This Java version is available at |
| 114 | `$(bazel info output_base)/external/local_jdk/bin/java`. |
| 115 | |
Aaron Gable | 5eab720 | 2016-10-12 11:24:06 -0700 | [diff] [blame] | 116 | During initialization, make two changes to the default settings: |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 117 | |
Aaron Gable | 5eab720 | 2016-10-12 11:24:06 -0700 | [diff] [blame] | 118 | * Change the listen addresses from '*' to 'localhost' to prevent outside |
| 119 | connections from contacting the development instance; and |
| 120 | * Change the auth type from 'OPENID' to 'DEVELOPMENT_BECOME_ANY_ACCOUNT' to |
| 121 | allow yourself to create and act as arbitrary test accounts on your |
| 122 | development instance. |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 123 | |
Aaron Gable | 5eab720 | 2016-10-12 11:24:06 -0700 | [diff] [blame] | 124 | Continue through init until it completes. The daemon will automatically start in |
| 125 | the background and a web browser will launch to the start page. From here you |
| 126 | can sign in as the account created during init, register additional accounts, |
| 127 | create projects, and more. |
| 128 | |
| 129 | When you want to shut down the daemon, simply run: |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 130 | |
| 131 | ---- |
David Pursehouse | 9db2378 | 2013-12-17 11:59:22 +0900 | [diff] [blame] | 132 | ../gerrit_testsite/bin/gerrit.sh stop |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 133 | ---- |
| 134 | |
| 135 | |
Aaron Gable | 5eab720 | 2016-10-12 11:24:06 -0700 | [diff] [blame] | 136 | [[localdev]] |
| 137 | == Working with the Local Server |
| 138 | |
| 139 | If you need to create additional accounts on your development instance, click |
| 140 | 'become' in the upper right corner, select 'Switch User', and then register |
| 141 | a new account. |
| 142 | |
| 143 | Use the `ssh` protocol to clone from and push to the local server. For |
| 144 | example, to clone a repository that you've created through the admin |
| 145 | interface, run: |
| 146 | |
| 147 | ---- |
| 148 | git clone ssh://username@localhost:29418/projectname |
| 149 | ---- |
| 150 | |
| 151 | Then you'll be able to create changes the same way users do, with |
| 152 | |
| 153 | ---- |
| 154 | git push origin HEAD:refs/for/master |
| 155 | ---- |
| 156 | |
| 157 | |
| 158 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 159 | == Testing |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 160 | |
David Pursehouse | fec5879 | 2013-05-10 15:34:02 +0100 | [diff] [blame] | 161 | |
David Pursehouse | 5861a9a | 2013-05-15 10:25:19 +0900 | [diff] [blame] | 162 | [[tests]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 163 | === Running the Acceptance Tests |
Edwin Kempin | 4a3fc3f | 2013-02-27 15:18:43 +0100 | [diff] [blame] | 164 | |
| 165 | Gerrit has a set of integration tests that test the Gerrit daemon via |
| 166 | REST, SSH and the git protocol. |
| 167 | |
| 168 | A new review site is created for each test and the Gerrit daemon is |
| 169 | started on that site. When the test has finished the Gerrit daemon is |
| 170 | shutdown. |
| 171 | |
David Ostrovsky | dcee572 | 2013-05-15 00:10:55 +0200 | [diff] [blame] | 172 | For instructions on running the integration tests with Buck, |
David Pursehouse | 5861a9a | 2013-05-15 10:25:19 +0900 | [diff] [blame] | 173 | please refer to: |
David Pursehouse | 5d9ef41 | 2013-05-22 13:33:45 +0900 | [diff] [blame] | 174 | link:dev-buck.html#tests[Running integration tests with Buck]. |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 175 | For Bazel, please refer to <<dev-bazel#tests,Running Unit Tests with Bazel>>. |
Edwin Kempin | 4a3fc3f | 2013-02-27 15:18:43 +0100 | [diff] [blame] | 176 | |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 177 | [[run_daemon]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 178 | === Running the Daemon |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 179 | |
| 180 | The daemon can be directly launched from the build area, without |
| 181 | copying to the test site: |
| 182 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 183 | .Build based on Buck |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 184 | ---- |
Han-Wen Nienhuys | 0c93bc8 | 2017-01-19 15:26:42 +0100 | [diff] [blame^] | 185 | java -jar buck-out/gen/gerrit/gerrit.war daemon -d \ |
| 186 | ../gerrit_testsite --console-log |
| 187 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 188 | ---- |
| 189 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 190 | .Build based on Bazel |
| 191 | ---- |
| 192 | $(bazel info output_base)/external/local_jdk/bin/java \ |
Han-Wen Nienhuys | 0c93bc8 | 2017-01-19 15:26:42 +0100 | [diff] [blame^] | 193 | -jar bazel-bin/gerrit.war daemon -d ../gerrit_testsite \ |
| 194 | --console-log |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 195 | ---- |
| 196 | |
| 197 | NOTE: Please refer to <<special_bazel_java_version,this explanation>> |
| 198 | for details why using `java -jar` isn't sufficient. |
| 199 | |
| 200 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 201 | === Running the Daemon with Gerrit Inspector |
Marcin Cieślak | ed612fb | 2012-04-17 16:24:34 +0000 | [diff] [blame] | 202 | |
| 203 | link:dev-inspector.html[Gerrit Inspector] is an interactive scriptable |
| 204 | environment to inspect and modify internal state of the system. |
| 205 | |
| 206 | This environment is available on the system console after |
| 207 | the system starts. Leaving the Inspector will shutdown the Gerrit |
| 208 | instance. |
| 209 | |
| 210 | The environment allows interactive work as well as running of |
| 211 | Python scripts for troubleshooting. |
| 212 | |
| 213 | Gerrit Inspect can be started by adding '-s' option to the |
| 214 | command used to launch the daemon: |
| 215 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 216 | .Build based on Buck |
Marcin Cieślak | ed612fb | 2012-04-17 16:24:34 +0000 | [diff] [blame] | 217 | ---- |
David Ostrovsky | f377aa9 | 2015-09-14 17:46:28 +0900 | [diff] [blame] | 218 | java -jar buck-out/gen/gerrit/gerrit.war daemon -d ../gerrit_testsite -s |
Marcin Cieślak | ed612fb | 2012-04-17 16:24:34 +0000 | [diff] [blame] | 219 | ---- |
| 220 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 221 | .Build based on Bazel |
| 222 | ---- |
| 223 | $(bazel info output_base)/external/local_jdk/bin/java \ |
| 224 | -jar bazel-bin/gerrit.war daemon -d ../gerrit_testsite -s |
| 225 | ---- |
| 226 | |
| 227 | NOTE: Please refer to <<special_bazel_java_version,this explanation>> |
| 228 | for details why using `java -jar` isn't sufficient. |
| 229 | |
Marcin Cieślak | ed612fb | 2012-04-17 16:24:34 +0000 | [diff] [blame] | 230 | Gerrit Inspector examines Java libraries first, then loads |
| 231 | its initialization scripts and then starts a command line |
| 232 | prompt on the console: |
| 233 | |
| 234 | ---- |
| 235 | Welcome to the Gerrit Inspector |
| 236 | Enter help() to see the above again, EOF to quit and stop Gerrit |
| 237 | Jython 2.5.2 (Release_2_5_2:7206, Mar 2 2011, 23:12:06) |
| 238 | [OpenJDK 64-Bit Server VM (Sun Microsystems Inc.)] on java1.6.0 running for Gerrit 2.3-rc0-163-g01967ef |
| 239 | >>> |
| 240 | ---- |
| 241 | |
| 242 | With the Inspector enabled Gerrit can be used normally and all |
| 243 | interfaces (HTTP, SSH etc.) are available. |
| 244 | |
| 245 | Care must be taken not to modify internal state of the system |
| 246 | when using the Inspector. |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 247 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 248 | === Querying the Database |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 249 | |
| 250 | The embedded H2 database can be queried and updated from the |
| 251 | command line. If the daemon is not currently running: |
| 252 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 253 | .Build based on Buck |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 254 | ---- |
David Ostrovsky | f377aa9 | 2015-09-14 17:46:28 +0900 | [diff] [blame] | 255 | java -jar buck-out/gen/gerrit/gerrit.war gsql -d ../gerrit_testsite |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 256 | ---- |
| 257 | |
Alice Kober-Sotzek | 4b92e04 | 2016-11-25 10:54:30 +0100 | [diff] [blame] | 258 | .Build based on Bazel |
| 259 | ---- |
| 260 | $(bazel info output_base)/external/local_jdk/bin/java \ |
| 261 | -jar bazel-bin/gerrit.war gsql -d ../gerrit_testsite -s |
| 262 | ---- |
| 263 | |
| 264 | NOTE: Please refer to <<special_bazel_java_version,this explanation>> |
| 265 | for details why using `java -jar` isn't sufficient. |
| 266 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 267 | Or, if it is running and the database is in use, connect over SSH |
| 268 | using an administrator user account: |
| 269 | |
| 270 | ---- |
| 271 | ssh -p 29418 user@localhost gerrit gsql |
| 272 | ---- |
| 273 | |
| 274 | |
Edwin Kempin | 57fa179 | 2013-03-27 10:43:41 +0100 | [diff] [blame] | 275 | [[debug-javascript]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 276 | === Debugging JavaScript |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 277 | |
Shawn Pearce | d07a622 | 2013-03-21 00:11:45 -0700 | [diff] [blame] | 278 | When debugging browser specific issues add `?dbg=1` to the URL so the |
| 279 | resulting JavaScript more closely matches the Java sources. The debug |
| 280 | pages use the GWT pretty format, where function and variable names |
| 281 | match the Java sources. |
| 282 | |
| 283 | ---- |
| 284 | http://localhost:8080/?dbg=1 |
| 285 | ---- |
| 286 | |
Shawn O. Pearce | 6ddb6ca | 2009-09-18 18:10:31 -0700 | [diff] [blame] | 287 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 288 | == Client-Server RPC |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 289 | |
| 290 | The client-server RPC implementation is gwtjsonrpc, not the stock RPC |
| 291 | system that comes with GWT. This buys us automatic XSRF protection. |
| 292 | It also makes all of the messages readable and writable by any JSON |
| 293 | implementation, facilitating "mashups" and 3rd party clients. |
| 294 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 295 | The programming API is virtually identical, except service interfaces |
| 296 | extend RemoteJsonService instead of RemoteService. |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 297 | |
| 298 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 299 | == Why GWT? |
Shawn O. Pearce | d2b73db | 2009-01-09 11:55:47 -0800 | [diff] [blame] | 300 | |
| 301 | We like it. Plus we can write Java code once and run it both in |
Shawn O. Pearce | e2bd1b1 | 2009-08-20 11:08:32 -0700 | [diff] [blame] | 302 | the browser and on the server side. |
Shawn O. Pearce | 5500e69 | 2009-05-28 15:55:01 -0700 | [diff] [blame] | 303 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 304 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 305 | == External Links |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 306 | |
| 307 | Google Web Toolkit: |
| 308 | |
| 309 | * http://code.google.com/webtoolkit/download.html[Download] |
| 310 | |
Shawn O. Pearce | 18f1f7f | 2009-12-16 11:32:39 -0800 | [diff] [blame] | 311 | Apache SSHD: |
| 312 | |
| 313 | * http://mina.apache.org/sshd/[SSHD] |
| 314 | |
| 315 | H2: |
| 316 | |
| 317 | * http://www.h2database.com/[H2] |
| 318 | * http://www.h2database.com/html/grammar.html[SQL Reference] |
| 319 | |
| 320 | PostgreSQL: |
| 321 | |
| 322 | * http://www.postgresql.org/download/[Download] |
| 323 | * http://www.postgresql.org/docs/[Documentation] |
| 324 | |
| 325 | |
Shawn O. Pearce | 5500e69 | 2009-05-28 15:55:01 -0700 | [diff] [blame] | 326 | GERRIT |
| 327 | ------ |
| 328 | Part of link:index.html[Gerrit Code Review] |
Yuxuan 'fishy' Wang | 99cb68d | 2013-10-31 17:26:00 -0700 | [diff] [blame] | 329 | |
| 330 | SEARCHBOX |
| 331 | --------- |