1 2011-03-24 Ben Konrath <ben@bagu.org>
3 Add a disable button for the Details view.
5 * src/main/java/org/glom/web/client/LayoutListView.java:
7 2011-03-22 Ben Konrath <ben@bagu.org>
9 Use a count query to get the number of rows for the list view pager.
11 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
13 2011-03-22 Ben Konrath <ben@bagu.org>
15 Add more TODO information about CellTable pager positioning.
19 2011-03-19 Ben Konrath <ben@bagu.org>
21 Add TODO item about CellTable pager positioning.
25 2011-03-18 Ben Konrath <ben@bagu.org>
27 Remove unneeded GlomFieldColumn class.
29 This is just a small code cleanup.
31 * src/main/java/org/glom/web/client/LayoutListView.java:
33 2011-03-18 Ben Konrath <ben@bagu.org>
35 Use cursor mode in the query that gets data for the list view.
37 I still need to fix the potential memory problem when getting the row
38 count for the list view.
40 * TODO: Add note about testing memory usage with large data sets. Add
41 item about fixing row counting with large data sets.
42 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
43 PostgreSQL JDBC driver into cursor mode when getting data for the
46 2011-03-15 Ben Konrath <ben@bagu.org>
48 Remove the GWT Container from the Eclipse build classpath.
50 The GWT dependencies are set by Maven so this isn't needed.
54 2011-03-15 Murray Cumming <murrayc@murrayc.com>
56 Added some earlier mockups to git, but not to the tarball dist.
58 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
59 Openismus. These hopefully show how we might structure the HTML so that
60 it can be styled easily with CSS. However, we probably need to adapt them
61 for the CSS structure that GWT dictates for common widgets.
63 2011-03-14 Ben Konrath <ben@bagu.org>
65 Locate OnlineGlom.properties using the ServletContext.
67 This is required to be able to locate the file in the deployed servlet.
69 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
70 Configure the database and glom document in in a helper method so
71 that the ServletContext can be used to locate OnlineGlom.properties.
72 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
73 src/main/webapp. This is the proper location for .properites files.
75 2011-03-12 Ben Konrath <ben@bagu.org>
77 Add note to README about why we're compiling down to obfuscated JavaScript.
81 2011-03-11 Ben Konrath <ben@bagu.org>
83 Use properties file to configure servlet.
85 This allows people to change the glom file path, db username and db
86 password without recompiling the code.
88 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
89 * src/main/webapp/OnlineGlom.properties:
91 2011-03-11 Ben Konrath <ben@bagu.org>
93 Use table fields in layout list view if the layout list is not defined.
95 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
96 Manually create a LayoutFieldVector for the query builder using the
97 table fields when a layout list is not defined in the glom file.
99 2011-03-11 Ben Konrath <ben@bagu.org>
101 Only show FIXME string for images when there's an image.
103 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
104 in this change are some small code cleanups.
106 2011-03-11 Ben Konrath <ben@bagu.org>
108 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
110 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
112 2011-03-11 Ben Konrath <ben@bagu.org>
114 Correctly set the index of the default table.
116 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
117 Correctly set the index of the default table. Add commented out example
120 2011-03-10 Ben Konrath <ben@bagu.org>
122 Add comment to pom.xml about the previous change.
124 * pom.xml: Add comment about the deployment issue so that it's obvious
125 why java-libglom is set to the provided scope.
127 2011-03-10 Ben Konrath <ben@bagu.org>
129 Change java-libglom dependency from compile to provided in pom.xml.
131 Since java-libglom uses jni it can only be loaded once and therefore
132 must be placed in $CATALINA_HOME/lib and not included in each war.
133 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
134 More information about this issue can be found in the Tomcat 6 release
135 notes in the "JNI Based Applications" section:
137 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
139 * README: Remove note about this issue. Deployment info should really
140 be on the wiki anyway so I'll add it right now.
141 * pom.xml: Change java-libglom dependency from compile to provided so
142 that it's copied in to the packaged war.
144 2011-03-09 Ben Konrath <ben@bagu.org>
146 Change to using a neutral locale for currency, date and time formatting.
148 This solves the problem of currency values being represented without a
149 space between the currency code and the number (e.g. "EUR5.89" is now
150 represented as "EUR 5.89"). More work is required when we implement
151 a locale preference setting.
153 * TODO: Add note about currency formatting issues with different
155 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
156 to using the neutral ROOT locale.
158 2011-03-09 Ben Konrath <ben@bagu.org>
160 Add support for currency codes that are not ISO 4217 codes.
162 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
163 the currency code defined in the glom file when it's not 3 characters
164 long or when Java doesn't recognize the string as an ISO 4217 code.
166 2011-03-08 Ben Konrath <ben@bagu.org>
168 Remove test classes, launch configurations and configuration.
170 The test stuff was getting in the way when creating the war. To make
171 the war file you can now do 'mvn clean package'. The packaged war file
172 will be in the target directory.
174 * .classpath: Remove unused classpathentry for tests and i18n.
175 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
176 property. Don't run test or i18n goals when packaging the war.
177 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
182 * OnlineGlomTest-dev.launch:
183 * OnlineGlomTest-prod.launch:
184 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
185 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
187 2011-03-07 Ben Konrath <ben@bagu.org>
189 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
191 These fixes allow me to use 'mvn deploy' to create the war file.
193 * .classpath: This generated config has been updated by Eclipse. This
194 change was probably triggered by me updating from Eclipse 3.6.1 to
196 * .gitignore: Add entry to ignore the directory
197 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
198 * .project: The generated config has been updated by Eclipse. This
199 change was probably triggered by me updating from Eclipse 3.6.1 to
201 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
202 so that Eclipse doesn't complain
203 * pom.xml: Update to gwt-maven-plugin 2.2.0.
204 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
205 'tests' directory to 'client' directory. This is the new
206 gwt-maven-plugin convension.
207 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
208 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
210 2011-03-07 Ben Konrath <ben@bagu.org>
212 Add support for horizontal alignment in the LayoutList columns.
214 * TODO: Remove item about horizontal alignment. Add item about
215 improvements to ColumnInfo.
216 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
217 alignment on the columns. Use ColumnInfo RPC object get the column
218 title and horizontal alignment.
219 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
220 LayoutListView creation with ColumnInfo RPC object.
221 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
222 a ColumnInfo object for every LayoutList columnn. Convert the
223 FieldFormatting.HorizontalAlignment to the correct
224 ColumnnInfo.HorizontatlAlignment with the new
225 getColumnInfoHorizontalAlignment helper method.
226 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
227 to encapsulate column information like alignment and title. This
228 could be used to set the colour instead of on a per cell field basis.
229 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
230 column title storage and retrieval with ColumnInfo.
232 2011-03-04 Ben Konrath <ben@bagu.org>
234 Add support for column sorting.
236 * src/main/java/org/glom/web/client/LayoutListView.java: Change
237 AsynDataProvider to be an anonymous inner class. Use new
238 getSortedTableData RPC method when column sort is requested. Set all
239 columns sortable and add an AsyncHandler to activate sorting in the
241 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
242 method getSortedTableData(). Cleanup other method signatures.
243 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
244 new method getSortedTableData(). Cleanup other method signatures.
245 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
246 Implement getSortedTableData() and getTableData() methods by using a
247 private helper method with the appropriate parameters filled in. Use
248 user supplied sort clause when supplied, otherwise fall back to
249 sorting by the primary key. Move destroy() method to be underneath
250 constructor for readability. Cleanup comments.
252 2011-03-03 Ben Konrath <ben@bagu.org>
254 Add support for colour text and colour backgrounds to the layout list cells.
256 Only the cell backgrounds are coloured which leaves a gap between the
257 cells that isn't coloured. I need to figure out a way to set
258 'style=background-colour:' on the whole column rather than just the
261 * TODO: Add a note about colouring the background of the whole column.
262 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
263 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
264 render the coloured text and backgrounds. Use GlomField[] for the row type.
265 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
267 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
268 GlomField[] for the row type.
269 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
270 GlomField[] for the row type. Set the text, text colour and background
271 colour in the GlomField objects as specified in the glom document. Add
272 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
273 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
274 the glom field text, foreground colour and background colour.
276 2011-03-02 Ben Konrath <ben@bagu.org>
278 Don't display hidden tables in the combo box.
280 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
282 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
283 code to ignore hidden tables using ArrayLists for the table names and
285 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
286 tableNames to use ArrayLists instead of String[]. Update getter and setter
289 2011-03-01 Ben Konrath <ben@bagu.org>
291 Add support for Date and Time number types.
293 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
294 Implement formatting for Date and Time values. Change the default glom
295 file to small business example.
297 2011-03-01 Ben Konrath <ben@bagu.org>
299 Add support for formatting glom types as specified in the glom file.
301 Formatting isn't finished yet - I still need to add support for Date
304 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
305 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
306 checks for null values in JDBC cleanup code and catch all exceptions
307 instead of just SQLExceptions.
308 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
311 2011-03-01 Ben Konrath <ben@bagu.org>
313 Use GWT 2.2.0 instead of 2.1.1.
315 * pom.xml: Change GWT version numbers.
317 2011-03-01 Ben Konrath <ben@bagu.org>
319 A few small code cleanups.
321 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
323 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
324 unnecessary object creation in constructor.
325 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
326 unnecessary object creation in constructor.
328 2011-02-28 Ben Konrath <ben@bagu.org>
330 Add file for TODO list.
334 2011-02-18 Ben Konrath <ben@bagu.org>
336 Enable the CellTable Pager when more than 20 rows need to be viewed.
338 The Pager will automatically become active when the results are larger
339 than the CellTable size which is currently set to 20 lines.
341 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
342 name on debug statment in RPC call in LayoutListDataProvider, add
343 numRows parameter to LayoutListView constructor, propperly set rowCount
345 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
346 name on debug statment in RPC call, use LayoutListTable object in RPC
347 calls, pass rowCount to LayoutListView.
348 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
349 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
351 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
352 interface for changes in OnlineGlomService.
353 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
354 getLayoutListHeaders() to getLayoutListTable() and return
355 LayoutListTable. Using this object allows me to pass other information
356 about the LayoutList like the expected number of rows in the result set.
357 The Connection object from the connection pool is now propperly closed.
358 Only the requested number of lines are returned to the client in
360 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
361 GlomTable and add columnTitles and numRows.
363 2011-02-18 Ben Konrath <ben@bagu.org>
365 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
367 This is a small performance boost. I'll use GlomTable to get the required
368 layoutlist information.
370 * src/main/java/org/glom/web/client/OnlineGlom.java:
371 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
372 * src/main/java/org/glom/web/shared/GlomDocument.java:
374 2011-02-18 Ben Konrath <ben@bagu.org>
376 Add option to turn off formatting in JDT formatter preferences.
378 * .settings/org.eclipse.jdt.core.prefs:
380 2011-02-18 Ben Konrath <ben@bagu.org>
382 Rename LayoutList to LayoutListView.
384 I'm working towards setting things up to easily use MVP when the time
387 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
389 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
392 2011-02-17 Ben Konrath <ben@bagu.org>
394 Move LayoutListDataProvider class into LayoutList.java.
396 * src/main/java/org/glom/web/client/LayoutList.java:
398 2011-02-17 Ben Konrath <ben@bagu.org>
400 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
402 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
404 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
405 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
406 from LibGlomServer.java.
407 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
408 Rename from LibGlomServiceAsync.java.
409 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
410 Rename from LibGlomServiceImpl.java.
411 * src/main/webapp/WEB-INF/web.xml: Update configuration.
413 2011-02-17 Ben Konrath <ben@bagu.org>
417 * .settings/org.eclipse.jdt.core.prefs:
419 2011-02-17 Ben Konrath <ben@bagu.org>
421 Move GWT-RPC objects to shared package (where they should be).
423 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
424 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
425 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
426 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
427 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
428 org.glom.web.shared package.
429 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
430 org.glom.web.shared package.
431 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
432 directory in compilation to javascript.
434 2011-02-16 Ben Konrath <ben@bagu.org>
436 Add sort clause to the sql query that grabs table information.
438 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
439 if one of the columns is a primary key.
441 2011-02-16 Ben Konrath <ben@bagu.org>
443 Disable generateAsync feature of gwt-maven.
445 The generated interface does not correctly match the methods in LibGlomService
446 and the generated singleton Util inner-class doesn't respect the servlet
449 * pom.xml: Turn off generateAsync feature.
450 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
451 with singleton Util inner-class.
453 2011-02-14 Ben Konrath <ben@bagu.org>
455 Add LGPL v3 licence notices.
457 Followed directions listed here:
458 http://www.gnu.org/licenses/gpl-howto.html
460 * COPYING: This file is a copy of the GPL v3.
461 * COPYING.LESSER: This file is a copy of the LGPL v3.
462 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
464 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
466 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
468 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
470 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
472 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
474 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
477 2011-02-14 Ben Konrath <ben@bagu.org>
479 Use ArrayList instead of Array in GWT-RPC calls.
481 Apparently this gives a slight performance boost to the compiled
484 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
486 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
489 2011-02-14 Ben Konrath <ben@bagu.org>
491 Access data from a postgres db rather than the example glom file.
493 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
494 compile down to obfuscated javascript.
495 * pom.xml: Add c3p0 and postgres JDBC libraries.
496 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
497 using a postgres db accessed through the c3p0 connection pooling library.
499 2011-02-14 Ben Konrath <ben@bagu.org>
501 Update Java formatter settings.
503 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
505 2011-02-02 Ben Konrath <ben@bagu.org>
507 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
509 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
511 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
512 the compiled webapp directory that Eclipse uses as we're using Maven now.
513 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
514 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
516 * pom.xml: Format file, change target Java version to 1.6.
518 2011-02-02 Ben Konrath <ben@bagu.org>
520 Add information about a deployment related issue.
522 * README: Add Notes section with the problem outlined.
524 2011-02-02 Ben Konrath <ben@bagu.org>
526 Call Glom.libglom_deinit() when the servlet is shutdown.
528 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
529 Glom.libglom_deinit() to destroy() method.
531 2011-01-28 Ben Konrath <ben@bagu.org>
533 Use generated Util class to get the RPC Async interface.
535 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
537 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
538 getInstance() method to get a reference to the RPC Async interface.
539 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
540 getInstance() method to get a reference to the RPC Async interface, remove
541 the now unused getLibGlomServiceProxy() method.
543 2011-01-27 Ben Konrath <ben@bagu.org>
545 Cleanup ChangeLog entry from previous commit.
547 * ChangeLog: Group logical changes together and add comments.
549 2011-01-25 Ben Konrath <ben@bagu.org>
551 Convert to gwt-maven project.
553 * .gitignore: Update for new project structure.
554 * README: New file with a link to the online documentation.
555 * pom.xml: The generated maven configuration file with some tweaks.
557 Add / update Eclipse settings. These files are a merge of the files that
558 were generated with the gwt-maven plugin and the files we were previously
562 * .settings/.jsdtscope:
563 * .settings/com.google.gdt.eclipse.core.prefs:
564 * .settings/com.google.gwt.eclipse.core.prefs:
565 * .settings/org.eclipse.jdt.core.prefs:
566 * .settings/org.eclipse.wst.common.component:
567 * .settings/org.eclipse.wst.common.project.facet.core.xml:
568 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
569 * .settings/org.maven.ide.eclipse.prefs:
570 * OnlineGlomTest-dev.launch:
571 * OnlineGlomTest-prod.launch:
573 Java source files moved from the 'src' directory to the directory structure
575 * src/main/java/org/glom/web/client/GlomDocument.java:
576 * src/main/java/org/glom/web/client/GlomTable.java:
577 * src/main/java/org/glom/web/client/LayoutList.java:
578 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
579 * src/main/java/org/glom/web/client/LibGlomService.java:
580 * src/main/java/org/glom/web/client/OnlineGlom.java:
581 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
583 Non-functional property file used for translations. I included this as
584 reminder that it's something I need to sort out.
585 * src/main/resources/org/glom/web/client/Messages.properties:
587 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
588 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
590 The servlet configuration files moved from the 'war' directory.
591 * src/main/webapp/OnlineGlom.css:
592 * src/main/webapp/OnlineGlom.html:
593 * src/main/webapp/WEB-INF/web.xml:
595 Generated test files with most of the code commented out. I included these
596 so that it's easy to add tests when we're ready for them.
597 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
598 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
600 2011-01-25 Ben Konrath <ben@bagu.org>
602 Remove unused println.
604 * src/org/glom/web/server/LibGlomServiceImpl.java:
606 2011-01-25 Ben Konrath <ben@bagu.org>
608 Add project specific JDT settings.
610 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
611 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
613 2011-01-25 Ben Konrath <ben@bagu.org>
615 Populate celltable with example data.
617 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
618 * src/org/glom/web/client/GlomTable.java: Correct formatting.
619 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
620 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
621 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
622 asynchronously gets the example data.
623 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
624 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
625 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
626 curently selected table to be retrieved by other widgets.
627 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
628 implement getTableData() in a hacky way. This method needs to be updated
629 to grab information from the database when database creating is
632 2011-01-20 Ben Konrath <ben@bagu.org>
634 Set table headers when table dropBox changes.
636 * src/org/glom/web/client/GlomDocument.java: Correct some method
638 * src/org/glom/web/client/LibGlomService.java: Add method
639 to get list layout field names.
640 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
641 to get list layout field names.
642 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
643 widget for list layout table.
644 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
645 the table drop box and add new updateTable() method to asynchronously
646 get the layout list field names for the currently selected table.
647 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
648 implementation of getLayoutListHeaders() method.
649 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
651 2011-01-18 Ben Konrath <ben@bagu.org>
653 Make a listBox with table titles instead of the flexTable demo.
655 This is the start of something more useful.
657 * .classpath: Exclude a bunch of packages from the JVM that are
658 getting in the way of the Eclipse content assist.
659 * src/org/glom/web/client/GlomDocument.java:
660 * src/org/glom/web/client/GlomTable.java:
661 * src/org/glom/web/client/LibGlomService.java:
662 * src/org/glom/web/client/LibGlomServiceAsync.java:
663 * src/org/glom/web/client/OnlineGlom.java:
664 * src/org/glom/web/server/LibGlomServiceImpl.java:
665 * war/OnlineGlom.html:
666 * war/WEB-INF/web.xml:
668 211-01-13 Ben Konrath <ben@bagu.org>
670 Update to new java-libglom API.
672 * .gitignore: Ignore OnlineGlom.war.
673 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
675 2010-12-20 Ben Konrath <ben@bagu.org>
677 Add some basic style to the table listing.
679 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
680 header, print useful error message on async callback failure.
681 * war/OnlineGlom.css: Add style for table header, remove defaults
682 provided by the Eclipse project wizard.
684 2010-12-20 Ben Konrath <ben@bagu.org>
686 Load example file from installed glom dir.
688 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
689 provided by java-libglom to find the example file.
691 2010-12-20 Ben Konrath <ben@bagu.org>
693 Update Eclipse settings.
696 * .settings/com.google.gdt.eclipse.core.prefs:
697 * .settings/com.google.gwt.eclipse.core.prefs:
699 2010-12-17 Ben Konrath <ben@bagu.org>
703 * .classpath: New file.
704 * .gitignore: New file.
705 * .project: New file.
706 * .settings/com.google.gdt.eclipse.core.prefs: New file.
707 * .settings/com.google.gwt.eclipse.core.prefs: New file.
708 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
709 * src/org/glom/web/client/GlomTable.java: New file.
710 * src/org/glom/web/client/OnlineGlom.java: New file.
711 * src/org/glom/web/client/TableNameService.java: New file.
712 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
713 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
714 * war/OnlineGlom.css: New file.
715 * war/OnlineGlom.html: New file.
716 * war/WEB-INF/web.xml: New file.
717 * war/images/glom.png: New file.