1 2011-05-19 Ben Konrath <ben@bagu.org>
3 Override toDebugString() in TableChangeEvent.
5 This is useful to have for debugging.
7 * src/main/java/org/glom/web/client/event/TableChangeEvent.java:
9 2011-05-19 Ben Konrath <ben@bagu.org>
11 Add a "Back to List" link when at the DetailsPlace.
13 * src/main/java/org/glom/web/client/activity/ListActivity.java:
14 Populate the CellTable based on the selected table of the ListBox if
15 it's set otherwise use the default table. This allows the "Back to
17 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
18 Remove Place from constructors. Add a setPlace() method. Add
19 goToPlace() method. Set class as presenter for TableSelectionView.
20 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
21 Use the same TableSelectionActivity when switching between the List and
23 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
24 Subclass the new HasSelectableTablePlace. This removes some duplicate
26 * src/main/java/org/glom/web/client/place/HasSelectableTablePlace.java:
27 New class to represent Places that display the TableSelectionView.
28 * src/main/java/org/glom/web/client/place/ListPlace.java:
29 Subclass the new HasSelectableTablePlace. This removes some duplicate
31 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
32 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
33 Add Presenter interface. Add setBackLinkVisible() method. Add
36 2011-05-18 Ben Konrath <ben@bagu.org>
38 Enable the "Details" buttons.
40 Right now only an empty details view is displayed.
42 * src/main/java/org/glom/web/client/ClientFactory.java:
43 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
44 Add DetailsView to ClientFactory.
45 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
46 A basic activity for the details view.
47 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
48 Add a new constructor that takes a DetailsPlace. Rename shutdown() to
50 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
51 Add DetailsPlace.Tokenizer to the list of tokens that are generated by
53 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
54 Create a new DetailsActivity when a DetailsPlace is requested. Remove
55 unnecessary super() in constructor.
56 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
57 Create a new TableSelectionActivity when a DetailsPlace is requested. We
58 really shouldn't create a new TableSelectionActivity for both the ListPlace
59 and the DetailsPlace so this should be considered a temporary solution.
60 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
61 New file. Represents a URL for the details view.
62 * src/main/java/org/glom/web/client/ui/DetailsView.java:
63 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
64 A basic details view interface and implementation.
65 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
66 Enable the "Details" buttons.
68 2011-05-12 Ben Konrath <ben@bagu.org>
70 Use a LayoutPanel with multiple display areas for main layout.
72 This is mostly a refactor in that there are no changes from the user
73 point of view. These changes are required so that we can swap out the list view
74 with the details view when the user clicks the "Details" button.
76 * src/main/java/org/glom/web/client/ClientFactory.java:
77 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
78 OnlineGlomView. Add TableSelectionView, ListView and
80 * src/main/java/org/glom/web/client/OnlineGlom.java: Use LayoutPanel
81 for main layout. Add display regions for main activities. Add
82 activity manager for for main activities.
83 * src/main/java/org/glom/web/client/activity/ListActivity.java: New
84 file from parts of the deleted OnlineGlomActivity.
85 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
86 New file from parts of the deleted OnlineGlomActivity.
87 * src/main/java/org/glom/web/client/event/TableChangeEvent.java:
88 * src/main/java/org/glom/web/client/event/TableChangeEventHandler.java:
89 New files for app wide table change event.
90 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
91 * src/main/java/org/glom/web/client/mvp/DocumentSelectionActivityMapper.java:
92 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
93 Activity mappers for the main activities replace the deleted app-wide
95 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java:
96 Fix a spelling error in he comment.
97 * src/main/java/org/glom/web/client/ui/ListView.java:
98 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
99 Renamed from LayoutListView and modified for MVP. This still not a
100 proper dumb view as prescribed by the MVP pattern but it works for now.
101 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
102 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
103 New widget stripped out of the deleted OnlineGlomView.
104 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
105 Remove hack that is fixed by this patch.
107 2011-05-06 Ben Konrath <ben@bagu.org>
109 Rename OnlineGlomPlace to ListPlace.
111 The only change besides the rename is that url will now display #list
112 instead of #Document.
114 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
115 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
116 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
117 * src/main/java/org/glom/web/client/place/ListPlace.java:
118 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
120 2011-05-06 Ben Konrath <ben@bagu.org>
122 Use Presenter for app navigation.
124 This is the proper way to deal with Place (URL) changes with the MVP
127 * src/main/java/org/glom/web/client/ClientFactory.java:
128 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
129 PlaceHistoryMapper and PlaceHistoryHandler.
130 * src/main/java/org/glom/web/client/OnlineGlom.java: Re-add
131 PlaceHistoryMapper and PlaceHistoryHandler.
132 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
133 Don't use getHistoryMapper().getToken(place) to create the hyperlinks.
134 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
135 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
136 Add Presenter interface and setPresenter methods. Rename addHyperLink
137 to addDocumentLink taking only the document title as a parameter.
139 2011-04-14 Ben Konrath <ben@bagu.org>
141 Prompt for db username/password if they haven't been set.
143 This is implemented with a popup widget that is contained within the
144 OnlineGlomView and managed by the OnlineGlomActivity.
146 * src/main/java/org/glom/web/client/OnlineGlomService.java: Two new
147 methods for checking and setting the database username and password.
148 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Two
149 new methods for checking and setting the database username and
151 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
152 Display authentication popup if the JDBC connection to the database
153 has not been authenticated.
154 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java: New
156 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
157 for dealing with the authentication popup.
158 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java:
159 Implement the methods for dealing with the authentication popup.
160 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Don't
161 try to executed queries if the database connection hasn't been
162 authenticated. Implement methods for checking and setting the
163 database username and password.
165 2011-04-12 Ben Konrath <ben@bagu.org>
167 Make log messages a little clearer.
169 Add a dash betweeen the document title and the table name.
171 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
173 2011-04-12 Ben Konrath <ben@bagu.org>
175 Protect against NPEs when cleaning up database resources.
177 While this isn't strictly necessary because the exception is caught,
178 not protecting against the NPEs makes it harder to find the real error
181 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
183 2011-04-12 Ben Konrath <ben@bagu.org>
185 Move configuration of the servlet to the constructor.
187 The servlet will be initialized even if the database authentication
188 information is not set or correct. I still need to add the UI for prompting
189 the user for the authentication information when it's required.
191 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
192 javadocs for getDocumentTitles() method.
193 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
194 Set error message when RPC fails.
195 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Get the
196 glom files directory from the configuration file. Try to set the
197 database authentication information for the specific document if it's
198 set and works otherwise try to use the global authentication
199 information set for the directory.
200 * src/main/resources/onlineglom.properties: Moved from
201 src/main/webapp/WEB-INF/OnlineGlom.properties. Updated with new keys.
202 Added detailed comments for the new keys.
204 2011-04-11 Ben Konrath <ben@bagu.org>
206 Remove unnecessary @Override in DocumentSelectionViewImpl.
208 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
210 2011-04-11 Ben Konrath <ben@bagu.org>
212 Remove center alignment in DocumentSelectionView.
214 The title element is still centred but the document titles and bottom
215 sentence are both left-aligned.
217 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
219 2011-04-11 Ben Konrath <ben@bagu.org>
221 Change 'Demo' naming convention to 'Document'.
223 This is just a rename refactor with no functional changes to the code.
225 * src/main/java/org/glom/web/client/ClientFactory.java:
226 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
227 * src/main/java/org/glom/web/client/OnlineGlom.java:
228 * src/main/java/org/glom/web/client/OnlineGlomService.java:
229 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
230 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
231 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
232 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
233 * src/main/java/org/glom/web/client/place/DocumentSelectionPlace.java:
234 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
235 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
236 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
237 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
239 2011-04-08 Ben Konrath <ben@bagu.org>
241 Remove FIXME from safeLongToInt() method.
243 Libglom uses longs on 32-bit and 64-bit platforms so it's ok to use
246 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
248 2011-04-08 Ben Konrath <ben@bagu.org>
250 Display an error if no glom documents are found in the specified directory.
252 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
253 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
254 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
255 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
257 2011-04-08 Ben Konrath <ben@bagu.org>
259 Add copyright header to one more file ... oops.
261 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
263 2011-04-08 Ben Konrath <ben@bagu.org>
265 Add copyright header to files without it.
267 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
268 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
269 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
270 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
271 * src/main/java/org/glom/web/shared/ColumnInfo.java:
272 * src/main/java/org/glom/web/shared/GlomField.java:
274 2011-04-08 Ben Konrath <ben@bagu.org>
276 Add support for accessing multiple glom documents in the servlet.
278 This completes the demo selection functionality.
280 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
281 document title to methods.
282 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
283 document title to methods.
284 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
285 Set browser window title when the activity starts. Correct name of
286 document title variable.
287 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
288 Set browser window title when the activity starts. Set the table
289 selector change handler after table selector has been set. Clear the
290 OnlineGlomView when the activity has been stopped.
291 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java: Use the
292 document title as the place token. Use "#Document:" instead of
293 "#OnlineGlomPlace:" in the URL.
294 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
295 Change heading to "Online Glom"
296 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Use
297 document title in RPC methods.
298 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Remove
299 setDocumentTitle() method. Add clear() method.
300 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Remove
301 setDocumentTitle() method. Implement clear() method which removes the
302 change handler on the ListBox, clears the ListBox and clears the
304 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
305 Implement methods with document title. Keep track for the configured
306 glom documents and their corresponding JDBC configurations in a hash
307 table. This information is retrieved using the document title as the
308 key in the hash table.
309 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
310 document title field as it's no longer needed.
312 2011-04-08 Ben Konrath <ben@bagu.org>
314 Update the Eclipse JDT configuration.
316 * .settings/org.eclipse.jdt.ui.prefs: Automatically add comments to new
317 methods. Automatically add the copyright header to new files.
319 2011-04-05 Ben Konrath <ben@bagu.org>
321 Add new page for demo selection.
323 This patch adds all the components required to view and start an
324 OnlineGlom demo by clicking on the desired hyperlink. The user is
325 able to return to the demo selection page with the browser's back
326 button. I still need to modify the servlet to work with multiple
327 documents so all demo links will load the file defined in the
328 OnlineGlom.properties.
330 * .gitignore: Add .gwt which holds the error log for the GWT UiBuidler.
331 This is only useful during development so we don't need to save it.
332 * src/main/java/org/glom/web/client/ClientFactory.java: Add method to
333 get a reference to the DemoSelectionView.
334 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Implement
335 method to get a reference to the DemoSelectionView.
336 * src/main/java/org/glom/web/client/OnlineGlom.java: Change the
337 default view to DemoSelectionView.
338 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add method
339 to get glom document titles for glom files in a hard-coded directory.
340 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
341 method to get glom document titles for glom files in a hard-coded
343 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
344 Presenter for DemoSelectionView.
345 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: Update
346 for DemoSelectionView.
347 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
348 Update for DemoSelectionView.
349 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
350 Basic 'Place' implementation for the DemoSelectionView.
351 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
352 The interface for the DemoSelectionView.
353 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
354 The implementation of the DemoSelectionView.
355 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
356 The GWT UiBuilder xml file used in DemoSelectionViewImpl.
357 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
358 implementation of method to get glom document titles for glom files
359 in a hard-coded directory.
360 * src/main/webapp/OnlineGlom.html: Remove link to CSS file as it's
361 on longer being used.
362 * src/main/webapp/glom.png: Glom logo.
364 2011-04-05 Ben Konrath <ben@bagu.org>
366 Move RPC code from OnlineGlomViewImpl to OnlineGlomActivity.
368 This is the forth and final commit of a refactor that will allow
369 OnlineGlom to be used with multiple documents.
371 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
372 Move RPC code from OnlineGlomViewImpl to this class.
373 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
375 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Move
376 RPC code to the presenter class (the P in MVP).
378 2011-04-04 Ben Konrath <ben@bagu.org>
380 Start moving the existing OnlineGlom code to MVP.
382 This work is based on the GWT MVP framework that is documented here:
384 https://code.google.com/webtoolkit/doc/2.2/DevGuideMvpActivitiesAndPlaces.html
386 This is the third commit of a refactor that will allow OnlineGlom to
387 be used with multiple documents.
389 * src/main/java/org/glom/web/client/ClientFactory.java: New file.
390 Interface for client factory which is used to get instances of various
391 classes throughout the app.
392 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: New file.
393 Implementation of client factory.
394 * src/main/java/org/glom/web/client/OnlineGlom.java: Add code to
395 initialize the MVP framework.
396 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
397 New file. Activity manager for the main container widget. This is the
399 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: New file.
400 Maps place (URL) to its corresponding activity.
401 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
402 New file. This is just a place holder for a generated file.
403 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java:
404 New file. Represents the URL for the main Online Glom app.
405 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Update
406 for changes in LayoutListViewImpl.
407 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Create
408 interface for View. Move code to OnlineGlomViewImpl class.
409 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: New
410 file. Implementation of OnlineGlomView.
411 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Add Activity and
412 Place resources. Use ClientFactoryImpl by default.
414 2011-04-04 Ben Konrath <ben@bagu.org>
416 Move View classes to their own package.
418 This is the second commit of a refactor that will allow OnlineGlom to
419 be used with multiple documents.
421 * src/main/java/org/glom/web/client/OnlineGlom.java:
422 * src/main/java/org/glom/web/client/ui/LayoutListView.java:
423 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java:
425 2011-04-02 Ben Konrath <ben@bagu.org>
427 Move UI code from the main module to its own class.
429 This is the first commit of a refactor that will allow OnlineGlom to be
430 used with multiple documents.
432 * src/main/java/org/glom/web/client/LayoutListView.java: Update
433 references to OnlineGlom to OnlineGlomView.
434 * src/main/java/org/glom/web/client/OnlineGlom.java: Move code to
435 OnlineGlomView and instantiate it here.
436 * src/main/java/org/glom/web/client/OnlineGlomView.java: New class that
437 represents the main OnlineGlomView with one document.
439 2011-04-01 Ben Konrath <ben@bagu.org>
441 Fix formatting of gwt.xml and add DTD.
443 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
445 2011-03-30 Ben Konrath <ben@bagu.org>
447 Propperly convert gdkColor string to html colour string.
449 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
451 2011-03-28 Ben Konrath <ben@bagu.org>
453 Change implementation of OnlineGlomServiceImpl.getColumnInfoHorizontalAlignment().
455 This implementation matches
456 OnlineGlomServiceImpl.getColumnInfoGlomFieldType(), should perform better, is more
457 readable and is not tied to Swig.
459 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
461 2011-03-28 Ben Konrath <ben@bagu.org>
463 Use read-only checkboxes for boolean field types.
465 * src/main/java/org/glom/web/client/LayoutListView.java: Create columns
466 in the CellTable based on the field type. It currently only
467 distinguishes between boolean and text columns but I'll need to add
468 support for more types.
469 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
470 column type in the ColumnInfo object. Add method to convert between the
471 glom field type enum in ColumnInfo and the glom field type in libglom.
472 * src/main/java/org/glom/web/shared/ColumnInfo.java: Add support for
474 * src/main/java/org/glom/web/shared/GlomField.java: Add support for
475 getting and setting booleans.
477 2011-03-25 Ben Konrath <ben@bagu.org>
479 Don't get the Date twice from the ResultSet.
481 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
483 2011-03-25 Ben Konrath <ben@bagu.org>
485 Cleanup code in the servlet.
487 * TODO: Remove item about row count. Add item about testing row count
488 query with large number of rows.
489 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Fix
490 spelling mistakes, change method parameter to be consistent with
493 2011-03-25 Ben Konrath <ben@bagu.org>
495 Add server side logging with the gwt-log library.
497 * .gitignore: Ignore the log file we're now producing.
498 * TODO: Add a couple TODO item for logging.
499 * pom.xml: Add gwt-log and log4j as a dependency.
500 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
501 logging of errors, warnings and some important info.
502 * src/main/resources/log4j.properties: New file to configure log4j.
504 2011-03-24 Ben Konrath <ben@bagu.org>
506 Add a disable button for the Details view.
508 * src/main/java/org/glom/web/client/LayoutListView.java:
510 2011-03-22 Ben Konrath <ben@bagu.org>
512 Use a count query to get the number of rows for the list view pager.
514 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
516 2011-03-22 Ben Konrath <ben@bagu.org>
518 Add more TODO information about CellTable pager positioning.
522 2011-03-19 Ben Konrath <ben@bagu.org>
524 Add TODO item about CellTable pager positioning.
528 2011-03-18 Ben Konrath <ben@bagu.org>
530 Remove unneeded GlomFieldColumn class.
532 This is just a small code cleanup.
534 * src/main/java/org/glom/web/client/LayoutListView.java:
536 2011-03-18 Ben Konrath <ben@bagu.org>
538 Use cursor mode in the query that gets data for the list view.
540 I still need to fix the potential memory problem when getting the row
541 count for the list view.
543 * TODO: Add note about testing memory usage with large data sets. Add
544 item about fixing row counting with large data sets.
545 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
546 PostgreSQL JDBC driver into cursor mode when getting data for the
549 2011-03-15 Ben Konrath <ben@bagu.org>
551 Remove the GWT Container from the Eclipse build classpath.
553 The GWT dependencies are set by Maven so this isn't needed.
557 2011-03-15 Murray Cumming <murrayc@murrayc.com>
559 Added some earlier mockups to git, but not to the tarball dist.
561 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
562 Openismus. These hopefully show how we might structure the HTML so that
563 it can be styled easily with CSS. However, we probably need to adapt them
564 for the CSS structure that GWT dictates for common widgets.
566 2011-03-14 Ben Konrath <ben@bagu.org>
568 Locate OnlineGlom.properties using the ServletContext.
570 This is required to be able to locate the file in the deployed servlet.
572 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
573 Configure the database and glom document in in a helper method so
574 that the ServletContext can be used to locate OnlineGlom.properties.
575 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
576 src/main/webapp. This is the proper location for .properites files.
578 2011-03-12 Ben Konrath <ben@bagu.org>
580 Add note to README about why we're compiling down to obfuscated JavaScript.
584 2011-03-11 Ben Konrath <ben@bagu.org>
586 Use properties file to configure servlet.
588 This allows people to change the glom file path, db username and db
589 password without recompiling the code.
591 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
592 * src/main/webapp/OnlineGlom.properties:
594 2011-03-11 Ben Konrath <ben@bagu.org>
596 Use table fields in layout list view if the layout list is not defined.
598 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
599 Manually create a LayoutFieldVector for the query builder using the
600 table fields when a layout list is not defined in the glom file.
602 2011-03-11 Ben Konrath <ben@bagu.org>
604 Only show FIXME string for images when there's an image.
606 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
607 in this change are some small code cleanups.
609 2011-03-11 Ben Konrath <ben@bagu.org>
611 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
613 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
615 2011-03-11 Ben Konrath <ben@bagu.org>
617 Correctly set the index of the default table.
619 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
620 Correctly set the index of the default table. Add commented out example
623 2011-03-10 Ben Konrath <ben@bagu.org>
625 Add comment to pom.xml about the previous change.
627 * pom.xml: Add comment about the deployment issue so that it's obvious
628 why java-libglom is set to the provided scope.
630 2011-03-10 Ben Konrath <ben@bagu.org>
632 Change java-libglom dependency from compile to provided in pom.xml.
634 Since java-libglom uses jni it can only be loaded once and therefore
635 must be placed in $CATALINA_HOME/lib and not included in each war.
636 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
637 More information about this issue can be found in the Tomcat 6 release
638 notes in the "JNI Based Applications" section:
640 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
642 * README: Remove note about this issue. Deployment info should really
643 be on the wiki anyway so I'll add it right now.
644 * pom.xml: Change java-libglom dependency from compile to provided so
645 that it's copied in to the packaged war.
647 2011-03-09 Ben Konrath <ben@bagu.org>
649 Change to using a neutral locale for currency, date and time formatting.
651 This solves the problem of currency values being represented without a
652 space between the currency code and the number (e.g. "EUR5.89" is now
653 represented as "EUR 5.89"). More work is required when we implement
654 a locale preference setting.
656 * TODO: Add note about currency formatting issues with different
658 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
659 to using the neutral ROOT locale.
661 2011-03-09 Ben Konrath <ben@bagu.org>
663 Add support for currency codes that are not ISO 4217 codes.
665 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
666 the currency code defined in the glom file when it's not 3 characters
667 long or when Java doesn't recognize the string as an ISO 4217 code.
669 2011-03-08 Ben Konrath <ben@bagu.org>
671 Remove test classes, launch configurations and configuration.
673 The test stuff was getting in the way when creating the war. To make
674 the war file you can now do 'mvn clean package'. The packaged war file
675 will be in the target directory.
677 * .classpath: Remove unused classpathentry for tests and i18n.
678 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
679 property. Don't run test or i18n goals when packaging the war.
680 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
685 * OnlineGlomTest-dev.launch:
686 * OnlineGlomTest-prod.launch:
687 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
688 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
690 2011-03-07 Ben Konrath <ben@bagu.org>
692 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
694 These fixes allow me to use 'mvn deploy' to create the war file.
696 * .classpath: This generated config has been updated by Eclipse. This
697 change was probably triggered by me updating from Eclipse 3.6.1 to
699 * .gitignore: Add entry to ignore the directory
700 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
701 * .project: The generated config has been updated by Eclipse. This
702 change was probably triggered by me updating from Eclipse 3.6.1 to
704 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
705 so that Eclipse doesn't complain
706 * pom.xml: Update to gwt-maven-plugin 2.2.0.
707 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
708 'tests' directory to 'client' directory. This is the new
709 gwt-maven-plugin convension.
710 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
711 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
713 2011-03-07 Ben Konrath <ben@bagu.org>
715 Add support for horizontal alignment in the LayoutList columns.
717 * TODO: Remove item about horizontal alignment. Add item about
718 improvements to ColumnInfo.
719 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
720 alignment on the columns. Use ColumnInfo RPC object get the column
721 title and horizontal alignment.
722 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
723 LayoutListView creation with ColumnInfo RPC object.
724 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
725 a ColumnInfo object for every LayoutList columnn. Convert the
726 FieldFormatting.HorizontalAlignment to the correct
727 ColumnnInfo.HorizontatlAlignment with the new
728 getColumnInfoHorizontalAlignment helper method.
729 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
730 to encapsulate column information like alignment and title. This
731 could be used to set the colour instead of on a per cell field basis.
732 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
733 column title storage and retrieval with ColumnInfo.
735 2011-03-04 Ben Konrath <ben@bagu.org>
737 Add support for column sorting.
739 * src/main/java/org/glom/web/client/LayoutListView.java: Change
740 AsynDataProvider to be an anonymous inner class. Use new
741 getSortedTableData RPC method when column sort is requested. Set all
742 columns sortable and add an AsyncHandler to activate sorting in the
744 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
745 method getSortedTableData(). Cleanup other method signatures.
746 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
747 new method getSortedTableData(). Cleanup other method signatures.
748 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
749 Implement getSortedTableData() and getTableData() methods by using a
750 private helper method with the appropriate parameters filled in. Use
751 user supplied sort clause when supplied, otherwise fall back to
752 sorting by the primary key. Move destroy() method to be underneath
753 constructor for readability. Cleanup comments.
755 2011-03-03 Ben Konrath <ben@bagu.org>
757 Add support for colour text and colour backgrounds to the layout list cells.
759 Only the cell backgrounds are coloured which leaves a gap between the
760 cells that isn't coloured. I need to figure out a way to set
761 'style=background-colour:' on the whole column rather than just the
764 * TODO: Add a note about colouring the background of the whole column.
765 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
766 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
767 render the coloured text and backgrounds. Use GlomField[] for the row type.
768 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
770 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
771 GlomField[] for the row type.
772 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
773 GlomField[] for the row type. Set the text, text colour and background
774 colour in the GlomField objects as specified in the glom document. Add
775 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
776 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
777 the glom field text, foreground colour and background colour.
779 2011-03-02 Ben Konrath <ben@bagu.org>
781 Don't display hidden tables in the combo box.
783 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
785 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
786 code to ignore hidden tables using ArrayLists for the table names and
788 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
789 tableNames to use ArrayLists instead of String[]. Update getter and setter
792 2011-03-01 Ben Konrath <ben@bagu.org>
794 Add support for Date and Time number types.
796 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
797 Implement formatting for Date and Time values. Change the default glom
798 file to small business example.
800 2011-03-01 Ben Konrath <ben@bagu.org>
802 Add support for formatting glom types as specified in the glom file.
804 Formatting isn't finished yet - I still need to add support for Date
807 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
808 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
809 checks for null values in JDBC cleanup code and catch all exceptions
810 instead of just SQLExceptions.
811 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
814 2011-03-01 Ben Konrath <ben@bagu.org>
816 Use GWT 2.2.0 instead of 2.1.1.
818 * pom.xml: Change GWT version numbers.
820 2011-03-01 Ben Konrath <ben@bagu.org>
822 A few small code cleanups.
824 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
826 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
827 unnecessary object creation in constructor.
828 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
829 unnecessary object creation in constructor.
831 2011-02-28 Ben Konrath <ben@bagu.org>
833 Add file for TODO list.
837 2011-02-18 Ben Konrath <ben@bagu.org>
839 Enable the CellTable Pager when more than 20 rows need to be viewed.
841 The Pager will automatically become active when the results are larger
842 than the CellTable size which is currently set to 20 lines.
844 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
845 name on debug statment in RPC call in LayoutListDataProvider, add
846 numRows parameter to LayoutListView constructor, propperly set rowCount
848 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
849 name on debug statment in RPC call, use LayoutListTable object in RPC
850 calls, pass rowCount to LayoutListView.
851 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
852 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
854 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
855 interface for changes in OnlineGlomService.
856 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
857 getLayoutListHeaders() to getLayoutListTable() and return
858 LayoutListTable. Using this object allows me to pass other information
859 about the LayoutList like the expected number of rows in the result set.
860 The Connection object from the connection pool is now propperly closed.
861 Only the requested number of lines are returned to the client in
863 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
864 GlomTable and add columnTitles and numRows.
866 2011-02-18 Ben Konrath <ben@bagu.org>
868 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
870 This is a small performance boost. I'll use GlomTable to get the required
871 layoutlist information.
873 * src/main/java/org/glom/web/client/OnlineGlom.java:
874 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
875 * src/main/java/org/glom/web/shared/GlomDocument.java:
877 2011-02-18 Ben Konrath <ben@bagu.org>
879 Add option to turn off formatting in JDT formatter preferences.
881 * .settings/org.eclipse.jdt.core.prefs:
883 2011-02-18 Ben Konrath <ben@bagu.org>
885 Rename LayoutList to LayoutListView.
887 I'm working towards setting things up to easily use MVP when the time
890 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
892 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
895 2011-02-17 Ben Konrath <ben@bagu.org>
897 Move LayoutListDataProvider class into LayoutList.java.
899 * src/main/java/org/glom/web/client/LayoutList.java:
901 2011-02-17 Ben Konrath <ben@bagu.org>
903 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
905 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
907 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
908 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
909 from LibGlomServer.java.
910 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
911 Rename from LibGlomServiceAsync.java.
912 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
913 Rename from LibGlomServiceImpl.java.
914 * src/main/webapp/WEB-INF/web.xml: Update configuration.
916 2011-02-17 Ben Konrath <ben@bagu.org>
920 * .settings/org.eclipse.jdt.core.prefs:
922 2011-02-17 Ben Konrath <ben@bagu.org>
924 Move GWT-RPC objects to shared package (where they should be).
926 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
927 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
928 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
929 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
930 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
931 org.glom.web.shared package.
932 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
933 org.glom.web.shared package.
934 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
935 directory in compilation to javascript.
937 2011-02-16 Ben Konrath <ben@bagu.org>
939 Add sort clause to the sql query that grabs table information.
941 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
942 if one of the columns is a primary key.
944 2011-02-16 Ben Konrath <ben@bagu.org>
946 Disable generateAsync feature of gwt-maven.
948 The generated interface does not correctly match the methods in LibGlomService
949 and the generated singleton Util inner-class doesn't respect the servlet
952 * pom.xml: Turn off generateAsync feature.
953 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
954 with singleton Util inner-class.
956 2011-02-14 Ben Konrath <ben@bagu.org>
958 Add LGPL v3 licence notices.
960 Followed directions listed here:
961 http://www.gnu.org/licenses/gpl-howto.html
963 * COPYING: This file is a copy of the GPL v3.
964 * COPYING.LESSER: This file is a copy of the LGPL v3.
965 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
967 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
969 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
971 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
973 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
975 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
977 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
980 2011-02-14 Ben Konrath <ben@bagu.org>
982 Use ArrayList instead of Array in GWT-RPC calls.
984 Apparently this gives a slight performance boost to the compiled
987 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
989 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
992 2011-02-14 Ben Konrath <ben@bagu.org>
994 Access data from a postgres db rather than the example glom file.
996 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
997 compile down to obfuscated javascript.
998 * pom.xml: Add c3p0 and postgres JDBC libraries.
999 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
1000 using a postgres db accessed through the c3p0 connection pooling library.
1002 2011-02-14 Ben Konrath <ben@bagu.org>
1004 Update Java formatter settings.
1006 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
1008 2011-02-02 Ben Konrath <ben@bagu.org>
1010 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
1012 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
1014 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
1015 the compiled webapp directory that Eclipse uses as we're using Maven now.
1016 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
1017 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
1019 * pom.xml: Format file, change target Java version to 1.6.
1021 2011-02-02 Ben Konrath <ben@bagu.org>
1023 Add information about a deployment related issue.
1025 * README: Add Notes section with the problem outlined.
1027 2011-02-02 Ben Konrath <ben@bagu.org>
1029 Call Glom.libglom_deinit() when the servlet is shutdown.
1031 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
1032 Glom.libglom_deinit() to destroy() method.
1034 2011-01-28 Ben Konrath <ben@bagu.org>
1036 Use generated Util class to get the RPC Async interface.
1038 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
1040 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
1041 getInstance() method to get a reference to the RPC Async interface.
1042 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
1043 getInstance() method to get a reference to the RPC Async interface, remove
1044 the now unused getLibGlomServiceProxy() method.
1046 2011-01-27 Ben Konrath <ben@bagu.org>
1048 Cleanup ChangeLog entry from previous commit.
1050 * ChangeLog: Group logical changes together and add comments.
1052 2011-01-25 Ben Konrath <ben@bagu.org>
1054 Convert to gwt-maven project.
1056 * .gitignore: Update for new project structure.
1057 * README: New file with a link to the online documentation.
1058 * pom.xml: The generated maven configuration file with some tweaks.
1060 Add / update Eclipse settings. These files are a merge of the files that
1061 were generated with the gwt-maven plugin and the files we were previously
1065 * .settings/.jsdtscope:
1066 * .settings/com.google.gdt.eclipse.core.prefs:
1067 * .settings/com.google.gwt.eclipse.core.prefs:
1068 * .settings/org.eclipse.jdt.core.prefs:
1069 * .settings/org.eclipse.wst.common.component:
1070 * .settings/org.eclipse.wst.common.project.facet.core.xml:
1071 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
1072 * .settings/org.maven.ide.eclipse.prefs:
1073 * OnlineGlomTest-dev.launch:
1074 * OnlineGlomTest-prod.launch:
1076 Java source files moved from the 'src' directory to the directory structure
1078 * src/main/java/org/glom/web/client/GlomDocument.java:
1079 * src/main/java/org/glom/web/client/GlomTable.java:
1080 * src/main/java/org/glom/web/client/LayoutList.java:
1081 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
1082 * src/main/java/org/glom/web/client/LibGlomService.java:
1083 * src/main/java/org/glom/web/client/OnlineGlom.java:
1084 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
1086 Non-functional property file used for translations. I included this as
1087 reminder that it's something I need to sort out.
1088 * src/main/resources/org/glom/web/client/Messages.properties:
1090 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
1091 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
1093 The servlet configuration files moved from the 'war' directory.
1094 * src/main/webapp/OnlineGlom.css:
1095 * src/main/webapp/OnlineGlom.html:
1096 * src/main/webapp/WEB-INF/web.xml:
1098 Generated test files with most of the code commented out. I included these
1099 so that it's easy to add tests when we're ready for them.
1100 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
1101 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
1103 2011-01-25 Ben Konrath <ben@bagu.org>
1105 Remove unused println.
1107 * src/org/glom/web/server/LibGlomServiceImpl.java:
1109 2011-01-25 Ben Konrath <ben@bagu.org>
1111 Add project specific JDT settings.
1113 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
1114 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
1116 2011-01-25 Ben Konrath <ben@bagu.org>
1118 Populate celltable with example data.
1120 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
1121 * src/org/glom/web/client/GlomTable.java: Correct formatting.
1122 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
1123 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
1124 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
1125 asynchronously gets the example data.
1126 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
1127 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
1128 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
1129 curently selected table to be retrieved by other widgets.
1130 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
1131 implement getTableData() in a hacky way. This method needs to be updated
1132 to grab information from the database when database creating is
1135 2011-01-20 Ben Konrath <ben@bagu.org>
1137 Set table headers when table dropBox changes.
1139 * src/org/glom/web/client/GlomDocument.java: Correct some method
1141 * src/org/glom/web/client/LibGlomService.java: Add method
1142 to get list layout field names.
1143 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
1144 to get list layout field names.
1145 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
1146 widget for list layout table.
1147 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
1148 the table drop box and add new updateTable() method to asynchronously
1149 get the layout list field names for the currently selected table.
1150 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
1151 implementation of getLayoutListHeaders() method.
1152 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
1154 2011-01-18 Ben Konrath <ben@bagu.org>
1156 Make a listBox with table titles instead of the flexTable demo.
1158 This is the start of something more useful.
1160 * .classpath: Exclude a bunch of packages from the JVM that are
1161 getting in the way of the Eclipse content assist.
1162 * src/org/glom/web/client/GlomDocument.java:
1163 * src/org/glom/web/client/GlomTable.java:
1164 * src/org/glom/web/client/LibGlomService.java:
1165 * src/org/glom/web/client/LibGlomServiceAsync.java:
1166 * src/org/glom/web/client/OnlineGlom.java:
1167 * src/org/glom/web/server/LibGlomServiceImpl.java:
1168 * war/OnlineGlom.html:
1169 * war/WEB-INF/web.xml:
1171 211-01-13 Ben Konrath <ben@bagu.org>
1173 Update to new java-libglom API.
1175 * .gitignore: Ignore OnlineGlom.war.
1176 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
1178 2010-12-20 Ben Konrath <ben@bagu.org>
1180 Add some basic style to the table listing.
1182 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
1183 header, print useful error message on async callback failure.
1184 * war/OnlineGlom.css: Add style for table header, remove defaults
1185 provided by the Eclipse project wizard.
1187 2010-12-20 Ben Konrath <ben@bagu.org>
1189 Load example file from installed glom dir.
1191 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
1192 provided by java-libglom to find the example file.
1194 2010-12-20 Ben Konrath <ben@bagu.org>
1196 Update Eclipse settings.
1199 * .settings/com.google.gdt.eclipse.core.prefs:
1200 * .settings/com.google.gwt.eclipse.core.prefs:
1202 2010-12-17 Ben Konrath <ben@bagu.org>
1206 * .classpath: New file.
1207 * .gitignore: New file.
1208 * .project: New file.
1209 * .settings/com.google.gdt.eclipse.core.prefs: New file.
1210 * .settings/com.google.gwt.eclipse.core.prefs: New file.
1211 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
1212 * src/org/glom/web/client/GlomTable.java: New file.
1213 * src/org/glom/web/client/OnlineGlom.java: New file.
1214 * src/org/glom/web/client/TableNameService.java: New file.
1215 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
1216 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
1217 * war/OnlineGlom.css: New file.
1218 * war/OnlineGlom.html: New file.
1219 * war/WEB-INF/web.xml: New file.
1220 * war/images/glom.png: New file.