1 2011-03-15 Ben Konrath <ben@bagu.org>
3 Remove the GWT Container from the Eclipse build classpath.
5 The GWT dependencies are set by Maven so this isn't needed.
9 2011-03-15 Murray Cumming <murrayc@murrayc.com>
11 Added some earlier mockups to git, but not to the tarball dist.
13 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
14 Openismus. These hopefully show how we might structure the HTML so that
15 it can be styled easily with CSS. However, we probably need to adapt them
16 for the CSS structure that GWT dictates for common widgets.
18 2011-03-14 Ben Konrath <ben@bagu.org>
20 Locate OnlineGlom.properties using the ServletContext.
22 This is required to be able to locate the file in the deployed servlet.
24 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
25 Configure the database and glom document in in a helper method so
26 that the ServletContext can be used to locate OnlineGlom.properties.
27 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
28 src/main/webapp. This is the proper location for .properites files.
30 2011-03-12 Ben Konrath <ben@bagu.org>
32 Add note to README about why we're compiling down to obfuscated JavaScript.
36 2011-03-11 Ben Konrath <ben@bagu.org>
38 Use properties file to configure servlet.
40 This allows people to change the glom file path, db username and db
41 password without recompiling the code.
43 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
44 * src/main/webapp/OnlineGlom.properties:
46 2011-03-11 Ben Konrath <ben@bagu.org>
48 Use table fields in layout list view if the layout list is not defined.
50 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
51 Manually create a LayoutFieldVector for the query builder using the
52 table fields when a layout list is not defined in the glom file.
54 2011-03-11 Ben Konrath <ben@bagu.org>
56 Only show FIXME string for images when there's an image.
58 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
59 in this change are some small code cleanups.
61 2011-03-11 Ben Konrath <ben@bagu.org>
63 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
65 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
67 2011-03-11 Ben Konrath <ben@bagu.org>
69 Correctly set the index of the default table.
71 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
72 Correctly set the index of the default table. Add commented out example
75 2011-03-10 Ben Konrath <ben@bagu.org>
77 Add comment to pom.xml about the previous change.
79 * pom.xml: Add comment about the deployment issue so that it's obvious
80 why java-libglom is set to the provided scope.
82 2011-03-10 Ben Konrath <ben@bagu.org>
84 Change java-libglom dependency from compile to provided in pom.xml.
86 Since java-libglom uses jni it can only be loaded once and therefore
87 must be placed in $CATALINA_HOME/lib and not included in each war.
88 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
89 More information about this issue can be found in the Tomcat 6 release
90 notes in the "JNI Based Applications" section:
92 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
94 * README: Remove note about this issue. Deployment info should really
95 be on the wiki anyway so I'll add it right now.
96 * pom.xml: Change java-libglom dependency from compile to provided so
97 that it's copied in to the packaged war.
99 2011-03-09 Ben Konrath <ben@bagu.org>
101 Change to using a neutral locale for currency, date and time formatting.
103 This solves the problem of currency values being represented without a
104 space between the currency code and the number (e.g. "EUR5.89" is now
105 represented as "EUR 5.89"). More work is required when we implement
106 a locale preference setting.
108 * TODO: Add note about currency formatting issues with different
110 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
111 to using the neutral ROOT locale.
113 2011-03-09 Ben Konrath <ben@bagu.org>
115 Add support for currency codes that are not ISO 4217 codes.
117 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
118 the currency code defined in the glom file when it's not 3 characters
119 long or when Java doesn't recognize the string as an ISO 4217 code.
121 2011-03-08 Ben Konrath <ben@bagu.org>
123 Remove test classes, launch configurations and configuration.
125 The test stuff was getting in the way when creating the war. To make
126 the war file you can now do 'mvn clean package'. The packaged war file
127 will be in the target directory.
129 * .classpath: Remove unused classpathentry for tests and i18n.
130 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
131 property. Don't run test or i18n goals when packaging the war.
132 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
137 * OnlineGlomTest-dev.launch:
138 * OnlineGlomTest-prod.launch:
139 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
140 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
142 2011-03-07 Ben Konrath <ben@bagu.org>
144 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
146 These fixes allow me to use 'mvn deploy' to create the war file.
148 * .classpath: This generated config has been updated by Eclipse. This
149 change was probably triggered by me updating from Eclipse 3.6.1 to
151 * .gitignore: Add entry to ignore the directory
152 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
153 * .project: The generated config has been updated by Eclipse. This
154 change was probably triggered by me updating from Eclipse 3.6.1 to
156 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
157 so that Eclipse doesn't complain
158 * pom.xml: Update to gwt-maven-plugin 2.2.0.
159 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
160 'tests' directory to 'client' directory. This is the new
161 gwt-maven-plugin convension.
162 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
163 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
165 2011-03-07 Ben Konrath <ben@bagu.org>
167 Add support for horizontal alignment in the LayoutList columns.
169 * TODO: Remove item about horizontal alignment. Add item about
170 improvements to ColumnInfo.
171 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
172 alignment on the columns. Use ColumnInfo RPC object get the column
173 title and horizontal alignment.
174 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
175 LayoutListView creation with ColumnInfo RPC object.
176 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
177 a ColumnInfo object for every LayoutList columnn. Convert the
178 FieldFormatting.HorizontalAlignment to the correct
179 ColumnnInfo.HorizontatlAlignment with the new
180 getColumnInfoHorizontalAlignment helper method.
181 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
182 to encapsulate column information like alignment and title. This
183 could be used to set the colour instead of on a per cell field basis.
184 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
185 column title storage and retrieval with ColumnInfo.
187 2011-03-04 Ben Konrath <ben@bagu.org>
189 Add support for column sorting.
191 * src/main/java/org/glom/web/client/LayoutListView.java: Change
192 AsynDataProvider to be an anonymous inner class. Use new
193 getSortedTableData RPC method when column sort is requested. Set all
194 columns sortable and add an AsyncHandler to activate sorting in the
196 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
197 method getSortedTableData(). Cleanup other method signatures.
198 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
199 new method getSortedTableData(). Cleanup other method signatures.
200 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
201 Implement getSortedTableData() and getTableData() methods by using a
202 private helper method with the appropriate parameters filled in. Use
203 user supplied sort clause when supplied, otherwise fall back to
204 sorting by the primary key. Move destroy() method to be underneath
205 constructor for readability. Cleanup comments.
207 2011-03-03 Ben Konrath <ben@bagu.org>
209 Add support for colour text and colour backgrounds to the layout list cells.
211 Only the cell backgrounds are coloured which leaves a gap between the
212 cells that isn't coloured. I need to figure out a way to set
213 'style=background-colour:' on the whole column rather than just the
216 * TODO: Add a note about colouring the background of the whole column.
217 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
218 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
219 render the coloured text and backgrounds. Use GlomField[] for the row type.
220 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
222 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
223 GlomField[] for the row type.
224 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
225 GlomField[] for the row type. Set the text, text colour and background
226 colour in the GlomField objects as specified in the glom document. Add
227 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
228 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
229 the glom field text, foreground colour and background colour.
231 2011-03-02 Ben Konrath <ben@bagu.org>
233 Don't display hidden tables in the combo box.
235 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
237 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
238 code to ignore hidden tables using ArrayLists for the table names and
240 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
241 tableNames to use ArrayLists instead of String[]. Update getter and setter
244 2011-03-01 Ben Konrath <ben@bagu.org>
246 Add support for Date and Time number types.
248 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
249 Implement formatting for Date and Time values. Change the default glom
250 file to small business example.
252 2011-03-01 Ben Konrath <ben@bagu.org>
254 Add support for formatting glom types as specified in the glom file.
256 Formatting isn't finished yet - I still need to add support for Date
259 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
260 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
261 checks for null values in JDBC cleanup code and catch all exceptions
262 instead of just SQLExceptions.
263 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
266 2011-03-01 Ben Konrath <ben@bagu.org>
268 Use GWT 2.2.0 instead of 2.1.1.
270 * pom.xml: Change GWT version numbers.
272 2011-03-01 Ben Konrath <ben@bagu.org>
274 A few small code cleanups.
276 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
278 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
279 unnecessary object creation in constructor.
280 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
281 unnecessary object creation in constructor.
283 2011-02-28 Ben Konrath <ben@bagu.org>
285 Add file for TODO list.
289 2011-02-18 Ben Konrath <ben@bagu.org>
291 Enable the CellTable Pager when more than 20 rows need to be viewed.
293 The Pager will automatically become active when the results are larger
294 than the CellTable size which is currently set to 20 lines.
296 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
297 name on debug statment in RPC call in LayoutListDataProvider, add
298 numRows parameter to LayoutListView constructor, propperly set rowCount
300 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
301 name on debug statment in RPC call, use LayoutListTable object in RPC
302 calls, pass rowCount to LayoutListView.
303 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
304 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
306 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
307 interface for changes in OnlineGlomService.
308 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
309 getLayoutListHeaders() to getLayoutListTable() and return
310 LayoutListTable. Using this object allows me to pass other information
311 about the LayoutList like the expected number of rows in the result set.
312 The Connection object from the connection pool is now propperly closed.
313 Only the requested number of lines are returned to the client in
315 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
316 GlomTable and add columnTitles and numRows.
318 2011-02-18 Ben Konrath <ben@bagu.org>
320 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
322 This is a small performance boost. I'll use GlomTable to get the required
323 layoutlist information.
325 * src/main/java/org/glom/web/client/OnlineGlom.java:
326 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
327 * src/main/java/org/glom/web/shared/GlomDocument.java:
329 2011-02-18 Ben Konrath <ben@bagu.org>
331 Add option to turn off formatting in JDT formatter preferences.
333 * .settings/org.eclipse.jdt.core.prefs:
335 2011-02-18 Ben Konrath <ben@bagu.org>
337 Rename LayoutList to LayoutListView.
339 I'm working towards setting things up to easily use MVP when the time
342 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
344 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
347 2011-02-17 Ben Konrath <ben@bagu.org>
349 Move LayoutListDataProvider class into LayoutList.java.
351 * src/main/java/org/glom/web/client/LayoutList.java:
353 2011-02-17 Ben Konrath <ben@bagu.org>
355 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
357 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
359 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
360 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
361 from LibGlomServer.java.
362 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
363 Rename from LibGlomServiceAsync.java.
364 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
365 Rename from LibGlomServiceImpl.java.
366 * src/main/webapp/WEB-INF/web.xml: Update configuration.
368 2011-02-17 Ben Konrath <ben@bagu.org>
372 * .settings/org.eclipse.jdt.core.prefs:
374 2011-02-17 Ben Konrath <ben@bagu.org>
376 Move GWT-RPC objects to shared package (where they should be).
378 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
379 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
380 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
381 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
382 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
383 org.glom.web.shared package.
384 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
385 org.glom.web.shared package.
386 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
387 directory in compilation to javascript.
389 2011-02-16 Ben Konrath <ben@bagu.org>
391 Add sort clause to the sql query that grabs table information.
393 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
394 if one of the columns is a primary key.
396 2011-02-16 Ben Konrath <ben@bagu.org>
398 Disable generateAsync feature of gwt-maven.
400 The generated interface does not correctly match the methods in LibGlomService
401 and the generated singleton Util inner-class doesn't respect the servlet
404 * pom.xml: Turn off generateAsync feature.
405 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
406 with singleton Util inner-class.
408 2011-02-14 Ben Konrath <ben@bagu.org>
410 Add LGPL v3 licence notices.
412 Followed directions listed here:
413 http://www.gnu.org/licenses/gpl-howto.html
415 * COPYING: This file is a copy of the GPL v3.
416 * COPYING.LESSER: This file is a copy of the LGPL v3.
417 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
419 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
421 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
423 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
425 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
427 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
429 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
432 2011-02-14 Ben Konrath <ben@bagu.org>
434 Use ArrayList instead of Array in GWT-RPC calls.
436 Apparently this gives a slight performance boost to the compiled
439 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
441 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
444 2011-02-14 Ben Konrath <ben@bagu.org>
446 Access data from a postgres db rather than the example glom file.
448 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
449 compile down to obfuscated javascript.
450 * pom.xml: Add c3p0 and postgres JDBC libraries.
451 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
452 using a postgres db accessed through the c3p0 connection pooling library.
454 2011-02-14 Ben Konrath <ben@bagu.org>
456 Update Java formatter settings.
458 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
460 2011-02-02 Ben Konrath <ben@bagu.org>
462 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
464 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
466 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
467 the compiled webapp directory that Eclipse uses as we're using Maven now.
468 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
469 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
471 * pom.xml: Format file, change target Java version to 1.6.
473 2011-02-02 Ben Konrath <ben@bagu.org>
475 Add information about a deployment related issue.
477 * README: Add Notes section with the problem outlined.
479 2011-02-02 Ben Konrath <ben@bagu.org>
481 Call Glom.libglom_deinit() when the servlet is shutdown.
483 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
484 Glom.libglom_deinit() to destroy() method.
486 2011-01-28 Ben Konrath <ben@bagu.org>
488 Use generated Util class to get the RPC Async interface.
490 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
492 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
493 getInstance() method to get a reference to the RPC Async interface.
494 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
495 getInstance() method to get a reference to the RPC Async interface, remove
496 the now unused getLibGlomServiceProxy() method.
498 2011-01-27 Ben Konrath <ben@bagu.org>
500 Cleanup ChangeLog entry from previous commit.
502 * ChangeLog: Group logical changes together and add comments.
504 2011-01-25 Ben Konrath <ben@bagu.org>
506 Convert to gwt-maven project.
508 * .gitignore: Update for new project structure.
509 * README: New file with a link to the online documentation.
510 * pom.xml: The generated maven configuration file with some tweaks.
512 Add / update Eclipse settings. These files are a merge of the files that
513 were generated with the gwt-maven plugin and the files we were previously
517 * .settings/.jsdtscope:
518 * .settings/com.google.gdt.eclipse.core.prefs:
519 * .settings/com.google.gwt.eclipse.core.prefs:
520 * .settings/org.eclipse.jdt.core.prefs:
521 * .settings/org.eclipse.wst.common.component:
522 * .settings/org.eclipse.wst.common.project.facet.core.xml:
523 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
524 * .settings/org.maven.ide.eclipse.prefs:
525 * OnlineGlomTest-dev.launch:
526 * OnlineGlomTest-prod.launch:
528 Java source files moved from the 'src' directory to the directory structure
530 * src/main/java/org/glom/web/client/GlomDocument.java:
531 * src/main/java/org/glom/web/client/GlomTable.java:
532 * src/main/java/org/glom/web/client/LayoutList.java:
533 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
534 * src/main/java/org/glom/web/client/LibGlomService.java:
535 * src/main/java/org/glom/web/client/OnlineGlom.java:
536 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
538 Non-functional property file used for translations. I included this as
539 reminder that it's something I need to sort out.
540 * src/main/resources/org/glom/web/client/Messages.properties:
542 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
543 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
545 The servlet configuration files moved from the 'war' directory.
546 * src/main/webapp/OnlineGlom.css:
547 * src/main/webapp/OnlineGlom.html:
548 * src/main/webapp/WEB-INF/web.xml:
550 Generated test files with most of the code commented out. I included these
551 so that it's easy to add tests when we're ready for them.
552 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
553 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
555 2011-01-25 Ben Konrath <ben@bagu.org>
557 Remove unused println.
559 * src/org/glom/web/server/LibGlomServiceImpl.java:
561 2011-01-25 Ben Konrath <ben@bagu.org>
563 Add project specific JDT settings.
565 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
566 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
568 2011-01-25 Ben Konrath <ben@bagu.org>
570 Populate celltable with example data.
572 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
573 * src/org/glom/web/client/GlomTable.java: Correct formatting.
574 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
575 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
576 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
577 asynchronously gets the example data.
578 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
579 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
580 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
581 curently selected table to be retrieved by other widgets.
582 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
583 implement getTableData() in a hacky way. This method needs to be updated
584 to grab information from the database when database creating is
587 2011-01-20 Ben Konrath <ben@bagu.org>
589 Set table headers when table dropBox changes.
591 * src/org/glom/web/client/GlomDocument.java: Correct some method
593 * src/org/glom/web/client/LibGlomService.java: Add method
594 to get list layout field names.
595 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
596 to get list layout field names.
597 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
598 widget for list layout table.
599 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
600 the table drop box and add new updateTable() method to asynchronously
601 get the layout list field names for the currently selected table.
602 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
603 implementation of getLayoutListHeaders() method.
604 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
606 2011-01-18 Ben Konrath <ben@bagu.org>
608 Make a listBox with table titles instead of the flexTable demo.
610 This is the start of something more useful.
612 * .classpath: Exclude a bunch of packages from the JVM that are
613 getting in the way of the Eclipse content assist.
614 * src/org/glom/web/client/GlomDocument.java:
615 * src/org/glom/web/client/GlomTable.java:
616 * src/org/glom/web/client/LibGlomService.java:
617 * src/org/glom/web/client/LibGlomServiceAsync.java:
618 * src/org/glom/web/client/OnlineGlom.java:
619 * src/org/glom/web/server/LibGlomServiceImpl.java:
620 * war/OnlineGlom.html:
621 * war/WEB-INF/web.xml:
623 211-01-13 Ben Konrath <ben@bagu.org>
625 Update to new java-libglom API.
627 * .gitignore: Ignore OnlineGlom.war.
628 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
630 2010-12-20 Ben Konrath <ben@bagu.org>
632 Add some basic style to the table listing.
634 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
635 header, print useful error message on async callback failure.
636 * war/OnlineGlom.css: Add style for table header, remove defaults
637 provided by the Eclipse project wizard.
639 2010-12-20 Ben Konrath <ben@bagu.org>
641 Load example file from installed glom dir.
643 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
644 provided by java-libglom to find the example file.
646 2010-12-20 Ben Konrath <ben@bagu.org>
648 Update Eclipse settings.
651 * .settings/com.google.gdt.eclipse.core.prefs:
652 * .settings/com.google.gwt.eclipse.core.prefs:
654 2010-12-17 Ben Konrath <ben@bagu.org>
658 * .classpath: New file.
659 * .gitignore: New file.
660 * .project: New file.
661 * .settings/com.google.gdt.eclipse.core.prefs: New file.
662 * .settings/com.google.gwt.eclipse.core.prefs: New file.
663 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
664 * src/org/glom/web/client/GlomTable.java: New file.
665 * src/org/glom/web/client/OnlineGlom.java: New file.
666 * src/org/glom/web/client/TableNameService.java: New file.
667 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
668 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
669 * war/OnlineGlom.css: New file.
670 * war/OnlineGlom.html: New file.
671 * war/WEB-INF/web.xml: New file.
672 * war/images/glom.png: New file.