1 2011-11-17 Ben Konrath <ben@bagu.org>
3 Ensure the pager buttons are always visible for related lists.
5 To accomplish this, I've turned off text wrapping in the list view and
6 related list tables for both the header and data text. The related list
7 table now has a fixed layout so the it doesn't overflow its container.
8 This is required to ensure that the cell text is clipped when it
9 overflows the cell and an ellipsis is added to the right side of the
10 cell when text is clipped.
12 A fixed table layout for the related list table in the details view
13 seems what we want for the details view anyway, so the side-effect is
16 The ellipsis will only be displayed in Firefox >= 7.
20 https://bugzilla.gnome.org/show_bug.cgi?id=662930
22 * src/main/java/org/glom/web/client/ui/cell/NumericCell.java:
23 * src/main/java/org/glom/web/client/ui/cell/TextCell.java: Add
24 'overflow: hidden; text-overflow: ellipsis;' CSS properties to the table
26 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
27 Set the 'table-layout: fixed' CSS property to the related list table.
28 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Set the
29 'white-space: nowrap;' CSS property on both the list view and the
32 2011-11-16 Ben Konrath <ben@bagu.org>
34 Rework the fix for empty notebook tab labels.
36 Setting the empty group titles with its name caused problems for the
37 details layout. Instead of using libglom's
38 LayoutItem.get_title_or_name(), the LayoutItem name is explicitly sent
39 to the client when the title is empty. This allows the Notebook to use
40 the name when the title is empty without affecting anything else.
42 * src/main/java/org/glom/web/client/ui/details/Notebook.java:
43 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
45 2011-11-16 Ben Konrath <ben@bagu.org>
47 Set group titles with name when title is empty.
49 This fixes a problem with an empty notebook tab label in the Lesson
50 Planner document. The forth tab in the notebook should be "Internet":
52 http://bagu.org:8080/OnlineGlom/#details:document=lesson-planner&table=teachers&value=0
54 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Use
55 libglom's LayoutItem.get_title_or_name() to fill in the LayoutGroup
58 2011-11-16 Ben Konrath <ben@bagu.org>
60 Remove whitespace from the configured username properties.
62 This assumes that usernames won't have whitespace at the beginning
63 or end. But I think this is a reasonable assumption.
65 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
66 String.trim() to remove the whitespace from the username properties.
68 2011-11-15 Ben Konrath <ben@bagu.org>
70 Add details view mockup with HTML tables and text entries.
72 This is from the attachment on this bug:
74 https://bugzilla.gnome.org/show_bug.cgi?id=663109
76 * mockups/details-view-html-tables-text-entries.html:
78 2011-11-15 Ben Konrath <ben@bagu.org>
80 Add space between the columns of the flow table.
84 https://bugzilla.gnome.org/show_bug.cgi?id=662918
86 * src/main/java/org/glom/web/client/ui/details/FlowTable.java: Add a 1%
87 space between columns in the flow table.
89 2011-11-15 Ben Konrath <ben@bagu.org>
91 Add backup files to the .gitignore.
93 * .gitignore: Ignore files that end with ~.
95 2011-11-09 Ben Konrath <ben@bagu.org>
97 Use latest release of gwt-log.
99 Gwt-log releases are now being submitted to the maven central
100 repository so manual installation of the jar is no longer required.
102 * pom.xml: Update version and groupId of gwt-log dependency.
104 2011-10-31 Ben Konrath <ben@bagu.org>
106 Don't use GWT numeric formatting to override the glom currency formatting.
108 Currencies are now displayed like they are in Glom. See this bug:
110 https://bugzilla.gnome.org/show_bug.cgi?id=646216
112 * src/main/java/org/glom/web/client/Utils.java: Remove GWT currency
114 * src/main/java/org/glom/web/client/ui/cell/NumericCell.java: Add
115 currency code to constructor and set it when the cell is rendered.
116 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Add the
117 currency code to the constructor of the NumericCell.
119 2011-10-27 Ben Konrath <ben@bagu.org>
121 Require the latest release of java-libglom (1.17.4).
125 2011-10-26 Ben Konrath <ben@bagu.org>
127 Add style to Notebook that matches current theme.
129 It's not the best style in the world but it's better than the default.
131 * src/main/java/org/glom/web/client/ui/details/Notebook.java: Add some
132 padding at the bottom of the child widgets.
133 * src/main/webapp/style.css: Add style for the Notebook.
135 2011-10-26 Ben Konrath <ben@bagu.org>
137 Move servlet initialization code to overridden init method.
139 This is half of the solution to getting proper error messages
140 displayed when configuration errors occur. Here's the relevant bug:
142 https://bugzilla.gnome.org/show_bug.cgi?id=662792
144 The rest of the solution involves surrounding the init method with a
145 try/catch block and setting a global variable with the error /
146 exception. A new async method should be created to retrieve and display
147 the error message / exception.
149 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Move
150 code from constructor to init method adding exceptions as needed.
152 2011-10-26 Ben Konrath <ben@bagu.org>
154 Add script to monitor and restart tomcat if required.
156 * utils/check-and-recover-tomcat.py: New file.
158 2011-10-26 Ben Konrath <ben@bagu.org>
160 Display the correct number of data items in the pager.
164 https://bugzilla.gnome.org/show_bug.cgi?id=661441
166 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
167 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
168 The implementation is the same for both tables: Keep track of the
169 number of non-empty rows and fire and RowCountChangeEvent after the data has
171 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Add a
172 custom Pager class that subclasses SimplePager to handle displaying
173 the correct number when empty rows have been added.
175 2011-10-26 Ben Konrath <ben@bagu.org>
177 Correct error in previous commit.
179 * src/main/java/org/glom/web/client/activity/ListActivity.java: Remove
180 eventBus parameter from listView.setCellTable().
182 2011-10-26 Ben Konrath <ben@bagu.org>
184 Fix error in TODO comment.
186 * src/main/java/org/glom/web/client/activity/ListActivity.java:
188 2011-10-24 Ben Konrath <ben@bagu.org>
190 Create Notebook widgets to the details view.
192 This isn't finished just yet - I still need to create a reasonable
193 style to match the current theme.
195 * src/main/java/org/glom/web/client/Utils.java: Add method for
196 calculating the height of a widget. This is used in the Notebook class.
197 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Update for
198 new constructor method in Group.
199 * src/main/java/org/glom/web/client/ui/details/Group.java: Add new
200 method for creating child widget that can be used by subclasses
201 like Notebook. New constructor that allows disabling the group
202 titles - Notebooks don't set a group title for their child groups.
203 * src/main/java/org/glom/web/client/ui/details/Notebook.java: New class
204 to make Notebooks using GWT's TabLayoutPanel.
205 * src/main/java/org/glom/web/client/ui/details/Portal.java: New
206 constructor that allows disabling the group titles.
207 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Create the
208 LayoutItemNotebook DTO.
209 * src/main/java/org/glom/web/shared/layout/LayoutItemNotebook.java: New
210 DTO for Notebooks. It's just an empty class for now but we might need
211 it to transfer some specific information in the future.
213 2011-10-21 Ben Konrath <ben@bagu.org>
215 Add navigation buttons to related list tables.
217 * src/main/java/org/glom/web/client/OnlineGlomService.java:
218 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
219 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add new
220 method getSuitableRecordToViewDetails() for getting the table name
221 and primary key value for related list navigation buttons.
222 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
223 private cell renderer class to get the navigation information for
224 related list tables from the server. Extract the navigation
225 processing code from the details cell navigation and use it for the
226 related list navigation as well.
227 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Add private
228 cell renderer class for the details open buttons. This was needed
229 because the related list navigation buttons and the list view
230 navigation buttons need to react differently when clicked.
231 * src/main/java/org/glom/web/client/ui/cell/OpenButtonCell.java: Remove
232 the onEnterKeyDown() method because it's now overriden in the
233 subclasses that are specific to the related list tables and the list
235 * src/main/java/org/glom/web/client/ui/details/Portal.java: Increase
236 the vertical size a little because the buttons add a bit of vertical
237 space to table. This is not a perfect solution because the vertical
238 size of with table fewer than 5 rows will be a little smaller.
239 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Update for
240 changes in how navigation buttons are handled.
241 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Implement
242 getSuitableRecordToViewDetails() using the new RelatedListNavigation
243 database access object.
244 * src/main/java/org/glom/web/server/database/DBAccess.java: Move code
245 to find the portal for a given relationship name from
246 RelatedListDBAccess. Add method to find a primary key field for a
248 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
249 Move code to find the portal for a given relationship name to
251 * src/main/java/org/glom/web/server/database/RelatedListNavigation.java:
252 New file: database access object for getting the related list
253 navigation information (the table name and the primary key value).
254 * src/main/java/org/glom/web/shared/NavigationRecord.java: New file:
255 DTO for transferring a table name to navigate to and a primary key
257 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: Add
258 boolean and getter/setter to specifies if the related list should add
261 2011-10-24 Murray Cumming <murrayc@murrayc.com>
263 Use the master branch of java-libglom
265 * pom.xml: Depend on java-libglom 1.19 instead.
267 This is the master branch. See also the libglom-1-18 branch.
269 2011-10-11 Ben Konrath <ben@bagu.org>
271 Enable the open navigation button when the data has been set.
273 This avoids having active buttons that don't do anything when the data
276 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java:
278 2011-10-11 Ben Konrath <ben@bagu.org>
280 Use IsWidget interface for FlowTableItem.
282 * src/main/java/org/glom/web/client/ui/details/FlowTable.java: Change
283 FlowTableItem.getWidget() to asWidget() from the IsWidget interface.
285 2011-10-11 Ben Konrath <ben@bagu.org>
287 Remove GWT styling from open button in details view.
289 There are still some issues with how the details cell is arranged but
290 this should be made to match Glom 1.20. I'm going to leave fixing this
291 until I have Glom 1.20 up and running.
293 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java: Set
294 style name on open button.
295 * src/main/webapp/style.css: Move and edit details-navigation class.
296 Re-arrange some classes to make them appear in the same order as the
299 2011-10-07 Ben Konrath <ben@bagu.org>
303 * .gitignore: Ignore new cache directory.
304 * .settings/com.google.gwt.eclipse.core.prefs: Update Eclipse settting.
305 * pom.xml: Change GWT and maven plugin to 2.4.0.
306 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Update doctype for
308 * src/main/java/org/glom/web/client/ClientFactory.java:
309 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
310 * src/main/java/org/glom/web/client/OnlineGlom.java:
311 Update source for API changes.
312 * utils/build-onlineglom-war.sh: Remove cache directory before the
315 2011-10-07 Ben Konrath <ben@bagu.org>
317 Add navigation buttons in the details view.
319 This isn't finished but I thought I'd commit what I have as it's a
320 pretty good start. I still need to:
322 1. Change the style so that it fits better into the current theme
323 2. Adjust the details cell to expand as much as possible.
325 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
326 click handlers to navigation buttons in the DetailsCells. Create a
327 refreshData() method to get just the data from the server without the
329 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
330 Update the tableSelector and browser title when the table name
331 changes without using the tableSelector.
332 * src/main/java/org/glom/web/client/ui/DetailsView.java:
333 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Rename
334 getDetailsCells() to getCells(). Update variable names.
335 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java: Add
336 method to set click handler on navigation button. Rename a few
337 variables. Add navigation buttons where needed.
338 * src/main/java/org/glom/web/client/ui/details/Group.java: Rename a few
339 variables and methods.
340 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Set the
341 navigation boolean and navigation table as required in the
343 * src/main/java/org/glom/web/shared/layout/LayoutItemField.java: Add
344 variables for navigation along with getter/setter methods.
346 2011-10-07 Ben Konrath <ben@bagu.org>
348 Rename Field to DetailsCell.
350 This is a refactor-only commit. No functionality has been added or
353 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
354 Update variable and method names.
355 * src/main/java/org/glom/web/client/ui/DetailsView.java:
356 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Update
357 variable and method names.
358 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java:
360 * src/main/java/org/glom/web/client/ui/details/Group.java: Update
361 variable and method names.
363 2011-10-07 Ben Konrath <ben@bagu.org>
365 Create separate methods for layout and data the details view.
367 This is a refactor-only commit. No functionality has been added or
370 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: New
371 private methods: setData(), createLayout().
373 2011-10-07 Ben Konrath <ben@bagu.org>
375 Don't use TableSelectorImpl implementation details in TableSelectorActivity.
377 This is part of a change to get navigation buttons in the details view
378 but it should have been done this way from the start.
380 * src/main/java/org/glom/web/client/activity/ListActivity.java: Update
381 for method name change in TableSelectionView.
382 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
383 Create TableChangeEvent and set the browser title using the
384 TableSelectionView API.
385 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
386 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
387 Change getSelectedTable() to getSelectedTableName(). Add
388 getSelectedTableTitle().
390 2011-10-07 Ben Konrath <ben@bagu.org>
392 Use primaryKeyValue naming convention in constructor of DetailsPlace.
394 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
396 2011-10-07 Ben Konrath <ben@bagu.org>
398 Update TableChangeEvent to use newTableName naming convention.
400 This makes the class more consistent with GWT naming conventions.
402 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
403 Update for method name change in TableChangeEvent.
404 * src/main/java/org/glom/web/client/activity/ListActivity.java: Update
405 for method name change in TableChangeEvent.
406 * src/main/java/org/glom/web/client/event/TableChangeEvent.java: Update
407 newTableName variable and getter method. Make toDebugString()
410 2011-09-30 Ben Konrath <ben@bagu.org>
412 Disable the pager in the list tables when the data row count is less than the minimum.
414 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
415 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
417 2011-09-30 Ben Konrath <ben@bagu.org>
419 Add empty rows to the end of related list and list view tables.
421 I also extracted the cell rendering classes from the ListTable because
422 the code was becoming a little crazy with all the anonymous inner
423 classes. My plan is to use these cell rendering classes in the details
424 view as well so this refactor will be needed for that change.
426 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Only
427 set the row count in related list tables if the data has more rows
428 than the minimum number of rows visible.
429 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Only set the
430 row count in list view tables if the data has more rows than the
431 minimum number of rows visible.
432 * src/main/java/org/glom/web/client/ui/cell/BooleanCell.java: New class
433 for rendering TYPE_BOOLEAN cells. The code was extracted from the
435 * src/main/java/org/glom/web/client/ui/cell/NumericCell.java: New class
436 for rendering TYPE_NUMERIC cells. The code was extracted from the
438 * src/main/java/org/glom/web/client/ui/cell/OpenButtonCell.java: New
439 class for rendering cells with buttons in list views. The code was
440 extracted from the ListTable class.
441 * src/main/java/org/glom/web/client/ui/cell/TextCell.java: New class
442 for rendering TYPE_TEXT cells. The code was extracted from the
444 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
445 Add empty rows to the end of the data if required. Implement
446 ListTable.getMinNumVisibleRows().
447 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Extract
448 cell renderer code to public classes. Return null in
449 Column.getValue() for empty rows. Add new abstract method:
450 getMinNumVisibleRows(). Move code to set the row count of the list view
451 table to ListViewImpl.
452 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java: Add
453 empty rows to the end of the data if required. Implement
454 ListTable.getMinNumVisibleRows().
457 2011-09-27 Ben Konrath <ben@bagu.org>
459 Use GWT.log for client-side debugging statements.
461 These are optimized out when deployed so I should have used this method
462 in the first place. These statements will eventually be replaced with some sort
463 of notification in the browser.
465 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
466 * src/main/java/org/glom/web/client/activity/ListActivity.java:
467 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
468 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
469 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
471 2011-09-27 Ben Konrath <ben@bagu.org>
473 Put tableselector on the right, back to list link on right.
475 The idea is that the table selector is acting like a label for the
476 currently displayed table so it should be placed below the document title. This
477 puts the table title in a similar position to where it is in Glom.
479 * mockups/details-contacts.html:
480 * mockups/details-projects.html:
481 * mockups/listview-contacts.html:
482 * mockups/listview-projects.html:
484 Update mockups to match how the interfaces currently look.
485 * src/main/webapp/style.css: Swap positions of backlink with the table
486 selector. Add some space on the left side of the table selector to
487 line things up with the document title.
489 2011-09-27 Ben Konrath <ben@bagu.org>
491 Add field colouring to details view.
493 This change re-works how field colouring works. The colour formatting
494 information is now set to the client with the layout information instead of
495 with the data. This eliminates the need to send the same colour strings for
496 data in list view column when colour information is set.
498 In order to set an alternate colour for negative numeric values, the
499 number is now sent to client and formatted with the GWT NumberFormat class.
501 This change also fixes:
503 https://bugzilla.gnome.org/show_bug.cgi?id=659752
505 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Add the GWT
506 internationalization framework which is needed for client side numeric
508 * src/main/java/org/glom/web/client/Utils.java: New file for some
509 client static utility methods.
510 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Pass
511 the DataItem object to the Field class. Use a utility method to
512 create the foreignKeyValue string.
513 * src/main/java/org/glom/web/client/ui/details/Field.java: Set
514 alignment and text colours in the constructor. Add setData(DataItem)
515 method. Remove setText(String) method.
516 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Add the
517 colour information to GlomTextCell. Create and use GlomNumberCell for
518 rendering numbers. Use utility method to get the string for the
519 primary key of the key provider. Re-work how the horizontal alignment
521 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Add
522 formatting to layout information. Methods for converting the libglom
523 formatting information were moved from DBAccess.
524 * src/main/java/org/glom/web/server/database/DBAccess.java: Remove
525 numeric formatting (it's now done on the client side). Don't set text
526 colours in DataItem. Move libglom formatting conversion methods to
528 * src/main/java/org/glom/web/shared/DataItem.java: Remove fields and
529 getters/setters for text colour information.
530 * src/main/java/org/glom/web/shared/GlomNumericFormat.java: New file
531 for transferring the libglom NumericFormat information to the client.
532 * src/main/java/org/glom/web/shared/layout/Formatting.java: Add fields
533 and getters/setters for: GlomNumericFormat, background colour and
534 foreground colour strings.
536 2011-09-26 Ben Konrath <ben@bagu.org>
538 Simplify code that iterates through the LayoutGroup.
540 * src/main/java/org/glom/web/client/ui/list/ListTable.java:
542 2011-09-26 Ben Konrath <ben@bagu.org>
544 Accept Eclipse formatting for OnlineGlomServiceAsync.
546 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
548 2011-09-26 Ben Konrath <ben@bagu.org>
550 Don't use the ListDBAccess classes to get the primary key layout information.
552 This was causing a bug where the wrong index for the hidden primary key
553 was being sent to the client.
555 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Find the
556 primary key while creating the LayoutGroup DTO. Create a
557 LayoutItemField DTO for hidden primary keys. Don't use the
558 RelatedListDBAccess because it was only used for getting the primary
560 * src/main/java/org/glom/web/server/database/DBAccess.java: Change the
561 access modifier from public to protected for getPrimaryKeyField() and
562 getPrimaryKeyLayoutItemField().
563 * src/main/java/org/glom/web/server/database/ListDBAccess.java: Remove
564 abstract method getExpectedResultSize() because RelatedListDBAccess
565 doesn't have enough info to implement it.
566 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
567 Remove @Override for getExpectedResultSize().
568 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
569 Remove method getExpectedResultSize().
571 2011-09-23 Ben Konrath <ben@bagu.org>
573 Log which layout (list or details) the ignored item is from.
575 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
577 2011-09-23 Ben Konrath <ben@bagu.org>
579 Remove annotations that turn off code formatting in DataItem.
581 * src/main/java/org/glom/web/shared/DataItem.java:
583 2011-09-23 Ben Konrath <ben@bagu.org>
585 Rename GlomField to DataItem and update associated methods.
587 This is a rename-only refactor. No functionality has been added or
590 * src/main/java/org/glom/web/client/OnlineGlomService.java:
591 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
592 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
593 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
594 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
595 * src/main/java/org/glom/web/client/ui/list/ListTable.java:
596 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
597 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
598 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
599 * src/main/java/org/glom/web/server/database/DBAccess.java:
600 * src/main/java/org/glom/web/server/database/DetailsDBAccess.java:
601 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
602 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
603 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
604 * src/main/java/org/glom/web/shared/DataItem.java:
605 * src/main/java/org/glom/web/shared/DetailsLayoutAndData.java:
606 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java:
608 2011-09-23 Ben Konrath <ben@bagu.org>
610 Rename GlomDocument to DocumentInfo and update associated methods.
612 This is a rename-only refactor. No functionality has been added or
615 * src/main/java/org/glom/web/client/OnlineGlomService.java:
616 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
617 * src/main/java/org/glom/web/client/activity/ListActivity.java:
618 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
619 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
620 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
621 * src/main/java/org/glom/web/shared/DocumentInfo.java:
623 2011-09-20 Ben Konrath <ben@bagu.org>
625 Require java-libglom 1.17.3.
627 This picks up the fix for the seg fault problem with the Scenes table
628 in the Openismus Film Manager example.
632 2011-09-20 Ben Konrath <ben@bagu.org>
634 Change the way sort clause is added for primary key when no sort clause is requested.
636 The primary key is now added to the LayoutFieldVector (fieldsToGet)
637 before the sort clause is created. When a sort clause is not requested, the
638 sort clause is created by finding the primary key in the LayoutFieldVector
641 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
643 2011-09-20 Ben Konrath <ben@bagu.org>
645 Log error message if no documents are found in the configured directory.
647 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also:
648 Extract the glom file extension string to a private static final class
649 variable (mostly as syntactic sugar). Accept a minor formatting change.
650 * src/main/resources/onlineglom.properties: Add '/glomfile' to end of
651 the example glom.document.directory configuration property to make it
652 more clear that it can any directory, not just the home directory.
654 2011-09-18 Ben Konrath <ben@bagu.org>
656 Add related lists to details view.
658 The related list table has support for paging and sorting just like the
659 table in the list view.
661 * pom.xml: Require java-libglom 1.17.2 for the new methods to build the
662 SQL queries for the related list tables.
663 * src/main/java/org/glom/web/client/OnlineGlomService.java:
664 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
665 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
666 Rename getList methods to getListView and add comments. Remove
667 getDetailsLayout() as it's not used anymore. Add note to getDetailsData() about
668 it being unused. Add methods: getDetailsLayoutAndData(),
669 getSortedRelatedListData(), getRelatedListData(), getRelatedListRowCount()
670 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
671 Create the layout and set the data for the fields in one async call
672 instead of two. Create related lists where appropriate.
673 * src/main/java/org/glom/web/client/activity/ListActivity.java: Changes
674 for method name changes in OnlineGlomService.
675 * src/main/java/org/glom/web/client/ui/DetailsView.java:
676 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Rename
677 addLayoutGroup() to addGroup(). Add methods to get the DTOs for the
679 * src/main/java/org/glom/web/client/ui/ListView.java:
680 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Remove
681 tableName from setCellTable(). Create a ListViewTable instead of
683 * src/main/java/org/glom/web/client/ui/details/Field.java: New class to
684 represent a data field in the details view.
685 * src/main/java/org/glom/web/client/ui/details/Group.java: Move to code
686 from addDetailsCell() to Field class. Keep track of the Fields and
687 Portals in the details view.
688 * src/main/java/org/glom/web/client/ui/details/Portal.java: Make portal
689 a little bigger to match Glom. Keep track of the LayoutItemPortal DTO
690 and add a method to get it. Add method to set the contents of the
692 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
693 New class for related list tables. This class has the data provider
694 for the related list table.
695 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Change to
696 abstract class which is the base class for the ListViewTable and the
698 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
699 New class for list view tables. This class has the data provider for
701 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Add
702 methods for related list tables. Add more information to the
703 LayoutItemField and LayoutItemPortal DTOs.
704 * src/main/java/org/glom/web/server/database/DetailsDBAccess.java:
705 Remove debugging print statement.
706 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
707 Remove debugging print statements. Add primary key field to SQL count
709 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
710 Remove unnecessary LayoutFieldVector parameter from
711 getResultSizeOfSQLQuery() method.
712 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
713 New class for related list table database access.
714 * src/main/java/org/glom/web/shared/DetailsLayoutAndData.java: New
715 class that is a wrapper DTO for details view layout and data.
716 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: Add
717 new 'fromField' string to this DTO.
718 * src/main/webapp/style.css: Remove bottom margin and override top
721 2011-09-15 Ben Konrath <ben@bagu.org>
723 Breakup the OnlineGlomServiceImpl class to make it more manageable.
725 This sets things up to make it easier to add the data retrieval for
726 related lists (portals). No user noticeable changes were made with
729 * src/main/java/org/glom/web/server/ConfiguredDocument.java: This
730 class has the code to retrieve the layouts and access the
731 database using the new database helper classes.
732 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
733 Most of the functionality has been removed from this class. This
734 class now represents the public interface for the client side
735 code. It also deals with configuring the servlet and cleaning
736 things up when the servlet is stopped.
737 * src/main/java/org/glom/web/server/Utils.java: Extract a couple
738 of static methods into this utility class.
739 * src/main/java/org/glom/web/server/database/DBAccess.java:
740 * src/main/java/org/glom/web/server/database/DetailsDBAccess.java:
741 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
742 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
743 These classes have the database retrieval code. The class hierarchy
744 has been setup to make it easy to reuse code for similar
747 2011-09-06 Ben Konrath <ben@bagu.org>
749 Create separate classes for list table code and the data provider.
751 As part of this refactor, I also split up the code a bit to make it
754 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Move list
755 table code to two new classes (below).
756 * src/main/java/org/glom/web/client/ui/list/ListTable.java: New file
757 with code from ListViewImpl.
758 * src/main/java/org/glom/web/client/ui/list/ListTableDataProvider.java:
759 New file with code from ListViewImpl.
761 2011-09-06 Ben Konrath <ben@bagu.org>
763 Change the LayoutItemPortal DTO to extend LayoutGroup instead of LayoutItem.
765 This fixes the LayoutItemPortal DTO to match the libglom layout object
768 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java:
770 2011-09-01 Ben Konrath <ben@bagu.org>
772 Set title of Portals in the Details View.
774 * pom.xml: Bump required version of java-libglom to 1.17.1.
775 * src/main/java/org/glom/web/client/ui/details/Group.java: Move Portal
776 widget creation to its own class. Add comments to constructor.
777 * src/main/java/org/glom/web/client/ui/details/Portal.java: New file.
778 The code is mostly from the Group class with the title now set.
779 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set
780 title of Portal. Update some comments. Fix some code formatting.
782 2011-09-01 Ben Konrath <ben@bagu.org>
784 Remove TODO comment for the flow table column width.
786 The flow table column width is working correctly and doesn't need to be
787 changed. See this mailing list post for more info:
789 https://mail.gnome.org/archives/glom-devel-list/2011-August/msg00017.html
791 * src/main/java/org/glom/web/client/ui/details/FlowTable.java:
793 2011-08-27 Ben Konrath <ben@bagu.org>
795 Add document title (database name) to top of the browser page.
797 I added the document title to the TableSelecitonView but that will
798 change if / when we add a view that doesn't require table selection.
800 * mockups/details-contacts.html:
801 * mockups/details-projects.html:
802 * mockups/listview-contacts.html:
803 * mockups/listview-projects.html:
804 * mockups/style.css: Add document title to mockups to keep things
806 * src/main/java/org/glom/web/client/OnlineGlom.java: Adjust LayoutPanel
807 sizes to account for the document title.
808 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
809 Set the document title when it has been retrieved from the server.
810 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
811 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java: Add
812 and implement setDocumentTitle(String) method.
813 * src/main/webapp/style.css: Add ID for document title style.
815 2011-08-25 Ben Konrath <ben@bagu.org>
817 Add NavigationType enum to LayoutItemPortal DTO.
819 This is the start of adding support for Portals to the Details View.
821 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Convert
822 LayoutItem_Portal.navigation_type enum from libglom to
823 LayoutItemPortal.NavigationType enum.
824 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: Add
825 NavigationType enum, field for storing the NavigationType and getter
828 2011-08-25 Ben Konrath <ben@bagu.org>
830 Implement the flow table layout in the Details View.
832 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Change
833 FlowTable to Group to account for the renamed class.
834 * src/main/java/org/glom/web/client/ui/details/FlowTable.java: New
835 File. This is a container widget that implements the Glom details view
836 flow table behaviour.
837 * src/main/java/org/glom/web/client/ui/details/Group.java: Moved from
838 org/glom/web/client/ui/FlowTable.java.
839 * src/main/webapp/style.css: Adjust bottom margin of the subgroup-title
840 so that the size of the subgroups are a closer match to the size of
841 the Glom subgroups. This makes the flowtable layout match the layout
842 in Glom for the Music Collection example file.
844 2011-08-16 Ben Konrath <ben@bagu.org>
846 Create container element for LayoutItemPortal in Details View.
848 This will help me develop the layout for the FlowTable.
850 * src/main/java/org/glom/web/client/ui/FlowTable.java: Also rename
851 fieldPanel variable to detailsCell.
853 2011-08-15 Ben Konrath <ben@bagu.org>
855 Set the height of the data element in the Details View.
857 I changed the InlineLabels (text in a span element) to Labels (text in
858 a div element) so that I could set the height of the details-data
859 elements instead of the details-cell parent elements. This allows the
860 the details-data element to display the correct height if style is
861 applied that shows the height.
863 This change has the added benefit of allowing the order of the labels
864 and data elements to be changed for right-to-left languages.
866 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Change
867 InlineLabels to Labels.
868 * src/main/java/org/glom/web/client/ui/FlowTable.java: Change
869 InlineLabels to Labels. Set the height of the data element.
870 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
871 multiline text height in the Formatting DTO.
872 * src/main/java/org/glom/web/shared/layout/Formatting.java: Add field
873 for multiline height along with getter and setter methods.
874 * src/main/webapp/style.css: Adjust style to account for the change
875 from span elements to div elements in the details cell.
877 2011-08-15 Ben Konrath <ben@bagu.org>
879 Make the List View appearance match the mockups.
881 It doesn't match exactly but it's much better than it was.
883 * mockups/listview-contacts.html: Remove unused css classes.
884 * mockups/listview-projects.html: Remove unused css classes.
885 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Display 15
886 rows instead of 20. Rename vPanel to mainPanel. Use FlowPanel (div)
887 for mainPanel instead of VerticalPanel (table). Set style name on
888 CellTable. Set style name on Details column. Right-align Details
890 * src/main/webapp/style.css: Adjust properties to match the mockups.
892 2011-08-12 Ben Konrath <ben@bagu.org>
894 Add better support for subgroups in the details view.
896 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Update for
897 changed FlowTable constructor.
898 * src/main/java/org/glom/web/client/ui/FlowTable.java: Add better
899 support for subgroups and subgroup-titles.
900 * src/main/webapp/style.css: Add CSS class for subgroups and
903 2011-08-12 Ben Konrath <ben@bagu.org>
905 Return the top level LayoutGroup title.
907 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
909 2011-08-11 Ben Konrath <ben@bagu.org>
911 Make the TableSelector header match the mockup.
913 * src/main/java/org/glom/web/client/OnlineGlom.java: Add a margin to
914 the layout panel. Properly lineup the table selection header with
915 the list and details view.
916 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Remove the
917 margin around the details view.
918 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
919 Rename listBox variable to tableSelector. Set id for the style sheet.
920 Use a FlowPanel instead of a HorizontalPanel.
921 * src/main/webapp/style.css: Add properties to make the TableSelector
922 box match the mockups.
924 2011-07-13 Ben Konrath <ben@bagu.org>
926 Update install script for java-libglom version change.
928 * utils/install-onlineglom-war.sh: Also exit if 'make check' in
931 2011-07-13 Ben Konrath <ben@bagu.org>
933 Add support sub-group in the details view.
935 I also removed the code that special-cased the default details view
938 http://mail.gnome.org/archives/glom-devel-list/2011-July/msg00005.html
940 I still have to make a proper flowtable.
942 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
943 Don't special-case default details view layout.
944 * src/main/java/org/glom/web/client/ui/DetailsView.java: Remove
945 addLayoutField() as I'm going to use it.
946 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Extract
947 GroupPanel to FlowTable class. Remove unimplemented addLayoutField()
949 * src/main/java/org/glom/web/client/ui/FlowTable.java: New class
950 extracted from DetailsViewImpl.GroupPanel. Add support for
952 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set
953 column count when getting the details layout.
955 2011-07-12 Ben Konrath <ben@bagu.org>
957 Set browser title with database and table titles.
959 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
960 Set the browser title when the table changes and when the activity
962 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set
963 title when retrieving document info (the GlomDocument object).
964 * src/main/java/org/glom/web/shared/GlomDocument.java: Add title field
965 with getter and setter methods. Remove unused convenience constructor.
966 Use default code formatting.
968 2011-07-12 Ben Konrath <ben@bagu.org>
970 Ignore LayoutItemPortals in the details view.
972 I added a new DTO for the LayoutItemPortal so that I can ignore it in
975 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Ignore
976 LayoutItemPortal layout objects.
977 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
978 LayoutItemPortal objects when retrieving the details layout.
979 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: New
980 file. This is an empty class and just used to get type information for
983 2011-07-12 Ben Konrath <ben@bagu.org>
985 Use java-libglom 1.17.0.
989 2011-07-11 Ben Konrath <ben@bagu.org>
991 Remove "Table:" label from table selector.
993 This matches a recent change in the Glom UI.
995 * mockups/details-contacts.html:
996 * mockups/details-projects.html:
997 * mockups/listview-contacts.html:
998 * mockups/listview-projects.html: Remove the "Table:" label from the
1000 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1002 2011-07-11 Ben Konrath <ben@bagu.org>
1004 Add main groups to the details view.
1006 This makes things look a little nicer in the details view. The next step
1007 is to implement the flowtable.
1009 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Inherit only the
1010 resources from the standard gwt css theme. Standard.css is now
1011 included in OnlineGlom.html so that the online glom css rules have
1012 precedence over the gwt theme.
1013 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Pass
1014 the whole LayoutGroup to the DetailsView instead of just the titles.
1015 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1016 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Create the
1017 details layout with a helper class (GroupPanel). I might extract this
1018 class when I make the full flowtable.
1019 * src/main/java/org/glom/web/shared/layout/LayoutItem.java: Add empty
1020 string as default so I don't have to worry about NPEs when processing
1022 * src/main/webapp/OnlineGlom.html: Add the gwt standard css file (see
1023 note beside OnlineGlom.gwt.xml above).
1024 * src/main/webapp/style.css: Add default font-size to body to override
1025 the font-size set by the standard theme. Don't use h2 tags for
1026 group-title. Create new details-cell class.
1028 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1030 ConfiguredDocument: Set the port number too.
1032 * src/main/java/org/glom/web/server/ConfiguredDocument.java
1033 (ConfiguredDocument.ConfiguredDocument): Get the port number from the
1034 Glom document. Presumably this worked sometimes so far because there is a
1035 default port number.
1037 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1039 ConfiguredDocument: Warn that sqlite and self-hosting are not supported.
1041 * src/main/java/org/glom/web/server/ConfiguredDocument.java
1042 (ConfiguredDocument.ConfiguredDocument): Check that the hosting mode is
1043 correct, though we should throw an exception too.
1045 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1047 Fix a addDocuemnt typo.
1049 * src/main/java/org/glom/web/shared/Documents.java
1050 (Documents.addDocuemnt): Rename to addDocument().
1051 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java
1052 (OnlineGlomServiceImpl.getDocuments): Adapt.
1054 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1056 Slightly improved log output when connection fails.
1058 * src/main/java/org/glom/web/server/ConfiguredDocument.java
1059 (ConfiguredDocument.setUsernameAndPassword):
1060 We don't know for sure if it' the username/password that's wrong, so
1061 rephrase the message.
1062 Also ouput the exception message, though it's generic in this case.
1064 2011-07-08 Ben Konrath <ben@bagu.org>
1068 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also
1069 added braces to a one line if statement because the Eclipse formatter
1070 was getting confused.
1072 2011-07-07 Ben Konrath <ben@bagu.org>
1074 Update project config files for Eclipse 3.7 and use GWT 2.3.0.
1076 These should really be two separate tasks but I counldn't get things to
1077 work with GWT 2.2.0 and Eclipse 3.7.
1081 * .settings/org.eclipse.jdt.core.prefs:
1082 * .settings/org.eclipse.jdt.ui.prefs:
1083 * .settings/org.eclipse.ltk.core.refactoring.prefs:
1084 * .settings/org.eclipse.m2e.core.prefs:
1085 Add new config files. Update current files. Remove references to the
1086 webtools plugins as we're not using any of the webtools features.
1087 * .gitignore: Add logs directory which is created when running with
1089 * pom.xml: Update to GWT 2.3.0. Eclipse configuration was automatically added.
1090 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Moved from
1091 src/main/resources/org/glom/web/OnlineGlom.gwt.xml as per this known
1093 http://mojo.codehaus.org/gwt-maven-plugin/eclipse/google_plugin.html#Limitations
1095 2011-07-07 Murray Cumming <murrayc@murrayc.com>
1097 onlineglom.properties: Add explanatory comments.
1099 * src/main/resources/onlineglom.properties: Also change the default user
1100 from ben to someuser, to avoid the risk of people thinking we just
1101 stupidly hard-coded a locale path, when they see that on stderr or in a log.
1103 2011-06-28 Ben Konrath <ben@bagu.org>
1105 Use filename in Log for incorrect passwords.
1107 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Add
1108 getFileName(String) method to get the filename from the URI.
1110 2011-06-28 Ben Konrath <ben@bagu.org>
1112 Add the table name to the URL token for the ListPlace.
1114 This makes things consistent between the DetailsPlace and the
1115 ListPlace. It also allows the the ListPlace to be bookmarked.
1117 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1118 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1119 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1120 Remove getDefaultListLayout(). The default layout is now returned
1121 by the getListLayout() method when the table name is an empty string.
1122 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1123 Add table name field. Change to a new ListPlace when the table
1124 has been changed. Use getListLayout() for getting the default
1126 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1127 Add table name field. Set the correct table name in the list box
1128 when loading from bookmark. This corrects a problem for the
1130 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1131 Move table name to super-class (HasSelectableTable). Move document
1132 and table URL keys to super-class in HasSelectableTable.
1133 * src/main/java/org/glom/web/client/place/HasSelectableTablePlace.java:
1134 Add table name field. Add Tokenizer class with URL key common to
1135 the subclasses (DetailsPlace and ListPlace).
1136 * src/main/java/org/glom/web/client/place/ListPlace.java:
1137 Add table name. Add code to parse the URL token.
1138 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1139 Update ListPlace construction with empty table name string.
1140 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1141 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1142 Change setTableSelectedIndex(int) to setSelectedTableName(String).
1143 Update ListPlace construction with table name string.
1144 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java:
1145 Change defaultTableName field to tableName to reflect how it's now
1146 used. Update the getter and setter methods.
1148 2011-06-28 Ben Konrath <ben@bagu.org>
1150 Enable the table selector in the DetailsView.
1152 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1153 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1154 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1155 Remove getDefaultDetailsLayout(). The default layout is now returned
1156 by the getDetailsLayout() method when the table name is an empty
1158 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
1159 event handler for table change event. Change to using
1160 getDetailsLayout() for the default details layout.
1161 * src/main/java/org/glom/web/client/place/DetailsPlace.java: Add table
1163 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Use table
1164 when navigating to the details place.
1166 2011-06-27 Ben Konrath <ben@bagu.org>
1168 Use filename based unique document ID in URL and for RPC.
1170 The document ID is the glom document name with spaces (' ') replaced
1171 with pluses ('+') and without the .glom extension.
1173 This change is mostly a string substitution of 'documentTitle' for
1174 'documentID'. The only code change is the addition of a Documents DTO to get the
1175 filename to document title mappings as indicated below.
1177 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1178 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1179 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1180 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1181 Use Documents DTO to create the document links in the document
1183 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1184 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1185 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1186 * src/main/java/org/glom/web/client/place/HasSelectableTablePlace.java:
1187 * src/main/java/org/glom/web/client/place/ListPlace.java:
1188 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
1189 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1190 * src/main/java/org/glom/web/client/ui/ListView.java:
1191 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1192 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1193 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1194 * src/main/java/org/glom/web/server/Log.java:
1195 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
1196 getDocumentTitles() to getDocuments() and return the Documents DTO.
1197 * src/main/java/org/glom/web/shared/Documents.java: New DTO for
1198 transferring the filename to document title mappings.
1200 2011-06-25 Ben Konrath <ben@bagu.org>
1202 Make the authentication popup work again.
1204 This bug was introduced when I extracted ConfiguredDocument to its own class.
1206 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Return the
1207 correct success / fail status in setUsernameAndPassword().
1209 2011-06-25 Ben Konrath <ben@bagu.org>
1211 Use filename as unique key for configuring database usernames and passwords.
1213 This replaces the use of the Glom document title which could change
1214 depending on the locale. Thanks to Murray Cumming for pointing out this
1217 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1218 * src/main/resources/onlineglom.properties:
1220 2011-06-24 Ben Konrath <ben@bagu.org>
1222 Pass primary key value to DetailsView.
1224 This enables the DetailsView to load the correct data.
1226 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
1227 primary key value field and set in constructor. Pass primary key
1228 value to getDetailsData().
1229 * src/main/java/org/glom/web/client/place/DetailsPlace.java: Add URL
1230 variables for document title and primary key value.
1231 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Pass primary
1232 key value to the DetailsPlace.
1234 2011-06-24 Ben Konrath <ben@bagu.org>
1236 Add primary key index to LayoutGroup DTO and add ProvidesKey to CellTable.
1238 This allows the primary key to be retrieved by the Details button. This
1239 functionality has not been implemented yet but it's in the works.
1241 * src/main/java/org/glom/web/client/activity/ListActivity.java: Pass
1242 the LayoutGroup result to ListView.setCellTable instead of all of its
1243 fields individually.
1244 * src/main/java/org/glom/web/client/ui/ListView.java:
1245 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Use
1246 LayoutGroup as parameter for setCellTable. Add ProvidesKey to CellTable
1247 get the primary key for the table.
1248 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
1249 index of the primary key in the LayoutGroup accounting for hidden
1250 primary keys. Rename getJavaNumberFormat() to
1251 convertToJavaNumberFormat() for consistency. Cleanup / add some
1253 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java: Add a
1254 field for primary key index and a field to indicate whether the
1255 primary key is hidden or not.
1257 2011-06-23 Ben Konrath <ben@bagu.org>
1259 Rename getTableData methods to getListData.
1261 This is a rename refactor for consistency with other methods.
1263 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1264 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1265 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1266 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1268 2011-06-23 Ben Konrath <ben@bagu.org>
1270 Extract the ConfiguredDocument innerclass into its own class.
1272 This makes the servlet code more object oriented.
1274 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Extracted
1275 from private ConfiguredDocument class in OnlineGlomServiceImpl.
1276 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use the
1277 new ConfiguredDocument class.
1279 2011-06-21 Ben Konrath <ben@bagu.org>
1281 Use the LayoutGroup group for the list layout instead of ColumnInfo and LayoutListTable.
1283 This makes things more inline with how libglom works and reduces code
1284 duplication. This refactor lays the groundwork for adding the primary key to
1285 the LayoutGroup object.
1287 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1288 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1289 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1290 Change method names to getListLayout and getDefaultListLayout for
1291 consistency. Use LayoutGroup as the DTO for the list layout instead of
1292 ColumnInfo and LayoutListTable.
1293 * src/main/java/org/glom/web/client/activity/ListActivity.java: Use the
1294 new method names along with the LayoutGroup object for transferring the
1296 * src/main/java/org/glom/web/client/ui/ListView.java:
1297 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1298 Use ArrayList<LayoutItem> instead of ColumnInfo[] in setCellTable().
1299 * src/main/java/org/glom/web/shared/ColumnInfo.java: Deleted. Replaced
1301 * src/main/java/org/glom/web/shared/LayoutListTable.java: Deleted.
1302 Replaced with LayoutGroup.
1303 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java: Add
1304 expectedResultSize and defaultTableName fields which are needed for
1306 * src/main/java/org/glom/web/shared/layout/LayoutItemField.java: Add
1307 type field which is needed for the list layout but will also be
1308 useful for the details layout as things progress.
1309 * src/main/java/org/glom/web/shared/layout/LayoutItemWithFormatting.java:
1310 Make class abstract. Remove the unnecessary
1311 getFormattingHorizontalAlignment method. Add setFormatting method.
1313 2011-06-16 Ben Konrath <ben@bagu.org>
1315 Add scripts for building and installing war.
1317 These will help when updating OnlineGlom but they're also good
1318 supplemental documentation of the build and deployment proceeding.
1320 * utils/build-onlineglom-war.sh: New file.
1321 * utils/install-onlineglom-war.sh: New file.
1323 2011-06-16 Ben Konrath <ben@bagu.org>
1325 Create wrapper class to create consistent log messages.
1327 I wrapped methods in the Log class of gwt-log to add the method names
1328 from the servlet and create consistent formatting of the document title
1329 and table names in the log messages.
1331 * src/main/java/org/glom/web/server/Log.java: New file with wrapped methods.
1332 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Convert all
1333 log methods to use methods from wrapped Log class.
1335 2011-06-16 Ben Konrath <ben@bagu.org>
1337 Remove superfluous conditional return.
1339 Thanks to Murray Cumming for pointing this out!
1341 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1343 2011-06-15 Ben Konrath <ben@bagu.org>
1345 Return an ArrayList of LayoutGroups for the Details layout.
1347 This corrects a problem with the details layout as it can have more
1348 than one top level LayoutGroup.
1350 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1351 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Change
1352 method name from get*DetailsLayoutGroup to get*DetailsLayout. Return
1353 an ArrayList<LayoutGroup> in the get*DetailsLayout methods.
1354 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Deal
1355 with ArrayList of LayoutGroups for the details view layout.
1356 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
1357 method name from get*DetailsLayoutGroup to get*DetailsLayout. Return an
1358 ArrayList<LayoutGroup> in the get*DetailsLayout methods. Inline
1359 getTableFieldsToShowForSequence() into getFieldsToShowForSQLQuery() to simplify
1360 the code a bit. Rename getTableFieldsToShowForSequenceAddGroup() to
1361 getFieldsToShowForSQLQueryAddGroup() to try to keep things more consistent.
1363 2011-06-14 Ben Konrath <ben@bagu.org>
1365 Use cast_dynamic method to determine the libglom LayoutItem type.
1367 This is better than finding the LayoutItem type by using the string
1368 returned from the get_part_type_name() method.
1370 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1372 2011-06-14 Ben Konrath <ben@bagu.org>
1374 Add method names to log entries in the servlet.
1376 This helps when tracking down deployment problems.
1378 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1380 2011-06-14 Ben Konrath <ben@bagu.org>
1382 Add data to the DetailsView using a hard-coded primary key value.
1384 The layout and functionality of the DetailsView is not complete. This
1385 is just a checkpoint so the patch doesn't get too big.
1387 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1388 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1389 Add getDetailsData() servlet method.
1390 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1391 Add RPC to getDetailsData(). Change the way the LayoutGroups and
1392 LayoutFields are added to the DetailsView.
1393 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1394 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
1395 Add setData() method. Change addLayoutGroup() and addLayoutField() to
1396 take the string for the title instead of the object.
1397 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1398 Add implementation getDetailsData() along with some private helper
1400 * src/main/webapp/style.css: Add padding to details-data class. Add a
1401 details-label class with the same padding as the details-data class.
1403 2011-06-03 Ben Konrath <ben@bagu.org>
1405 Use presenter.goTo() to change to the DetailsPlace.
1407 This will make things easier when we need to open the DetailsView with
1408 data specific to the row that was clicked.
1410 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1412 2011-06-02 Ben Konrath <ben@bagu.org>
1414 Add CSS file from mockups.
1416 I'm adding this now because it's going to be useful to have when
1417 developing the DetailsView. The TableSelectionView and ListView aren't
1420 * src/main/webapp/OnlineGlom.html:
1421 * src/main/webapp/style.css:
1423 2011-06-02 Ben Konrath <ben@bagu.org>
1425 Use String.isEmpty() to check for empty string.
1427 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1429 2011-06-02 Ben Konrath <ben@bagu.org>
1431 Display main layout group titles in the DetailsView.
1433 This is the start of the DetailsActivity/DetailsView implementation.
1435 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1436 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1437 Add getDetailsLayoutGroup() and getDefaultDetailsLayoutGroup() methods.
1438 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1439 Get the layout information for the details view from the server and set
1440 the main layout group titles.
1441 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1442 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
1443 Add addLayoutGroup() and addLayoutField() methods. This are just
1444 temporary methods for creating the the details view that will change
1446 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1447 Implement getDetailsLayoutGroup() and getDefaultDetailsLayoutGroup()
1449 * src/main/java/org/glom/web/shared/layout/Formatting.java:
1450 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java:
1451 * src/main/java/org/glom/web/shared/layout/LayoutItem.java:
1452 * src/main/java/org/glom/web/shared/layout/LayoutItemField.java:
1453 * src/main/java/org/glom/web/shared/layout/LayoutItemWithFormatting.java:
1454 Data Transfer Objects that mimic the libglom object structure. These are
1455 used for transferring the details layout but could also be used for
1456 transferring the list layout.
1458 2011-05-27 Ben Konrath <ben@bagu.org>
1460 Reset the AuthenticationPopup when clearing the ListView.
1462 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1464 2011-05-27 Ben Konrath <ben@bagu.org>
1466 Fix problem with onlineglom.properties file loading.
1468 The old way worked in Eclipse but not on the server. Loading the
1469 onlineglom.properties file now works in Eclipse and on the server.
1471 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1473 2011-05-24 Ben Konrath <ben@bagu.org>
1475 Update gwt-log from 3.1.0 to 3.1.2.
1477 Gwt-log 3.1.0 has been marked as depreciated.
1481 2011-05-24 Ben Konrath <ben@bagu.org>
1483 Add comment to ListActivity.goTo() method.
1485 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1487 2011-05-24 Ben Konrath <ben@bagu.org>
1489 Remove FIXME in convertGdkColorToHtmlColour()
1491 The Gdk::Color value returned by libglom is 16-bits per channel on both
1492 64 and 32-bit platforms.
1494 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1496 2011-05-19 Ben Konrath <ben@bagu.org>
1498 Improve performance of initial ListView load.
1500 I removed a round trip to the server for getting the default table name
1501 and then requesting information about that table. This also removes a potential
1502 problem with the table change handler not being setup in time to receive the
1503 table change event from the ListActivity.
1505 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1506 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
1507 getDefaultLayoutListTable() method. Improve comments.
1508 * src/main/java/org/glom/web/client/activity/ListActivity.java: Use
1509 getDefaultLayoutListTable() method instead of firing a table change
1510 event to get the table to load.
1511 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
1512 implementation of getDefaultLayoutListTable() method.
1513 * src/main/java/org/glom/web/shared/LayoutListTable.java: Add field for
1516 2011-05-19 Ben Konrath <ben@bagu.org>
1518 Override toDebugString() in TableChangeEvent.
1520 This is useful to have for debugging.
1522 * src/main/java/org/glom/web/client/event/TableChangeEvent.java:
1524 2011-05-19 Ben Konrath <ben@bagu.org>
1526 Add a "Back to List" link when at the DetailsPlace.
1528 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1529 Populate the CellTable based on the selected table of the ListBox if
1530 it's set otherwise use the default table. This allows the "Back to
1532 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1533 Remove Place from constructors. Add a setPlace() method. Add
1534 goToPlace() method. Set class as presenter for TableSelectionView.
1535 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
1536 Use the same TableSelectionActivity when switching between the List and
1538 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1539 Subclass the new HasSelectableTablePlace. This removes some duplicate
1541 * src/main/java/org/glom/web/client/place/HasSelectableTablePlace.java:
1542 New class to represent Places that display the TableSelectionView.
1543 * src/main/java/org/glom/web/client/place/ListPlace.java:
1544 Subclass the new HasSelectableTablePlace. This removes some duplicate
1546 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1547 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1548 Add Presenter interface. Add setBackLinkVisible() method. Add
1549 setBackLink() method.
1551 2011-05-18 Ben Konrath <ben@bagu.org>
1553 Enable the "Details" buttons.
1555 Right now only an empty details view is displayed.
1557 * src/main/java/org/glom/web/client/ClientFactory.java:
1558 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
1559 Add DetailsView to ClientFactory.
1560 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1561 A basic activity for the details view.
1562 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1563 Add a new constructor that takes a DetailsPlace. Rename shutdown() to
1565 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1566 Add DetailsPlace.Tokenizer to the list of tokens that are generated by
1568 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
1569 Create a new DetailsActivity when a DetailsPlace is requested. Remove
1570 unnecessary super() in constructor.
1571 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
1572 Create a new TableSelectionActivity when a DetailsPlace is requested. We
1573 really shouldn't create a new TableSelectionActivity for both the ListPlace
1574 and the DetailsPlace so this should be considered a temporary solution.
1575 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1576 New file. Represents a URL for the details view.
1577 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1578 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
1579 A basic details view interface and implementation.
1580 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1581 Enable the "Details" buttons.
1583 2011-05-12 Ben Konrath <ben@bagu.org>
1585 Use a LayoutPanel with multiple display areas for main layout.
1587 This is mostly a refactor in that there are no changes from the user
1588 point of view. These changes are required so that we can swap out the list view
1589 with the details view when the user clicks the "Details" button.
1591 * src/main/java/org/glom/web/client/ClientFactory.java:
1592 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
1593 OnlineGlomView. Add TableSelectionView, ListView and
1594 AuthenticationPopup.
1595 * src/main/java/org/glom/web/client/OnlineGlom.java: Use LayoutPanel
1596 for main layout. Add display regions for main activities. Add
1597 activity manager for for main activities.
1598 * src/main/java/org/glom/web/client/activity/ListActivity.java: New
1599 file from parts of the deleted OnlineGlomActivity.
1600 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1601 New file from parts of the deleted OnlineGlomActivity.
1602 * src/main/java/org/glom/web/client/event/TableChangeEvent.java:
1603 * src/main/java/org/glom/web/client/event/TableChangeEventHandler.java:
1604 New files for app wide table change event.
1605 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
1606 * src/main/java/org/glom/web/client/mvp/DocumentSelectionActivityMapper.java:
1607 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
1608 Activity mappers for the main activities replace the deleted app-wide
1610 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java:
1611 Fix a spelling error in he comment.
1612 * src/main/java/org/glom/web/client/ui/ListView.java:
1613 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1614 Renamed from LayoutListView and modified for MVP. This still not a
1615 proper dumb view as prescribed by the MVP pattern but it works for now.
1616 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1617 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1618 New widget stripped out of the deleted OnlineGlomView.
1619 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1620 Remove hack that is fixed by this patch.
1622 2011-05-06 Ben Konrath <ben@bagu.org>
1624 Rename OnlineGlomPlace to ListPlace.
1626 The only change besides the rename is that url will now display #list
1627 instead of #Document.
1629 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1630 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
1631 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1632 * src/main/java/org/glom/web/client/place/ListPlace.java:
1633 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1635 2011-05-06 Ben Konrath <ben@bagu.org>
1637 Use Presenter for app navigation.
1639 This is the proper way to deal with Place (URL) changes with the MVP
1642 * src/main/java/org/glom/web/client/ClientFactory.java:
1643 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
1644 PlaceHistoryMapper and PlaceHistoryHandler.
1645 * src/main/java/org/glom/web/client/OnlineGlom.java: Re-add
1646 PlaceHistoryMapper and PlaceHistoryHandler.
1647 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1648 Don't use getHistoryMapper().getToken(place) to create the hyperlinks.
1649 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
1650 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1651 Add Presenter interface and setPresenter methods. Rename addHyperLink
1652 to addDocumentLink taking only the document title as a parameter.
1654 2011-04-14 Ben Konrath <ben@bagu.org>
1656 Prompt for db username/password if they haven't been set.
1658 This is implemented with a popup widget that is contained within the
1659 OnlineGlomView and managed by the OnlineGlomActivity.
1661 * src/main/java/org/glom/web/client/OnlineGlomService.java: Two new
1662 methods for checking and setting the database username and password.
1663 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Two
1664 new methods for checking and setting the database username and
1666 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1667 Display authentication popup if the JDBC connection to the database
1668 has not been authenticated.
1669 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java: New
1671 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
1672 for dealing with the authentication popup.
1673 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java:
1674 Implement the methods for dealing with the authentication popup.
1675 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Don't
1676 try to executed queries if the database connection hasn't been
1677 authenticated. Implement methods for checking and setting the
1678 database username and password.
1680 2011-04-12 Ben Konrath <ben@bagu.org>
1682 Make log messages a little clearer.
1684 Add a dash betweeen the document title and the table name.
1686 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1688 2011-04-12 Ben Konrath <ben@bagu.org>
1690 Protect against NPEs when cleaning up database resources.
1692 While this isn't strictly necessary because the exception is caught,
1693 not protecting against the NPEs makes it harder to find the real error
1696 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1698 2011-04-12 Ben Konrath <ben@bagu.org>
1700 Move configuration of the servlet to the constructor.
1702 The servlet will be initialized even if the database authentication
1703 information is not set or correct. I still need to add the UI for prompting
1704 the user for the authentication information when it's required.
1706 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
1707 javadocs for getDocumentTitles() method.
1708 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1709 Set error message when RPC fails.
1710 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Get the
1711 glom files directory from the configuration file. Try to set the
1712 database authentication information for the specific document if it's
1713 set and works otherwise try to use the global authentication
1714 information set for the directory.
1715 * src/main/resources/onlineglom.properties: Moved from
1716 src/main/webapp/WEB-INF/OnlineGlom.properties. Updated with new keys.
1717 Added detailed comments for the new keys.
1719 2011-04-11 Ben Konrath <ben@bagu.org>
1721 Remove unnecessary @Override in DocumentSelectionViewImpl.
1723 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1725 2011-04-11 Ben Konrath <ben@bagu.org>
1727 Remove center alignment in DocumentSelectionView.
1729 The title element is still centred but the document titles and bottom
1730 sentence are both left-aligned.
1732 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
1734 2011-04-11 Ben Konrath <ben@bagu.org>
1736 Change 'Demo' naming convention to 'Document'.
1738 This is just a rename refactor with no functional changes to the code.
1740 * src/main/java/org/glom/web/client/ClientFactory.java:
1741 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
1742 * src/main/java/org/glom/web/client/OnlineGlom.java:
1743 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1744 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1745 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1746 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
1747 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1748 * src/main/java/org/glom/web/client/place/DocumentSelectionPlace.java:
1749 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
1750 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1751 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
1752 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1754 2011-04-08 Ben Konrath <ben@bagu.org>
1756 Remove FIXME from safeLongToInt() method.
1758 Libglom uses longs on 32-bit and 64-bit platforms so it's ok to use
1761 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1763 2011-04-08 Ben Konrath <ben@bagu.org>
1765 Display an error if no glom documents are found in the specified directory.
1767 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1768 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
1769 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
1770 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1772 2011-04-08 Ben Konrath <ben@bagu.org>
1774 Add copyright header to one more file ... oops.
1776 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1778 2011-04-08 Ben Konrath <ben@bagu.org>
1780 Add copyright header to files without it.
1782 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1783 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
1784 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
1785 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
1786 * src/main/java/org/glom/web/shared/ColumnInfo.java:
1787 * src/main/java/org/glom/web/shared/GlomField.java:
1789 2011-04-08 Ben Konrath <ben@bagu.org>
1791 Add support for accessing multiple glom documents in the servlet.
1793 This completes the demo selection functionality.
1795 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
1796 document title to methods.
1797 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
1798 document title to methods.
1799 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1800 Set browser window title when the activity starts. Correct name of
1801 document title variable.
1802 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1803 Set browser window title when the activity starts. Set the table
1804 selector change handler after table selector has been set. Clear the
1805 OnlineGlomView when the activity has been stopped.
1806 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java: Use the
1807 document title as the place token. Use "#Document:" instead of
1808 "#OnlineGlomPlace:" in the URL.
1809 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
1810 Change heading to "Online Glom"
1811 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Use
1812 document title in RPC methods.
1813 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Remove
1814 setDocumentTitle() method. Add clear() method.
1815 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Remove
1816 setDocumentTitle() method. Implement clear() method which removes the
1817 change handler on the ListBox, clears the ListBox and clears the
1819 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1820 Implement methods with document title. Keep track for the configured
1821 glom documents and their corresponding JDBC configurations in a hash
1822 table. This information is retrieved using the document title as the
1823 key in the hash table.
1824 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
1825 document title field as it's no longer needed.
1827 2011-04-08 Ben Konrath <ben@bagu.org>
1829 Update the Eclipse JDT configuration.
1831 * .settings/org.eclipse.jdt.ui.prefs: Automatically add comments to new
1832 methods. Automatically add the copyright header to new files.
1834 2011-04-05 Ben Konrath <ben@bagu.org>
1836 Add new page for demo selection.
1838 This patch adds all the components required to view and start an
1839 OnlineGlom demo by clicking on the desired hyperlink. The user is
1840 able to return to the demo selection page with the browser's back
1841 button. I still need to modify the servlet to work with multiple
1842 documents so all demo links will load the file defined in the
1843 OnlineGlom.properties.
1845 * .gitignore: Add .gwt which holds the error log for the GWT UiBuidler.
1846 This is only useful during development so we don't need to save it.
1847 * src/main/java/org/glom/web/client/ClientFactory.java: Add method to
1848 get a reference to the DemoSelectionView.
1849 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Implement
1850 method to get a reference to the DemoSelectionView.
1851 * src/main/java/org/glom/web/client/OnlineGlom.java: Change the
1852 default view to DemoSelectionView.
1853 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add method
1854 to get glom document titles for glom files in a hard-coded directory.
1855 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
1856 method to get glom document titles for glom files in a hard-coded
1858 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1859 Presenter for DemoSelectionView.
1860 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: Update
1861 for DemoSelectionView.
1862 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1863 Update for DemoSelectionView.
1864 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
1865 Basic 'Place' implementation for the DemoSelectionView.
1866 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
1867 The interface for the DemoSelectionView.
1868 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
1869 The implementation of the DemoSelectionView.
1870 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
1871 The GWT UiBuilder xml file used in DemoSelectionViewImpl.
1872 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
1873 implementation of method to get glom document titles for glom files
1874 in a hard-coded directory.
1875 * src/main/webapp/OnlineGlom.html: Remove link to CSS file as it's
1876 on longer being used.
1877 * src/main/webapp/glom.png: Glom logo.
1879 2011-04-05 Ben Konrath <ben@bagu.org>
1881 Move RPC code from OnlineGlomViewImpl to OnlineGlomActivity.
1883 This is the forth and final commit of a refactor that will allow
1884 OnlineGlom to be used with multiple documents.
1886 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1887 Move RPC code from OnlineGlomViewImpl to this class.
1888 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
1890 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Move
1891 RPC code to the presenter class (the P in MVP).
1893 2011-04-04 Ben Konrath <ben@bagu.org>
1895 Start moving the existing OnlineGlom code to MVP.
1897 This work is based on the GWT MVP framework that is documented here:
1899 https://code.google.com/webtoolkit/doc/2.2/DevGuideMvpActivitiesAndPlaces.html
1901 This is the third commit of a refactor that will allow OnlineGlom to
1902 be used with multiple documents.
1904 * src/main/java/org/glom/web/client/ClientFactory.java: New file.
1905 Interface for client factory which is used to get instances of various
1906 classes throughout the app.
1907 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: New file.
1908 Implementation of client factory.
1909 * src/main/java/org/glom/web/client/OnlineGlom.java: Add code to
1910 initialize the MVP framework.
1911 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1912 New file. Activity manager for the main container widget. This is the
1914 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: New file.
1915 Maps place (URL) to its corresponding activity.
1916 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1917 New file. This is just a place holder for a generated file.
1918 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java:
1919 New file. Represents the URL for the main Online Glom app.
1920 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Update
1921 for changes in LayoutListViewImpl.
1922 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Create
1923 interface for View. Move code to OnlineGlomViewImpl class.
1924 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: New
1925 file. Implementation of OnlineGlomView.
1926 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Add Activity and
1927 Place resources. Use ClientFactoryImpl by default.
1929 2011-04-04 Ben Konrath <ben@bagu.org>
1931 Move View classes to their own package.
1933 This is the second commit of a refactor that will allow OnlineGlom to
1934 be used with multiple documents.
1936 * src/main/java/org/glom/web/client/OnlineGlom.java:
1937 * src/main/java/org/glom/web/client/ui/LayoutListView.java:
1938 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java:
1940 2011-04-02 Ben Konrath <ben@bagu.org>
1942 Move UI code from the main module to its own class.
1944 This is the first commit of a refactor that will allow OnlineGlom to be
1945 used with multiple documents.
1947 * src/main/java/org/glom/web/client/LayoutListView.java: Update
1948 references to OnlineGlom to OnlineGlomView.
1949 * src/main/java/org/glom/web/client/OnlineGlom.java: Move code to
1950 OnlineGlomView and instantiate it here.
1951 * src/main/java/org/glom/web/client/OnlineGlomView.java: New class that
1952 represents the main OnlineGlomView with one document.
1954 2011-04-01 Ben Konrath <ben@bagu.org>
1956 Fix formatting of gwt.xml and add DTD.
1958 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
1960 2011-03-30 Ben Konrath <ben@bagu.org>
1962 Propperly convert gdkColor string to html colour string.
1964 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1966 2011-03-28 Ben Konrath <ben@bagu.org>
1968 Change implementation of OnlineGlomServiceImpl.getColumnInfoHorizontalAlignment().
1970 This implementation matches
1971 OnlineGlomServiceImpl.getColumnInfoGlomFieldType(), should perform better, is more
1972 readable and is not tied to Swig.
1974 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1976 2011-03-28 Ben Konrath <ben@bagu.org>
1978 Use read-only checkboxes for boolean field types.
1980 * src/main/java/org/glom/web/client/LayoutListView.java: Create columns
1981 in the CellTable based on the field type. It currently only
1982 distinguishes between boolean and text columns but I'll need to add
1983 support for more types.
1984 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
1985 column type in the ColumnInfo object. Add method to convert between the
1986 glom field type enum in ColumnInfo and the glom field type in libglom.
1987 * src/main/java/org/glom/web/shared/ColumnInfo.java: Add support for
1989 * src/main/java/org/glom/web/shared/GlomField.java: Add support for
1990 getting and setting booleans.
1992 2011-03-25 Ben Konrath <ben@bagu.org>
1994 Don't get the Date twice from the ResultSet.
1996 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1998 2011-03-25 Ben Konrath <ben@bagu.org>
2000 Cleanup code in the servlet.
2002 * TODO: Remove item about row count. Add item about testing row count
2003 query with large number of rows.
2004 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Fix
2005 spelling mistakes, change method parameter to be consistent with
2008 2011-03-25 Ben Konrath <ben@bagu.org>
2010 Add server side logging with the gwt-log library.
2012 * .gitignore: Ignore the log file we're now producing.
2013 * TODO: Add a couple TODO item for logging.
2014 * pom.xml: Add gwt-log and log4j as a dependency.
2015 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
2016 logging of errors, warnings and some important info.
2017 * src/main/resources/log4j.properties: New file to configure log4j.
2019 2011-03-24 Ben Konrath <ben@bagu.org>
2021 Add a disable button for the Details view.
2023 * src/main/java/org/glom/web/client/LayoutListView.java:
2025 2011-03-22 Ben Konrath <ben@bagu.org>
2027 Use a count query to get the number of rows for the list view pager.
2029 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2031 2011-03-22 Ben Konrath <ben@bagu.org>
2033 Add more TODO information about CellTable pager positioning.
2037 2011-03-19 Ben Konrath <ben@bagu.org>
2039 Add TODO item about CellTable pager positioning.
2043 2011-03-18 Ben Konrath <ben@bagu.org>
2045 Remove unneeded GlomFieldColumn class.
2047 This is just a small code cleanup.
2049 * src/main/java/org/glom/web/client/LayoutListView.java:
2051 2011-03-18 Ben Konrath <ben@bagu.org>
2053 Use cursor mode in the query that gets data for the list view.
2055 I still need to fix the potential memory problem when getting the row
2056 count for the list view.
2058 * TODO: Add note about testing memory usage with large data sets. Add
2059 item about fixing row counting with large data sets.
2060 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
2061 PostgreSQL JDBC driver into cursor mode when getting data for the
2064 2011-03-15 Ben Konrath <ben@bagu.org>
2066 Remove the GWT Container from the Eclipse build classpath.
2068 The GWT dependencies are set by Maven so this isn't needed.
2072 2011-03-15 Murray Cumming <murrayc@murrayc.com>
2074 Added some earlier mockups to git, but not to the tarball dist.
2076 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
2077 Openismus. These hopefully show how we might structure the HTML so that
2078 it can be styled easily with CSS. However, we probably need to adapt them
2079 for the CSS structure that GWT dictates for common widgets.
2081 2011-03-14 Ben Konrath <ben@bagu.org>
2083 Locate OnlineGlom.properties using the ServletContext.
2085 This is required to be able to locate the file in the deployed servlet.
2087 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2088 Configure the database and glom document in in a helper method so
2089 that the ServletContext can be used to locate OnlineGlom.properties.
2090 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
2091 src/main/webapp. This is the proper location for .properites files.
2093 2011-03-12 Ben Konrath <ben@bagu.org>
2095 Add note to README about why we're compiling down to obfuscated JavaScript.
2099 2011-03-11 Ben Konrath <ben@bagu.org>
2101 Use properties file to configure servlet.
2103 This allows people to change the glom file path, db username and db
2104 password without recompiling the code.
2106 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2107 * src/main/webapp/OnlineGlom.properties:
2109 2011-03-11 Ben Konrath <ben@bagu.org>
2111 Use table fields in layout list view if the layout list is not defined.
2113 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2114 Manually create a LayoutFieldVector for the query builder using the
2115 table fields when a layout list is not defined in the glom file.
2117 2011-03-11 Ben Konrath <ben@bagu.org>
2119 Only show FIXME string for images when there's an image.
2121 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
2122 in this change are some small code cleanups.
2124 2011-03-11 Ben Konrath <ben@bagu.org>
2126 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
2128 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2130 2011-03-11 Ben Konrath <ben@bagu.org>
2132 Correctly set the index of the default table.
2134 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2135 Correctly set the index of the default table. Add commented out example
2138 2011-03-10 Ben Konrath <ben@bagu.org>
2140 Add comment to pom.xml about the previous change.
2142 * pom.xml: Add comment about the deployment issue so that it's obvious
2143 why java-libglom is set to the provided scope.
2145 2011-03-10 Ben Konrath <ben@bagu.org>
2147 Change java-libglom dependency from compile to provided in pom.xml.
2149 Since java-libglom uses jni it can only be loaded once and therefore
2150 must be placed in $CATALINA_HOME/lib and not included in each war.
2151 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
2152 More information about this issue can be found in the Tomcat 6 release
2153 notes in the "JNI Based Applications" section:
2155 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
2157 * README: Remove note about this issue. Deployment info should really
2158 be on the wiki anyway so I'll add it right now.
2159 * pom.xml: Change java-libglom dependency from compile to provided so
2160 that it's copied in to the packaged war.
2162 2011-03-09 Ben Konrath <ben@bagu.org>
2164 Change to using a neutral locale for currency, date and time formatting.
2166 This solves the problem of currency values being represented without a
2167 space between the currency code and the number (e.g. "EUR5.89" is now
2168 represented as "EUR 5.89"). More work is required when we implement
2169 a locale preference setting.
2171 * TODO: Add note about currency formatting issues with different
2173 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
2174 to using the neutral ROOT locale.
2176 2011-03-09 Ben Konrath <ben@bagu.org>
2178 Add support for currency codes that are not ISO 4217 codes.
2180 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
2181 the currency code defined in the glom file when it's not 3 characters
2182 long or when Java doesn't recognize the string as an ISO 4217 code.
2184 2011-03-08 Ben Konrath <ben@bagu.org>
2186 Remove test classes, launch configurations and configuration.
2188 The test stuff was getting in the way when creating the war. To make
2189 the war file you can now do 'mvn clean package'. The packaged war file
2190 will be in the target directory.
2192 * .classpath: Remove unused classpathentry for tests and i18n.
2193 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
2194 property. Don't run test or i18n goals when packaging the war.
2195 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
2200 * OnlineGlomTest-dev.launch:
2201 * OnlineGlomTest-prod.launch:
2202 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
2203 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
2205 2011-03-07 Ben Konrath <ben@bagu.org>
2207 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
2209 These fixes allow me to use 'mvn deploy' to create the war file.
2211 * .classpath: This generated config has been updated by Eclipse. This
2212 change was probably triggered by me updating from Eclipse 3.6.1 to
2214 * .gitignore: Add entry to ignore the directory
2215 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
2216 * .project: The generated config has been updated by Eclipse. This
2217 change was probably triggered by me updating from Eclipse 3.6.1 to
2219 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
2220 so that Eclipse doesn't complain
2221 * pom.xml: Update to gwt-maven-plugin 2.2.0.
2222 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
2223 'tests' directory to 'client' directory. This is the new
2224 gwt-maven-plugin convension.
2225 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
2226 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
2228 2011-03-07 Ben Konrath <ben@bagu.org>
2230 Add support for horizontal alignment in the LayoutList columns.
2232 * TODO: Remove item about horizontal alignment. Add item about
2233 improvements to ColumnInfo.
2234 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
2235 alignment on the columns. Use ColumnInfo RPC object get the column
2236 title and horizontal alignment.
2237 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
2238 LayoutListView creation with ColumnInfo RPC object.
2239 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
2240 a ColumnInfo object for every LayoutList columnn. Convert the
2241 FieldFormatting.HorizontalAlignment to the correct
2242 ColumnnInfo.HorizontatlAlignment with the new
2243 getColumnInfoHorizontalAlignment helper method.
2244 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
2245 to encapsulate column information like alignment and title. This
2246 could be used to set the colour instead of on a per cell field basis.
2247 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
2248 column title storage and retrieval with ColumnInfo.
2250 2011-03-04 Ben Konrath <ben@bagu.org>
2252 Add support for column sorting.
2254 * src/main/java/org/glom/web/client/LayoutListView.java: Change
2255 AsynDataProvider to be an anonymous inner class. Use new
2256 getSortedTableData RPC method when column sort is requested. Set all
2257 columns sortable and add an AsyncHandler to activate sorting in the
2259 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
2260 method getSortedTableData(). Cleanup other method signatures.
2261 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
2262 new method getSortedTableData(). Cleanup other method signatures.
2263 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2264 Implement getSortedTableData() and getTableData() methods by using a
2265 private helper method with the appropriate parameters filled in. Use
2266 user supplied sort clause when supplied, otherwise fall back to
2267 sorting by the primary key. Move destroy() method to be underneath
2268 constructor for readability. Cleanup comments.
2270 2011-03-03 Ben Konrath <ben@bagu.org>
2272 Add support for colour text and colour backgrounds to the layout list cells.
2274 Only the cell backgrounds are coloured which leaves a gap between the
2275 cells that isn't coloured. I need to figure out a way to set
2276 'style=background-colour:' on the whole column rather than just the
2279 * TODO: Add a note about colouring the background of the whole column.
2280 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
2281 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
2282 render the coloured text and backgrounds. Use GlomField[] for the row type.
2283 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
2285 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
2286 GlomField[] for the row type.
2287 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
2288 GlomField[] for the row type. Set the text, text colour and background
2289 colour in the GlomField objects as specified in the glom document. Add
2290 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
2291 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
2292 the glom field text, foreground colour and background colour.
2294 2011-03-02 Ben Konrath <ben@bagu.org>
2296 Don't display hidden tables in the combo box.
2298 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
2300 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
2301 code to ignore hidden tables using ArrayLists for the table names and
2303 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
2304 tableNames to use ArrayLists instead of String[]. Update getter and setter
2307 2011-03-01 Ben Konrath <ben@bagu.org>
2309 Add support for Date and Time number types.
2311 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2312 Implement formatting for Date and Time values. Change the default glom
2313 file to small business example.
2315 2011-03-01 Ben Konrath <ben@bagu.org>
2317 Add support for formatting glom types as specified in the glom file.
2319 Formatting isn't finished yet - I still need to add support for Date
2322 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
2323 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
2324 checks for null values in JDBC cleanup code and catch all exceptions
2325 instead of just SQLExceptions.
2326 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
2329 2011-03-01 Ben Konrath <ben@bagu.org>
2331 Use GWT 2.2.0 instead of 2.1.1.
2333 * pom.xml: Change GWT version numbers.
2335 2011-03-01 Ben Konrath <ben@bagu.org>
2337 A few small code cleanups.
2339 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
2341 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
2342 unnecessary object creation in constructor.
2343 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
2344 unnecessary object creation in constructor.
2346 2011-02-28 Ben Konrath <ben@bagu.org>
2348 Add file for TODO list.
2352 2011-02-18 Ben Konrath <ben@bagu.org>
2354 Enable the CellTable Pager when more than 20 rows need to be viewed.
2356 The Pager will automatically become active when the results are larger
2357 than the CellTable size which is currently set to 20 lines.
2359 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
2360 name on debug statment in RPC call in LayoutListDataProvider, add
2361 numRows parameter to LayoutListView constructor, propperly set rowCount
2363 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
2364 name on debug statment in RPC call, use LayoutListTable object in RPC
2365 calls, pass rowCount to LayoutListView.
2366 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
2367 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
2369 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
2370 interface for changes in OnlineGlomService.
2371 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
2372 getLayoutListHeaders() to getLayoutListTable() and return
2373 LayoutListTable. Using this object allows me to pass other information
2374 about the LayoutList like the expected number of rows in the result set.
2375 The Connection object from the connection pool is now propperly closed.
2376 Only the requested number of lines are returned to the client in
2378 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
2379 GlomTable and add columnTitles and numRows.
2381 2011-02-18 Ben Konrath <ben@bagu.org>
2383 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
2385 This is a small performance boost. I'll use GlomTable to get the required
2386 layoutlist information.
2388 * src/main/java/org/glom/web/client/OnlineGlom.java:
2389 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2390 * src/main/java/org/glom/web/shared/GlomDocument.java:
2392 2011-02-18 Ben Konrath <ben@bagu.org>
2394 Add option to turn off formatting in JDT formatter preferences.
2396 * .settings/org.eclipse.jdt.core.prefs:
2398 2011-02-18 Ben Konrath <ben@bagu.org>
2400 Rename LayoutList to LayoutListView.
2402 I'm working towards setting things up to easily use MVP when the time
2405 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
2407 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
2410 2011-02-17 Ben Konrath <ben@bagu.org>
2412 Move LayoutListDataProvider class into LayoutList.java.
2414 * src/main/java/org/glom/web/client/LayoutList.java:
2416 2011-02-17 Ben Konrath <ben@bagu.org>
2418 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
2420 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
2422 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
2423 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
2424 from LibGlomServer.java.
2425 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
2426 Rename from LibGlomServiceAsync.java.
2427 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2428 Rename from LibGlomServiceImpl.java.
2429 * src/main/webapp/WEB-INF/web.xml: Update configuration.
2431 2011-02-17 Ben Konrath <ben@bagu.org>
2433 Update JDT settings.
2435 * .settings/org.eclipse.jdt.core.prefs:
2437 2011-02-17 Ben Konrath <ben@bagu.org>
2439 Move GWT-RPC objects to shared package (where they should be).
2441 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
2442 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
2443 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
2444 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
2445 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
2446 org.glom.web.shared package.
2447 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
2448 org.glom.web.shared package.
2449 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
2450 directory in compilation to javascript.
2452 2011-02-16 Ben Konrath <ben@bagu.org>
2454 Add sort clause to the sql query that grabs table information.
2456 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
2457 if one of the columns is a primary key.
2459 2011-02-16 Ben Konrath <ben@bagu.org>
2461 Disable generateAsync feature of gwt-maven.
2463 The generated interface does not correctly match the methods in LibGlomService
2464 and the generated singleton Util inner-class doesn't respect the servlet
2467 * pom.xml: Turn off generateAsync feature.
2468 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
2469 with singleton Util inner-class.
2471 2011-02-14 Ben Konrath <ben@bagu.org>
2473 Add LGPL v3 licence notices.
2475 Followed directions listed here:
2476 http://www.gnu.org/licenses/gpl-howto.html
2478 * COPYING: This file is a copy of the GPL v3.
2479 * COPYING.LESSER: This file is a copy of the LGPL v3.
2480 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
2482 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
2484 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
2486 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
2488 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
2490 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
2492 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
2495 2011-02-14 Ben Konrath <ben@bagu.org>
2497 Use ArrayList instead of Array in GWT-RPC calls.
2499 Apparently this gives a slight performance boost to the compiled
2502 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
2504 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
2507 2011-02-14 Ben Konrath <ben@bagu.org>
2509 Access data from a postgres db rather than the example glom file.
2511 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
2512 compile down to obfuscated javascript.
2513 * pom.xml: Add c3p0 and postgres JDBC libraries.
2514 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
2515 using a postgres db accessed through the c3p0 connection pooling library.
2517 2011-02-14 Ben Konrath <ben@bagu.org>
2519 Update Java formatter settings.
2521 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
2523 2011-02-02 Ben Konrath <ben@bagu.org>
2525 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
2527 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
2529 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
2530 the compiled webapp directory that Eclipse uses as we're using Maven now.
2531 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
2532 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
2534 * pom.xml: Format file, change target Java version to 1.6.
2536 2011-02-02 Ben Konrath <ben@bagu.org>
2538 Add information about a deployment related issue.
2540 * README: Add Notes section with the problem outlined.
2542 2011-02-02 Ben Konrath <ben@bagu.org>
2544 Call Glom.libglom_deinit() when the servlet is shutdown.
2546 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
2547 Glom.libglom_deinit() to destroy() method.
2549 2011-01-28 Ben Konrath <ben@bagu.org>
2551 Use generated Util class to get the RPC Async interface.
2553 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
2555 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
2556 getInstance() method to get a reference to the RPC Async interface.
2557 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
2558 getInstance() method to get a reference to the RPC Async interface, remove
2559 the now unused getLibGlomServiceProxy() method.
2561 2011-01-27 Ben Konrath <ben@bagu.org>
2563 Cleanup ChangeLog entry from previous commit.
2565 * ChangeLog: Group logical changes together and add comments.
2567 2011-01-25 Ben Konrath <ben@bagu.org>
2569 Convert to gwt-maven project.
2571 * .gitignore: Update for new project structure.
2572 * README: New file with a link to the online documentation.
2573 * pom.xml: The generated maven configuration file with some tweaks.
2575 Add / update Eclipse settings. These files are a merge of the files that
2576 were generated with the gwt-maven plugin and the files we were previously
2580 * .settings/.jsdtscope:
2581 * .settings/com.google.gdt.eclipse.core.prefs:
2582 * .settings/com.google.gwt.eclipse.core.prefs:
2583 * .settings/org.eclipse.jdt.core.prefs:
2584 * .settings/org.eclipse.wst.common.component:
2585 * .settings/org.eclipse.wst.common.project.facet.core.xml:
2586 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
2587 * .settings/org.maven.ide.eclipse.prefs:
2588 * OnlineGlomTest-dev.launch:
2589 * OnlineGlomTest-prod.launch:
2591 Java source files moved from the 'src' directory to the directory structure
2593 * src/main/java/org/glom/web/client/GlomDocument.java:
2594 * src/main/java/org/glom/web/client/GlomTable.java:
2595 * src/main/java/org/glom/web/client/LayoutList.java:
2596 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
2597 * src/main/java/org/glom/web/client/LibGlomService.java:
2598 * src/main/java/org/glom/web/client/OnlineGlom.java:
2599 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
2601 Non-functional property file used for translations. I included this as
2602 reminder that it's something I need to sort out.
2603 * src/main/resources/org/glom/web/client/Messages.properties:
2605 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
2606 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
2608 The servlet configuration files moved from the 'war' directory.
2609 * src/main/webapp/OnlineGlom.css:
2610 * src/main/webapp/OnlineGlom.html:
2611 * src/main/webapp/WEB-INF/web.xml:
2613 Generated test files with most of the code commented out. I included these
2614 so that it's easy to add tests when we're ready for them.
2615 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
2616 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
2618 2011-01-25 Ben Konrath <ben@bagu.org>
2620 Remove unused println.
2622 * src/org/glom/web/server/LibGlomServiceImpl.java:
2624 2011-01-25 Ben Konrath <ben@bagu.org>
2626 Add project specific JDT settings.
2628 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
2629 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
2631 2011-01-25 Ben Konrath <ben@bagu.org>
2633 Populate celltable with example data.
2635 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
2636 * src/org/glom/web/client/GlomTable.java: Correct formatting.
2637 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
2638 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
2639 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
2640 asynchronously gets the example data.
2641 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
2642 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
2643 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
2644 curently selected table to be retrieved by other widgets.
2645 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
2646 implement getTableData() in a hacky way. This method needs to be updated
2647 to grab information from the database when database creating is
2650 2011-01-20 Ben Konrath <ben@bagu.org>
2652 Set table headers when table dropBox changes.
2654 * src/org/glom/web/client/GlomDocument.java: Correct some method
2656 * src/org/glom/web/client/LibGlomService.java: Add method
2657 to get list layout field names.
2658 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
2659 to get list layout field names.
2660 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
2661 widget for list layout table.
2662 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
2663 the table drop box and add new updateTable() method to asynchronously
2664 get the layout list field names for the currently selected table.
2665 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
2666 implementation of getLayoutListHeaders() method.
2667 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
2669 2011-01-18 Ben Konrath <ben@bagu.org>
2671 Make a listBox with table titles instead of the flexTable demo.
2673 This is the start of something more useful.
2675 * .classpath: Exclude a bunch of packages from the JVM that are
2676 getting in the way of the Eclipse content assist.
2677 * src/org/glom/web/client/GlomDocument.java:
2678 * src/org/glom/web/client/GlomTable.java:
2679 * src/org/glom/web/client/LibGlomService.java:
2680 * src/org/glom/web/client/LibGlomServiceAsync.java:
2681 * src/org/glom/web/client/OnlineGlom.java:
2682 * src/org/glom/web/server/LibGlomServiceImpl.java:
2683 * war/OnlineGlom.html:
2684 * war/WEB-INF/web.xml:
2686 211-01-13 Ben Konrath <ben@bagu.org>
2688 Update to new java-libglom API.
2690 * .gitignore: Ignore OnlineGlom.war.
2691 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
2693 2010-12-20 Ben Konrath <ben@bagu.org>
2695 Add some basic style to the table listing.
2697 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
2698 header, print useful error message on async callback failure.
2699 * war/OnlineGlom.css: Add style for table header, remove defaults
2700 provided by the Eclipse project wizard.
2702 2010-12-20 Ben Konrath <ben@bagu.org>
2704 Load example file from installed glom dir.
2706 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
2707 provided by java-libglom to find the example file.
2709 2010-12-20 Ben Konrath <ben@bagu.org>
2711 Update Eclipse settings.
2714 * .settings/com.google.gdt.eclipse.core.prefs:
2715 * .settings/com.google.gwt.eclipse.core.prefs:
2717 2010-12-17 Ben Konrath <ben@bagu.org>
2721 * .classpath: New file.
2722 * .gitignore: New file.
2723 * .project: New file.
2724 * .settings/com.google.gdt.eclipse.core.prefs: New file.
2725 * .settings/com.google.gwt.eclipse.core.prefs: New file.
2726 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
2727 * src/org/glom/web/client/GlomTable.java: New file.
2728 * src/org/glom/web/client/OnlineGlom.java: New file.
2729 * src/org/glom/web/client/TableNameService.java: New file.
2730 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
2731 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
2732 * war/OnlineGlom.css: New file.
2733 * war/OnlineGlom.html: New file.
2734 * war/WEB-INF/web.xml: New file.
2735 * war/images/glom.png: New file.