1 2011-03-19 Ben Konrath <ben@bagu.org>
3 Add TODO item about CellTable pager positioning.
7 2011-03-18 Ben Konrath <ben@bagu.org>
9 Remove unneeded GlomFieldColumn class.
11 This is just a small code cleanup.
13 * src/main/java/org/glom/web/client/LayoutListView.java:
15 2011-03-18 Ben Konrath <ben@bagu.org>
17 Use cursor mode in the query that gets data for the list view.
19 I still need to fix the potential memory problem when getting the row
20 count for the list view.
22 * TODO: Add note about testing memory usage with large data sets. Add
23 item about fixing row counting with large data sets.
24 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
25 PostgreSQL JDBC driver into cursor mode when getting data for the
28 2011-03-15 Ben Konrath <ben@bagu.org>
30 Remove the GWT Container from the Eclipse build classpath.
32 The GWT dependencies are set by Maven so this isn't needed.
36 2011-03-15 Murray Cumming <murrayc@murrayc.com>
38 Added some earlier mockups to git, but not to the tarball dist.
40 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
41 Openismus. These hopefully show how we might structure the HTML so that
42 it can be styled easily with CSS. However, we probably need to adapt them
43 for the CSS structure that GWT dictates for common widgets.
45 2011-03-14 Ben Konrath <ben@bagu.org>
47 Locate OnlineGlom.properties using the ServletContext.
49 This is required to be able to locate the file in the deployed servlet.
51 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
52 Configure the database and glom document in in a helper method so
53 that the ServletContext can be used to locate OnlineGlom.properties.
54 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
55 src/main/webapp. This is the proper location for .properites files.
57 2011-03-12 Ben Konrath <ben@bagu.org>
59 Add note to README about why we're compiling down to obfuscated JavaScript.
63 2011-03-11 Ben Konrath <ben@bagu.org>
65 Use properties file to configure servlet.
67 This allows people to change the glom file path, db username and db
68 password without recompiling the code.
70 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
71 * src/main/webapp/OnlineGlom.properties:
73 2011-03-11 Ben Konrath <ben@bagu.org>
75 Use table fields in layout list view if the layout list is not defined.
77 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
78 Manually create a LayoutFieldVector for the query builder using the
79 table fields when a layout list is not defined in the glom file.
81 2011-03-11 Ben Konrath <ben@bagu.org>
83 Only show FIXME string for images when there's an image.
85 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
86 in this change are some small code cleanups.
88 2011-03-11 Ben Konrath <ben@bagu.org>
90 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
92 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
94 2011-03-11 Ben Konrath <ben@bagu.org>
96 Correctly set the index of the default table.
98 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
99 Correctly set the index of the default table. Add commented out example
102 2011-03-10 Ben Konrath <ben@bagu.org>
104 Add comment to pom.xml about the previous change.
106 * pom.xml: Add comment about the deployment issue so that it's obvious
107 why java-libglom is set to the provided scope.
109 2011-03-10 Ben Konrath <ben@bagu.org>
111 Change java-libglom dependency from compile to provided in pom.xml.
113 Since java-libglom uses jni it can only be loaded once and therefore
114 must be placed in $CATALINA_HOME/lib and not included in each war.
115 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
116 More information about this issue can be found in the Tomcat 6 release
117 notes in the "JNI Based Applications" section:
119 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
121 * README: Remove note about this issue. Deployment info should really
122 be on the wiki anyway so I'll add it right now.
123 * pom.xml: Change java-libglom dependency from compile to provided so
124 that it's copied in to the packaged war.
126 2011-03-09 Ben Konrath <ben@bagu.org>
128 Change to using a neutral locale for currency, date and time formatting.
130 This solves the problem of currency values being represented without a
131 space between the currency code and the number (e.g. "EUR5.89" is now
132 represented as "EUR 5.89"). More work is required when we implement
133 a locale preference setting.
135 * TODO: Add note about currency formatting issues with different
137 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
138 to using the neutral ROOT locale.
140 2011-03-09 Ben Konrath <ben@bagu.org>
142 Add support for currency codes that are not ISO 4217 codes.
144 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
145 the currency code defined in the glom file when it's not 3 characters
146 long or when Java doesn't recognize the string as an ISO 4217 code.
148 2011-03-08 Ben Konrath <ben@bagu.org>
150 Remove test classes, launch configurations and configuration.
152 The test stuff was getting in the way when creating the war. To make
153 the war file you can now do 'mvn clean package'. The packaged war file
154 will be in the target directory.
156 * .classpath: Remove unused classpathentry for tests and i18n.
157 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
158 property. Don't run test or i18n goals when packaging the war.
159 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
164 * OnlineGlomTest-dev.launch:
165 * OnlineGlomTest-prod.launch:
166 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
167 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
169 2011-03-07 Ben Konrath <ben@bagu.org>
171 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
173 These fixes allow me to use 'mvn deploy' to create the war file.
175 * .classpath: This generated config has been updated by Eclipse. This
176 change was probably triggered by me updating from Eclipse 3.6.1 to
178 * .gitignore: Add entry to ignore the directory
179 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
180 * .project: The generated config has been updated by Eclipse. This
181 change was probably triggered by me updating from Eclipse 3.6.1 to
183 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
184 so that Eclipse doesn't complain
185 * pom.xml: Update to gwt-maven-plugin 2.2.0.
186 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
187 'tests' directory to 'client' directory. This is the new
188 gwt-maven-plugin convension.
189 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
190 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
192 2011-03-07 Ben Konrath <ben@bagu.org>
194 Add support for horizontal alignment in the LayoutList columns.
196 * TODO: Remove item about horizontal alignment. Add item about
197 improvements to ColumnInfo.
198 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
199 alignment on the columns. Use ColumnInfo RPC object get the column
200 title and horizontal alignment.
201 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
202 LayoutListView creation with ColumnInfo RPC object.
203 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
204 a ColumnInfo object for every LayoutList columnn. Convert the
205 FieldFormatting.HorizontalAlignment to the correct
206 ColumnnInfo.HorizontatlAlignment with the new
207 getColumnInfoHorizontalAlignment helper method.
208 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
209 to encapsulate column information like alignment and title. This
210 could be used to set the colour instead of on a per cell field basis.
211 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
212 column title storage and retrieval with ColumnInfo.
214 2011-03-04 Ben Konrath <ben@bagu.org>
216 Add support for column sorting.
218 * src/main/java/org/glom/web/client/LayoutListView.java: Change
219 AsynDataProvider to be an anonymous inner class. Use new
220 getSortedTableData RPC method when column sort is requested. Set all
221 columns sortable and add an AsyncHandler to activate sorting in the
223 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
224 method getSortedTableData(). Cleanup other method signatures.
225 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
226 new method getSortedTableData(). Cleanup other method signatures.
227 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
228 Implement getSortedTableData() and getTableData() methods by using a
229 private helper method with the appropriate parameters filled in. Use
230 user supplied sort clause when supplied, otherwise fall back to
231 sorting by the primary key. Move destroy() method to be underneath
232 constructor for readability. Cleanup comments.
234 2011-03-03 Ben Konrath <ben@bagu.org>
236 Add support for colour text and colour backgrounds to the layout list cells.
238 Only the cell backgrounds are coloured which leaves a gap between the
239 cells that isn't coloured. I need to figure out a way to set
240 'style=background-colour:' on the whole column rather than just the
243 * TODO: Add a note about colouring the background of the whole column.
244 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
245 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
246 render the coloured text and backgrounds. Use GlomField[] for the row type.
247 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
249 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
250 GlomField[] for the row type.
251 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
252 GlomField[] for the row type. Set the text, text colour and background
253 colour in the GlomField objects as specified in the glom document. Add
254 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
255 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
256 the glom field text, foreground colour and background colour.
258 2011-03-02 Ben Konrath <ben@bagu.org>
260 Don't display hidden tables in the combo box.
262 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
264 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
265 code to ignore hidden tables using ArrayLists for the table names and
267 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
268 tableNames to use ArrayLists instead of String[]. Update getter and setter
271 2011-03-01 Ben Konrath <ben@bagu.org>
273 Add support for Date and Time number types.
275 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
276 Implement formatting for Date and Time values. Change the default glom
277 file to small business example.
279 2011-03-01 Ben Konrath <ben@bagu.org>
281 Add support for formatting glom types as specified in the glom file.
283 Formatting isn't finished yet - I still need to add support for Date
286 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
287 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
288 checks for null values in JDBC cleanup code and catch all exceptions
289 instead of just SQLExceptions.
290 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
293 2011-03-01 Ben Konrath <ben@bagu.org>
295 Use GWT 2.2.0 instead of 2.1.1.
297 * pom.xml: Change GWT version numbers.
299 2011-03-01 Ben Konrath <ben@bagu.org>
301 A few small code cleanups.
303 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
305 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
306 unnecessary object creation in constructor.
307 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
308 unnecessary object creation in constructor.
310 2011-02-28 Ben Konrath <ben@bagu.org>
312 Add file for TODO list.
316 2011-02-18 Ben Konrath <ben@bagu.org>
318 Enable the CellTable Pager when more than 20 rows need to be viewed.
320 The Pager will automatically become active when the results are larger
321 than the CellTable size which is currently set to 20 lines.
323 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
324 name on debug statment in RPC call in LayoutListDataProvider, add
325 numRows parameter to LayoutListView constructor, propperly set rowCount
327 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
328 name on debug statment in RPC call, use LayoutListTable object in RPC
329 calls, pass rowCount to LayoutListView.
330 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
331 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
333 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
334 interface for changes in OnlineGlomService.
335 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
336 getLayoutListHeaders() to getLayoutListTable() and return
337 LayoutListTable. Using this object allows me to pass other information
338 about the LayoutList like the expected number of rows in the result set.
339 The Connection object from the connection pool is now propperly closed.
340 Only the requested number of lines are returned to the client in
342 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
343 GlomTable and add columnTitles and numRows.
345 2011-02-18 Ben Konrath <ben@bagu.org>
347 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
349 This is a small performance boost. I'll use GlomTable to get the required
350 layoutlist information.
352 * src/main/java/org/glom/web/client/OnlineGlom.java:
353 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
354 * src/main/java/org/glom/web/shared/GlomDocument.java:
356 2011-02-18 Ben Konrath <ben@bagu.org>
358 Add option to turn off formatting in JDT formatter preferences.
360 * .settings/org.eclipse.jdt.core.prefs:
362 2011-02-18 Ben Konrath <ben@bagu.org>
364 Rename LayoutList to LayoutListView.
366 I'm working towards setting things up to easily use MVP when the time
369 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
371 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
374 2011-02-17 Ben Konrath <ben@bagu.org>
376 Move LayoutListDataProvider class into LayoutList.java.
378 * src/main/java/org/glom/web/client/LayoutList.java:
380 2011-02-17 Ben Konrath <ben@bagu.org>
382 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
384 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
386 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
387 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
388 from LibGlomServer.java.
389 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
390 Rename from LibGlomServiceAsync.java.
391 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
392 Rename from LibGlomServiceImpl.java.
393 * src/main/webapp/WEB-INF/web.xml: Update configuration.
395 2011-02-17 Ben Konrath <ben@bagu.org>
399 * .settings/org.eclipse.jdt.core.prefs:
401 2011-02-17 Ben Konrath <ben@bagu.org>
403 Move GWT-RPC objects to shared package (where they should be).
405 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
406 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
407 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
408 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
409 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
410 org.glom.web.shared package.
411 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
412 org.glom.web.shared package.
413 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
414 directory in compilation to javascript.
416 2011-02-16 Ben Konrath <ben@bagu.org>
418 Add sort clause to the sql query that grabs table information.
420 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
421 if one of the columns is a primary key.
423 2011-02-16 Ben Konrath <ben@bagu.org>
425 Disable generateAsync feature of gwt-maven.
427 The generated interface does not correctly match the methods in LibGlomService
428 and the generated singleton Util inner-class doesn't respect the servlet
431 * pom.xml: Turn off generateAsync feature.
432 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
433 with singleton Util inner-class.
435 2011-02-14 Ben Konrath <ben@bagu.org>
437 Add LGPL v3 licence notices.
439 Followed directions listed here:
440 http://www.gnu.org/licenses/gpl-howto.html
442 * COPYING: This file is a copy of the GPL v3.
443 * COPYING.LESSER: This file is a copy of the LGPL v3.
444 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
446 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
448 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
450 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
452 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
454 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
456 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
459 2011-02-14 Ben Konrath <ben@bagu.org>
461 Use ArrayList instead of Array in GWT-RPC calls.
463 Apparently this gives a slight performance boost to the compiled
466 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
468 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
471 2011-02-14 Ben Konrath <ben@bagu.org>
473 Access data from a postgres db rather than the example glom file.
475 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
476 compile down to obfuscated javascript.
477 * pom.xml: Add c3p0 and postgres JDBC libraries.
478 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
479 using a postgres db accessed through the c3p0 connection pooling library.
481 2011-02-14 Ben Konrath <ben@bagu.org>
483 Update Java formatter settings.
485 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
487 2011-02-02 Ben Konrath <ben@bagu.org>
489 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
491 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
493 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
494 the compiled webapp directory that Eclipse uses as we're using Maven now.
495 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
496 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
498 * pom.xml: Format file, change target Java version to 1.6.
500 2011-02-02 Ben Konrath <ben@bagu.org>
502 Add information about a deployment related issue.
504 * README: Add Notes section with the problem outlined.
506 2011-02-02 Ben Konrath <ben@bagu.org>
508 Call Glom.libglom_deinit() when the servlet is shutdown.
510 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
511 Glom.libglom_deinit() to destroy() method.
513 2011-01-28 Ben Konrath <ben@bagu.org>
515 Use generated Util class to get the RPC Async interface.
517 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
519 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
520 getInstance() method to get a reference to the RPC Async interface.
521 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
522 getInstance() method to get a reference to the RPC Async interface, remove
523 the now unused getLibGlomServiceProxy() method.
525 2011-01-27 Ben Konrath <ben@bagu.org>
527 Cleanup ChangeLog entry from previous commit.
529 * ChangeLog: Group logical changes together and add comments.
531 2011-01-25 Ben Konrath <ben@bagu.org>
533 Convert to gwt-maven project.
535 * .gitignore: Update for new project structure.
536 * README: New file with a link to the online documentation.
537 * pom.xml: The generated maven configuration file with some tweaks.
539 Add / update Eclipse settings. These files are a merge of the files that
540 were generated with the gwt-maven plugin and the files we were previously
544 * .settings/.jsdtscope:
545 * .settings/com.google.gdt.eclipse.core.prefs:
546 * .settings/com.google.gwt.eclipse.core.prefs:
547 * .settings/org.eclipse.jdt.core.prefs:
548 * .settings/org.eclipse.wst.common.component:
549 * .settings/org.eclipse.wst.common.project.facet.core.xml:
550 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
551 * .settings/org.maven.ide.eclipse.prefs:
552 * OnlineGlomTest-dev.launch:
553 * OnlineGlomTest-prod.launch:
555 Java source files moved from the 'src' directory to the directory structure
557 * src/main/java/org/glom/web/client/GlomDocument.java:
558 * src/main/java/org/glom/web/client/GlomTable.java:
559 * src/main/java/org/glom/web/client/LayoutList.java:
560 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
561 * src/main/java/org/glom/web/client/LibGlomService.java:
562 * src/main/java/org/glom/web/client/OnlineGlom.java:
563 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
565 Non-functional property file used for translations. I included this as
566 reminder that it's something I need to sort out.
567 * src/main/resources/org/glom/web/client/Messages.properties:
569 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
570 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
572 The servlet configuration files moved from the 'war' directory.
573 * src/main/webapp/OnlineGlom.css:
574 * src/main/webapp/OnlineGlom.html:
575 * src/main/webapp/WEB-INF/web.xml:
577 Generated test files with most of the code commented out. I included these
578 so that it's easy to add tests when we're ready for them.
579 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
580 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
582 2011-01-25 Ben Konrath <ben@bagu.org>
584 Remove unused println.
586 * src/org/glom/web/server/LibGlomServiceImpl.java:
588 2011-01-25 Ben Konrath <ben@bagu.org>
590 Add project specific JDT settings.
592 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
593 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
595 2011-01-25 Ben Konrath <ben@bagu.org>
597 Populate celltable with example data.
599 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
600 * src/org/glom/web/client/GlomTable.java: Correct formatting.
601 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
602 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
603 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
604 asynchronously gets the example data.
605 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
606 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
607 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
608 curently selected table to be retrieved by other widgets.
609 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
610 implement getTableData() in a hacky way. This method needs to be updated
611 to grab information from the database when database creating is
614 2011-01-20 Ben Konrath <ben@bagu.org>
616 Set table headers when table dropBox changes.
618 * src/org/glom/web/client/GlomDocument.java: Correct some method
620 * src/org/glom/web/client/LibGlomService.java: Add method
621 to get list layout field names.
622 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
623 to get list layout field names.
624 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
625 widget for list layout table.
626 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
627 the table drop box and add new updateTable() method to asynchronously
628 get the layout list field names for the currently selected table.
629 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
630 implementation of getLayoutListHeaders() method.
631 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
633 2011-01-18 Ben Konrath <ben@bagu.org>
635 Make a listBox with table titles instead of the flexTable demo.
637 This is the start of something more useful.
639 * .classpath: Exclude a bunch of packages from the JVM that are
640 getting in the way of the Eclipse content assist.
641 * src/org/glom/web/client/GlomDocument.java:
642 * src/org/glom/web/client/GlomTable.java:
643 * src/org/glom/web/client/LibGlomService.java:
644 * src/org/glom/web/client/LibGlomServiceAsync.java:
645 * src/org/glom/web/client/OnlineGlom.java:
646 * src/org/glom/web/server/LibGlomServiceImpl.java:
647 * war/OnlineGlom.html:
648 * war/WEB-INF/web.xml:
650 211-01-13 Ben Konrath <ben@bagu.org>
652 Update to new java-libglom API.
654 * .gitignore: Ignore OnlineGlom.war.
655 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
657 2010-12-20 Ben Konrath <ben@bagu.org>
659 Add some basic style to the table listing.
661 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
662 header, print useful error message on async callback failure.
663 * war/OnlineGlom.css: Add style for table header, remove defaults
664 provided by the Eclipse project wizard.
666 2010-12-20 Ben Konrath <ben@bagu.org>
668 Load example file from installed glom dir.
670 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
671 provided by java-libglom to find the example file.
673 2010-12-20 Ben Konrath <ben@bagu.org>
675 Update Eclipse settings.
678 * .settings/com.google.gdt.eclipse.core.prefs:
679 * .settings/com.google.gwt.eclipse.core.prefs:
681 2010-12-17 Ben Konrath <ben@bagu.org>
685 * .classpath: New file.
686 * .gitignore: New file.
687 * .project: New file.
688 * .settings/com.google.gdt.eclipse.core.prefs: New file.
689 * .settings/com.google.gwt.eclipse.core.prefs: New file.
690 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
691 * src/org/glom/web/client/GlomTable.java: New file.
692 * src/org/glom/web/client/OnlineGlom.java: New file.
693 * src/org/glom/web/client/TableNameService.java: New file.
694 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
695 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
696 * war/OnlineGlom.css: New file.
697 * war/OnlineGlom.html: New file.
698 * war/WEB-INF/web.xml: New file.
699 * war/images/glom.png: New file.