1 2011-03-30 Ben Konrath <ben@bagu.org>
3 Propperly convert gdkColor string to html colour string.
5 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
7 2011-03-28 Ben Konrath <ben@bagu.org>
9 Change implementation of OnlineGlomServiceImpl.getColumnInfoHorizontalAlignment().
11 This implementation matches
12 OnlineGlomServiceImpl.getColumnInfoGlomFieldType(), should perform better, is more
13 readable and is not tied to Swig.
15 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
17 2011-03-28 Ben Konrath <ben@bagu.org>
19 Use read-only checkboxes for boolean field types.
21 * src/main/java/org/glom/web/client/LayoutListView.java: Create columns
22 in the CellTable based on the field type. It currently only
23 distinguishes between boolean and text columns but I'll need to add
24 support for more types.
25 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
26 column type in the ColumnInfo object. Add method to convert between the
27 glom field type enum in ColumnInfo and the glom field type in libglom.
28 * src/main/java/org/glom/web/shared/ColumnInfo.java: Add support for
30 * src/main/java/org/glom/web/shared/GlomField.java: Add support for
31 getting and setting booleans.
33 2011-03-25 Ben Konrath <ben@bagu.org>
35 Don't get the Date twice from the ResultSet.
37 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
39 2011-03-25 Ben Konrath <ben@bagu.org>
41 Cleanup code in the servlet.
43 * TODO: Remove item about row count. Add item about testing row count
44 query with large number of rows.
45 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Fix
46 spelling mistakes, change method parameter to be consistent with
49 2011-03-25 Ben Konrath <ben@bagu.org>
51 Add server side logging with the gwt-log library.
53 * .gitignore: Ignore the log file we're now producing.
54 * TODO: Add a couple TODO item for logging.
55 * pom.xml: Add gwt-log and log4j as a dependency.
56 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
57 logging of errors, warnings and some important info.
58 * src/main/resources/log4j.properties: New file to configure log4j.
60 2011-03-24 Ben Konrath <ben@bagu.org>
62 Add a disable button for the Details view.
64 * src/main/java/org/glom/web/client/LayoutListView.java:
66 2011-03-22 Ben Konrath <ben@bagu.org>
68 Use a count query to get the number of rows for the list view pager.
70 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
72 2011-03-22 Ben Konrath <ben@bagu.org>
74 Add more TODO information about CellTable pager positioning.
78 2011-03-19 Ben Konrath <ben@bagu.org>
80 Add TODO item about CellTable pager positioning.
84 2011-03-18 Ben Konrath <ben@bagu.org>
86 Remove unneeded GlomFieldColumn class.
88 This is just a small code cleanup.
90 * src/main/java/org/glom/web/client/LayoutListView.java:
92 2011-03-18 Ben Konrath <ben@bagu.org>
94 Use cursor mode in the query that gets data for the list view.
96 I still need to fix the potential memory problem when getting the row
97 count for the list view.
99 * TODO: Add note about testing memory usage with large data sets. Add
100 item about fixing row counting with large data sets.
101 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
102 PostgreSQL JDBC driver into cursor mode when getting data for the
105 2011-03-15 Ben Konrath <ben@bagu.org>
107 Remove the GWT Container from the Eclipse build classpath.
109 The GWT dependencies are set by Maven so this isn't needed.
113 2011-03-15 Murray Cumming <murrayc@murrayc.com>
115 Added some earlier mockups to git, but not to the tarball dist.
117 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
118 Openismus. These hopefully show how we might structure the HTML so that
119 it can be styled easily with CSS. However, we probably need to adapt them
120 for the CSS structure that GWT dictates for common widgets.
122 2011-03-14 Ben Konrath <ben@bagu.org>
124 Locate OnlineGlom.properties using the ServletContext.
126 This is required to be able to locate the file in the deployed servlet.
128 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
129 Configure the database and glom document in in a helper method so
130 that the ServletContext can be used to locate OnlineGlom.properties.
131 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
132 src/main/webapp. This is the proper location for .properites files.
134 2011-03-12 Ben Konrath <ben@bagu.org>
136 Add note to README about why we're compiling down to obfuscated JavaScript.
140 2011-03-11 Ben Konrath <ben@bagu.org>
142 Use properties file to configure servlet.
144 This allows people to change the glom file path, db username and db
145 password without recompiling the code.
147 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
148 * src/main/webapp/OnlineGlom.properties:
150 2011-03-11 Ben Konrath <ben@bagu.org>
152 Use table fields in layout list view if the layout list is not defined.
154 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
155 Manually create a LayoutFieldVector for the query builder using the
156 table fields when a layout list is not defined in the glom file.
158 2011-03-11 Ben Konrath <ben@bagu.org>
160 Only show FIXME string for images when there's an image.
162 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
163 in this change are some small code cleanups.
165 2011-03-11 Ben Konrath <ben@bagu.org>
167 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
169 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
171 2011-03-11 Ben Konrath <ben@bagu.org>
173 Correctly set the index of the default table.
175 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
176 Correctly set the index of the default table. Add commented out example
179 2011-03-10 Ben Konrath <ben@bagu.org>
181 Add comment to pom.xml about the previous change.
183 * pom.xml: Add comment about the deployment issue so that it's obvious
184 why java-libglom is set to the provided scope.
186 2011-03-10 Ben Konrath <ben@bagu.org>
188 Change java-libglom dependency from compile to provided in pom.xml.
190 Since java-libglom uses jni it can only be loaded once and therefore
191 must be placed in $CATALINA_HOME/lib and not included in each war.
192 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
193 More information about this issue can be found in the Tomcat 6 release
194 notes in the "JNI Based Applications" section:
196 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
198 * README: Remove note about this issue. Deployment info should really
199 be on the wiki anyway so I'll add it right now.
200 * pom.xml: Change java-libglom dependency from compile to provided so
201 that it's copied in to the packaged war.
203 2011-03-09 Ben Konrath <ben@bagu.org>
205 Change to using a neutral locale for currency, date and time formatting.
207 This solves the problem of currency values being represented without a
208 space between the currency code and the number (e.g. "EUR5.89" is now
209 represented as "EUR 5.89"). More work is required when we implement
210 a locale preference setting.
212 * TODO: Add note about currency formatting issues with different
214 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
215 to using the neutral ROOT locale.
217 2011-03-09 Ben Konrath <ben@bagu.org>
219 Add support for currency codes that are not ISO 4217 codes.
221 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
222 the currency code defined in the glom file when it's not 3 characters
223 long or when Java doesn't recognize the string as an ISO 4217 code.
225 2011-03-08 Ben Konrath <ben@bagu.org>
227 Remove test classes, launch configurations and configuration.
229 The test stuff was getting in the way when creating the war. To make
230 the war file you can now do 'mvn clean package'. The packaged war file
231 will be in the target directory.
233 * .classpath: Remove unused classpathentry for tests and i18n.
234 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
235 property. Don't run test or i18n goals when packaging the war.
236 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
241 * OnlineGlomTest-dev.launch:
242 * OnlineGlomTest-prod.launch:
243 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
244 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
246 2011-03-07 Ben Konrath <ben@bagu.org>
248 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
250 These fixes allow me to use 'mvn deploy' to create the war file.
252 * .classpath: This generated config has been updated by Eclipse. This
253 change was probably triggered by me updating from Eclipse 3.6.1 to
255 * .gitignore: Add entry to ignore the directory
256 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
257 * .project: The generated config has been updated by Eclipse. This
258 change was probably triggered by me updating from Eclipse 3.6.1 to
260 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
261 so that Eclipse doesn't complain
262 * pom.xml: Update to gwt-maven-plugin 2.2.0.
263 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
264 'tests' directory to 'client' directory. This is the new
265 gwt-maven-plugin convension.
266 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
267 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
269 2011-03-07 Ben Konrath <ben@bagu.org>
271 Add support for horizontal alignment in the LayoutList columns.
273 * TODO: Remove item about horizontal alignment. Add item about
274 improvements to ColumnInfo.
275 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
276 alignment on the columns. Use ColumnInfo RPC object get the column
277 title and horizontal alignment.
278 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
279 LayoutListView creation with ColumnInfo RPC object.
280 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
281 a ColumnInfo object for every LayoutList columnn. Convert the
282 FieldFormatting.HorizontalAlignment to the correct
283 ColumnnInfo.HorizontatlAlignment with the new
284 getColumnInfoHorizontalAlignment helper method.
285 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
286 to encapsulate column information like alignment and title. This
287 could be used to set the colour instead of on a per cell field basis.
288 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
289 column title storage and retrieval with ColumnInfo.
291 2011-03-04 Ben Konrath <ben@bagu.org>
293 Add support for column sorting.
295 * src/main/java/org/glom/web/client/LayoutListView.java: Change
296 AsynDataProvider to be an anonymous inner class. Use new
297 getSortedTableData RPC method when column sort is requested. Set all
298 columns sortable and add an AsyncHandler to activate sorting in the
300 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
301 method getSortedTableData(). Cleanup other method signatures.
302 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
303 new method getSortedTableData(). Cleanup other method signatures.
304 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
305 Implement getSortedTableData() and getTableData() methods by using a
306 private helper method with the appropriate parameters filled in. Use
307 user supplied sort clause when supplied, otherwise fall back to
308 sorting by the primary key. Move destroy() method to be underneath
309 constructor for readability. Cleanup comments.
311 2011-03-03 Ben Konrath <ben@bagu.org>
313 Add support for colour text and colour backgrounds to the layout list cells.
315 Only the cell backgrounds are coloured which leaves a gap between the
316 cells that isn't coloured. I need to figure out a way to set
317 'style=background-colour:' on the whole column rather than just the
320 * TODO: Add a note about colouring the background of the whole column.
321 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
322 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
323 render the coloured text and backgrounds. Use GlomField[] for the row type.
324 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
326 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
327 GlomField[] for the row type.
328 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
329 GlomField[] for the row type. Set the text, text colour and background
330 colour in the GlomField objects as specified in the glom document. Add
331 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
332 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
333 the glom field text, foreground colour and background colour.
335 2011-03-02 Ben Konrath <ben@bagu.org>
337 Don't display hidden tables in the combo box.
339 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
341 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
342 code to ignore hidden tables using ArrayLists for the table names and
344 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
345 tableNames to use ArrayLists instead of String[]. Update getter and setter
348 2011-03-01 Ben Konrath <ben@bagu.org>
350 Add support for Date and Time number types.
352 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
353 Implement formatting for Date and Time values. Change the default glom
354 file to small business example.
356 2011-03-01 Ben Konrath <ben@bagu.org>
358 Add support for formatting glom types as specified in the glom file.
360 Formatting isn't finished yet - I still need to add support for Date
363 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
364 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
365 checks for null values in JDBC cleanup code and catch all exceptions
366 instead of just SQLExceptions.
367 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
370 2011-03-01 Ben Konrath <ben@bagu.org>
372 Use GWT 2.2.0 instead of 2.1.1.
374 * pom.xml: Change GWT version numbers.
376 2011-03-01 Ben Konrath <ben@bagu.org>
378 A few small code cleanups.
380 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
382 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
383 unnecessary object creation in constructor.
384 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
385 unnecessary object creation in constructor.
387 2011-02-28 Ben Konrath <ben@bagu.org>
389 Add file for TODO list.
393 2011-02-18 Ben Konrath <ben@bagu.org>
395 Enable the CellTable Pager when more than 20 rows need to be viewed.
397 The Pager will automatically become active when the results are larger
398 than the CellTable size which is currently set to 20 lines.
400 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
401 name on debug statment in RPC call in LayoutListDataProvider, add
402 numRows parameter to LayoutListView constructor, propperly set rowCount
404 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
405 name on debug statment in RPC call, use LayoutListTable object in RPC
406 calls, pass rowCount to LayoutListView.
407 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
408 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
410 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
411 interface for changes in OnlineGlomService.
412 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
413 getLayoutListHeaders() to getLayoutListTable() and return
414 LayoutListTable. Using this object allows me to pass other information
415 about the LayoutList like the expected number of rows in the result set.
416 The Connection object from the connection pool is now propperly closed.
417 Only the requested number of lines are returned to the client in
419 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
420 GlomTable and add columnTitles and numRows.
422 2011-02-18 Ben Konrath <ben@bagu.org>
424 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
426 This is a small performance boost. I'll use GlomTable to get the required
427 layoutlist information.
429 * src/main/java/org/glom/web/client/OnlineGlom.java:
430 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
431 * src/main/java/org/glom/web/shared/GlomDocument.java:
433 2011-02-18 Ben Konrath <ben@bagu.org>
435 Add option to turn off formatting in JDT formatter preferences.
437 * .settings/org.eclipse.jdt.core.prefs:
439 2011-02-18 Ben Konrath <ben@bagu.org>
441 Rename LayoutList to LayoutListView.
443 I'm working towards setting things up to easily use MVP when the time
446 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
448 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
451 2011-02-17 Ben Konrath <ben@bagu.org>
453 Move LayoutListDataProvider class into LayoutList.java.
455 * src/main/java/org/glom/web/client/LayoutList.java:
457 2011-02-17 Ben Konrath <ben@bagu.org>
459 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
461 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
463 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
464 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
465 from LibGlomServer.java.
466 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
467 Rename from LibGlomServiceAsync.java.
468 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
469 Rename from LibGlomServiceImpl.java.
470 * src/main/webapp/WEB-INF/web.xml: Update configuration.
472 2011-02-17 Ben Konrath <ben@bagu.org>
476 * .settings/org.eclipse.jdt.core.prefs:
478 2011-02-17 Ben Konrath <ben@bagu.org>
480 Move GWT-RPC objects to shared package (where they should be).
482 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
483 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
484 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
485 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
486 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
487 org.glom.web.shared package.
488 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
489 org.glom.web.shared package.
490 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
491 directory in compilation to javascript.
493 2011-02-16 Ben Konrath <ben@bagu.org>
495 Add sort clause to the sql query that grabs table information.
497 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
498 if one of the columns is a primary key.
500 2011-02-16 Ben Konrath <ben@bagu.org>
502 Disable generateAsync feature of gwt-maven.
504 The generated interface does not correctly match the methods in LibGlomService
505 and the generated singleton Util inner-class doesn't respect the servlet
508 * pom.xml: Turn off generateAsync feature.
509 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
510 with singleton Util inner-class.
512 2011-02-14 Ben Konrath <ben@bagu.org>
514 Add LGPL v3 licence notices.
516 Followed directions listed here:
517 http://www.gnu.org/licenses/gpl-howto.html
519 * COPYING: This file is a copy of the GPL v3.
520 * COPYING.LESSER: This file is a copy of the LGPL v3.
521 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
523 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
525 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
527 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
529 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
531 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
533 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
536 2011-02-14 Ben Konrath <ben@bagu.org>
538 Use ArrayList instead of Array in GWT-RPC calls.
540 Apparently this gives a slight performance boost to the compiled
543 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
545 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
548 2011-02-14 Ben Konrath <ben@bagu.org>
550 Access data from a postgres db rather than the example glom file.
552 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
553 compile down to obfuscated javascript.
554 * pom.xml: Add c3p0 and postgres JDBC libraries.
555 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
556 using a postgres db accessed through the c3p0 connection pooling library.
558 2011-02-14 Ben Konrath <ben@bagu.org>
560 Update Java formatter settings.
562 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
564 2011-02-02 Ben Konrath <ben@bagu.org>
566 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
568 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
570 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
571 the compiled webapp directory that Eclipse uses as we're using Maven now.
572 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
573 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
575 * pom.xml: Format file, change target Java version to 1.6.
577 2011-02-02 Ben Konrath <ben@bagu.org>
579 Add information about a deployment related issue.
581 * README: Add Notes section with the problem outlined.
583 2011-02-02 Ben Konrath <ben@bagu.org>
585 Call Glom.libglom_deinit() when the servlet is shutdown.
587 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
588 Glom.libglom_deinit() to destroy() method.
590 2011-01-28 Ben Konrath <ben@bagu.org>
592 Use generated Util class to get the RPC Async interface.
594 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
596 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
597 getInstance() method to get a reference to the RPC Async interface.
598 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
599 getInstance() method to get a reference to the RPC Async interface, remove
600 the now unused getLibGlomServiceProxy() method.
602 2011-01-27 Ben Konrath <ben@bagu.org>
604 Cleanup ChangeLog entry from previous commit.
606 * ChangeLog: Group logical changes together and add comments.
608 2011-01-25 Ben Konrath <ben@bagu.org>
610 Convert to gwt-maven project.
612 * .gitignore: Update for new project structure.
613 * README: New file with a link to the online documentation.
614 * pom.xml: The generated maven configuration file with some tweaks.
616 Add / update Eclipse settings. These files are a merge of the files that
617 were generated with the gwt-maven plugin and the files we were previously
621 * .settings/.jsdtscope:
622 * .settings/com.google.gdt.eclipse.core.prefs:
623 * .settings/com.google.gwt.eclipse.core.prefs:
624 * .settings/org.eclipse.jdt.core.prefs:
625 * .settings/org.eclipse.wst.common.component:
626 * .settings/org.eclipse.wst.common.project.facet.core.xml:
627 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
628 * .settings/org.maven.ide.eclipse.prefs:
629 * OnlineGlomTest-dev.launch:
630 * OnlineGlomTest-prod.launch:
632 Java source files moved from the 'src' directory to the directory structure
634 * src/main/java/org/glom/web/client/GlomDocument.java:
635 * src/main/java/org/glom/web/client/GlomTable.java:
636 * src/main/java/org/glom/web/client/LayoutList.java:
637 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
638 * src/main/java/org/glom/web/client/LibGlomService.java:
639 * src/main/java/org/glom/web/client/OnlineGlom.java:
640 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
642 Non-functional property file used for translations. I included this as
643 reminder that it's something I need to sort out.
644 * src/main/resources/org/glom/web/client/Messages.properties:
646 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
647 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
649 The servlet configuration files moved from the 'war' directory.
650 * src/main/webapp/OnlineGlom.css:
651 * src/main/webapp/OnlineGlom.html:
652 * src/main/webapp/WEB-INF/web.xml:
654 Generated test files with most of the code commented out. I included these
655 so that it's easy to add tests when we're ready for them.
656 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
657 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
659 2011-01-25 Ben Konrath <ben@bagu.org>
661 Remove unused println.
663 * src/org/glom/web/server/LibGlomServiceImpl.java:
665 2011-01-25 Ben Konrath <ben@bagu.org>
667 Add project specific JDT settings.
669 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
670 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
672 2011-01-25 Ben Konrath <ben@bagu.org>
674 Populate celltable with example data.
676 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
677 * src/org/glom/web/client/GlomTable.java: Correct formatting.
678 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
679 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
680 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
681 asynchronously gets the example data.
682 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
683 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
684 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
685 curently selected table to be retrieved by other widgets.
686 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
687 implement getTableData() in a hacky way. This method needs to be updated
688 to grab information from the database when database creating is
691 2011-01-20 Ben Konrath <ben@bagu.org>
693 Set table headers when table dropBox changes.
695 * src/org/glom/web/client/GlomDocument.java: Correct some method
697 * src/org/glom/web/client/LibGlomService.java: Add method
698 to get list layout field names.
699 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
700 to get list layout field names.
701 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
702 widget for list layout table.
703 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
704 the table drop box and add new updateTable() method to asynchronously
705 get the layout list field names for the currently selected table.
706 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
707 implementation of getLayoutListHeaders() method.
708 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
710 2011-01-18 Ben Konrath <ben@bagu.org>
712 Make a listBox with table titles instead of the flexTable demo.
714 This is the start of something more useful.
716 * .classpath: Exclude a bunch of packages from the JVM that are
717 getting in the way of the Eclipse content assist.
718 * src/org/glom/web/client/GlomDocument.java:
719 * src/org/glom/web/client/GlomTable.java:
720 * src/org/glom/web/client/LibGlomService.java:
721 * src/org/glom/web/client/LibGlomServiceAsync.java:
722 * src/org/glom/web/client/OnlineGlom.java:
723 * src/org/glom/web/server/LibGlomServiceImpl.java:
724 * war/OnlineGlom.html:
725 * war/WEB-INF/web.xml:
727 211-01-13 Ben Konrath <ben@bagu.org>
729 Update to new java-libglom API.
731 * .gitignore: Ignore OnlineGlom.war.
732 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
734 2010-12-20 Ben Konrath <ben@bagu.org>
736 Add some basic style to the table listing.
738 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
739 header, print useful error message on async callback failure.
740 * war/OnlineGlom.css: Add style for table header, remove defaults
741 provided by the Eclipse project wizard.
743 2010-12-20 Ben Konrath <ben@bagu.org>
745 Load example file from installed glom dir.
747 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
748 provided by java-libglom to find the example file.
750 2010-12-20 Ben Konrath <ben@bagu.org>
752 Update Eclipse settings.
755 * .settings/com.google.gdt.eclipse.core.prefs:
756 * .settings/com.google.gwt.eclipse.core.prefs:
758 2010-12-17 Ben Konrath <ben@bagu.org>
762 * .classpath: New file.
763 * .gitignore: New file.
764 * .project: New file.
765 * .settings/com.google.gdt.eclipse.core.prefs: New file.
766 * .settings/com.google.gwt.eclipse.core.prefs: New file.
767 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
768 * src/org/glom/web/client/GlomTable.java: New file.
769 * src/org/glom/web/client/OnlineGlom.java: New file.
770 * src/org/glom/web/client/TableNameService.java: New file.
771 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
772 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
773 * war/OnlineGlom.css: New file.
774 * war/OnlineGlom.html: New file.
775 * war/WEB-INF/web.xml: New file.
776 * war/images/glom.png: New file.