1 2011-03-18 Ben Konrath <ben@bagu.org>
3 Use cursor mode in the query that gets data for the list view.
5 I still need to fix the potential memory problem when getting the row
6 count for the list view.
8 * TODO: Add note about testing memory usage with large data sets. Add
9 item about fixing row counting with large data sets.
10 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
11 PostgreSQL JDBC driver into cursor mode when getting data for the
14 2011-03-15 Ben Konrath <ben@bagu.org>
16 Remove the GWT Container from the Eclipse build classpath.
18 The GWT dependencies are set by Maven so this isn't needed.
22 2011-03-15 Murray Cumming <murrayc@murrayc.com>
24 Added some earlier mockups to git, but not to the tarball dist.
26 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
27 Openismus. These hopefully show how we might structure the HTML so that
28 it can be styled easily with CSS. However, we probably need to adapt them
29 for the CSS structure that GWT dictates for common widgets.
31 2011-03-14 Ben Konrath <ben@bagu.org>
33 Locate OnlineGlom.properties using the ServletContext.
35 This is required to be able to locate the file in the deployed servlet.
37 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
38 Configure the database and glom document in in a helper method so
39 that the ServletContext can be used to locate OnlineGlom.properties.
40 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
41 src/main/webapp. This is the proper location for .properites files.
43 2011-03-12 Ben Konrath <ben@bagu.org>
45 Add note to README about why we're compiling down to obfuscated JavaScript.
49 2011-03-11 Ben Konrath <ben@bagu.org>
51 Use properties file to configure servlet.
53 This allows people to change the glom file path, db username and db
54 password without recompiling the code.
56 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
57 * src/main/webapp/OnlineGlom.properties:
59 2011-03-11 Ben Konrath <ben@bagu.org>
61 Use table fields in layout list view if the layout list is not defined.
63 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
64 Manually create a LayoutFieldVector for the query builder using the
65 table fields when a layout list is not defined in the glom file.
67 2011-03-11 Ben Konrath <ben@bagu.org>
69 Only show FIXME string for images when there's an image.
71 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
72 in this change are some small code cleanups.
74 2011-03-11 Ben Konrath <ben@bagu.org>
76 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
78 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
80 2011-03-11 Ben Konrath <ben@bagu.org>
82 Correctly set the index of the default table.
84 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
85 Correctly set the index of the default table. Add commented out example
88 2011-03-10 Ben Konrath <ben@bagu.org>
90 Add comment to pom.xml about the previous change.
92 * pom.xml: Add comment about the deployment issue so that it's obvious
93 why java-libglom is set to the provided scope.
95 2011-03-10 Ben Konrath <ben@bagu.org>
97 Change java-libglom dependency from compile to provided in pom.xml.
99 Since java-libglom uses jni it can only be loaded once and therefore
100 must be placed in $CATALINA_HOME/lib and not included in each war.
101 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
102 More information about this issue can be found in the Tomcat 6 release
103 notes in the "JNI Based Applications" section:
105 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
107 * README: Remove note about this issue. Deployment info should really
108 be on the wiki anyway so I'll add it right now.
109 * pom.xml: Change java-libglom dependency from compile to provided so
110 that it's copied in to the packaged war.
112 2011-03-09 Ben Konrath <ben@bagu.org>
114 Change to using a neutral locale for currency, date and time formatting.
116 This solves the problem of currency values being represented without a
117 space between the currency code and the number (e.g. "EUR5.89" is now
118 represented as "EUR 5.89"). More work is required when we implement
119 a locale preference setting.
121 * TODO: Add note about currency formatting issues with different
123 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
124 to using the neutral ROOT locale.
126 2011-03-09 Ben Konrath <ben@bagu.org>
128 Add support for currency codes that are not ISO 4217 codes.
130 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
131 the currency code defined in the glom file when it's not 3 characters
132 long or when Java doesn't recognize the string as an ISO 4217 code.
134 2011-03-08 Ben Konrath <ben@bagu.org>
136 Remove test classes, launch configurations and configuration.
138 The test stuff was getting in the way when creating the war. To make
139 the war file you can now do 'mvn clean package'. The packaged war file
140 will be in the target directory.
142 * .classpath: Remove unused classpathentry for tests and i18n.
143 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
144 property. Don't run test or i18n goals when packaging the war.
145 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
150 * OnlineGlomTest-dev.launch:
151 * OnlineGlomTest-prod.launch:
152 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
153 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
155 2011-03-07 Ben Konrath <ben@bagu.org>
157 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
159 These fixes allow me to use 'mvn deploy' to create the war file.
161 * .classpath: This generated config has been updated by Eclipse. This
162 change was probably triggered by me updating from Eclipse 3.6.1 to
164 * .gitignore: Add entry to ignore the directory
165 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
166 * .project: The generated config has been updated by Eclipse. This
167 change was probably triggered by me updating from Eclipse 3.6.1 to
169 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
170 so that Eclipse doesn't complain
171 * pom.xml: Update to gwt-maven-plugin 2.2.0.
172 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
173 'tests' directory to 'client' directory. This is the new
174 gwt-maven-plugin convension.
175 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
176 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
178 2011-03-07 Ben Konrath <ben@bagu.org>
180 Add support for horizontal alignment in the LayoutList columns.
182 * TODO: Remove item about horizontal alignment. Add item about
183 improvements to ColumnInfo.
184 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
185 alignment on the columns. Use ColumnInfo RPC object get the column
186 title and horizontal alignment.
187 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
188 LayoutListView creation with ColumnInfo RPC object.
189 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
190 a ColumnInfo object for every LayoutList columnn. Convert the
191 FieldFormatting.HorizontalAlignment to the correct
192 ColumnnInfo.HorizontatlAlignment with the new
193 getColumnInfoHorizontalAlignment helper method.
194 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
195 to encapsulate column information like alignment and title. This
196 could be used to set the colour instead of on a per cell field basis.
197 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
198 column title storage and retrieval with ColumnInfo.
200 2011-03-04 Ben Konrath <ben@bagu.org>
202 Add support for column sorting.
204 * src/main/java/org/glom/web/client/LayoutListView.java: Change
205 AsynDataProvider to be an anonymous inner class. Use new
206 getSortedTableData RPC method when column sort is requested. Set all
207 columns sortable and add an AsyncHandler to activate sorting in the
209 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
210 method getSortedTableData(). Cleanup other method signatures.
211 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
212 new method getSortedTableData(). Cleanup other method signatures.
213 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
214 Implement getSortedTableData() and getTableData() methods by using a
215 private helper method with the appropriate parameters filled in. Use
216 user supplied sort clause when supplied, otherwise fall back to
217 sorting by the primary key. Move destroy() method to be underneath
218 constructor for readability. Cleanup comments.
220 2011-03-03 Ben Konrath <ben@bagu.org>
222 Add support for colour text and colour backgrounds to the layout list cells.
224 Only the cell backgrounds are coloured which leaves a gap between the
225 cells that isn't coloured. I need to figure out a way to set
226 'style=background-colour:' on the whole column rather than just the
229 * TODO: Add a note about colouring the background of the whole column.
230 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
231 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
232 render the coloured text and backgrounds. Use GlomField[] for the row type.
233 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
235 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
236 GlomField[] for the row type.
237 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
238 GlomField[] for the row type. Set the text, text colour and background
239 colour in the GlomField objects as specified in the glom document. Add
240 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
241 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
242 the glom field text, foreground colour and background colour.
244 2011-03-02 Ben Konrath <ben@bagu.org>
246 Don't display hidden tables in the combo box.
248 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
250 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
251 code to ignore hidden tables using ArrayLists for the table names and
253 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
254 tableNames to use ArrayLists instead of String[]. Update getter and setter
257 2011-03-01 Ben Konrath <ben@bagu.org>
259 Add support for Date and Time number types.
261 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
262 Implement formatting for Date and Time values. Change the default glom
263 file to small business example.
265 2011-03-01 Ben Konrath <ben@bagu.org>
267 Add support for formatting glom types as specified in the glom file.
269 Formatting isn't finished yet - I still need to add support for Date
272 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
273 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
274 checks for null values in JDBC cleanup code and catch all exceptions
275 instead of just SQLExceptions.
276 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
279 2011-03-01 Ben Konrath <ben@bagu.org>
281 Use GWT 2.2.0 instead of 2.1.1.
283 * pom.xml: Change GWT version numbers.
285 2011-03-01 Ben Konrath <ben@bagu.org>
287 A few small code cleanups.
289 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
291 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
292 unnecessary object creation in constructor.
293 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
294 unnecessary object creation in constructor.
296 2011-02-28 Ben Konrath <ben@bagu.org>
298 Add file for TODO list.
302 2011-02-18 Ben Konrath <ben@bagu.org>
304 Enable the CellTable Pager when more than 20 rows need to be viewed.
306 The Pager will automatically become active when the results are larger
307 than the CellTable size which is currently set to 20 lines.
309 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
310 name on debug statment in RPC call in LayoutListDataProvider, add
311 numRows parameter to LayoutListView constructor, propperly set rowCount
313 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
314 name on debug statment in RPC call, use LayoutListTable object in RPC
315 calls, pass rowCount to LayoutListView.
316 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
317 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
319 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
320 interface for changes in OnlineGlomService.
321 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
322 getLayoutListHeaders() to getLayoutListTable() and return
323 LayoutListTable. Using this object allows me to pass other information
324 about the LayoutList like the expected number of rows in the result set.
325 The Connection object from the connection pool is now propperly closed.
326 Only the requested number of lines are returned to the client in
328 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
329 GlomTable and add columnTitles and numRows.
331 2011-02-18 Ben Konrath <ben@bagu.org>
333 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
335 This is a small performance boost. I'll use GlomTable to get the required
336 layoutlist information.
338 * src/main/java/org/glom/web/client/OnlineGlom.java:
339 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
340 * src/main/java/org/glom/web/shared/GlomDocument.java:
342 2011-02-18 Ben Konrath <ben@bagu.org>
344 Add option to turn off formatting in JDT formatter preferences.
346 * .settings/org.eclipse.jdt.core.prefs:
348 2011-02-18 Ben Konrath <ben@bagu.org>
350 Rename LayoutList to LayoutListView.
352 I'm working towards setting things up to easily use MVP when the time
355 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
357 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
360 2011-02-17 Ben Konrath <ben@bagu.org>
362 Move LayoutListDataProvider class into LayoutList.java.
364 * src/main/java/org/glom/web/client/LayoutList.java:
366 2011-02-17 Ben Konrath <ben@bagu.org>
368 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
370 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
372 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
373 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
374 from LibGlomServer.java.
375 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
376 Rename from LibGlomServiceAsync.java.
377 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
378 Rename from LibGlomServiceImpl.java.
379 * src/main/webapp/WEB-INF/web.xml: Update configuration.
381 2011-02-17 Ben Konrath <ben@bagu.org>
385 * .settings/org.eclipse.jdt.core.prefs:
387 2011-02-17 Ben Konrath <ben@bagu.org>
389 Move GWT-RPC objects to shared package (where they should be).
391 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
392 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
393 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
394 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
395 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
396 org.glom.web.shared package.
397 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
398 org.glom.web.shared package.
399 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
400 directory in compilation to javascript.
402 2011-02-16 Ben Konrath <ben@bagu.org>
404 Add sort clause to the sql query that grabs table information.
406 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
407 if one of the columns is a primary key.
409 2011-02-16 Ben Konrath <ben@bagu.org>
411 Disable generateAsync feature of gwt-maven.
413 The generated interface does not correctly match the methods in LibGlomService
414 and the generated singleton Util inner-class doesn't respect the servlet
417 * pom.xml: Turn off generateAsync feature.
418 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
419 with singleton Util inner-class.
421 2011-02-14 Ben Konrath <ben@bagu.org>
423 Add LGPL v3 licence notices.
425 Followed directions listed here:
426 http://www.gnu.org/licenses/gpl-howto.html
428 * COPYING: This file is a copy of the GPL v3.
429 * COPYING.LESSER: This file is a copy of the LGPL v3.
430 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
432 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
434 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
436 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
438 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
440 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
442 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
445 2011-02-14 Ben Konrath <ben@bagu.org>
447 Use ArrayList instead of Array in GWT-RPC calls.
449 Apparently this gives a slight performance boost to the compiled
452 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
454 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
457 2011-02-14 Ben Konrath <ben@bagu.org>
459 Access data from a postgres db rather than the example glom file.
461 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
462 compile down to obfuscated javascript.
463 * pom.xml: Add c3p0 and postgres JDBC libraries.
464 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
465 using a postgres db accessed through the c3p0 connection pooling library.
467 2011-02-14 Ben Konrath <ben@bagu.org>
469 Update Java formatter settings.
471 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
473 2011-02-02 Ben Konrath <ben@bagu.org>
475 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
477 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
479 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
480 the compiled webapp directory that Eclipse uses as we're using Maven now.
481 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
482 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
484 * pom.xml: Format file, change target Java version to 1.6.
486 2011-02-02 Ben Konrath <ben@bagu.org>
488 Add information about a deployment related issue.
490 * README: Add Notes section with the problem outlined.
492 2011-02-02 Ben Konrath <ben@bagu.org>
494 Call Glom.libglom_deinit() when the servlet is shutdown.
496 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
497 Glom.libglom_deinit() to destroy() method.
499 2011-01-28 Ben Konrath <ben@bagu.org>
501 Use generated Util class to get the RPC Async interface.
503 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
505 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
506 getInstance() method to get a reference to the RPC Async interface.
507 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
508 getInstance() method to get a reference to the RPC Async interface, remove
509 the now unused getLibGlomServiceProxy() method.
511 2011-01-27 Ben Konrath <ben@bagu.org>
513 Cleanup ChangeLog entry from previous commit.
515 * ChangeLog: Group logical changes together and add comments.
517 2011-01-25 Ben Konrath <ben@bagu.org>
519 Convert to gwt-maven project.
521 * .gitignore: Update for new project structure.
522 * README: New file with a link to the online documentation.
523 * pom.xml: The generated maven configuration file with some tweaks.
525 Add / update Eclipse settings. These files are a merge of the files that
526 were generated with the gwt-maven plugin and the files we were previously
530 * .settings/.jsdtscope:
531 * .settings/com.google.gdt.eclipse.core.prefs:
532 * .settings/com.google.gwt.eclipse.core.prefs:
533 * .settings/org.eclipse.jdt.core.prefs:
534 * .settings/org.eclipse.wst.common.component:
535 * .settings/org.eclipse.wst.common.project.facet.core.xml:
536 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
537 * .settings/org.maven.ide.eclipse.prefs:
538 * OnlineGlomTest-dev.launch:
539 * OnlineGlomTest-prod.launch:
541 Java source files moved from the 'src' directory to the directory structure
543 * src/main/java/org/glom/web/client/GlomDocument.java:
544 * src/main/java/org/glom/web/client/GlomTable.java:
545 * src/main/java/org/glom/web/client/LayoutList.java:
546 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
547 * src/main/java/org/glom/web/client/LibGlomService.java:
548 * src/main/java/org/glom/web/client/OnlineGlom.java:
549 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
551 Non-functional property file used for translations. I included this as
552 reminder that it's something I need to sort out.
553 * src/main/resources/org/glom/web/client/Messages.properties:
555 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
556 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
558 The servlet configuration files moved from the 'war' directory.
559 * src/main/webapp/OnlineGlom.css:
560 * src/main/webapp/OnlineGlom.html:
561 * src/main/webapp/WEB-INF/web.xml:
563 Generated test files with most of the code commented out. I included these
564 so that it's easy to add tests when we're ready for them.
565 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
566 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
568 2011-01-25 Ben Konrath <ben@bagu.org>
570 Remove unused println.
572 * src/org/glom/web/server/LibGlomServiceImpl.java:
574 2011-01-25 Ben Konrath <ben@bagu.org>
576 Add project specific JDT settings.
578 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
579 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
581 2011-01-25 Ben Konrath <ben@bagu.org>
583 Populate celltable with example data.
585 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
586 * src/org/glom/web/client/GlomTable.java: Correct formatting.
587 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
588 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
589 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
590 asynchronously gets the example data.
591 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
592 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
593 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
594 curently selected table to be retrieved by other widgets.
595 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
596 implement getTableData() in a hacky way. This method needs to be updated
597 to grab information from the database when database creating is
600 2011-01-20 Ben Konrath <ben@bagu.org>
602 Set table headers when table dropBox changes.
604 * src/org/glom/web/client/GlomDocument.java: Correct some method
606 * src/org/glom/web/client/LibGlomService.java: Add method
607 to get list layout field names.
608 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
609 to get list layout field names.
610 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
611 widget for list layout table.
612 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
613 the table drop box and add new updateTable() method to asynchronously
614 get the layout list field names for the currently selected table.
615 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
616 implementation of getLayoutListHeaders() method.
617 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
619 2011-01-18 Ben Konrath <ben@bagu.org>
621 Make a listBox with table titles instead of the flexTable demo.
623 This is the start of something more useful.
625 * .classpath: Exclude a bunch of packages from the JVM that are
626 getting in the way of the Eclipse content assist.
627 * src/org/glom/web/client/GlomDocument.java:
628 * src/org/glom/web/client/GlomTable.java:
629 * src/org/glom/web/client/LibGlomService.java:
630 * src/org/glom/web/client/LibGlomServiceAsync.java:
631 * src/org/glom/web/client/OnlineGlom.java:
632 * src/org/glom/web/server/LibGlomServiceImpl.java:
633 * war/OnlineGlom.html:
634 * war/WEB-INF/web.xml:
636 211-01-13 Ben Konrath <ben@bagu.org>
638 Update to new java-libglom API.
640 * .gitignore: Ignore OnlineGlom.war.
641 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
643 2010-12-20 Ben Konrath <ben@bagu.org>
645 Add some basic style to the table listing.
647 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
648 header, print useful error message on async callback failure.
649 * war/OnlineGlom.css: Add style for table header, remove defaults
650 provided by the Eclipse project wizard.
652 2010-12-20 Ben Konrath <ben@bagu.org>
654 Load example file from installed glom dir.
656 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
657 provided by java-libglom to find the example file.
659 2010-12-20 Ben Konrath <ben@bagu.org>
661 Update Eclipse settings.
664 * .settings/com.google.gdt.eclipse.core.prefs:
665 * .settings/com.google.gwt.eclipse.core.prefs:
667 2010-12-17 Ben Konrath <ben@bagu.org>
671 * .classpath: New file.
672 * .gitignore: New file.
673 * .project: New file.
674 * .settings/com.google.gdt.eclipse.core.prefs: New file.
675 * .settings/com.google.gwt.eclipse.core.prefs: New file.
676 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
677 * src/org/glom/web/client/GlomTable.java: New file.
678 * src/org/glom/web/client/OnlineGlom.java: New file.
679 * src/org/glom/web/client/TableNameService.java: New file.
680 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
681 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
682 * war/OnlineGlom.css: New file.
683 * war/OnlineGlom.html: New file.
684 * war/WEB-INF/web.xml: New file.
685 * war/images/glom.png: New file.