1 2011-03-15 Murray Cumming <murrayc@murrayc.com>
3 Added some earlier mockups to git, but not to the tarball dist.
5 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
6 Openismus. These hopefully show how we might structure the HTML so that
7 it can be styled easily with CSS. However, we probably need to adapt them
8 for the CSS structure that GWT dictates for common widgets.
10 2011-03-14 Ben Konrath <ben@bagu.org>
12 Locate OnlineGlom.properties using the ServletContext.
14 This is required to be able to locate the file in the deployed servlet.
16 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
17 Configure the database and glom document in in a helper method so
18 that the ServletContext can be used to locate OnlineGlom.properties.
19 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
20 src/main/webapp. This is the proper location for .properites files.
22 2011-03-12 Ben Konrath <ben@bagu.org>
24 Add note to README about why we're compiling down to obfuscated JavaScript.
28 2011-03-11 Ben Konrath <ben@bagu.org>
30 Use properties file to configure servlet.
32 This allows people to change the glom file path, db username and db
33 password without recompiling the code.
35 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
36 * src/main/webapp/OnlineGlom.properties:
38 2011-03-11 Ben Konrath <ben@bagu.org>
40 Use table fields in layout list view if the layout list is not defined.
42 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
43 Manually create a LayoutFieldVector for the query builder using the
44 table fields when a layout list is not defined in the glom file.
46 2011-03-11 Ben Konrath <ben@bagu.org>
48 Only show FIXME string for images when there's an image.
50 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
51 in this change are some small code cleanups.
53 2011-03-11 Ben Konrath <ben@bagu.org>
55 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
57 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
59 2011-03-11 Ben Konrath <ben@bagu.org>
61 Correctly set the index of the default table.
63 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
64 Correctly set the index of the default table. Add commented out example
67 2011-03-10 Ben Konrath <ben@bagu.org>
69 Add comment to pom.xml about the previous change.
71 * pom.xml: Add comment about the deployment issue so that it's obvious
72 why java-libglom is set to the provided scope.
74 2011-03-10 Ben Konrath <ben@bagu.org>
76 Change java-libglom dependency from compile to provided in pom.xml.
78 Since java-libglom uses jni it can only be loaded once and therefore
79 must be placed in $CATALINA_HOME/lib and not included in each war.
80 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
81 More information about this issue can be found in the Tomcat 6 release
82 notes in the "JNI Based Applications" section:
84 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
86 * README: Remove note about this issue. Deployment info should really
87 be on the wiki anyway so I'll add it right now.
88 * pom.xml: Change java-libglom dependency from compile to provided so
89 that it's copied in to the packaged war.
91 2011-03-09 Ben Konrath <ben@bagu.org>
93 Change to using a neutral locale for currency, date and time formatting.
95 This solves the problem of currency values being represented without a
96 space between the currency code and the number (e.g. "EUR5.89" is now
97 represented as "EUR 5.89"). More work is required when we implement
98 a locale preference setting.
100 * TODO: Add note about currency formatting issues with different
102 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
103 to using the neutral ROOT locale.
105 2011-03-09 Ben Konrath <ben@bagu.org>
107 Add support for currency codes that are not ISO 4217 codes.
109 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
110 the currency code defined in the glom file when it's not 3 characters
111 long or when Java doesn't recognize the string as an ISO 4217 code.
113 2011-03-08 Ben Konrath <ben@bagu.org>
115 Remove test classes, launch configurations and configuration.
117 The test stuff was getting in the way when creating the war. To make
118 the war file you can now do 'mvn clean package'. The packaged war file
119 will be in the target directory.
121 * .classpath: Remove unused classpathentry for tests and i18n.
122 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
123 property. Don't run test or i18n goals when packaging the war.
124 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
129 * OnlineGlomTest-dev.launch:
130 * OnlineGlomTest-prod.launch:
131 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
132 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
134 2011-03-07 Ben Konrath <ben@bagu.org>
136 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
138 These fixes allow me to use 'mvn deploy' to create the war file.
140 * .classpath: This generated config has been updated by Eclipse. This
141 change was probably triggered by me updating from Eclipse 3.6.1 to
143 * .gitignore: Add entry to ignore the directory
144 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
145 * .project: The generated config has been updated by Eclipse. This
146 change was probably triggered by me updating from Eclipse 3.6.1 to
148 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
149 so that Eclipse doesn't complain
150 * pom.xml: Update to gwt-maven-plugin 2.2.0.
151 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
152 'tests' directory to 'client' directory. This is the new
153 gwt-maven-plugin convension.
154 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
155 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
157 2011-03-07 Ben Konrath <ben@bagu.org>
159 Add support for horizontal alignment in the LayoutList columns.
161 * TODO: Remove item about horizontal alignment. Add item about
162 improvements to ColumnInfo.
163 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
164 alignment on the columns. Use ColumnInfo RPC object get the column
165 title and horizontal alignment.
166 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
167 LayoutListView creation with ColumnInfo RPC object.
168 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
169 a ColumnInfo object for every LayoutList columnn. Convert the
170 FieldFormatting.HorizontalAlignment to the correct
171 ColumnnInfo.HorizontatlAlignment with the new
172 getColumnInfoHorizontalAlignment helper method.
173 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
174 to encapsulate column information like alignment and title. This
175 could be used to set the colour instead of on a per cell field basis.
176 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
177 column title storage and retrieval with ColumnInfo.
179 2011-03-04 Ben Konrath <ben@bagu.org>
181 Add support for column sorting.
183 * src/main/java/org/glom/web/client/LayoutListView.java: Change
184 AsynDataProvider to be an anonymous inner class. Use new
185 getSortedTableData RPC method when column sort is requested. Set all
186 columns sortable and add an AsyncHandler to activate sorting in the
188 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
189 method getSortedTableData(). Cleanup other method signatures.
190 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
191 new method getSortedTableData(). Cleanup other method signatures.
192 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
193 Implement getSortedTableData() and getTableData() methods by using a
194 private helper method with the appropriate parameters filled in. Use
195 user supplied sort clause when supplied, otherwise fall back to
196 sorting by the primary key. Move destroy() method to be underneath
197 constructor for readability. Cleanup comments.
199 2011-03-03 Ben Konrath <ben@bagu.org>
201 Add support for colour text and colour backgrounds to the layout list cells.
203 Only the cell backgrounds are coloured which leaves a gap between the
204 cells that isn't coloured. I need to figure out a way to set
205 'style=background-colour:' on the whole column rather than just the
208 * TODO: Add a note about colouring the background of the whole column.
209 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
210 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
211 render the coloured text and backgrounds. Use GlomField[] for the row type.
212 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
214 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
215 GlomField[] for the row type.
216 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
217 GlomField[] for the row type. Set the text, text colour and background
218 colour in the GlomField objects as specified in the glom document. Add
219 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
220 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
221 the glom field text, foreground colour and background colour.
223 2011-03-02 Ben Konrath <ben@bagu.org>
225 Don't display hidden tables in the combo box.
227 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
229 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
230 code to ignore hidden tables using ArrayLists for the table names and
232 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
233 tableNames to use ArrayLists instead of String[]. Update getter and setter
236 2011-03-01 Ben Konrath <ben@bagu.org>
238 Add support for Date and Time number types.
240 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
241 Implement formatting for Date and Time values. Change the default glom
242 file to small business example.
244 2011-03-01 Ben Konrath <ben@bagu.org>
246 Add support for formatting glom types as specified in the glom file.
248 Formatting isn't finished yet - I still need to add support for Date
251 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
252 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
253 checks for null values in JDBC cleanup code and catch all exceptions
254 instead of just SQLExceptions.
255 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
258 2011-03-01 Ben Konrath <ben@bagu.org>
260 Use GWT 2.2.0 instead of 2.1.1.
262 * pom.xml: Change GWT version numbers.
264 2011-03-01 Ben Konrath <ben@bagu.org>
266 A few small code cleanups.
268 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
270 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
271 unnecessary object creation in constructor.
272 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
273 unnecessary object creation in constructor.
275 2011-02-28 Ben Konrath <ben@bagu.org>
277 Add file for TODO list.
281 2011-02-18 Ben Konrath <ben@bagu.org>
283 Enable the CellTable Pager when more than 20 rows need to be viewed.
285 The Pager will automatically become active when the results are larger
286 than the CellTable size which is currently set to 20 lines.
288 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
289 name on debug statment in RPC call in LayoutListDataProvider, add
290 numRows parameter to LayoutListView constructor, propperly set rowCount
292 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
293 name on debug statment in RPC call, use LayoutListTable object in RPC
294 calls, pass rowCount to LayoutListView.
295 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
296 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
298 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
299 interface for changes in OnlineGlomService.
300 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
301 getLayoutListHeaders() to getLayoutListTable() and return
302 LayoutListTable. Using this object allows me to pass other information
303 about the LayoutList like the expected number of rows in the result set.
304 The Connection object from the connection pool is now propperly closed.
305 Only the requested number of lines are returned to the client in
307 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
308 GlomTable and add columnTitles and numRows.
310 2011-02-18 Ben Konrath <ben@bagu.org>
312 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
314 This is a small performance boost. I'll use GlomTable to get the required
315 layoutlist information.
317 * src/main/java/org/glom/web/client/OnlineGlom.java:
318 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
319 * src/main/java/org/glom/web/shared/GlomDocument.java:
321 2011-02-18 Ben Konrath <ben@bagu.org>
323 Add option to turn off formatting in JDT formatter preferences.
325 * .settings/org.eclipse.jdt.core.prefs:
327 2011-02-18 Ben Konrath <ben@bagu.org>
329 Rename LayoutList to LayoutListView.
331 I'm working towards setting things up to easily use MVP when the time
334 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
336 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
339 2011-02-17 Ben Konrath <ben@bagu.org>
341 Move LayoutListDataProvider class into LayoutList.java.
343 * src/main/java/org/glom/web/client/LayoutList.java:
345 2011-02-17 Ben Konrath <ben@bagu.org>
347 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
349 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
351 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
352 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
353 from LibGlomServer.java.
354 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
355 Rename from LibGlomServiceAsync.java.
356 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
357 Rename from LibGlomServiceImpl.java.
358 * src/main/webapp/WEB-INF/web.xml: Update configuration.
360 2011-02-17 Ben Konrath <ben@bagu.org>
364 * .settings/org.eclipse.jdt.core.prefs:
366 2011-02-17 Ben Konrath <ben@bagu.org>
368 Move GWT-RPC objects to shared package (where they should be).
370 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
371 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
372 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
373 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
374 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
375 org.glom.web.shared package.
376 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
377 org.glom.web.shared package.
378 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
379 directory in compilation to javascript.
381 2011-02-16 Ben Konrath <ben@bagu.org>
383 Add sort clause to the sql query that grabs table information.
385 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
386 if one of the columns is a primary key.
388 2011-02-16 Ben Konrath <ben@bagu.org>
390 Disable generateAsync feature of gwt-maven.
392 The generated interface does not correctly match the methods in LibGlomService
393 and the generated singleton Util inner-class doesn't respect the servlet
396 * pom.xml: Turn off generateAsync feature.
397 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
398 with singleton Util inner-class.
400 2011-02-14 Ben Konrath <ben@bagu.org>
402 Add LGPL v3 licence notices.
404 Followed directions listed here:
405 http://www.gnu.org/licenses/gpl-howto.html
407 * COPYING: This file is a copy of the GPL v3.
408 * COPYING.LESSER: This file is a copy of the LGPL v3.
409 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
411 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
413 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
415 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
417 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
419 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
421 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
424 2011-02-14 Ben Konrath <ben@bagu.org>
426 Use ArrayList instead of Array in GWT-RPC calls.
428 Apparently this gives a slight performance boost to the compiled
431 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
433 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
436 2011-02-14 Ben Konrath <ben@bagu.org>
438 Access data from a postgres db rather than the example glom file.
440 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
441 compile down to obfuscated javascript.
442 * pom.xml: Add c3p0 and postgres JDBC libraries.
443 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
444 using a postgres db accessed through the c3p0 connection pooling library.
446 2011-02-14 Ben Konrath <ben@bagu.org>
448 Update Java formatter settings.
450 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
452 2011-02-02 Ben Konrath <ben@bagu.org>
454 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
456 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
458 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
459 the compiled webapp directory that Eclipse uses as we're using Maven now.
460 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
461 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
463 * pom.xml: Format file, change target Java version to 1.6.
465 2011-02-02 Ben Konrath <ben@bagu.org>
467 Add information about a deployment related issue.
469 * README: Add Notes section with the problem outlined.
471 2011-02-02 Ben Konrath <ben@bagu.org>
473 Call Glom.libglom_deinit() when the servlet is shutdown.
475 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
476 Glom.libglom_deinit() to destroy() method.
478 2011-01-28 Ben Konrath <ben@bagu.org>
480 Use generated Util class to get the RPC Async interface.
482 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
484 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
485 getInstance() method to get a reference to the RPC Async interface.
486 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
487 getInstance() method to get a reference to the RPC Async interface, remove
488 the now unused getLibGlomServiceProxy() method.
490 2011-01-27 Ben Konrath <ben@bagu.org>
492 Cleanup ChangeLog entry from previous commit.
494 * ChangeLog: Group logical changes together and add comments.
496 2011-01-25 Ben Konrath <ben@bagu.org>
498 Convert to gwt-maven project.
500 * .gitignore: Update for new project structure.
501 * README: New file with a link to the online documentation.
502 * pom.xml: The generated maven configuration file with some tweaks.
504 Add / update Eclipse settings. These files are a merge of the files that
505 were generated with the gwt-maven plugin and the files we were previously
509 * .settings/.jsdtscope:
510 * .settings/com.google.gdt.eclipse.core.prefs:
511 * .settings/com.google.gwt.eclipse.core.prefs:
512 * .settings/org.eclipse.jdt.core.prefs:
513 * .settings/org.eclipse.wst.common.component:
514 * .settings/org.eclipse.wst.common.project.facet.core.xml:
515 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
516 * .settings/org.maven.ide.eclipse.prefs:
517 * OnlineGlomTest-dev.launch:
518 * OnlineGlomTest-prod.launch:
520 Java source files moved from the 'src' directory to the directory structure
522 * src/main/java/org/glom/web/client/GlomDocument.java:
523 * src/main/java/org/glom/web/client/GlomTable.java:
524 * src/main/java/org/glom/web/client/LayoutList.java:
525 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
526 * src/main/java/org/glom/web/client/LibGlomService.java:
527 * src/main/java/org/glom/web/client/OnlineGlom.java:
528 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
530 Non-functional property file used for translations. I included this as
531 reminder that it's something I need to sort out.
532 * src/main/resources/org/glom/web/client/Messages.properties:
534 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
535 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
537 The servlet configuration files moved from the 'war' directory.
538 * src/main/webapp/OnlineGlom.css:
539 * src/main/webapp/OnlineGlom.html:
540 * src/main/webapp/WEB-INF/web.xml:
542 Generated test files with most of the code commented out. I included these
543 so that it's easy to add tests when we're ready for them.
544 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
545 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
547 2011-01-25 Ben Konrath <ben@bagu.org>
549 Remove unused println.
551 * src/org/glom/web/server/LibGlomServiceImpl.java:
553 2011-01-25 Ben Konrath <ben@bagu.org>
555 Add project specific JDT settings.
557 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
558 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
560 2011-01-25 Ben Konrath <ben@bagu.org>
562 Populate celltable with example data.
564 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
565 * src/org/glom/web/client/GlomTable.java: Correct formatting.
566 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
567 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
568 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
569 asynchronously gets the example data.
570 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
571 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
572 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
573 curently selected table to be retrieved by other widgets.
574 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
575 implement getTableData() in a hacky way. This method needs to be updated
576 to grab information from the database when database creating is
579 2011-01-20 Ben Konrath <ben@bagu.org>
581 Set table headers when table dropBox changes.
583 * src/org/glom/web/client/GlomDocument.java: Correct some method
585 * src/org/glom/web/client/LibGlomService.java: Add method
586 to get list layout field names.
587 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
588 to get list layout field names.
589 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
590 widget for list layout table.
591 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
592 the table drop box and add new updateTable() method to asynchronously
593 get the layout list field names for the currently selected table.
594 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
595 implementation of getLayoutListHeaders() method.
596 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
598 2011-01-18 Ben Konrath <ben@bagu.org>
600 Make a listBox with table titles instead of the flexTable demo.
602 This is the start of something more useful.
604 * .classpath: Exclude a bunch of packages from the JVM that are
605 getting in the way of the Eclipse content assist.
606 * src/org/glom/web/client/GlomDocument.java:
607 * src/org/glom/web/client/GlomTable.java:
608 * src/org/glom/web/client/LibGlomService.java:
609 * src/org/glom/web/client/LibGlomServiceAsync.java:
610 * src/org/glom/web/client/OnlineGlom.java:
611 * src/org/glom/web/server/LibGlomServiceImpl.java:
612 * war/OnlineGlom.html:
613 * war/WEB-INF/web.xml:
615 211-01-13 Ben Konrath <ben@bagu.org>
617 Update to new java-libglom API.
619 * .gitignore: Ignore OnlineGlom.war.
620 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
622 2010-12-20 Ben Konrath <ben@bagu.org>
624 Add some basic style to the table listing.
626 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
627 header, print useful error message on async callback failure.
628 * war/OnlineGlom.css: Add style for table header, remove defaults
629 provided by the Eclipse project wizard.
631 2010-12-20 Ben Konrath <ben@bagu.org>
633 Load example file from installed glom dir.
635 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
636 provided by java-libglom to find the example file.
638 2010-12-20 Ben Konrath <ben@bagu.org>
640 Update Eclipse settings.
643 * .settings/com.google.gdt.eclipse.core.prefs:
644 * .settings/com.google.gwt.eclipse.core.prefs:
646 2010-12-17 Ben Konrath <ben@bagu.org>
650 * .classpath: New file.
651 * .gitignore: New file.
652 * .project: New file.
653 * .settings/com.google.gdt.eclipse.core.prefs: New file.
654 * .settings/com.google.gwt.eclipse.core.prefs: New file.
655 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
656 * src/org/glom/web/client/GlomTable.java: New file.
657 * src/org/glom/web/client/OnlineGlom.java: New file.
658 * src/org/glom/web/client/TableNameService.java: New file.
659 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
660 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
661 * war/OnlineGlom.css: New file.
662 * war/OnlineGlom.html: New file.
663 * war/WEB-INF/web.xml: New file.
664 * war/images/glom.png: New file.