1 2011-03-11 Ben Konrath <ben@bagu.org>
3 Use properites file to configure servlet.
5 This allows people to change the glom file path, db username and db
6 password without recompiling the code.
8 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
9 * src/main/webapp/OnlineGlom.properties:
11 2011-03-11 Ben Konrath <ben@bagu.org>
13 Use table fields in layout list view if the layout list is not defined.
15 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
16 Manually create a LayoutFieldVector for the query builder using the
17 table fieldswhen a layout list is not defined in the glom file.
19 2011-03-11 Ben Konrath <ben@bagu.org>
21 Only show FIXME string for images when there's an image.
23 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
24 in this change are some small code cleanups.
26 2011-03-11 Ben Konrath <ben@bagu.org>
28 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
30 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
32 2011-03-11 Ben Konrath <ben@bagu.org>
34 Correctly set the index of the default table.
36 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
37 Correctly set the index of the default table. Add commented out example
40 2011-03-10 Ben Konrath <ben@bagu.org>
42 Add comment to pom.xml about the previous change.
44 * pom.xml: Add comment about the deployment issue so that it's obvious
45 why java-libglom is set to the provided scope.
47 2011-03-10 Ben Konrath <ben@bagu.org>
49 Change java-libglom dependency from compile to provided in pom.xml.
51 Since java-libglom uses jni it can only be loaded once and therefore
52 must be placed in $CATALINA_HOME/lib and not included in each war.
53 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
54 More information about this issue can be found in the Tomcat 6 release
55 notes in the "JNI Based Applications" section:
57 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
59 * README: Remove note about this issue. Deployment info should really
60 be on the wiki anyway so I'll add it right now.
61 * pom.xml: Change java-libglom dependency from compile to provided so
62 that it's copied in to the packaged war.
64 2011-03-09 Ben Konrath <ben@bagu.org>
66 Change to using a neutral locale for currency, date and time formatting.
68 This solves the problem of currency values being represented without a
69 space between the currency code and the number (e.g. "EUR5.89" is now
70 represented as "EUR 5.89"). More work is required when we implement
71 a locale preference setting.
73 * TODO: Add note about currency formatting issues with different
75 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
76 to using the neutral ROOT locale.
78 2011-03-09 Ben Konrath <ben@bagu.org>
80 Add support for currency codes that are not ISO 4217 codes.
82 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
83 the currency code defined in the glom file when it's not 3 characters
84 long or when Java doesn't recognize the string as an ISO 4217 code.
86 2011-03-08 Ben Konrath <ben@bagu.org>
88 Remove test classes, launch configurations and configuration.
90 The test stuff was getting in the way when creating the war. To make
91 the war file you can now do 'mvn clean package'. The packaged war file
92 will be in the target directory.
94 * .classpath: Remove unused classpathentry for tests and i18n.
95 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
96 property. Don't run test or i18n goals when packaging the war.
97 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
102 * OnlineGlomTest-dev.launch:
103 * OnlineGlomTest-prod.launch:
104 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
105 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
107 2011-03-07 Ben Konrath <ben@bagu.org>
109 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
111 These fixes allow me to use 'mvn deploy' to create the war file.
113 * .classpath: This generated config has been updated by Eclipse. This
114 change was probably triggered by me updating from Eclipse 3.6.1 to
116 * .gitignore: Add entry to ignore the directory
117 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
118 * .project: The generated config has been updated by Eclipse. This
119 change was probably triggered by me updating from Eclipse 3.6.1 to
121 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
122 so that Eclipse doesn't complain
123 * pom.xml: Update to gwt-maven-plugin 2.2.0.
124 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
125 'tests' directory to 'client' directory. This is the new
126 gwt-maven-plugin convension.
127 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
128 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
130 2011-03-07 Ben Konrath <ben@bagu.org>
132 Add support for horizontal alignment in the LayoutList columns.
134 * TODO: Remove item about horizontal alignment. Add item about
135 improvements to ColumnInfo.
136 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
137 alignment on the columns. Use ColumnInfo RPC object get the column
138 title and horizontal alignment.
139 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
140 LayoutListView creation with ColumnInfo RPC object.
141 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
142 a ColumnInfo object for every LayoutList columnn. Convert the
143 FieldFormatting.HorizontalAlignment to the correct
144 ColumnnInfo.HorizontatlAlignment with the new
145 getColumnInfoHorizontalAlignment helper method.
146 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
147 to encapsulate column information like alignment and title. This
148 could be used to set the colour instead of on a per cell field basis.
149 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
150 column title storage and retrieval with ColumnInfo.
152 2011-03-04 Ben Konrath <ben@bagu.org>
154 Add support for column sorting.
156 * src/main/java/org/glom/web/client/LayoutListView.java: Change
157 AsynDataProvider to be an anonymous inner class. Use new
158 getSortedTableData RPC method when column sort is requested. Set all
159 columns sortable and add an AsyncHandler to activate sorting in the
161 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
162 method getSortedTableData(). Cleanup other method signatures.
163 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
164 new method getSortedTableData(). Cleanup other method signatures.
165 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
166 Implement getSortedTableData() and getTableData() methods by using a
167 private helper method with the appropriate parameters filled in. Use
168 user supplied sort clause when supplied, otherwise fall back to
169 sorting by the primary key. Move destroy() method to be underneath
170 constructor for readability. Cleanup comments.
172 2011-03-03 Ben Konrath <ben@bagu.org>
174 Add support for colour text and colour backgrounds to the layout list cells.
176 Only the cell backgrounds are coloured which leaves a gap between the
177 cells that isn't coloured. I need to figure out a way to set
178 'style=background-colour:' on the whole column rather than just the
181 * TODO: Add a note about colouring the background of the whole column.
182 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
183 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
184 render the coloured text and backgrounds. Use GlomField[] for the row type.
185 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
187 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
188 GlomField[] for the row type.
189 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
190 GlomField[] for the row type. Set the text, text colour and background
191 colour in the GlomField objects as specified in the glom document. Add
192 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
193 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
194 the glom field text, foreground colour and background colour.
196 2011-03-02 Ben Konrath <ben@bagu.org>
198 Don't display hidden tables in the combo box.
200 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
202 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
203 code to ignore hidden tables using ArrayLists for the table names and
205 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
206 tableNames to use ArrayLists instead of String[]. Update getter and setter
209 2011-03-01 Ben Konrath <ben@bagu.org>
211 Add support for Date and Time number types.
213 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
214 Implement formatting for Date and Time values. Change the default glom
215 file to small business example.
217 2011-03-01 Ben Konrath <ben@bagu.org>
219 Add support for formatting glom types as specified in the glom file.
221 Formatting isn't finished yet - I still need to add support for Date
224 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
225 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
226 checks for null values in JDBC cleanup code and catch all exceptions
227 instead of just SQLExceptions.
228 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
231 2011-03-01 Ben Konrath <ben@bagu.org>
233 Use GWT 2.2.0 instead of 2.1.1.
235 * pom.xml: Change GWT version numbers.
237 2011-03-01 Ben Konrath <ben@bagu.org>
239 A few small code cleanups.
241 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
243 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
244 unnecessary object creation in constructor.
245 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
246 unnecessary object creation in constructor.
248 2011-02-28 Ben Konrath <ben@bagu.org>
250 Add file for TODO list.
254 2011-02-18 Ben Konrath <ben@bagu.org>
256 Enable the CellTable Pager when more than 20 rows need to be viewed.
258 The Pager will automatically become active when the results are larger
259 than the CellTable size which is currently set to 20 lines.
261 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
262 name on debug statment in RPC call in LayoutListDataProvider, add
263 numRows parameter to LayoutListView constructor, propperly set rowCount
265 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
266 name on debug statment in RPC call, use LayoutListTable object in RPC
267 calls, pass rowCount to LayoutListView.
268 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
269 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
271 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
272 interface for changes in OnlineGlomService.
273 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
274 getLayoutListHeaders() to getLayoutListTable() and return
275 LayoutListTable. Using this object allows me to pass other information
276 about the LayoutList like the expected number of rows in the result set.
277 The Connection object from the connection pool is now propperly closed.
278 Only the requested number of lines are returned to the client in
280 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
281 GlomTable and add columnTitles and numRows.
283 2011-02-18 Ben Konrath <ben@bagu.org>
285 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
287 This is a small performance boost. I'll use GlomTable to get the required
288 layoutlist information.
290 * src/main/java/org/glom/web/client/OnlineGlom.java:
291 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
292 * src/main/java/org/glom/web/shared/GlomDocument.java:
294 2011-02-18 Ben Konrath <ben@bagu.org>
296 Add option to turn off formatting in JDT formatter preferences.
298 * .settings/org.eclipse.jdt.core.prefs:
300 2011-02-18 Ben Konrath <ben@bagu.org>
302 Rename LayoutList to LayoutListView.
304 I'm working towards setting things up to easily use MVP when the time
307 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
309 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
312 2011-02-17 Ben Konrath <ben@bagu.org>
314 Move LayoutListDataProvider class into LayoutList.java.
316 * src/main/java/org/glom/web/client/LayoutList.java:
318 2011-02-17 Ben Konrath <ben@bagu.org>
320 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
322 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
324 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
325 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
326 from LibGlomServer.java.
327 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
328 Rename from LibGlomServiceAsync.java.
329 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
330 Rename from LibGlomServiceImpl.java.
331 * src/main/webapp/WEB-INF/web.xml: Update configuration.
333 2011-02-17 Ben Konrath <ben@bagu.org>
337 * .settings/org.eclipse.jdt.core.prefs:
339 2011-02-17 Ben Konrath <ben@bagu.org>
341 Move GWT-RPC objects to shared package (where they should be).
343 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
344 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
345 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
346 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
347 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
348 org.glom.web.shared package.
349 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
350 org.glom.web.shared package.
351 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
352 directory in compilation to javascript.
354 2011-02-16 Ben Konrath <ben@bagu.org>
356 Add sort clause to the sql query that grabs table information.
358 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
359 if one of the columns is a primary key.
361 2011-02-16 Ben Konrath <ben@bagu.org>
363 Disable generateAsync feature of gwt-maven.
365 The generated interface does not correctly match the methods in LibGlomService
366 and the generated singleton Util inner-class doesn't respect the servlet
369 * pom.xml: Turn off generateAsync feature.
370 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
371 with singleton Util inner-class.
373 2011-02-14 Ben Konrath <ben@bagu.org>
375 Add LGPL v3 licence notices.
377 Followed directions listed here:
378 http://www.gnu.org/licenses/gpl-howto.html
380 * COPYING: This file is a copy of the GPL v3.
381 * COPYING.LESSER: This file is a copy of the LGPL v3.
382 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
384 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
386 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
388 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
390 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
392 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
394 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
397 2011-02-14 Ben Konrath <ben@bagu.org>
399 Use ArrayList instead of Array in GWT-RPC calls.
401 Apparently this gives a slight performance boost to the compiled
404 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
406 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
409 2011-02-14 Ben Konrath <ben@bagu.org>
411 Access data from a postgres db rather than the example glom file.
413 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
414 compile down to obfuscated javascript.
415 * pom.xml: Add c3p0 and postgres JDBC libraries.
416 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
417 using a postgres db accessed through the c3p0 connection pooling library.
419 2011-02-14 Ben Konrath <ben@bagu.org>
421 Update Java formatter settings.
423 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
425 2011-02-02 Ben Konrath <ben@bagu.org>
427 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
429 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
431 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
432 the compiled webapp directory that Eclipse uses as we're using Maven now.
433 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
434 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
436 * pom.xml: Format file, change target Java version to 1.6.
438 2011-02-02 Ben Konrath <ben@bagu.org>
440 Add information about a deployment related issue.
442 * README: Add Notes section with the problem outlined.
444 2011-02-02 Ben Konrath <ben@bagu.org>
446 Call Glom.libglom_deinit() when the servlet is shutdown.
448 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
449 Glom.libglom_deinit() to destroy() method.
451 2011-01-28 Ben Konrath <ben@bagu.org>
453 Use generated Util class to get the RPC Async interface.
455 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
457 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
458 getInstance() method to get a reference to the RPC Async interface.
459 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
460 getInstance() method to get a reference to the RPC Async interface, remove
461 the now unused getLibGlomServiceProxy() method.
463 2011-01-27 Ben Konrath <ben@bagu.org>
465 Cleanup ChangeLog entry from previous commit.
467 * ChangeLog: Group logical changes together and add comments.
469 2011-01-25 Ben Konrath <ben@bagu.org>
471 Convert to gwt-maven project.
473 * .gitignore: Update for new project structure.
474 * README: New file with a link to the online documentation.
475 * pom.xml: The generated maven configuration file with some tweaks.
477 Add / update Eclipse settings. These files are a merge of the files that
478 were generated with the gwt-maven plugin and the files we were previously
482 * .settings/.jsdtscope:
483 * .settings/com.google.gdt.eclipse.core.prefs:
484 * .settings/com.google.gwt.eclipse.core.prefs:
485 * .settings/org.eclipse.jdt.core.prefs:
486 * .settings/org.eclipse.wst.common.component:
487 * .settings/org.eclipse.wst.common.project.facet.core.xml:
488 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
489 * .settings/org.maven.ide.eclipse.prefs:
490 * OnlineGlomTest-dev.launch:
491 * OnlineGlomTest-prod.launch:
493 Java source files moved from the 'src' directory to the directory structure
495 * src/main/java/org/glom/web/client/GlomDocument.java:
496 * src/main/java/org/glom/web/client/GlomTable.java:
497 * src/main/java/org/glom/web/client/LayoutList.java:
498 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
499 * src/main/java/org/glom/web/client/LibGlomService.java:
500 * src/main/java/org/glom/web/client/OnlineGlom.java:
501 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
503 Non-functional property file used for translations. I included this as
504 reminder that it's something I need to sort out.
505 * src/main/resources/org/glom/web/client/Messages.properties:
507 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
508 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
510 The servlet configuration files moved from the 'war' directory.
511 * src/main/webapp/OnlineGlom.css:
512 * src/main/webapp/OnlineGlom.html:
513 * src/main/webapp/WEB-INF/web.xml:
515 Generated test files with most of the code commented out. I included these
516 so that it's easy to add tests when we're ready for them.
517 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
518 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
520 2011-01-25 Ben Konrath <ben@bagu.org>
522 Remove unused println.
524 * src/org/glom/web/server/LibGlomServiceImpl.java:
526 2011-01-25 Ben Konrath <ben@bagu.org>
528 Add project specific JDT settings.
530 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
531 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
533 2011-01-25 Ben Konrath <ben@bagu.org>
535 Populate celltable with example data.
537 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
538 * src/org/glom/web/client/GlomTable.java: Correct formatting.
539 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
540 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
541 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
542 asynchronously gets the example data.
543 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
544 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
545 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
546 curently selected table to be retrieved by other widgets.
547 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
548 implement getTableData() in a hacky way. This method needs to be updated
549 to grab information from the database when database creating is
552 2011-01-20 Ben Konrath <ben@bagu.org>
554 Set table headers when table dropBox changes.
556 * src/org/glom/web/client/GlomDocument.java: Correct some method
558 * src/org/glom/web/client/LibGlomService.java: Add method
559 to get list layout field names.
560 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
561 to get list layout field names.
562 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
563 widget for list layout table.
564 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
565 the table drop box and add new updateTable() method to asynchronously
566 get the layout list field names for the currently selected table.
567 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
568 implementation of getLayoutListHeaders() method.
569 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
571 2011-01-18 Ben Konrath <ben@bagu.org>
573 Make a listBox with table titles instead of the flexTable demo.
575 This is the start of something more useful.
577 * .classpath: Exclude a bunch of packages from the JVM that are
578 getting in the way of the Eclipse content assist.
579 * src/org/glom/web/client/GlomDocument.java:
580 * src/org/glom/web/client/GlomTable.java:
581 * src/org/glom/web/client/LibGlomService.java:
582 * src/org/glom/web/client/LibGlomServiceAsync.java:
583 * src/org/glom/web/client/OnlineGlom.java:
584 * src/org/glom/web/server/LibGlomServiceImpl.java:
585 * war/OnlineGlom.html:
586 * war/WEB-INF/web.xml:
588 211-01-13 Ben Konrath <ben@bagu.org>
590 Update to new java-libglom API.
592 * .gitignore: Ignore OnlineGlom.war.
593 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
595 2010-12-20 Ben Konrath <ben@bagu.org>
597 Add some basic style to the table listing.
599 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
600 header, print useful error message on async callback failure.
601 * war/OnlineGlom.css: Add style for table header, remove defaults
602 provided by the Eclipse project wizard.
604 2010-12-20 Ben Konrath <ben@bagu.org>
606 Load example file from installed glom dir.
608 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
609 provided by java-libglom to find the example file.
611 2010-12-20 Ben Konrath <ben@bagu.org>
613 Update Eclipse settings.
616 * .settings/com.google.gdt.eclipse.core.prefs:
617 * .settings/com.google.gwt.eclipse.core.prefs:
619 2010-12-17 Ben Konrath <ben@bagu.org>
623 * .classpath: New file.
624 * .gitignore: New file.
625 * .project: New file.
626 * .settings/com.google.gdt.eclipse.core.prefs: New file.
627 * .settings/com.google.gwt.eclipse.core.prefs: New file.
628 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
629 * src/org/glom/web/client/GlomTable.java: New file.
630 * src/org/glom/web/client/OnlineGlom.java: New file.
631 * src/org/glom/web/client/TableNameService.java: New file.
632 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
633 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
634 * war/OnlineGlom.css: New file.
635 * war/OnlineGlom.html: New file.
636 * war/WEB-INF/web.xml: New file.
637 * war/images/glom.png: New file.