1 2011-03-18 Ben Konrath <ben@bagu.org>
3 Remove unneeded GlomFieldColumn class.
5 This is just a small code cleanup.
7 * src/main/java/org/glom/web/client/LayoutListView.java:
9 2011-03-18 Ben Konrath <ben@bagu.org>
11 Use cursor mode in the query that gets data for the list view.
13 I still need to fix the potential memory problem when getting the row
14 count for the list view.
16 * TODO: Add note about testing memory usage with large data sets. Add
17 item about fixing row counting with large data sets.
18 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
19 PostgreSQL JDBC driver into cursor mode when getting data for the
22 2011-03-15 Ben Konrath <ben@bagu.org>
24 Remove the GWT Container from the Eclipse build classpath.
26 The GWT dependencies are set by Maven so this isn't needed.
30 2011-03-15 Murray Cumming <murrayc@murrayc.com>
32 Added some earlier mockups to git, but not to the tarball dist.
34 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
35 Openismus. These hopefully show how we might structure the HTML so that
36 it can be styled easily with CSS. However, we probably need to adapt them
37 for the CSS structure that GWT dictates for common widgets.
39 2011-03-14 Ben Konrath <ben@bagu.org>
41 Locate OnlineGlom.properties using the ServletContext.
43 This is required to be able to locate the file in the deployed servlet.
45 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
46 Configure the database and glom document in in a helper method so
47 that the ServletContext can be used to locate OnlineGlom.properties.
48 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
49 src/main/webapp. This is the proper location for .properites files.
51 2011-03-12 Ben Konrath <ben@bagu.org>
53 Add note to README about why we're compiling down to obfuscated JavaScript.
57 2011-03-11 Ben Konrath <ben@bagu.org>
59 Use properties file to configure servlet.
61 This allows people to change the glom file path, db username and db
62 password without recompiling the code.
64 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
65 * src/main/webapp/OnlineGlom.properties:
67 2011-03-11 Ben Konrath <ben@bagu.org>
69 Use table fields in layout list view if the layout list is not defined.
71 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
72 Manually create a LayoutFieldVector for the query builder using the
73 table fields when a layout list is not defined in the glom file.
75 2011-03-11 Ben Konrath <ben@bagu.org>
77 Only show FIXME string for images when there's an image.
79 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
80 in this change are some small code cleanups.
82 2011-03-11 Ben Konrath <ben@bagu.org>
84 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
86 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
88 2011-03-11 Ben Konrath <ben@bagu.org>
90 Correctly set the index of the default table.
92 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
93 Correctly set the index of the default table. Add commented out example
96 2011-03-10 Ben Konrath <ben@bagu.org>
98 Add comment to pom.xml about the previous change.
100 * pom.xml: Add comment about the deployment issue so that it's obvious
101 why java-libglom is set to the provided scope.
103 2011-03-10 Ben Konrath <ben@bagu.org>
105 Change java-libglom dependency from compile to provided in pom.xml.
107 Since java-libglom uses jni it can only be loaded once and therefore
108 must be placed in $CATALINA_HOME/lib and not included in each war.
109 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
110 More information about this issue can be found in the Tomcat 6 release
111 notes in the "JNI Based Applications" section:
113 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
115 * README: Remove note about this issue. Deployment info should really
116 be on the wiki anyway so I'll add it right now.
117 * pom.xml: Change java-libglom dependency from compile to provided so
118 that it's copied in to the packaged war.
120 2011-03-09 Ben Konrath <ben@bagu.org>
122 Change to using a neutral locale for currency, date and time formatting.
124 This solves the problem of currency values being represented without a
125 space between the currency code and the number (e.g. "EUR5.89" is now
126 represented as "EUR 5.89"). More work is required when we implement
127 a locale preference setting.
129 * TODO: Add note about currency formatting issues with different
131 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
132 to using the neutral ROOT locale.
134 2011-03-09 Ben Konrath <ben@bagu.org>
136 Add support for currency codes that are not ISO 4217 codes.
138 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
139 the currency code defined in the glom file when it's not 3 characters
140 long or when Java doesn't recognize the string as an ISO 4217 code.
142 2011-03-08 Ben Konrath <ben@bagu.org>
144 Remove test classes, launch configurations and configuration.
146 The test stuff was getting in the way when creating the war. To make
147 the war file you can now do 'mvn clean package'. The packaged war file
148 will be in the target directory.
150 * .classpath: Remove unused classpathentry for tests and i18n.
151 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
152 property. Don't run test or i18n goals when packaging the war.
153 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
158 * OnlineGlomTest-dev.launch:
159 * OnlineGlomTest-prod.launch:
160 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
161 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
163 2011-03-07 Ben Konrath <ben@bagu.org>
165 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
167 These fixes allow me to use 'mvn deploy' to create the war file.
169 * .classpath: This generated config has been updated by Eclipse. This
170 change was probably triggered by me updating from Eclipse 3.6.1 to
172 * .gitignore: Add entry to ignore the directory
173 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
174 * .project: The generated config has been updated by Eclipse. This
175 change was probably triggered by me updating from Eclipse 3.6.1 to
177 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
178 so that Eclipse doesn't complain
179 * pom.xml: Update to gwt-maven-plugin 2.2.0.
180 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
181 'tests' directory to 'client' directory. This is the new
182 gwt-maven-plugin convension.
183 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
184 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
186 2011-03-07 Ben Konrath <ben@bagu.org>
188 Add support for horizontal alignment in the LayoutList columns.
190 * TODO: Remove item about horizontal alignment. Add item about
191 improvements to ColumnInfo.
192 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
193 alignment on the columns. Use ColumnInfo RPC object get the column
194 title and horizontal alignment.
195 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
196 LayoutListView creation with ColumnInfo RPC object.
197 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
198 a ColumnInfo object for every LayoutList columnn. Convert the
199 FieldFormatting.HorizontalAlignment to the correct
200 ColumnnInfo.HorizontatlAlignment with the new
201 getColumnInfoHorizontalAlignment helper method.
202 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
203 to encapsulate column information like alignment and title. This
204 could be used to set the colour instead of on a per cell field basis.
205 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
206 column title storage and retrieval with ColumnInfo.
208 2011-03-04 Ben Konrath <ben@bagu.org>
210 Add support for column sorting.
212 * src/main/java/org/glom/web/client/LayoutListView.java: Change
213 AsynDataProvider to be an anonymous inner class. Use new
214 getSortedTableData RPC method when column sort is requested. Set all
215 columns sortable and add an AsyncHandler to activate sorting in the
217 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
218 method getSortedTableData(). Cleanup other method signatures.
219 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
220 new method getSortedTableData(). Cleanup other method signatures.
221 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
222 Implement getSortedTableData() and getTableData() methods by using a
223 private helper method with the appropriate parameters filled in. Use
224 user supplied sort clause when supplied, otherwise fall back to
225 sorting by the primary key. Move destroy() method to be underneath
226 constructor for readability. Cleanup comments.
228 2011-03-03 Ben Konrath <ben@bagu.org>
230 Add support for colour text and colour backgrounds to the layout list cells.
232 Only the cell backgrounds are coloured which leaves a gap between the
233 cells that isn't coloured. I need to figure out a way to set
234 'style=background-colour:' on the whole column rather than just the
237 * TODO: Add a note about colouring the background of the whole column.
238 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
239 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
240 render the coloured text and backgrounds. Use GlomField[] for the row type.
241 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
243 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
244 GlomField[] for the row type.
245 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
246 GlomField[] for the row type. Set the text, text colour and background
247 colour in the GlomField objects as specified in the glom document. Add
248 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
249 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
250 the glom field text, foreground colour and background colour.
252 2011-03-02 Ben Konrath <ben@bagu.org>
254 Don't display hidden tables in the combo box.
256 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
258 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
259 code to ignore hidden tables using ArrayLists for the table names and
261 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
262 tableNames to use ArrayLists instead of String[]. Update getter and setter
265 2011-03-01 Ben Konrath <ben@bagu.org>
267 Add support for Date and Time number types.
269 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
270 Implement formatting for Date and Time values. Change the default glom
271 file to small business example.
273 2011-03-01 Ben Konrath <ben@bagu.org>
275 Add support for formatting glom types as specified in the glom file.
277 Formatting isn't finished yet - I still need to add support for Date
280 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
281 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
282 checks for null values in JDBC cleanup code and catch all exceptions
283 instead of just SQLExceptions.
284 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
287 2011-03-01 Ben Konrath <ben@bagu.org>
289 Use GWT 2.2.0 instead of 2.1.1.
291 * pom.xml: Change GWT version numbers.
293 2011-03-01 Ben Konrath <ben@bagu.org>
295 A few small code cleanups.
297 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
299 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
300 unnecessary object creation in constructor.
301 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
302 unnecessary object creation in constructor.
304 2011-02-28 Ben Konrath <ben@bagu.org>
306 Add file for TODO list.
310 2011-02-18 Ben Konrath <ben@bagu.org>
312 Enable the CellTable Pager when more than 20 rows need to be viewed.
314 The Pager will automatically become active when the results are larger
315 than the CellTable size which is currently set to 20 lines.
317 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
318 name on debug statment in RPC call in LayoutListDataProvider, add
319 numRows parameter to LayoutListView constructor, propperly set rowCount
321 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
322 name on debug statment in RPC call, use LayoutListTable object in RPC
323 calls, pass rowCount to LayoutListView.
324 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
325 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
327 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
328 interface for changes in OnlineGlomService.
329 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
330 getLayoutListHeaders() to getLayoutListTable() and return
331 LayoutListTable. Using this object allows me to pass other information
332 about the LayoutList like the expected number of rows in the result set.
333 The Connection object from the connection pool is now propperly closed.
334 Only the requested number of lines are returned to the client in
336 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
337 GlomTable and add columnTitles and numRows.
339 2011-02-18 Ben Konrath <ben@bagu.org>
341 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
343 This is a small performance boost. I'll use GlomTable to get the required
344 layoutlist information.
346 * src/main/java/org/glom/web/client/OnlineGlom.java:
347 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
348 * src/main/java/org/glom/web/shared/GlomDocument.java:
350 2011-02-18 Ben Konrath <ben@bagu.org>
352 Add option to turn off formatting in JDT formatter preferences.
354 * .settings/org.eclipse.jdt.core.prefs:
356 2011-02-18 Ben Konrath <ben@bagu.org>
358 Rename LayoutList to LayoutListView.
360 I'm working towards setting things up to easily use MVP when the time
363 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
365 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
368 2011-02-17 Ben Konrath <ben@bagu.org>
370 Move LayoutListDataProvider class into LayoutList.java.
372 * src/main/java/org/glom/web/client/LayoutList.java:
374 2011-02-17 Ben Konrath <ben@bagu.org>
376 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
378 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
380 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
381 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
382 from LibGlomServer.java.
383 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
384 Rename from LibGlomServiceAsync.java.
385 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
386 Rename from LibGlomServiceImpl.java.
387 * src/main/webapp/WEB-INF/web.xml: Update configuration.
389 2011-02-17 Ben Konrath <ben@bagu.org>
393 * .settings/org.eclipse.jdt.core.prefs:
395 2011-02-17 Ben Konrath <ben@bagu.org>
397 Move GWT-RPC objects to shared package (where they should be).
399 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
400 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
401 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
402 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
403 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
404 org.glom.web.shared package.
405 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
406 org.glom.web.shared package.
407 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
408 directory in compilation to javascript.
410 2011-02-16 Ben Konrath <ben@bagu.org>
412 Add sort clause to the sql query that grabs table information.
414 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
415 if one of the columns is a primary key.
417 2011-02-16 Ben Konrath <ben@bagu.org>
419 Disable generateAsync feature of gwt-maven.
421 The generated interface does not correctly match the methods in LibGlomService
422 and the generated singleton Util inner-class doesn't respect the servlet
425 * pom.xml: Turn off generateAsync feature.
426 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
427 with singleton Util inner-class.
429 2011-02-14 Ben Konrath <ben@bagu.org>
431 Add LGPL v3 licence notices.
433 Followed directions listed here:
434 http://www.gnu.org/licenses/gpl-howto.html
436 * COPYING: This file is a copy of the GPL v3.
437 * COPYING.LESSER: This file is a copy of the LGPL v3.
438 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
440 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
442 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
444 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
446 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
448 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
450 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
453 2011-02-14 Ben Konrath <ben@bagu.org>
455 Use ArrayList instead of Array in GWT-RPC calls.
457 Apparently this gives a slight performance boost to the compiled
460 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
462 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
465 2011-02-14 Ben Konrath <ben@bagu.org>
467 Access data from a postgres db rather than the example glom file.
469 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
470 compile down to obfuscated javascript.
471 * pom.xml: Add c3p0 and postgres JDBC libraries.
472 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
473 using a postgres db accessed through the c3p0 connection pooling library.
475 2011-02-14 Ben Konrath <ben@bagu.org>
477 Update Java formatter settings.
479 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
481 2011-02-02 Ben Konrath <ben@bagu.org>
483 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
485 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
487 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
488 the compiled webapp directory that Eclipse uses as we're using Maven now.
489 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
490 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
492 * pom.xml: Format file, change target Java version to 1.6.
494 2011-02-02 Ben Konrath <ben@bagu.org>
496 Add information about a deployment related issue.
498 * README: Add Notes section with the problem outlined.
500 2011-02-02 Ben Konrath <ben@bagu.org>
502 Call Glom.libglom_deinit() when the servlet is shutdown.
504 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
505 Glom.libglom_deinit() to destroy() method.
507 2011-01-28 Ben Konrath <ben@bagu.org>
509 Use generated Util class to get the RPC Async interface.
511 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
513 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
514 getInstance() method to get a reference to the RPC Async interface.
515 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
516 getInstance() method to get a reference to the RPC Async interface, remove
517 the now unused getLibGlomServiceProxy() method.
519 2011-01-27 Ben Konrath <ben@bagu.org>
521 Cleanup ChangeLog entry from previous commit.
523 * ChangeLog: Group logical changes together and add comments.
525 2011-01-25 Ben Konrath <ben@bagu.org>
527 Convert to gwt-maven project.
529 * .gitignore: Update for new project structure.
530 * README: New file with a link to the online documentation.
531 * pom.xml: The generated maven configuration file with some tweaks.
533 Add / update Eclipse settings. These files are a merge of the files that
534 were generated with the gwt-maven plugin and the files we were previously
538 * .settings/.jsdtscope:
539 * .settings/com.google.gdt.eclipse.core.prefs:
540 * .settings/com.google.gwt.eclipse.core.prefs:
541 * .settings/org.eclipse.jdt.core.prefs:
542 * .settings/org.eclipse.wst.common.component:
543 * .settings/org.eclipse.wst.common.project.facet.core.xml:
544 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
545 * .settings/org.maven.ide.eclipse.prefs:
546 * OnlineGlomTest-dev.launch:
547 * OnlineGlomTest-prod.launch:
549 Java source files moved from the 'src' directory to the directory structure
551 * src/main/java/org/glom/web/client/GlomDocument.java:
552 * src/main/java/org/glom/web/client/GlomTable.java:
553 * src/main/java/org/glom/web/client/LayoutList.java:
554 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
555 * src/main/java/org/glom/web/client/LibGlomService.java:
556 * src/main/java/org/glom/web/client/OnlineGlom.java:
557 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
559 Non-functional property file used for translations. I included this as
560 reminder that it's something I need to sort out.
561 * src/main/resources/org/glom/web/client/Messages.properties:
563 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
564 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
566 The servlet configuration files moved from the 'war' directory.
567 * src/main/webapp/OnlineGlom.css:
568 * src/main/webapp/OnlineGlom.html:
569 * src/main/webapp/WEB-INF/web.xml:
571 Generated test files with most of the code commented out. I included these
572 so that it's easy to add tests when we're ready for them.
573 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
574 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
576 2011-01-25 Ben Konrath <ben@bagu.org>
578 Remove unused println.
580 * src/org/glom/web/server/LibGlomServiceImpl.java:
582 2011-01-25 Ben Konrath <ben@bagu.org>
584 Add project specific JDT settings.
586 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
587 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
589 2011-01-25 Ben Konrath <ben@bagu.org>
591 Populate celltable with example data.
593 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
594 * src/org/glom/web/client/GlomTable.java: Correct formatting.
595 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
596 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
597 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
598 asynchronously gets the example data.
599 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
600 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
601 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
602 curently selected table to be retrieved by other widgets.
603 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
604 implement getTableData() in a hacky way. This method needs to be updated
605 to grab information from the database when database creating is
608 2011-01-20 Ben Konrath <ben@bagu.org>
610 Set table headers when table dropBox changes.
612 * src/org/glom/web/client/GlomDocument.java: Correct some method
614 * src/org/glom/web/client/LibGlomService.java: Add method
615 to get list layout field names.
616 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
617 to get list layout field names.
618 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
619 widget for list layout table.
620 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
621 the table drop box and add new updateTable() method to asynchronously
622 get the layout list field names for the currently selected table.
623 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
624 implementation of getLayoutListHeaders() method.
625 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
627 2011-01-18 Ben Konrath <ben@bagu.org>
629 Make a listBox with table titles instead of the flexTable demo.
631 This is the start of something more useful.
633 * .classpath: Exclude a bunch of packages from the JVM that are
634 getting in the way of the Eclipse content assist.
635 * src/org/glom/web/client/GlomDocument.java:
636 * src/org/glom/web/client/GlomTable.java:
637 * src/org/glom/web/client/LibGlomService.java:
638 * src/org/glom/web/client/LibGlomServiceAsync.java:
639 * src/org/glom/web/client/OnlineGlom.java:
640 * src/org/glom/web/server/LibGlomServiceImpl.java:
641 * war/OnlineGlom.html:
642 * war/WEB-INF/web.xml:
644 211-01-13 Ben Konrath <ben@bagu.org>
646 Update to new java-libglom API.
648 * .gitignore: Ignore OnlineGlom.war.
649 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
651 2010-12-20 Ben Konrath <ben@bagu.org>
653 Add some basic style to the table listing.
655 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
656 header, print useful error message on async callback failure.
657 * war/OnlineGlom.css: Add style for table header, remove defaults
658 provided by the Eclipse project wizard.
660 2010-12-20 Ben Konrath <ben@bagu.org>
662 Load example file from installed glom dir.
664 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
665 provided by java-libglom to find the example file.
667 2010-12-20 Ben Konrath <ben@bagu.org>
669 Update Eclipse settings.
672 * .settings/com.google.gdt.eclipse.core.prefs:
673 * .settings/com.google.gwt.eclipse.core.prefs:
675 2010-12-17 Ben Konrath <ben@bagu.org>
679 * .classpath: New file.
680 * .gitignore: New file.
681 * .project: New file.
682 * .settings/com.google.gdt.eclipse.core.prefs: New file.
683 * .settings/com.google.gwt.eclipse.core.prefs: New file.
684 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
685 * src/org/glom/web/client/GlomTable.java: New file.
686 * src/org/glom/web/client/OnlineGlom.java: New file.
687 * src/org/glom/web/client/TableNameService.java: New file.
688 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
689 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
690 * war/OnlineGlom.css: New file.
691 * war/OnlineGlom.html: New file.
692 * war/WEB-INF/web.xml: New file.
693 * war/images/glom.png: New file.