1 2011-05-18 Ben Konrath <ben@bagu.org>
3 Enable the "Details" buttons.
5 Right now only an empty details view is displayed.
7 * src/main/java/org/glom/web/client/ClientFactory.java:
8 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
9 Add DetailsView to ClientFactory.
10 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
11 A basic activity for the details view.
12 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
13 Add a new constructor that takes a DetailsPlace. Rename shutdown() to
15 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
16 Add DetailsPlace.Tokenizer to the list of tokens that are generated by
18 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
19 Create a new DetailsActivity when a DetailsPlace is requested. Remove
20 unnecessary super() in constructor.
21 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
22 Create a new TableSelectionActivity when a DetailsPlace is requested. We
23 really shouldn't create a new TableSelectionActivity for both the ListPlace
24 and the DetailsPlace so this should be considered a temporary solution.
25 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
26 New file. Represents a URL for the details view.
27 * src/main/java/org/glom/web/client/ui/DetailsView.java:
28 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
29 A basic details view interface and implementation.
30 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
31 Enable the "Details" buttons.
33 2011-05-12 Ben Konrath <ben@bagu.org>
35 Use a LayoutPanel with multiple display areas for main layout.
37 This is mostly a refactor in that there are no changes from the user
38 point of view. These changes are required so that we can swap out the list view
39 with the details view when the user clicks the "Details" button.
41 * src/main/java/org/glom/web/client/ClientFactory.java:
42 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
43 OnlineGlomView. Add TableSelectionView, ListView and
45 * src/main/java/org/glom/web/client/OnlineGlom.java: Use LayoutPanel
46 for main layout. Add display regions for main activities. Add
47 activity manager for for main activities.
48 * src/main/java/org/glom/web/client/activity/ListActivity.java: New
49 file from parts of the deleted OnlineGlomActivity.
50 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
51 New file from parts of the deleted OnlineGlomActivity.
52 * src/main/java/org/glom/web/client/event/TableChangeEvent.java:
53 * src/main/java/org/glom/web/client/event/TableChangeEventHandler.java:
54 New files for app wide table change event.
55 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
56 * src/main/java/org/glom/web/client/mvp/DocumentSelectionActivityMapper.java:
57 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
58 Activity mappers for the main activities replace the deleted app-wide
60 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java:
61 Fix a spelling error in he comment.
62 * src/main/java/org/glom/web/client/ui/ListView.java:
63 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
64 Renamed from LayoutListView and modified for MVP. This still not a
65 proper dumb view as prescribed by the MVP pattern but it works for now.
66 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
67 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
68 New widget stripped out of the deleted OnlineGlomView.
69 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
70 Remove hack that is fixed by this patch.
72 2011-05-06 Ben Konrath <ben@bagu.org>
74 Rename OnlineGlomPlace to ListPlace.
76 The only change besides the rename is that url will now display #list
79 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
80 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
81 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
82 * src/main/java/org/glom/web/client/place/ListPlace.java:
83 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
85 2011-05-06 Ben Konrath <ben@bagu.org>
87 Use Presenter for app navigation.
89 This is the proper way to deal with Place (URL) changes with the MVP
92 * src/main/java/org/glom/web/client/ClientFactory.java:
93 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
94 PlaceHistoryMapper and PlaceHistoryHandler.
95 * src/main/java/org/glom/web/client/OnlineGlom.java: Re-add
96 PlaceHistoryMapper and PlaceHistoryHandler.
97 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
98 Don't use getHistoryMapper().getToken(place) to create the hyperlinks.
99 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
100 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
101 Add Presenter interface and setPresenter methods. Rename addHyperLink
102 to addDocumentLink taking only the document title as a parameter.
104 2011-04-14 Ben Konrath <ben@bagu.org>
106 Prompt for db username/password if they haven't been set.
108 This is implemented with a popup widget that is contained within the
109 OnlineGlomView and managed by the OnlineGlomActivity.
111 * src/main/java/org/glom/web/client/OnlineGlomService.java: Two new
112 methods for checking and setting the database username and password.
113 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Two
114 new methods for checking and setting the database username and
116 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
117 Display authentication popup if the JDBC connection to the database
118 has not been authenticated.
119 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java: New
121 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
122 for dealing with the authentication popup.
123 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java:
124 Implement the methods for dealing with the authentication popup.
125 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Don't
126 try to executed queries if the database connection hasn't been
127 authenticated. Implement methods for checking and setting the
128 database username and password.
130 2011-04-12 Ben Konrath <ben@bagu.org>
132 Make log messages a little clearer.
134 Add a dash betweeen the document title and the table name.
136 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
138 2011-04-12 Ben Konrath <ben@bagu.org>
140 Protect against NPEs when cleaning up database resources.
142 While this isn't strictly necessary because the exception is caught,
143 not protecting against the NPEs makes it harder to find the real error
146 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
148 2011-04-12 Ben Konrath <ben@bagu.org>
150 Move configuration of the servlet to the constructor.
152 The servlet will be initialized even if the database authentication
153 information is not set or correct. I still need to add the UI for prompting
154 the user for the authentication information when it's required.
156 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
157 javadocs for getDocumentTitles() method.
158 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
159 Set error message when RPC fails.
160 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Get the
161 glom files directory from the configuration file. Try to set the
162 database authentication information for the specific document if it's
163 set and works otherwise try to use the global authentication
164 information set for the directory.
165 * src/main/resources/onlineglom.properties: Moved from
166 src/main/webapp/WEB-INF/OnlineGlom.properties. Updated with new keys.
167 Added detailed comments for the new keys.
169 2011-04-11 Ben Konrath <ben@bagu.org>
171 Remove unnecessary @Override in DocumentSelectionViewImpl.
173 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
175 2011-04-11 Ben Konrath <ben@bagu.org>
177 Remove center alignment in DocumentSelectionView.
179 The title element is still centred but the document titles and bottom
180 sentence are both left-aligned.
182 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
184 2011-04-11 Ben Konrath <ben@bagu.org>
186 Change 'Demo' naming convention to 'Document'.
188 This is just a rename refactor with no functional changes to the code.
190 * src/main/java/org/glom/web/client/ClientFactory.java:
191 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
192 * src/main/java/org/glom/web/client/OnlineGlom.java:
193 * src/main/java/org/glom/web/client/OnlineGlomService.java:
194 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
195 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
196 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
197 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
198 * src/main/java/org/glom/web/client/place/DocumentSelectionPlace.java:
199 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
200 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
201 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
202 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
204 2011-04-08 Ben Konrath <ben@bagu.org>
206 Remove FIXME from safeLongToInt() method.
208 Libglom uses longs on 32-bit and 64-bit platforms so it's ok to use
211 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
213 2011-04-08 Ben Konrath <ben@bagu.org>
215 Display an error if no glom documents are found in the specified directory.
217 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
218 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
219 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
220 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
222 2011-04-08 Ben Konrath <ben@bagu.org>
224 Add copyright header to one more file ... oops.
226 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
228 2011-04-08 Ben Konrath <ben@bagu.org>
230 Add copyright header to files without it.
232 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
233 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
234 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
235 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
236 * src/main/java/org/glom/web/shared/ColumnInfo.java:
237 * src/main/java/org/glom/web/shared/GlomField.java:
239 2011-04-08 Ben Konrath <ben@bagu.org>
241 Add support for accessing multiple glom documents in the servlet.
243 This completes the demo selection functionality.
245 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
246 document title to methods.
247 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
248 document title to methods.
249 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
250 Set browser window title when the activity starts. Correct name of
251 document title variable.
252 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
253 Set browser window title when the activity starts. Set the table
254 selector change handler after table selector has been set. Clear the
255 OnlineGlomView when the activity has been stopped.
256 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java: Use the
257 document title as the place token. Use "#Document:" instead of
258 "#OnlineGlomPlace:" in the URL.
259 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
260 Change heading to "Online Glom"
261 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Use
262 document title in RPC methods.
263 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Remove
264 setDocumentTitle() method. Add clear() method.
265 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Remove
266 setDocumentTitle() method. Implement clear() method which removes the
267 change handler on the ListBox, clears the ListBox and clears the
269 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
270 Implement methods with document title. Keep track for the configured
271 glom documents and their corresponding JDBC configurations in a hash
272 table. This information is retrieved using the document title as the
273 key in the hash table.
274 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
275 document title field as it's no longer needed.
277 2011-04-08 Ben Konrath <ben@bagu.org>
279 Update the Eclipse JDT configuration.
281 * .settings/org.eclipse.jdt.ui.prefs: Automatically add comments to new
282 methods. Automatically add the copyright header to new files.
284 2011-04-05 Ben Konrath <ben@bagu.org>
286 Add new page for demo selection.
288 This patch adds all the components required to view and start an
289 OnlineGlom demo by clicking on the desired hyperlink. The user is
290 able to return to the demo selection page with the browser's back
291 button. I still need to modify the servlet to work with multiple
292 documents so all demo links will load the file defined in the
293 OnlineGlom.properties.
295 * .gitignore: Add .gwt which holds the error log for the GWT UiBuidler.
296 This is only useful during development so we don't need to save it.
297 * src/main/java/org/glom/web/client/ClientFactory.java: Add method to
298 get a reference to the DemoSelectionView.
299 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Implement
300 method to get a reference to the DemoSelectionView.
301 * src/main/java/org/glom/web/client/OnlineGlom.java: Change the
302 default view to DemoSelectionView.
303 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add method
304 to get glom document titles for glom files in a hard-coded directory.
305 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
306 method to get glom document titles for glom files in a hard-coded
308 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
309 Presenter for DemoSelectionView.
310 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: Update
311 for DemoSelectionView.
312 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
313 Update for DemoSelectionView.
314 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
315 Basic 'Place' implementation for the DemoSelectionView.
316 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
317 The interface for the DemoSelectionView.
318 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
319 The implementation of the DemoSelectionView.
320 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
321 The GWT UiBuilder xml file used in DemoSelectionViewImpl.
322 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
323 implementation of method to get glom document titles for glom files
324 in a hard-coded directory.
325 * src/main/webapp/OnlineGlom.html: Remove link to CSS file as it's
326 on longer being used.
327 * src/main/webapp/glom.png: Glom logo.
329 2011-04-05 Ben Konrath <ben@bagu.org>
331 Move RPC code from OnlineGlomViewImpl to OnlineGlomActivity.
333 This is the forth and final commit of a refactor that will allow
334 OnlineGlom to be used with multiple documents.
336 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
337 Move RPC code from OnlineGlomViewImpl to this class.
338 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
340 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Move
341 RPC code to the presenter class (the P in MVP).
343 2011-04-04 Ben Konrath <ben@bagu.org>
345 Start moving the existing OnlineGlom code to MVP.
347 This work is based on the GWT MVP framework that is documented here:
349 https://code.google.com/webtoolkit/doc/2.2/DevGuideMvpActivitiesAndPlaces.html
351 This is the third commit of a refactor that will allow OnlineGlom to
352 be used with multiple documents.
354 * src/main/java/org/glom/web/client/ClientFactory.java: New file.
355 Interface for client factory which is used to get instances of various
356 classes throughout the app.
357 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: New file.
358 Implementation of client factory.
359 * src/main/java/org/glom/web/client/OnlineGlom.java: Add code to
360 initialize the MVP framework.
361 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
362 New file. Activity manager for the main container widget. This is the
364 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: New file.
365 Maps place (URL) to its corresponding activity.
366 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
367 New file. This is just a place holder for a generated file.
368 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java:
369 New file. Represents the URL for the main Online Glom app.
370 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Update
371 for changes in LayoutListViewImpl.
372 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Create
373 interface for View. Move code to OnlineGlomViewImpl class.
374 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: New
375 file. Implementation of OnlineGlomView.
376 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Add Activity and
377 Place resources. Use ClientFactoryImpl by default.
379 2011-04-04 Ben Konrath <ben@bagu.org>
381 Move View classes to their own package.
383 This is the second commit of a refactor that will allow OnlineGlom to
384 be used with multiple documents.
386 * src/main/java/org/glom/web/client/OnlineGlom.java:
387 * src/main/java/org/glom/web/client/ui/LayoutListView.java:
388 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java:
390 2011-04-02 Ben Konrath <ben@bagu.org>
392 Move UI code from the main module to its own class.
394 This is the first commit of a refactor that will allow OnlineGlom to be
395 used with multiple documents.
397 * src/main/java/org/glom/web/client/LayoutListView.java: Update
398 references to OnlineGlom to OnlineGlomView.
399 * src/main/java/org/glom/web/client/OnlineGlom.java: Move code to
400 OnlineGlomView and instantiate it here.
401 * src/main/java/org/glom/web/client/OnlineGlomView.java: New class that
402 represents the main OnlineGlomView with one document.
404 2011-04-01 Ben Konrath <ben@bagu.org>
406 Fix formatting of gwt.xml and add DTD.
408 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
410 2011-03-30 Ben Konrath <ben@bagu.org>
412 Propperly convert gdkColor string to html colour string.
414 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
416 2011-03-28 Ben Konrath <ben@bagu.org>
418 Change implementation of OnlineGlomServiceImpl.getColumnInfoHorizontalAlignment().
420 This implementation matches
421 OnlineGlomServiceImpl.getColumnInfoGlomFieldType(), should perform better, is more
422 readable and is not tied to Swig.
424 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
426 2011-03-28 Ben Konrath <ben@bagu.org>
428 Use read-only checkboxes for boolean field types.
430 * src/main/java/org/glom/web/client/LayoutListView.java: Create columns
431 in the CellTable based on the field type. It currently only
432 distinguishes between boolean and text columns but I'll need to add
433 support for more types.
434 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
435 column type in the ColumnInfo object. Add method to convert between the
436 glom field type enum in ColumnInfo and the glom field type in libglom.
437 * src/main/java/org/glom/web/shared/ColumnInfo.java: Add support for
439 * src/main/java/org/glom/web/shared/GlomField.java: Add support for
440 getting and setting booleans.
442 2011-03-25 Ben Konrath <ben@bagu.org>
444 Don't get the Date twice from the ResultSet.
446 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
448 2011-03-25 Ben Konrath <ben@bagu.org>
450 Cleanup code in the servlet.
452 * TODO: Remove item about row count. Add item about testing row count
453 query with large number of rows.
454 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Fix
455 spelling mistakes, change method parameter to be consistent with
458 2011-03-25 Ben Konrath <ben@bagu.org>
460 Add server side logging with the gwt-log library.
462 * .gitignore: Ignore the log file we're now producing.
463 * TODO: Add a couple TODO item for logging.
464 * pom.xml: Add gwt-log and log4j as a dependency.
465 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
466 logging of errors, warnings and some important info.
467 * src/main/resources/log4j.properties: New file to configure log4j.
469 2011-03-24 Ben Konrath <ben@bagu.org>
471 Add a disable button for the Details view.
473 * src/main/java/org/glom/web/client/LayoutListView.java:
475 2011-03-22 Ben Konrath <ben@bagu.org>
477 Use a count query to get the number of rows for the list view pager.
479 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
481 2011-03-22 Ben Konrath <ben@bagu.org>
483 Add more TODO information about CellTable pager positioning.
487 2011-03-19 Ben Konrath <ben@bagu.org>
489 Add TODO item about CellTable pager positioning.
493 2011-03-18 Ben Konrath <ben@bagu.org>
495 Remove unneeded GlomFieldColumn class.
497 This is just a small code cleanup.
499 * src/main/java/org/glom/web/client/LayoutListView.java:
501 2011-03-18 Ben Konrath <ben@bagu.org>
503 Use cursor mode in the query that gets data for the list view.
505 I still need to fix the potential memory problem when getting the row
506 count for the list view.
508 * TODO: Add note about testing memory usage with large data sets. Add
509 item about fixing row counting with large data sets.
510 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
511 PostgreSQL JDBC driver into cursor mode when getting data for the
514 2011-03-15 Ben Konrath <ben@bagu.org>
516 Remove the GWT Container from the Eclipse build classpath.
518 The GWT dependencies are set by Maven so this isn't needed.
522 2011-03-15 Murray Cumming <murrayc@murrayc.com>
524 Added some earlier mockups to git, but not to the tarball dist.
526 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
527 Openismus. These hopefully show how we might structure the HTML so that
528 it can be styled easily with CSS. However, we probably need to adapt them
529 for the CSS structure that GWT dictates for common widgets.
531 2011-03-14 Ben Konrath <ben@bagu.org>
533 Locate OnlineGlom.properties using the ServletContext.
535 This is required to be able to locate the file in the deployed servlet.
537 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
538 Configure the database and glom document in in a helper method so
539 that the ServletContext can be used to locate OnlineGlom.properties.
540 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
541 src/main/webapp. This is the proper location for .properites files.
543 2011-03-12 Ben Konrath <ben@bagu.org>
545 Add note to README about why we're compiling down to obfuscated JavaScript.
549 2011-03-11 Ben Konrath <ben@bagu.org>
551 Use properties file to configure servlet.
553 This allows people to change the glom file path, db username and db
554 password without recompiling the code.
556 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
557 * src/main/webapp/OnlineGlom.properties:
559 2011-03-11 Ben Konrath <ben@bagu.org>
561 Use table fields in layout list view if the layout list is not defined.
563 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
564 Manually create a LayoutFieldVector for the query builder using the
565 table fields when a layout list is not defined in the glom file.
567 2011-03-11 Ben Konrath <ben@bagu.org>
569 Only show FIXME string for images when there's an image.
571 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
572 in this change are some small code cleanups.
574 2011-03-11 Ben Konrath <ben@bagu.org>
576 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
578 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
580 2011-03-11 Ben Konrath <ben@bagu.org>
582 Correctly set the index of the default table.
584 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
585 Correctly set the index of the default table. Add commented out example
588 2011-03-10 Ben Konrath <ben@bagu.org>
590 Add comment to pom.xml about the previous change.
592 * pom.xml: Add comment about the deployment issue so that it's obvious
593 why java-libglom is set to the provided scope.
595 2011-03-10 Ben Konrath <ben@bagu.org>
597 Change java-libglom dependency from compile to provided in pom.xml.
599 Since java-libglom uses jni it can only be loaded once and therefore
600 must be placed in $CATALINA_HOME/lib and not included in each war.
601 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
602 More information about this issue can be found in the Tomcat 6 release
603 notes in the "JNI Based Applications" section:
605 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
607 * README: Remove note about this issue. Deployment info should really
608 be on the wiki anyway so I'll add it right now.
609 * pom.xml: Change java-libglom dependency from compile to provided so
610 that it's copied in to the packaged war.
612 2011-03-09 Ben Konrath <ben@bagu.org>
614 Change to using a neutral locale for currency, date and time formatting.
616 This solves the problem of currency values being represented without a
617 space between the currency code and the number (e.g. "EUR5.89" is now
618 represented as "EUR 5.89"). More work is required when we implement
619 a locale preference setting.
621 * TODO: Add note about currency formatting issues with different
623 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
624 to using the neutral ROOT locale.
626 2011-03-09 Ben Konrath <ben@bagu.org>
628 Add support for currency codes that are not ISO 4217 codes.
630 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
631 the currency code defined in the glom file when it's not 3 characters
632 long or when Java doesn't recognize the string as an ISO 4217 code.
634 2011-03-08 Ben Konrath <ben@bagu.org>
636 Remove test classes, launch configurations and configuration.
638 The test stuff was getting in the way when creating the war. To make
639 the war file you can now do 'mvn clean package'. The packaged war file
640 will be in the target directory.
642 * .classpath: Remove unused classpathentry for tests and i18n.
643 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
644 property. Don't run test or i18n goals when packaging the war.
645 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
650 * OnlineGlomTest-dev.launch:
651 * OnlineGlomTest-prod.launch:
652 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
653 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
655 2011-03-07 Ben Konrath <ben@bagu.org>
657 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
659 These fixes allow me to use 'mvn deploy' to create the war file.
661 * .classpath: This generated config has been updated by Eclipse. This
662 change was probably triggered by me updating from Eclipse 3.6.1 to
664 * .gitignore: Add entry to ignore the directory
665 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
666 * .project: The generated config has been updated by Eclipse. This
667 change was probably triggered by me updating from Eclipse 3.6.1 to
669 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
670 so that Eclipse doesn't complain
671 * pom.xml: Update to gwt-maven-plugin 2.2.0.
672 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
673 'tests' directory to 'client' directory. This is the new
674 gwt-maven-plugin convension.
675 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
676 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
678 2011-03-07 Ben Konrath <ben@bagu.org>
680 Add support for horizontal alignment in the LayoutList columns.
682 * TODO: Remove item about horizontal alignment. Add item about
683 improvements to ColumnInfo.
684 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
685 alignment on the columns. Use ColumnInfo RPC object get the column
686 title and horizontal alignment.
687 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
688 LayoutListView creation with ColumnInfo RPC object.
689 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
690 a ColumnInfo object for every LayoutList columnn. Convert the
691 FieldFormatting.HorizontalAlignment to the correct
692 ColumnnInfo.HorizontatlAlignment with the new
693 getColumnInfoHorizontalAlignment helper method.
694 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
695 to encapsulate column information like alignment and title. This
696 could be used to set the colour instead of on a per cell field basis.
697 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
698 column title storage and retrieval with ColumnInfo.
700 2011-03-04 Ben Konrath <ben@bagu.org>
702 Add support for column sorting.
704 * src/main/java/org/glom/web/client/LayoutListView.java: Change
705 AsynDataProvider to be an anonymous inner class. Use new
706 getSortedTableData RPC method when column sort is requested. Set all
707 columns sortable and add an AsyncHandler to activate sorting in the
709 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
710 method getSortedTableData(). Cleanup other method signatures.
711 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
712 new method getSortedTableData(). Cleanup other method signatures.
713 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
714 Implement getSortedTableData() and getTableData() methods by using a
715 private helper method with the appropriate parameters filled in. Use
716 user supplied sort clause when supplied, otherwise fall back to
717 sorting by the primary key. Move destroy() method to be underneath
718 constructor for readability. Cleanup comments.
720 2011-03-03 Ben Konrath <ben@bagu.org>
722 Add support for colour text and colour backgrounds to the layout list cells.
724 Only the cell backgrounds are coloured which leaves a gap between the
725 cells that isn't coloured. I need to figure out a way to set
726 'style=background-colour:' on the whole column rather than just the
729 * TODO: Add a note about colouring the background of the whole column.
730 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
731 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
732 render the coloured text and backgrounds. Use GlomField[] for the row type.
733 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
735 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
736 GlomField[] for the row type.
737 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
738 GlomField[] for the row type. Set the text, text colour and background
739 colour in the GlomField objects as specified in the glom document. Add
740 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
741 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
742 the glom field text, foreground colour and background colour.
744 2011-03-02 Ben Konrath <ben@bagu.org>
746 Don't display hidden tables in the combo box.
748 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
750 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
751 code to ignore hidden tables using ArrayLists for the table names and
753 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
754 tableNames to use ArrayLists instead of String[]. Update getter and setter
757 2011-03-01 Ben Konrath <ben@bagu.org>
759 Add support for Date and Time number types.
761 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
762 Implement formatting for Date and Time values. Change the default glom
763 file to small business example.
765 2011-03-01 Ben Konrath <ben@bagu.org>
767 Add support for formatting glom types as specified in the glom file.
769 Formatting isn't finished yet - I still need to add support for Date
772 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
773 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
774 checks for null values in JDBC cleanup code and catch all exceptions
775 instead of just SQLExceptions.
776 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
779 2011-03-01 Ben Konrath <ben@bagu.org>
781 Use GWT 2.2.0 instead of 2.1.1.
783 * pom.xml: Change GWT version numbers.
785 2011-03-01 Ben Konrath <ben@bagu.org>
787 A few small code cleanups.
789 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
791 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
792 unnecessary object creation in constructor.
793 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
794 unnecessary object creation in constructor.
796 2011-02-28 Ben Konrath <ben@bagu.org>
798 Add file for TODO list.
802 2011-02-18 Ben Konrath <ben@bagu.org>
804 Enable the CellTable Pager when more than 20 rows need to be viewed.
806 The Pager will automatically become active when the results are larger
807 than the CellTable size which is currently set to 20 lines.
809 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
810 name on debug statment in RPC call in LayoutListDataProvider, add
811 numRows parameter to LayoutListView constructor, propperly set rowCount
813 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
814 name on debug statment in RPC call, use LayoutListTable object in RPC
815 calls, pass rowCount to LayoutListView.
816 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
817 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
819 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
820 interface for changes in OnlineGlomService.
821 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
822 getLayoutListHeaders() to getLayoutListTable() and return
823 LayoutListTable. Using this object allows me to pass other information
824 about the LayoutList like the expected number of rows in the result set.
825 The Connection object from the connection pool is now propperly closed.
826 Only the requested number of lines are returned to the client in
828 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
829 GlomTable and add columnTitles and numRows.
831 2011-02-18 Ben Konrath <ben@bagu.org>
833 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
835 This is a small performance boost. I'll use GlomTable to get the required
836 layoutlist information.
838 * src/main/java/org/glom/web/client/OnlineGlom.java:
839 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
840 * src/main/java/org/glom/web/shared/GlomDocument.java:
842 2011-02-18 Ben Konrath <ben@bagu.org>
844 Add option to turn off formatting in JDT formatter preferences.
846 * .settings/org.eclipse.jdt.core.prefs:
848 2011-02-18 Ben Konrath <ben@bagu.org>
850 Rename LayoutList to LayoutListView.
852 I'm working towards setting things up to easily use MVP when the time
855 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
857 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
860 2011-02-17 Ben Konrath <ben@bagu.org>
862 Move LayoutListDataProvider class into LayoutList.java.
864 * src/main/java/org/glom/web/client/LayoutList.java:
866 2011-02-17 Ben Konrath <ben@bagu.org>
868 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
870 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
872 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
873 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
874 from LibGlomServer.java.
875 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
876 Rename from LibGlomServiceAsync.java.
877 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
878 Rename from LibGlomServiceImpl.java.
879 * src/main/webapp/WEB-INF/web.xml: Update configuration.
881 2011-02-17 Ben Konrath <ben@bagu.org>
885 * .settings/org.eclipse.jdt.core.prefs:
887 2011-02-17 Ben Konrath <ben@bagu.org>
889 Move GWT-RPC objects to shared package (where they should be).
891 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
892 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
893 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
894 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
895 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
896 org.glom.web.shared package.
897 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
898 org.glom.web.shared package.
899 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
900 directory in compilation to javascript.
902 2011-02-16 Ben Konrath <ben@bagu.org>
904 Add sort clause to the sql query that grabs table information.
906 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
907 if one of the columns is a primary key.
909 2011-02-16 Ben Konrath <ben@bagu.org>
911 Disable generateAsync feature of gwt-maven.
913 The generated interface does not correctly match the methods in LibGlomService
914 and the generated singleton Util inner-class doesn't respect the servlet
917 * pom.xml: Turn off generateAsync feature.
918 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
919 with singleton Util inner-class.
921 2011-02-14 Ben Konrath <ben@bagu.org>
923 Add LGPL v3 licence notices.
925 Followed directions listed here:
926 http://www.gnu.org/licenses/gpl-howto.html
928 * COPYING: This file is a copy of the GPL v3.
929 * COPYING.LESSER: This file is a copy of the LGPL v3.
930 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
932 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
934 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
936 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
938 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
940 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
942 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
945 2011-02-14 Ben Konrath <ben@bagu.org>
947 Use ArrayList instead of Array in GWT-RPC calls.
949 Apparently this gives a slight performance boost to the compiled
952 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
954 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
957 2011-02-14 Ben Konrath <ben@bagu.org>
959 Access data from a postgres db rather than the example glom file.
961 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
962 compile down to obfuscated javascript.
963 * pom.xml: Add c3p0 and postgres JDBC libraries.
964 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
965 using a postgres db accessed through the c3p0 connection pooling library.
967 2011-02-14 Ben Konrath <ben@bagu.org>
969 Update Java formatter settings.
971 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
973 2011-02-02 Ben Konrath <ben@bagu.org>
975 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
977 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
979 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
980 the compiled webapp directory that Eclipse uses as we're using Maven now.
981 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
982 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
984 * pom.xml: Format file, change target Java version to 1.6.
986 2011-02-02 Ben Konrath <ben@bagu.org>
988 Add information about a deployment related issue.
990 * README: Add Notes section with the problem outlined.
992 2011-02-02 Ben Konrath <ben@bagu.org>
994 Call Glom.libglom_deinit() when the servlet is shutdown.
996 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
997 Glom.libglom_deinit() to destroy() method.
999 2011-01-28 Ben Konrath <ben@bagu.org>
1001 Use generated Util class to get the RPC Async interface.
1003 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
1005 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
1006 getInstance() method to get a reference to the RPC Async interface.
1007 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
1008 getInstance() method to get a reference to the RPC Async interface, remove
1009 the now unused getLibGlomServiceProxy() method.
1011 2011-01-27 Ben Konrath <ben@bagu.org>
1013 Cleanup ChangeLog entry from previous commit.
1015 * ChangeLog: Group logical changes together and add comments.
1017 2011-01-25 Ben Konrath <ben@bagu.org>
1019 Convert to gwt-maven project.
1021 * .gitignore: Update for new project structure.
1022 * README: New file with a link to the online documentation.
1023 * pom.xml: The generated maven configuration file with some tweaks.
1025 Add / update Eclipse settings. These files are a merge of the files that
1026 were generated with the gwt-maven plugin and the files we were previously
1030 * .settings/.jsdtscope:
1031 * .settings/com.google.gdt.eclipse.core.prefs:
1032 * .settings/com.google.gwt.eclipse.core.prefs:
1033 * .settings/org.eclipse.jdt.core.prefs:
1034 * .settings/org.eclipse.wst.common.component:
1035 * .settings/org.eclipse.wst.common.project.facet.core.xml:
1036 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
1037 * .settings/org.maven.ide.eclipse.prefs:
1038 * OnlineGlomTest-dev.launch:
1039 * OnlineGlomTest-prod.launch:
1041 Java source files moved from the 'src' directory to the directory structure
1043 * src/main/java/org/glom/web/client/GlomDocument.java:
1044 * src/main/java/org/glom/web/client/GlomTable.java:
1045 * src/main/java/org/glom/web/client/LayoutList.java:
1046 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
1047 * src/main/java/org/glom/web/client/LibGlomService.java:
1048 * src/main/java/org/glom/web/client/OnlineGlom.java:
1049 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
1051 Non-functional property file used for translations. I included this as
1052 reminder that it's something I need to sort out.
1053 * src/main/resources/org/glom/web/client/Messages.properties:
1055 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
1056 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
1058 The servlet configuration files moved from the 'war' directory.
1059 * src/main/webapp/OnlineGlom.css:
1060 * src/main/webapp/OnlineGlom.html:
1061 * src/main/webapp/WEB-INF/web.xml:
1063 Generated test files with most of the code commented out. I included these
1064 so that it's easy to add tests when we're ready for them.
1065 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
1066 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
1068 2011-01-25 Ben Konrath <ben@bagu.org>
1070 Remove unused println.
1072 * src/org/glom/web/server/LibGlomServiceImpl.java:
1074 2011-01-25 Ben Konrath <ben@bagu.org>
1076 Add project specific JDT settings.
1078 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
1079 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
1081 2011-01-25 Ben Konrath <ben@bagu.org>
1083 Populate celltable with example data.
1085 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
1086 * src/org/glom/web/client/GlomTable.java: Correct formatting.
1087 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
1088 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
1089 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
1090 asynchronously gets the example data.
1091 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
1092 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
1093 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
1094 curently selected table to be retrieved by other widgets.
1095 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
1096 implement getTableData() in a hacky way. This method needs to be updated
1097 to grab information from the database when database creating is
1100 2011-01-20 Ben Konrath <ben@bagu.org>
1102 Set table headers when table dropBox changes.
1104 * src/org/glom/web/client/GlomDocument.java: Correct some method
1106 * src/org/glom/web/client/LibGlomService.java: Add method
1107 to get list layout field names.
1108 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
1109 to get list layout field names.
1110 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
1111 widget for list layout table.
1112 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
1113 the table drop box and add new updateTable() method to asynchronously
1114 get the layout list field names for the currently selected table.
1115 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
1116 implementation of getLayoutListHeaders() method.
1117 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
1119 2011-01-18 Ben Konrath <ben@bagu.org>
1121 Make a listBox with table titles instead of the flexTable demo.
1123 This is the start of something more useful.
1125 * .classpath: Exclude a bunch of packages from the JVM that are
1126 getting in the way of the Eclipse content assist.
1127 * src/org/glom/web/client/GlomDocument.java:
1128 * src/org/glom/web/client/GlomTable.java:
1129 * src/org/glom/web/client/LibGlomService.java:
1130 * src/org/glom/web/client/LibGlomServiceAsync.java:
1131 * src/org/glom/web/client/OnlineGlom.java:
1132 * src/org/glom/web/server/LibGlomServiceImpl.java:
1133 * war/OnlineGlom.html:
1134 * war/WEB-INF/web.xml:
1136 211-01-13 Ben Konrath <ben@bagu.org>
1138 Update to new java-libglom API.
1140 * .gitignore: Ignore OnlineGlom.war.
1141 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
1143 2010-12-20 Ben Konrath <ben@bagu.org>
1145 Add some basic style to the table listing.
1147 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
1148 header, print useful error message on async callback failure.
1149 * war/OnlineGlom.css: Add style for table header, remove defaults
1150 provided by the Eclipse project wizard.
1152 2010-12-20 Ben Konrath <ben@bagu.org>
1154 Load example file from installed glom dir.
1156 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
1157 provided by java-libglom to find the example file.
1159 2010-12-20 Ben Konrath <ben@bagu.org>
1161 Update Eclipse settings.
1164 * .settings/com.google.gdt.eclipse.core.prefs:
1165 * .settings/com.google.gwt.eclipse.core.prefs:
1167 2010-12-17 Ben Konrath <ben@bagu.org>
1171 * .classpath: New file.
1172 * .gitignore: New file.
1173 * .project: New file.
1174 * .settings/com.google.gdt.eclipse.core.prefs: New file.
1175 * .settings/com.google.gwt.eclipse.core.prefs: New file.
1176 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
1177 * src/org/glom/web/client/GlomTable.java: New file.
1178 * src/org/glom/web/client/OnlineGlom.java: New file.
1179 * src/org/glom/web/client/TableNameService.java: New file.
1180 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
1181 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
1182 * war/OnlineGlom.css: New file.
1183 * war/OnlineGlom.html: New file.
1184 * war/WEB-INF/web.xml: New file.
1185 * war/images/glom.png: New file.