1 2011-11-18 Ben Konrath <ben@bagu.org>
3 Add boolean example to HTML table mockup.
5 * mockups/details-view-html-tables-text-entries.html:
7 2011-11-17 Ben Konrath <ben@bagu.org>
9 Ensure the pager buttons are always visible for related lists.
11 To accomplish this, I've turned off text wrapping in the list view and
12 related list tables for both the header and data text. The related list
13 table now has a fixed layout so the it doesn't overflow its container.
14 This is required to ensure that the cell text is clipped when it
15 overflows the cell and an ellipsis is added to the right side of the
16 cell when text is clipped.
18 A fixed table layout for the related list table in the details view
19 seems what we want for the details view anyway, so the side-effect is
22 The ellipsis will only be displayed in Firefox >= 7.
26 https://bugzilla.gnome.org/show_bug.cgi?id=662930
28 * src/main/java/org/glom/web/client/ui/cell/NumericCell.java:
29 * src/main/java/org/glom/web/client/ui/cell/TextCell.java: Add
30 'overflow: hidden; text-overflow: ellipsis;' CSS properties to the table
32 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
33 Set the 'table-layout: fixed' CSS property to the related list table.
34 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Set the
35 'white-space: nowrap;' CSS property on both the list view and the
38 2011-11-16 Ben Konrath <ben@bagu.org>
40 Rework the fix for empty notebook tab labels.
42 Setting the empty group titles with its name caused problems for the
43 details layout. Instead of using libglom's
44 LayoutItem.get_title_or_name(), the LayoutItem name is explicitly sent
45 to the client when the title is empty. This allows the Notebook to use
46 the name when the title is empty without affecting anything else.
48 * src/main/java/org/glom/web/client/ui/details/Notebook.java:
49 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
51 2011-11-16 Ben Konrath <ben@bagu.org>
53 Set group titles with name when title is empty.
55 This fixes a problem with an empty notebook tab label in the Lesson
56 Planner document. The forth tab in the notebook should be "Internet":
58 http://bagu.org:8080/OnlineGlom/#details:document=lesson-planner&table=teachers&value=0
60 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Use
61 libglom's LayoutItem.get_title_or_name() to fill in the LayoutGroup
64 2011-11-16 Ben Konrath <ben@bagu.org>
66 Remove whitespace from the configured username properties.
68 This assumes that usernames won't have whitespace at the beginning
69 or end. But I think this is a reasonable assumption.
71 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
72 String.trim() to remove the whitespace from the username properties.
74 2011-11-15 Ben Konrath <ben@bagu.org>
76 Add details view mockup with HTML tables and text entries.
78 This is from the attachment on this bug:
80 https://bugzilla.gnome.org/show_bug.cgi?id=663109
82 * mockups/details-view-html-tables-text-entries.html:
84 2011-11-15 Ben Konrath <ben@bagu.org>
86 Add space between the columns of the flow table.
90 https://bugzilla.gnome.org/show_bug.cgi?id=662918
92 * src/main/java/org/glom/web/client/ui/details/FlowTable.java: Add a 1%
93 space between columns in the flow table.
95 2011-11-15 Ben Konrath <ben@bagu.org>
97 Add backup files to the .gitignore.
99 * .gitignore: Ignore files that end with ~.
101 2011-11-09 Ben Konrath <ben@bagu.org>
103 Use latest release of gwt-log.
105 Gwt-log releases are now being submitted to the maven central
106 repository so manual installation of the jar is no longer required.
108 * pom.xml: Update version and groupId of gwt-log dependency.
110 2011-10-31 Ben Konrath <ben@bagu.org>
112 Don't use GWT numeric formatting to override the glom currency formatting.
114 Currencies are now displayed like they are in Glom. See this bug:
116 https://bugzilla.gnome.org/show_bug.cgi?id=646216
118 * src/main/java/org/glom/web/client/Utils.java: Remove GWT currency
120 * src/main/java/org/glom/web/client/ui/cell/NumericCell.java: Add
121 currency code to constructor and set it when the cell is rendered.
122 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Add the
123 currency code to the constructor of the NumericCell.
125 2011-10-27 Ben Konrath <ben@bagu.org>
127 Require the latest release of java-libglom (1.17.4).
131 2011-10-26 Ben Konrath <ben@bagu.org>
133 Add style to Notebook that matches current theme.
135 It's not the best style in the world but it's better than the default.
137 * src/main/java/org/glom/web/client/ui/details/Notebook.java: Add some
138 padding at the bottom of the child widgets.
139 * src/main/webapp/style.css: Add style for the Notebook.
141 2011-10-26 Ben Konrath <ben@bagu.org>
143 Move servlet initialization code to overridden init method.
145 This is half of the solution to getting proper error messages
146 displayed when configuration errors occur. Here's the relevant bug:
148 https://bugzilla.gnome.org/show_bug.cgi?id=662792
150 The rest of the solution involves surrounding the init method with a
151 try/catch block and setting a global variable with the error /
152 exception. A new async method should be created to retrieve and display
153 the error message / exception.
155 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Move
156 code from constructor to init method adding exceptions as needed.
158 2011-10-26 Ben Konrath <ben@bagu.org>
160 Add script to monitor and restart tomcat if required.
162 * utils/check-and-recover-tomcat.py: New file.
164 2011-10-26 Ben Konrath <ben@bagu.org>
166 Display the correct number of data items in the pager.
170 https://bugzilla.gnome.org/show_bug.cgi?id=661441
172 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
173 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
174 The implementation is the same for both tables: Keep track of the
175 number of non-empty rows and fire and RowCountChangeEvent after the data has
177 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Add a
178 custom Pager class that subclasses SimplePager to handle displaying
179 the correct number when empty rows have been added.
181 2011-10-26 Ben Konrath <ben@bagu.org>
183 Correct error in previous commit.
185 * src/main/java/org/glom/web/client/activity/ListActivity.java: Remove
186 eventBus parameter from listView.setCellTable().
188 2011-10-26 Ben Konrath <ben@bagu.org>
190 Fix error in TODO comment.
192 * src/main/java/org/glom/web/client/activity/ListActivity.java:
194 2011-10-24 Ben Konrath <ben@bagu.org>
196 Create Notebook widgets to the details view.
198 This isn't finished just yet - I still need to create a reasonable
199 style to match the current theme.
201 * src/main/java/org/glom/web/client/Utils.java: Add method for
202 calculating the height of a widget. This is used in the Notebook class.
203 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Update for
204 new constructor method in Group.
205 * src/main/java/org/glom/web/client/ui/details/Group.java: Add new
206 method for creating child widget that can be used by subclasses
207 like Notebook. New constructor that allows disabling the group
208 titles - Notebooks don't set a group title for their child groups.
209 * src/main/java/org/glom/web/client/ui/details/Notebook.java: New class
210 to make Notebooks using GWT's TabLayoutPanel.
211 * src/main/java/org/glom/web/client/ui/details/Portal.java: New
212 constructor that allows disabling the group titles.
213 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Create the
214 LayoutItemNotebook DTO.
215 * src/main/java/org/glom/web/shared/layout/LayoutItemNotebook.java: New
216 DTO for Notebooks. It's just an empty class for now but we might need
217 it to transfer some specific information in the future.
219 2011-10-21 Ben Konrath <ben@bagu.org>
221 Add navigation buttons to related list tables.
223 * src/main/java/org/glom/web/client/OnlineGlomService.java:
224 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
225 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add new
226 method getSuitableRecordToViewDetails() for getting the table name
227 and primary key value for related list navigation buttons.
228 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
229 private cell renderer class to get the navigation information for
230 related list tables from the server. Extract the navigation
231 processing code from the details cell navigation and use it for the
232 related list navigation as well.
233 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Add private
234 cell renderer class for the details open buttons. This was needed
235 because the related list navigation buttons and the list view
236 navigation buttons need to react differently when clicked.
237 * src/main/java/org/glom/web/client/ui/cell/OpenButtonCell.java: Remove
238 the onEnterKeyDown() method because it's now overriden in the
239 subclasses that are specific to the related list tables and the list
241 * src/main/java/org/glom/web/client/ui/details/Portal.java: Increase
242 the vertical size a little because the buttons add a bit of vertical
243 space to table. This is not a perfect solution because the vertical
244 size of with table fewer than 5 rows will be a little smaller.
245 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Update for
246 changes in how navigation buttons are handled.
247 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Implement
248 getSuitableRecordToViewDetails() using the new RelatedListNavigation
249 database access object.
250 * src/main/java/org/glom/web/server/database/DBAccess.java: Move code
251 to find the portal for a given relationship name from
252 RelatedListDBAccess. Add method to find a primary key field for a
254 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
255 Move code to find the portal for a given relationship name to
257 * src/main/java/org/glom/web/server/database/RelatedListNavigation.java:
258 New file: database access object for getting the related list
259 navigation information (the table name and the primary key value).
260 * src/main/java/org/glom/web/shared/NavigationRecord.java: New file:
261 DTO for transferring a table name to navigate to and a primary key
263 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: Add
264 boolean and getter/setter to specifies if the related list should add
267 2011-10-24 Murray Cumming <murrayc@murrayc.com>
269 Use the master branch of java-libglom
271 * pom.xml: Depend on java-libglom 1.19 instead.
273 This is the master branch. See also the libglom-1-18 branch.
275 2011-10-11 Ben Konrath <ben@bagu.org>
277 Enable the open navigation button when the data has been set.
279 This avoids having active buttons that don't do anything when the data
282 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java:
284 2011-10-11 Ben Konrath <ben@bagu.org>
286 Use IsWidget interface for FlowTableItem.
288 * src/main/java/org/glom/web/client/ui/details/FlowTable.java: Change
289 FlowTableItem.getWidget() to asWidget() from the IsWidget interface.
291 2011-10-11 Ben Konrath <ben@bagu.org>
293 Remove GWT styling from open button in details view.
295 There are still some issues with how the details cell is arranged but
296 this should be made to match Glom 1.20. I'm going to leave fixing this
297 until I have Glom 1.20 up and running.
299 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java: Set
300 style name on open button.
301 * src/main/webapp/style.css: Move and edit details-navigation class.
302 Re-arrange some classes to make them appear in the same order as the
305 2011-10-07 Ben Konrath <ben@bagu.org>
309 * .gitignore: Ignore new cache directory.
310 * .settings/com.google.gwt.eclipse.core.prefs: Update Eclipse settting.
311 * pom.xml: Change GWT and maven plugin to 2.4.0.
312 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Update doctype for
314 * src/main/java/org/glom/web/client/ClientFactory.java:
315 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
316 * src/main/java/org/glom/web/client/OnlineGlom.java:
317 Update source for API changes.
318 * utils/build-onlineglom-war.sh: Remove cache directory before the
321 2011-10-07 Ben Konrath <ben@bagu.org>
323 Add navigation buttons in the details view.
325 This isn't finished but I thought I'd commit what I have as it's a
326 pretty good start. I still need to:
328 1. Change the style so that it fits better into the current theme
329 2. Adjust the details cell to expand as much as possible.
331 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
332 click handlers to navigation buttons in the DetailsCells. Create a
333 refreshData() method to get just the data from the server without the
335 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
336 Update the tableSelector and browser title when the table name
337 changes without using the tableSelector.
338 * src/main/java/org/glom/web/client/ui/DetailsView.java:
339 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Rename
340 getDetailsCells() to getCells(). Update variable names.
341 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java: Add
342 method to set click handler on navigation button. Rename a few
343 variables. Add navigation buttons where needed.
344 * src/main/java/org/glom/web/client/ui/details/Group.java: Rename a few
345 variables and methods.
346 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Set the
347 navigation boolean and navigation table as required in the
349 * src/main/java/org/glom/web/shared/layout/LayoutItemField.java: Add
350 variables for navigation along with getter/setter methods.
352 2011-10-07 Ben Konrath <ben@bagu.org>
354 Rename Field to DetailsCell.
356 This is a refactor-only commit. No functionality has been added or
359 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
360 Update variable and method names.
361 * src/main/java/org/glom/web/client/ui/DetailsView.java:
362 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Update
363 variable and method names.
364 * src/main/java/org/glom/web/client/ui/details/DetailsCell.java:
366 * src/main/java/org/glom/web/client/ui/details/Group.java: Update
367 variable and method names.
369 2011-10-07 Ben Konrath <ben@bagu.org>
371 Create separate methods for layout and data the details view.
373 This is a refactor-only commit. No functionality has been added or
376 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: New
377 private methods: setData(), createLayout().
379 2011-10-07 Ben Konrath <ben@bagu.org>
381 Don't use TableSelectorImpl implementation details in TableSelectorActivity.
383 This is part of a change to get navigation buttons in the details view
384 but it should have been done this way from the start.
386 * src/main/java/org/glom/web/client/activity/ListActivity.java: Update
387 for method name change in TableSelectionView.
388 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
389 Create TableChangeEvent and set the browser title using the
390 TableSelectionView API.
391 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
392 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
393 Change getSelectedTable() to getSelectedTableName(). Add
394 getSelectedTableTitle().
396 2011-10-07 Ben Konrath <ben@bagu.org>
398 Use primaryKeyValue naming convention in constructor of DetailsPlace.
400 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
402 2011-10-07 Ben Konrath <ben@bagu.org>
404 Update TableChangeEvent to use newTableName naming convention.
406 This makes the class more consistent with GWT naming conventions.
408 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
409 Update for method name change in TableChangeEvent.
410 * src/main/java/org/glom/web/client/activity/ListActivity.java: Update
411 for method name change in TableChangeEvent.
412 * src/main/java/org/glom/web/client/event/TableChangeEvent.java: Update
413 newTableName variable and getter method. Make toDebugString()
416 2011-09-30 Ben Konrath <ben@bagu.org>
418 Disable the pager in the list tables when the data row count is less than the minimum.
420 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
421 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
423 2011-09-30 Ben Konrath <ben@bagu.org>
425 Add empty rows to the end of related list and list view tables.
427 I also extracted the cell rendering classes from the ListTable because
428 the code was becoming a little crazy with all the anonymous inner
429 classes. My plan is to use these cell rendering classes in the details
430 view as well so this refactor will be needed for that change.
432 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Only
433 set the row count in related list tables if the data has more rows
434 than the minimum number of rows visible.
435 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Only set the
436 row count in list view tables if the data has more rows than the
437 minimum number of rows visible.
438 * src/main/java/org/glom/web/client/ui/cell/BooleanCell.java: New class
439 for rendering TYPE_BOOLEAN cells. The code was extracted from the
441 * src/main/java/org/glom/web/client/ui/cell/NumericCell.java: New class
442 for rendering TYPE_NUMERIC cells. The code was extracted from the
444 * src/main/java/org/glom/web/client/ui/cell/OpenButtonCell.java: New
445 class for rendering cells with buttons in list views. The code was
446 extracted from the ListTable class.
447 * src/main/java/org/glom/web/client/ui/cell/TextCell.java: New class
448 for rendering TYPE_TEXT cells. The code was extracted from the
450 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
451 Add empty rows to the end of the data if required. Implement
452 ListTable.getMinNumVisibleRows().
453 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Extract
454 cell renderer code to public classes. Return null in
455 Column.getValue() for empty rows. Add new abstract method:
456 getMinNumVisibleRows(). Move code to set the row count of the list view
457 table to ListViewImpl.
458 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java: Add
459 empty rows to the end of the data if required. Implement
460 ListTable.getMinNumVisibleRows().
463 2011-09-27 Ben Konrath <ben@bagu.org>
465 Use GWT.log for client-side debugging statements.
467 These are optimized out when deployed so I should have used this method
468 in the first place. These statements will eventually be replaced with some sort
469 of notification in the browser.
471 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
472 * src/main/java/org/glom/web/client/activity/ListActivity.java:
473 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
474 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
475 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
477 2011-09-27 Ben Konrath <ben@bagu.org>
479 Put tableselector on the right, back to list link on right.
481 The idea is that the table selector is acting like a label for the
482 currently displayed table so it should be placed below the document title. This
483 puts the table title in a similar position to where it is in Glom.
485 * mockups/details-contacts.html:
486 * mockups/details-projects.html:
487 * mockups/listview-contacts.html:
488 * mockups/listview-projects.html:
490 Update mockups to match how the interfaces currently look.
491 * src/main/webapp/style.css: Swap positions of backlink with the table
492 selector. Add some space on the left side of the table selector to
493 line things up with the document title.
495 2011-09-27 Ben Konrath <ben@bagu.org>
497 Add field colouring to details view.
499 This change re-works how field colouring works. The colour formatting
500 information is now set to the client with the layout information instead of
501 with the data. This eliminates the need to send the same colour strings for
502 data in list view column when colour information is set.
504 In order to set an alternate colour for negative numeric values, the
505 number is now sent to client and formatted with the GWT NumberFormat class.
507 This change also fixes:
509 https://bugzilla.gnome.org/show_bug.cgi?id=659752
511 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Add the GWT
512 internationalization framework which is needed for client side numeric
514 * src/main/java/org/glom/web/client/Utils.java: New file for some
515 client static utility methods.
516 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Pass
517 the DataItem object to the Field class. Use a utility method to
518 create the foreignKeyValue string.
519 * src/main/java/org/glom/web/client/ui/details/Field.java: Set
520 alignment and text colours in the constructor. Add setData(DataItem)
521 method. Remove setText(String) method.
522 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Add the
523 colour information to GlomTextCell. Create and use GlomNumberCell for
524 rendering numbers. Use utility method to get the string for the
525 primary key of the key provider. Re-work how the horizontal alignment
527 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Add
528 formatting to layout information. Methods for converting the libglom
529 formatting information were moved from DBAccess.
530 * src/main/java/org/glom/web/server/database/DBAccess.java: Remove
531 numeric formatting (it's now done on the client side). Don't set text
532 colours in DataItem. Move libglom formatting conversion methods to
534 * src/main/java/org/glom/web/shared/DataItem.java: Remove fields and
535 getters/setters for text colour information.
536 * src/main/java/org/glom/web/shared/GlomNumericFormat.java: New file
537 for transferring the libglom NumericFormat information to the client.
538 * src/main/java/org/glom/web/shared/layout/Formatting.java: Add fields
539 and getters/setters for: GlomNumericFormat, background colour and
540 foreground colour strings.
542 2011-09-26 Ben Konrath <ben@bagu.org>
544 Simplify code that iterates through the LayoutGroup.
546 * src/main/java/org/glom/web/client/ui/list/ListTable.java:
548 2011-09-26 Ben Konrath <ben@bagu.org>
550 Accept Eclipse formatting for OnlineGlomServiceAsync.
552 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
554 2011-09-26 Ben Konrath <ben@bagu.org>
556 Don't use the ListDBAccess classes to get the primary key layout information.
558 This was causing a bug where the wrong index for the hidden primary key
559 was being sent to the client.
561 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Find the
562 primary key while creating the LayoutGroup DTO. Create a
563 LayoutItemField DTO for hidden primary keys. Don't use the
564 RelatedListDBAccess because it was only used for getting the primary
566 * src/main/java/org/glom/web/server/database/DBAccess.java: Change the
567 access modifier from public to protected for getPrimaryKeyField() and
568 getPrimaryKeyLayoutItemField().
569 * src/main/java/org/glom/web/server/database/ListDBAccess.java: Remove
570 abstract method getExpectedResultSize() because RelatedListDBAccess
571 doesn't have enough info to implement it.
572 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
573 Remove @Override for getExpectedResultSize().
574 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
575 Remove method getExpectedResultSize().
577 2011-09-23 Ben Konrath <ben@bagu.org>
579 Log which layout (list or details) the ignored item is from.
581 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
583 2011-09-23 Ben Konrath <ben@bagu.org>
585 Remove annotations that turn off code formatting in DataItem.
587 * src/main/java/org/glom/web/shared/DataItem.java:
589 2011-09-23 Ben Konrath <ben@bagu.org>
591 Rename GlomField to DataItem and update associated methods.
593 This is a rename-only refactor. No functionality has been added or
596 * src/main/java/org/glom/web/client/OnlineGlomService.java:
597 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
598 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
599 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
600 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
601 * src/main/java/org/glom/web/client/ui/list/ListTable.java:
602 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
603 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
604 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
605 * src/main/java/org/glom/web/server/database/DBAccess.java:
606 * src/main/java/org/glom/web/server/database/DetailsDBAccess.java:
607 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
608 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
609 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
610 * src/main/java/org/glom/web/shared/DataItem.java:
611 * src/main/java/org/glom/web/shared/DetailsLayoutAndData.java:
612 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java:
614 2011-09-23 Ben Konrath <ben@bagu.org>
616 Rename GlomDocument to DocumentInfo and update associated methods.
618 This is a rename-only refactor. No functionality has been added or
621 * src/main/java/org/glom/web/client/OnlineGlomService.java:
622 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
623 * src/main/java/org/glom/web/client/activity/ListActivity.java:
624 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
625 * src/main/java/org/glom/web/server/ConfiguredDocument.java:
626 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
627 * src/main/java/org/glom/web/shared/DocumentInfo.java:
629 2011-09-20 Ben Konrath <ben@bagu.org>
631 Require java-libglom 1.17.3.
633 This picks up the fix for the seg fault problem with the Scenes table
634 in the Openismus Film Manager example.
638 2011-09-20 Ben Konrath <ben@bagu.org>
640 Change the way sort clause is added for primary key when no sort clause is requested.
642 The primary key is now added to the LayoutFieldVector (fieldsToGet)
643 before the sort clause is created. When a sort clause is not requested, the
644 sort clause is created by finding the primary key in the LayoutFieldVector
647 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
649 2011-09-20 Ben Konrath <ben@bagu.org>
651 Log error message if no documents are found in the configured directory.
653 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also:
654 Extract the glom file extension string to a private static final class
655 variable (mostly as syntactic sugar). Accept a minor formatting change.
656 * src/main/resources/onlineglom.properties: Add '/glomfile' to end of
657 the example glom.document.directory configuration property to make it
658 more clear that it can any directory, not just the home directory.
660 2011-09-18 Ben Konrath <ben@bagu.org>
662 Add related lists to details view.
664 The related list table has support for paging and sorting just like the
665 table in the list view.
667 * pom.xml: Require java-libglom 1.17.2 for the new methods to build the
668 SQL queries for the related list tables.
669 * src/main/java/org/glom/web/client/OnlineGlomService.java:
670 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
671 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
672 Rename getList methods to getListView and add comments. Remove
673 getDetailsLayout() as it's not used anymore. Add note to getDetailsData() about
674 it being unused. Add methods: getDetailsLayoutAndData(),
675 getSortedRelatedListData(), getRelatedListData(), getRelatedListRowCount()
676 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
677 Create the layout and set the data for the fields in one async call
678 instead of two. Create related lists where appropriate.
679 * src/main/java/org/glom/web/client/activity/ListActivity.java: Changes
680 for method name changes in OnlineGlomService.
681 * src/main/java/org/glom/web/client/ui/DetailsView.java:
682 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Rename
683 addLayoutGroup() to addGroup(). Add methods to get the DTOs for the
685 * src/main/java/org/glom/web/client/ui/ListView.java:
686 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Remove
687 tableName from setCellTable(). Create a ListViewTable instead of
689 * src/main/java/org/glom/web/client/ui/details/Field.java: New class to
690 represent a data field in the details view.
691 * src/main/java/org/glom/web/client/ui/details/Group.java: Move to code
692 from addDetailsCell() to Field class. Keep track of the Fields and
693 Portals in the details view.
694 * src/main/java/org/glom/web/client/ui/details/Portal.java: Make portal
695 a little bigger to match Glom. Keep track of the LayoutItemPortal DTO
696 and add a method to get it. Add method to set the contents of the
698 * src/main/java/org/glom/web/client/ui/details/RelatedListTable.java:
699 New class for related list tables. This class has the data provider
700 for the related list table.
701 * src/main/java/org/glom/web/client/ui/list/ListTable.java: Change to
702 abstract class which is the base class for the ListViewTable and the
704 * src/main/java/org/glom/web/client/ui/list/ListViewTable.java:
705 New class for list view tables. This class has the data provider for
707 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Add
708 methods for related list tables. Add more information to the
709 LayoutItemField and LayoutItemPortal DTOs.
710 * src/main/java/org/glom/web/server/database/DetailsDBAccess.java:
711 Remove debugging print statement.
712 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
713 Remove debugging print statements. Add primary key field to SQL count
715 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
716 Remove unnecessary LayoutFieldVector parameter from
717 getResultSizeOfSQLQuery() method.
718 * src/main/java/org/glom/web/server/database/RelatedListDBAccess.java:
719 New class for related list table database access.
720 * src/main/java/org/glom/web/shared/DetailsLayoutAndData.java: New
721 class that is a wrapper DTO for details view layout and data.
722 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: Add
723 new 'fromField' string to this DTO.
724 * src/main/webapp/style.css: Remove bottom margin and override top
727 2011-09-15 Ben Konrath <ben@bagu.org>
729 Breakup the OnlineGlomServiceImpl class to make it more manageable.
731 This sets things up to make it easier to add the data retrieval for
732 related lists (portals). No user noticeable changes were made with
735 * src/main/java/org/glom/web/server/ConfiguredDocument.java: This
736 class has the code to retrieve the layouts and access the
737 database using the new database helper classes.
738 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
739 Most of the functionality has been removed from this class. This
740 class now represents the public interface for the client side
741 code. It also deals with configuring the servlet and cleaning
742 things up when the servlet is stopped.
743 * src/main/java/org/glom/web/server/Utils.java: Extract a couple
744 of static methods into this utility class.
745 * src/main/java/org/glom/web/server/database/DBAccess.java:
746 * src/main/java/org/glom/web/server/database/DetailsDBAccess.java:
747 * src/main/java/org/glom/web/server/database/ListDBAccess.java:
748 * src/main/java/org/glom/web/server/database/ListViewDBAccess.java:
749 These classes have the database retrieval code. The class hierarchy
750 has been setup to make it easy to reuse code for similar
753 2011-09-06 Ben Konrath <ben@bagu.org>
755 Create separate classes for list table code and the data provider.
757 As part of this refactor, I also split up the code a bit to make it
760 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Move list
761 table code to two new classes (below).
762 * src/main/java/org/glom/web/client/ui/list/ListTable.java: New file
763 with code from ListViewImpl.
764 * src/main/java/org/glom/web/client/ui/list/ListTableDataProvider.java:
765 New file with code from ListViewImpl.
767 2011-09-06 Ben Konrath <ben@bagu.org>
769 Change the LayoutItemPortal DTO to extend LayoutGroup instead of LayoutItem.
771 This fixes the LayoutItemPortal DTO to match the libglom layout object
774 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java:
776 2011-09-01 Ben Konrath <ben@bagu.org>
778 Set title of Portals in the Details View.
780 * pom.xml: Bump required version of java-libglom to 1.17.1.
781 * src/main/java/org/glom/web/client/ui/details/Group.java: Move Portal
782 widget creation to its own class. Add comments to constructor.
783 * src/main/java/org/glom/web/client/ui/details/Portal.java: New file.
784 The code is mostly from the Group class with the title now set.
785 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set
786 title of Portal. Update some comments. Fix some code formatting.
788 2011-09-01 Ben Konrath <ben@bagu.org>
790 Remove TODO comment for the flow table column width.
792 The flow table column width is working correctly and doesn't need to be
793 changed. See this mailing list post for more info:
795 https://mail.gnome.org/archives/glom-devel-list/2011-August/msg00017.html
797 * src/main/java/org/glom/web/client/ui/details/FlowTable.java:
799 2011-08-27 Ben Konrath <ben@bagu.org>
801 Add document title (database name) to top of the browser page.
803 I added the document title to the TableSelecitonView but that will
804 change if / when we add a view that doesn't require table selection.
806 * mockups/details-contacts.html:
807 * mockups/details-projects.html:
808 * mockups/listview-contacts.html:
809 * mockups/listview-projects.html:
810 * mockups/style.css: Add document title to mockups to keep things
812 * src/main/java/org/glom/web/client/OnlineGlom.java: Adjust LayoutPanel
813 sizes to account for the document title.
814 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
815 Set the document title when it has been retrieved from the server.
816 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
817 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java: Add
818 and implement setDocumentTitle(String) method.
819 * src/main/webapp/style.css: Add ID for document title style.
821 2011-08-25 Ben Konrath <ben@bagu.org>
823 Add NavigationType enum to LayoutItemPortal DTO.
825 This is the start of adding support for Portals to the Details View.
827 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Convert
828 LayoutItem_Portal.navigation_type enum from libglom to
829 LayoutItemPortal.NavigationType enum.
830 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: Add
831 NavigationType enum, field for storing the NavigationType and getter
834 2011-08-25 Ben Konrath <ben@bagu.org>
836 Implement the flow table layout in the Details View.
838 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Change
839 FlowTable to Group to account for the renamed class.
840 * src/main/java/org/glom/web/client/ui/details/FlowTable.java: New
841 File. This is a container widget that implements the Glom details view
842 flow table behaviour.
843 * src/main/java/org/glom/web/client/ui/details/Group.java: Moved from
844 org/glom/web/client/ui/FlowTable.java.
845 * src/main/webapp/style.css: Adjust bottom margin of the subgroup-title
846 so that the size of the subgroups are a closer match to the size of
847 the Glom subgroups. This makes the flowtable layout match the layout
848 in Glom for the Music Collection example file.
850 2011-08-16 Ben Konrath <ben@bagu.org>
852 Create container element for LayoutItemPortal in Details View.
854 This will help me develop the layout for the FlowTable.
856 * src/main/java/org/glom/web/client/ui/FlowTable.java: Also rename
857 fieldPanel variable to detailsCell.
859 2011-08-15 Ben Konrath <ben@bagu.org>
861 Set the height of the data element in the Details View.
863 I changed the InlineLabels (text in a span element) to Labels (text in
864 a div element) so that I could set the height of the details-data
865 elements instead of the details-cell parent elements. This allows the
866 the details-data element to display the correct height if style is
867 applied that shows the height.
869 This change has the added benefit of allowing the order of the labels
870 and data elements to be changed for right-to-left languages.
872 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Change
873 InlineLabels to Labels.
874 * src/main/java/org/glom/web/client/ui/FlowTable.java: Change
875 InlineLabels to Labels. Set the height of the data element.
876 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
877 multiline text height in the Formatting DTO.
878 * src/main/java/org/glom/web/shared/layout/Formatting.java: Add field
879 for multiline height along with getter and setter methods.
880 * src/main/webapp/style.css: Adjust style to account for the change
881 from span elements to div elements in the details cell.
883 2011-08-15 Ben Konrath <ben@bagu.org>
885 Make the List View appearance match the mockups.
887 It doesn't match exactly but it's much better than it was.
889 * mockups/listview-contacts.html: Remove unused css classes.
890 * mockups/listview-projects.html: Remove unused css classes.
891 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Display 15
892 rows instead of 20. Rename vPanel to mainPanel. Use FlowPanel (div)
893 for mainPanel instead of VerticalPanel (table). Set style name on
894 CellTable. Set style name on Details column. Right-align Details
896 * src/main/webapp/style.css: Adjust properties to match the mockups.
898 2011-08-12 Ben Konrath <ben@bagu.org>
900 Add better support for subgroups in the details view.
902 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Update for
903 changed FlowTable constructor.
904 * src/main/java/org/glom/web/client/ui/FlowTable.java: Add better
905 support for subgroups and subgroup-titles.
906 * src/main/webapp/style.css: Add CSS class for subgroups and
909 2011-08-12 Ben Konrath <ben@bagu.org>
911 Return the top level LayoutGroup title.
913 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
915 2011-08-11 Ben Konrath <ben@bagu.org>
917 Make the TableSelector header match the mockup.
919 * src/main/java/org/glom/web/client/OnlineGlom.java: Add a margin to
920 the layout panel. Properly lineup the table selection header with
921 the list and details view.
922 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Remove the
923 margin around the details view.
924 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
925 Rename listBox variable to tableSelector. Set id for the style sheet.
926 Use a FlowPanel instead of a HorizontalPanel.
927 * src/main/webapp/style.css: Add properties to make the TableSelector
928 box match the mockups.
930 2011-07-13 Ben Konrath <ben@bagu.org>
932 Update install script for java-libglom version change.
934 * utils/install-onlineglom-war.sh: Also exit if 'make check' in
937 2011-07-13 Ben Konrath <ben@bagu.org>
939 Add support sub-group in the details view.
941 I also removed the code that special-cased the default details view
944 http://mail.gnome.org/archives/glom-devel-list/2011-July/msg00005.html
946 I still have to make a proper flowtable.
948 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
949 Don't special-case default details view layout.
950 * src/main/java/org/glom/web/client/ui/DetailsView.java: Remove
951 addLayoutField() as I'm going to use it.
952 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Extract
953 GroupPanel to FlowTable class. Remove unimplemented addLayoutField()
955 * src/main/java/org/glom/web/client/ui/FlowTable.java: New class
956 extracted from DetailsViewImpl.GroupPanel. Add support for
958 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set
959 column count when getting the details layout.
961 2011-07-12 Ben Konrath <ben@bagu.org>
963 Set browser title with database and table titles.
965 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
966 Set the browser title when the table changes and when the activity
968 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set
969 title when retrieving document info (the GlomDocument object).
970 * src/main/java/org/glom/web/shared/GlomDocument.java: Add title field
971 with getter and setter methods. Remove unused convenience constructor.
972 Use default code formatting.
974 2011-07-12 Ben Konrath <ben@bagu.org>
976 Ignore LayoutItemPortals in the details view.
978 I added a new DTO for the LayoutItemPortal so that I can ignore it in
981 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Ignore
982 LayoutItemPortal layout objects.
983 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
984 LayoutItemPortal objects when retrieving the details layout.
985 * src/main/java/org/glom/web/shared/layout/LayoutItemPortal.java: New
986 file. This is an empty class and just used to get type information for
989 2011-07-12 Ben Konrath <ben@bagu.org>
991 Use java-libglom 1.17.0.
995 2011-07-11 Ben Konrath <ben@bagu.org>
997 Remove "Table:" label from table selector.
999 This matches a recent change in the Glom UI.
1001 * mockups/details-contacts.html:
1002 * mockups/details-projects.html:
1003 * mockups/listview-contacts.html:
1004 * mockups/listview-projects.html: Remove the "Table:" label from the
1006 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1008 2011-07-11 Ben Konrath <ben@bagu.org>
1010 Add main groups to the details view.
1012 This makes things look a little nicer in the details view. The next step
1013 is to implement the flowtable.
1015 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Inherit only the
1016 resources from the standard gwt css theme. Standard.css is now
1017 included in OnlineGlom.html so that the online glom css rules have
1018 precedence over the gwt theme.
1019 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Pass
1020 the whole LayoutGroup to the DetailsView instead of just the titles.
1021 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1022 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java: Create the
1023 details layout with a helper class (GroupPanel). I might extract this
1024 class when I make the full flowtable.
1025 * src/main/java/org/glom/web/shared/layout/LayoutItem.java: Add empty
1026 string as default so I don't have to worry about NPEs when processing
1028 * src/main/webapp/OnlineGlom.html: Add the gwt standard css file (see
1029 note beside OnlineGlom.gwt.xml above).
1030 * src/main/webapp/style.css: Add default font-size to body to override
1031 the font-size set by the standard theme. Don't use h2 tags for
1032 group-title. Create new details-cell class.
1034 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1036 ConfiguredDocument: Set the port number too.
1038 * src/main/java/org/glom/web/server/ConfiguredDocument.java
1039 (ConfiguredDocument.ConfiguredDocument): Get the port number from the
1040 Glom document. Presumably this worked sometimes so far because there is a
1041 default port number.
1043 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1045 ConfiguredDocument: Warn that sqlite and self-hosting are not supported.
1047 * src/main/java/org/glom/web/server/ConfiguredDocument.java
1048 (ConfiguredDocument.ConfiguredDocument): Check that the hosting mode is
1049 correct, though we should throw an exception too.
1051 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1053 Fix a addDocuemnt typo.
1055 * src/main/java/org/glom/web/shared/Documents.java
1056 (Documents.addDocuemnt): Rename to addDocument().
1057 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java
1058 (OnlineGlomServiceImpl.getDocuments): Adapt.
1060 2011-07-08 Murray Cumming <murrayc@murrayc.com>
1062 Slightly improved log output when connection fails.
1064 * src/main/java/org/glom/web/server/ConfiguredDocument.java
1065 (ConfiguredDocument.setUsernameAndPassword):
1066 We don't know for sure if it' the username/password that's wrong, so
1067 rephrase the message.
1068 Also ouput the exception message, though it's generic in this case.
1070 2011-07-08 Ben Konrath <ben@bagu.org>
1074 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also
1075 added braces to a one line if statement because the Eclipse formatter
1076 was getting confused.
1078 2011-07-07 Ben Konrath <ben@bagu.org>
1080 Update project config files for Eclipse 3.7 and use GWT 2.3.0.
1082 These should really be two separate tasks but I counldn't get things to
1083 work with GWT 2.2.0 and Eclipse 3.7.
1087 * .settings/org.eclipse.jdt.core.prefs:
1088 * .settings/org.eclipse.jdt.ui.prefs:
1089 * .settings/org.eclipse.ltk.core.refactoring.prefs:
1090 * .settings/org.eclipse.m2e.core.prefs:
1091 Add new config files. Update current files. Remove references to the
1092 webtools plugins as we're not using any of the webtools features.
1093 * .gitignore: Add logs directory which is created when running with
1095 * pom.xml: Update to GWT 2.3.0. Eclipse configuration was automatically added.
1096 * src/main/java/org/glom/web/OnlineGlom.gwt.xml: Moved from
1097 src/main/resources/org/glom/web/OnlineGlom.gwt.xml as per this known
1099 http://mojo.codehaus.org/gwt-maven-plugin/eclipse/google_plugin.html#Limitations
1101 2011-07-07 Murray Cumming <murrayc@murrayc.com>
1103 onlineglom.properties: Add explanatory comments.
1105 * src/main/resources/onlineglom.properties: Also change the default user
1106 from ben to someuser, to avoid the risk of people thinking we just
1107 stupidly hard-coded a locale path, when they see that on stderr or in a log.
1109 2011-06-28 Ben Konrath <ben@bagu.org>
1111 Use filename in Log for incorrect passwords.
1113 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Add
1114 getFileName(String) method to get the filename from the URI.
1116 2011-06-28 Ben Konrath <ben@bagu.org>
1118 Add the table name to the URL token for the ListPlace.
1120 This makes things consistent between the DetailsPlace and the
1121 ListPlace. It also allows the the ListPlace to be bookmarked.
1123 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1124 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1125 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1126 Remove getDefaultListLayout(). The default layout is now returned
1127 by the getListLayout() method when the table name is an empty string.
1128 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1129 Add table name field. Change to a new ListPlace when the table
1130 has been changed. Use getListLayout() for getting the default
1132 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1133 Add table name field. Set the correct table name in the list box
1134 when loading from bookmark. This corrects a problem for the
1136 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1137 Move table name to super-class (HasSelectableTable). Move document
1138 and table URL keys to super-class in HasSelectableTable.
1139 * src/main/java/org/glom/web/client/place/HasSelectableTablePlace.java:
1140 Add table name field. Add Tokenizer class with URL key common to
1141 the subclasses (DetailsPlace and ListPlace).
1142 * src/main/java/org/glom/web/client/place/ListPlace.java:
1143 Add table name. Add code to parse the URL token.
1144 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1145 Update ListPlace construction with empty table name string.
1146 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1147 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1148 Change setTableSelectedIndex(int) to setSelectedTableName(String).
1149 Update ListPlace construction with table name string.
1150 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java:
1151 Change defaultTableName field to tableName to reflect how it's now
1152 used. Update the getter and setter methods.
1154 2011-06-28 Ben Konrath <ben@bagu.org>
1156 Enable the table selector in the DetailsView.
1158 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1159 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1160 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1161 Remove getDefaultDetailsLayout(). The default layout is now returned
1162 by the getDetailsLayout() method when the table name is an empty
1164 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
1165 event handler for table change event. Change to using
1166 getDetailsLayout() for the default details layout.
1167 * src/main/java/org/glom/web/client/place/DetailsPlace.java: Add table
1169 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Use table
1170 when navigating to the details place.
1172 2011-06-27 Ben Konrath <ben@bagu.org>
1174 Use filename based unique document ID in URL and for RPC.
1176 The document ID is the glom document name with spaces (' ') replaced
1177 with pluses ('+') and without the .glom extension.
1179 This change is mostly a string substitution of 'documentTitle' for
1180 'documentID'. The only code change is the addition of a Documents DTO to get the
1181 filename to document title mappings as indicated below.
1183 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1184 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1185 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1186 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1187 Use Documents DTO to create the document links in the document
1189 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1190 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1191 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1192 * src/main/java/org/glom/web/client/place/HasSelectableTablePlace.java:
1193 * src/main/java/org/glom/web/client/place/ListPlace.java:
1194 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
1195 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1196 * src/main/java/org/glom/web/client/ui/ListView.java:
1197 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1198 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1199 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1200 * src/main/java/org/glom/web/server/Log.java:
1201 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
1202 getDocumentTitles() to getDocuments() and return the Documents DTO.
1203 * src/main/java/org/glom/web/shared/Documents.java: New DTO for
1204 transferring the filename to document title mappings.
1206 2011-06-25 Ben Konrath <ben@bagu.org>
1208 Make the authentication popup work again.
1210 This bug was introduced when I extracted ConfiguredDocument to its own class.
1212 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Return the
1213 correct success / fail status in setUsernameAndPassword().
1215 2011-06-25 Ben Konrath <ben@bagu.org>
1217 Use filename as unique key for configuring database usernames and passwords.
1219 This replaces the use of the Glom document title which could change
1220 depending on the locale. Thanks to Murray Cumming for pointing out this
1223 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1224 * src/main/resources/onlineglom.properties:
1226 2011-06-24 Ben Konrath <ben@bagu.org>
1228 Pass primary key value to DetailsView.
1230 This enables the DetailsView to load the correct data.
1232 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Add
1233 primary key value field and set in constructor. Pass primary key
1234 value to getDetailsData().
1235 * src/main/java/org/glom/web/client/place/DetailsPlace.java: Add URL
1236 variables for document title and primary key value.
1237 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Pass primary
1238 key value to the DetailsPlace.
1240 2011-06-24 Ben Konrath <ben@bagu.org>
1242 Add primary key index to LayoutGroup DTO and add ProvidesKey to CellTable.
1244 This allows the primary key to be retrieved by the Details button. This
1245 functionality has not been implemented yet but it's in the works.
1247 * src/main/java/org/glom/web/client/activity/ListActivity.java: Pass
1248 the LayoutGroup result to ListView.setCellTable instead of all of its
1249 fields individually.
1250 * src/main/java/org/glom/web/client/ui/ListView.java:
1251 * src/main/java/org/glom/web/client/ui/ListViewImpl.java: Use
1252 LayoutGroup as parameter for setCellTable. Add ProvidesKey to CellTable
1253 get the primary key for the table.
1254 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
1255 index of the primary key in the LayoutGroup accounting for hidden
1256 primary keys. Rename getJavaNumberFormat() to
1257 convertToJavaNumberFormat() for consistency. Cleanup / add some
1259 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java: Add a
1260 field for primary key index and a field to indicate whether the
1261 primary key is hidden or not.
1263 2011-06-23 Ben Konrath <ben@bagu.org>
1265 Rename getTableData methods to getListData.
1267 This is a rename refactor for consistency with other methods.
1269 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1270 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1271 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1272 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1274 2011-06-23 Ben Konrath <ben@bagu.org>
1276 Extract the ConfiguredDocument innerclass into its own class.
1278 This makes the servlet code more object oriented.
1280 * src/main/java/org/glom/web/server/ConfiguredDocument.java: Extracted
1281 from private ConfiguredDocument class in OnlineGlomServiceImpl.
1282 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use the
1283 new ConfiguredDocument class.
1285 2011-06-21 Ben Konrath <ben@bagu.org>
1287 Use the LayoutGroup group for the list layout instead of ColumnInfo and LayoutListTable.
1289 This makes things more inline with how libglom works and reduces code
1290 duplication. This refactor lays the groundwork for adding the primary key to
1291 the LayoutGroup object.
1293 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1294 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1295 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1296 Change method names to getListLayout and getDefaultListLayout for
1297 consistency. Use LayoutGroup as the DTO for the list layout instead of
1298 ColumnInfo and LayoutListTable.
1299 * src/main/java/org/glom/web/client/activity/ListActivity.java: Use the
1300 new method names along with the LayoutGroup object for transferring the
1302 * src/main/java/org/glom/web/client/ui/ListView.java:
1303 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1304 Use ArrayList<LayoutItem> instead of ColumnInfo[] in setCellTable().
1305 * src/main/java/org/glom/web/shared/ColumnInfo.java: Deleted. Replaced
1307 * src/main/java/org/glom/web/shared/LayoutListTable.java: Deleted.
1308 Replaced with LayoutGroup.
1309 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java: Add
1310 expectedResultSize and defaultTableName fields which are needed for
1312 * src/main/java/org/glom/web/shared/layout/LayoutItemField.java: Add
1313 type field which is needed for the list layout but will also be
1314 useful for the details layout as things progress.
1315 * src/main/java/org/glom/web/shared/layout/LayoutItemWithFormatting.java:
1316 Make class abstract. Remove the unnecessary
1317 getFormattingHorizontalAlignment method. Add setFormatting method.
1319 2011-06-16 Ben Konrath <ben@bagu.org>
1321 Add scripts for building and installing war.
1323 These will help when updating OnlineGlom but they're also good
1324 supplemental documentation of the build and deployment proceeding.
1326 * utils/build-onlineglom-war.sh: New file.
1327 * utils/install-onlineglom-war.sh: New file.
1329 2011-06-16 Ben Konrath <ben@bagu.org>
1331 Create wrapper class to create consistent log messages.
1333 I wrapped methods in the Log class of gwt-log to add the method names
1334 from the servlet and create consistent formatting of the document title
1335 and table names in the log messages.
1337 * src/main/java/org/glom/web/server/Log.java: New file with wrapped methods.
1338 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Convert all
1339 log methods to use methods from wrapped Log class.
1341 2011-06-16 Ben Konrath <ben@bagu.org>
1343 Remove superfluous conditional return.
1345 Thanks to Murray Cumming for pointing this out!
1347 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1349 2011-06-15 Ben Konrath <ben@bagu.org>
1351 Return an ArrayList of LayoutGroups for the Details layout.
1353 This corrects a problem with the details layout as it can have more
1354 than one top level LayoutGroup.
1356 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1357 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Change
1358 method name from get*DetailsLayoutGroup to get*DetailsLayout. Return
1359 an ArrayList<LayoutGroup> in the get*DetailsLayout methods.
1360 * src/main/java/org/glom/web/client/activity/DetailsActivity.java: Deal
1361 with ArrayList of LayoutGroups for the details view layout.
1362 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
1363 method name from get*DetailsLayoutGroup to get*DetailsLayout. Return an
1364 ArrayList<LayoutGroup> in the get*DetailsLayout methods. Inline
1365 getTableFieldsToShowForSequence() into getFieldsToShowForSQLQuery() to simplify
1366 the code a bit. Rename getTableFieldsToShowForSequenceAddGroup() to
1367 getFieldsToShowForSQLQueryAddGroup() to try to keep things more consistent.
1369 2011-06-14 Ben Konrath <ben@bagu.org>
1371 Use cast_dynamic method to determine the libglom LayoutItem type.
1373 This is better than finding the LayoutItem type by using the string
1374 returned from the get_part_type_name() method.
1376 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1378 2011-06-14 Ben Konrath <ben@bagu.org>
1380 Add method names to log entries in the servlet.
1382 This helps when tracking down deployment problems.
1384 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1386 2011-06-14 Ben Konrath <ben@bagu.org>
1388 Add data to the DetailsView using a hard-coded primary key value.
1390 The layout and functionality of the DetailsView is not complete. This
1391 is just a checkpoint so the patch doesn't get too big.
1393 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1394 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1395 Add getDetailsData() servlet method.
1396 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1397 Add RPC to getDetailsData(). Change the way the LayoutGroups and
1398 LayoutFields are added to the DetailsView.
1399 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1400 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
1401 Add setData() method. Change addLayoutGroup() and addLayoutField() to
1402 take the string for the title instead of the object.
1403 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1404 Add implementation getDetailsData() along with some private helper
1406 * src/main/webapp/style.css: Add padding to details-data class. Add a
1407 details-label class with the same padding as the details-data class.
1409 2011-06-03 Ben Konrath <ben@bagu.org>
1411 Use presenter.goTo() to change to the DetailsPlace.
1413 This will make things easier when we need to open the DetailsView with
1414 data specific to the row that was clicked.
1416 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1418 2011-06-02 Ben Konrath <ben@bagu.org>
1420 Add CSS file from mockups.
1422 I'm adding this now because it's going to be useful to have when
1423 developing the DetailsView. The TableSelectionView and ListView aren't
1426 * src/main/webapp/OnlineGlom.html:
1427 * src/main/webapp/style.css:
1429 2011-06-02 Ben Konrath <ben@bagu.org>
1431 Use String.isEmpty() to check for empty string.
1433 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1435 2011-06-02 Ben Konrath <ben@bagu.org>
1437 Display main layout group titles in the DetailsView.
1439 This is the start of the DetailsActivity/DetailsView implementation.
1441 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1442 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1443 Add getDetailsLayoutGroup() and getDefaultDetailsLayoutGroup() methods.
1444 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1445 Get the layout information for the details view from the server and set
1446 the main layout group titles.
1447 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1448 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
1449 Add addLayoutGroup() and addLayoutField() methods. This are just
1450 temporary methods for creating the the details view that will change
1452 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1453 Implement getDetailsLayoutGroup() and getDefaultDetailsLayoutGroup()
1455 * src/main/java/org/glom/web/shared/layout/Formatting.java:
1456 * src/main/java/org/glom/web/shared/layout/LayoutGroup.java:
1457 * src/main/java/org/glom/web/shared/layout/LayoutItem.java:
1458 * src/main/java/org/glom/web/shared/layout/LayoutItemField.java:
1459 * src/main/java/org/glom/web/shared/layout/LayoutItemWithFormatting.java:
1460 Data Transfer Objects that mimic the libglom object structure. These are
1461 used for transferring the details layout but could also be used for
1462 transferring the list layout.
1464 2011-05-27 Ben Konrath <ben@bagu.org>
1466 Reset the AuthenticationPopup when clearing the ListView.
1468 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1470 2011-05-27 Ben Konrath <ben@bagu.org>
1472 Fix problem with onlineglom.properties file loading.
1474 The old way worked in Eclipse but not on the server. Loading the
1475 onlineglom.properties file now works in Eclipse and on the server.
1477 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1479 2011-05-24 Ben Konrath <ben@bagu.org>
1481 Update gwt-log from 3.1.0 to 3.1.2.
1483 Gwt-log 3.1.0 has been marked as depreciated.
1487 2011-05-24 Ben Konrath <ben@bagu.org>
1489 Add comment to ListActivity.goTo() method.
1491 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1493 2011-05-24 Ben Konrath <ben@bagu.org>
1495 Remove FIXME in convertGdkColorToHtmlColour()
1497 The Gdk::Color value returned by libglom is 16-bits per channel on both
1498 64 and 32-bit platforms.
1500 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1502 2011-05-19 Ben Konrath <ben@bagu.org>
1504 Improve performance of initial ListView load.
1506 I removed a round trip to the server for getting the default table name
1507 and then requesting information about that table. This also removes a potential
1508 problem with the table change handler not being setup in time to receive the
1509 table change event from the ListActivity.
1511 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1512 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
1513 getDefaultLayoutListTable() method. Improve comments.
1514 * src/main/java/org/glom/web/client/activity/ListActivity.java: Use
1515 getDefaultLayoutListTable() method instead of firing a table change
1516 event to get the table to load.
1517 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
1518 implementation of getDefaultLayoutListTable() method.
1519 * src/main/java/org/glom/web/shared/LayoutListTable.java: Add field for
1522 2011-05-19 Ben Konrath <ben@bagu.org>
1524 Override toDebugString() in TableChangeEvent.
1526 This is useful to have for debugging.
1528 * src/main/java/org/glom/web/client/event/TableChangeEvent.java:
1530 2011-05-19 Ben Konrath <ben@bagu.org>
1532 Add a "Back to List" link when at the DetailsPlace.
1534 * src/main/java/org/glom/web/client/activity/ListActivity.java:
1535 Populate the CellTable based on the selected table of the ListBox if
1536 it's set otherwise use the default table. This allows the "Back to
1538 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1539 Remove Place from constructors. Add a setPlace() method. Add
1540 goToPlace() method. Set class as presenter for TableSelectionView.
1541 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
1542 Use the same TableSelectionActivity when switching between the List and
1544 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1545 Subclass the new HasSelectableTablePlace. This removes some duplicate
1547 * src/main/java/org/glom/web/client/place/HasSelectableTablePlace.java:
1548 New class to represent Places that display the TableSelectionView.
1549 * src/main/java/org/glom/web/client/place/ListPlace.java:
1550 Subclass the new HasSelectableTablePlace. This removes some duplicate
1552 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1553 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1554 Add Presenter interface. Add setBackLinkVisible() method. Add
1555 setBackLink() method.
1557 2011-05-18 Ben Konrath <ben@bagu.org>
1559 Enable the "Details" buttons.
1561 Right now only an empty details view is displayed.
1563 * src/main/java/org/glom/web/client/ClientFactory.java:
1564 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
1565 Add DetailsView to ClientFactory.
1566 * src/main/java/org/glom/web/client/activity/DetailsActivity.java:
1567 A basic activity for the details view.
1568 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1569 Add a new constructor that takes a DetailsPlace. Rename shutdown() to
1571 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1572 Add DetailsPlace.Tokenizer to the list of tokens that are generated by
1574 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
1575 Create a new DetailsActivity when a DetailsPlace is requested. Remove
1576 unnecessary super() in constructor.
1577 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
1578 Create a new TableSelectionActivity when a DetailsPlace is requested. We
1579 really shouldn't create a new TableSelectionActivity for both the ListPlace
1580 and the DetailsPlace so this should be considered a temporary solution.
1581 * src/main/java/org/glom/web/client/place/DetailsPlace.java:
1582 New file. Represents a URL for the details view.
1583 * src/main/java/org/glom/web/client/ui/DetailsView.java:
1584 * src/main/java/org/glom/web/client/ui/DetailsViewImpl.java:
1585 A basic details view interface and implementation.
1586 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1587 Enable the "Details" buttons.
1589 2011-05-12 Ben Konrath <ben@bagu.org>
1591 Use a LayoutPanel with multiple display areas for main layout.
1593 This is mostly a refactor in that there are no changes from the user
1594 point of view. These changes are required so that we can swap out the list view
1595 with the details view when the user clicks the "Details" button.
1597 * src/main/java/org/glom/web/client/ClientFactory.java:
1598 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
1599 OnlineGlomView. Add TableSelectionView, ListView and
1600 AuthenticationPopup.
1601 * src/main/java/org/glom/web/client/OnlineGlom.java: Use LayoutPanel
1602 for main layout. Add display regions for main activities. Add
1603 activity manager for for main activities.
1604 * src/main/java/org/glom/web/client/activity/ListActivity.java: New
1605 file from parts of the deleted OnlineGlomActivity.
1606 * src/main/java/org/glom/web/client/activity/TableSelectionActivity.java:
1607 New file from parts of the deleted OnlineGlomActivity.
1608 * src/main/java/org/glom/web/client/event/TableChangeEvent.java:
1609 * src/main/java/org/glom/web/client/event/TableChangeEventHandler.java:
1610 New files for app wide table change event.
1611 * src/main/java/org/glom/web/client/mvp/DataActivityMapper.java:
1612 * src/main/java/org/glom/web/client/mvp/DocumentSelectionActivityMapper.java:
1613 * src/main/java/org/glom/web/client/mvp/TableSelectionActivityMapper.java:
1614 Activity mappers for the main activities replace the deleted app-wide
1616 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java:
1617 Fix a spelling error in he comment.
1618 * src/main/java/org/glom/web/client/ui/ListView.java:
1619 * src/main/java/org/glom/web/client/ui/ListViewImpl.java:
1620 Renamed from LayoutListView and modified for MVP. This still not a
1621 proper dumb view as prescribed by the MVP pattern but it works for now.
1622 * src/main/java/org/glom/web/client/ui/TableSelectionView.java:
1623 * src/main/java/org/glom/web/client/ui/TableSelectionViewImpl.java:
1624 New widget stripped out of the deleted OnlineGlomView.
1625 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1626 Remove hack that is fixed by this patch.
1628 2011-05-06 Ben Konrath <ben@bagu.org>
1630 Rename OnlineGlomPlace to ListPlace.
1632 The only change besides the rename is that url will now display #list
1633 instead of #Document.
1635 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1636 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
1637 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1638 * src/main/java/org/glom/web/client/place/ListPlace.java:
1639 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1641 2011-05-06 Ben Konrath <ben@bagu.org>
1643 Use Presenter for app navigation.
1645 This is the proper way to deal with Place (URL) changes with the MVP
1648 * src/main/java/org/glom/web/client/ClientFactory.java:
1649 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Remove
1650 PlaceHistoryMapper and PlaceHistoryHandler.
1651 * src/main/java/org/glom/web/client/OnlineGlom.java: Re-add
1652 PlaceHistoryMapper and PlaceHistoryHandler.
1653 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1654 Don't use getHistoryMapper().getToken(place) to create the hyperlinks.
1655 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
1656 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1657 Add Presenter interface and setPresenter methods. Rename addHyperLink
1658 to addDocumentLink taking only the document title as a parameter.
1660 2011-04-14 Ben Konrath <ben@bagu.org>
1662 Prompt for db username/password if they haven't been set.
1664 This is implemented with a popup widget that is contained within the
1665 OnlineGlomView and managed by the OnlineGlomActivity.
1667 * src/main/java/org/glom/web/client/OnlineGlomService.java: Two new
1668 methods for checking and setting the database username and password.
1669 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Two
1670 new methods for checking and setting the database username and
1672 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1673 Display authentication popup if the JDBC connection to the database
1674 has not been authenticated.
1675 * src/main/java/org/glom/web/client/ui/AuthenticationPopup.java: New
1677 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
1678 for dealing with the authentication popup.
1679 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java:
1680 Implement the methods for dealing with the authentication popup.
1681 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Don't
1682 try to executed queries if the database connection hasn't been
1683 authenticated. Implement methods for checking and setting the
1684 database username and password.
1686 2011-04-12 Ben Konrath <ben@bagu.org>
1688 Make log messages a little clearer.
1690 Add a dash betweeen the document title and the table name.
1692 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1694 2011-04-12 Ben Konrath <ben@bagu.org>
1696 Protect against NPEs when cleaning up database resources.
1698 While this isn't strictly necessary because the exception is caught,
1699 not protecting against the NPEs makes it harder to find the real error
1702 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1704 2011-04-12 Ben Konrath <ben@bagu.org>
1706 Move configuration of the servlet to the constructor.
1708 The servlet will be initialized even if the database authentication
1709 information is not set or correct. I still need to add the UI for prompting
1710 the user for the authentication information when it's required.
1712 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
1713 javadocs for getDocumentTitles() method.
1714 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1715 Set error message when RPC fails.
1716 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Get the
1717 glom files directory from the configuration file. Try to set the
1718 database authentication information for the specific document if it's
1719 set and works otherwise try to use the global authentication
1720 information set for the directory.
1721 * src/main/resources/onlineglom.properties: Moved from
1722 src/main/webapp/WEB-INF/OnlineGlom.properties. Updated with new keys.
1723 Added detailed comments for the new keys.
1725 2011-04-11 Ben Konrath <ben@bagu.org>
1727 Remove unnecessary @Override in DocumentSelectionViewImpl.
1729 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1731 2011-04-11 Ben Konrath <ben@bagu.org>
1733 Remove center alignment in DocumentSelectionView.
1735 The title element is still centred but the document titles and bottom
1736 sentence are both left-aligned.
1738 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
1740 2011-04-11 Ben Konrath <ben@bagu.org>
1742 Change 'Demo' naming convention to 'Document'.
1744 This is just a rename refactor with no functional changes to the code.
1746 * src/main/java/org/glom/web/client/ClientFactory.java:
1747 * src/main/java/org/glom/web/client/ClientFactoryImpl.java:
1748 * src/main/java/org/glom/web/client/OnlineGlom.java:
1749 * src/main/java/org/glom/web/client/OnlineGlomService.java:
1750 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1751 * src/main/java/org/glom/web/client/activity/DocumentSelectionActivity.java:
1752 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java:
1753 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1754 * src/main/java/org/glom/web/client/place/DocumentSelectionPlace.java:
1755 * src/main/java/org/glom/web/client/ui/DocumentSelectionView.java:
1756 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.java:
1757 * src/main/java/org/glom/web/client/ui/DocumentSelectionViewImpl.ui.xml:
1758 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1760 2011-04-08 Ben Konrath <ben@bagu.org>
1762 Remove FIXME from safeLongToInt() method.
1764 Libglom uses longs on 32-bit and 64-bit platforms so it's ok to use
1767 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1769 2011-04-08 Ben Konrath <ben@bagu.org>
1771 Display an error if no glom documents are found in the specified directory.
1773 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1774 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
1775 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
1776 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1778 2011-04-08 Ben Konrath <ben@bagu.org>
1780 Add copyright header to one more file ... oops.
1782 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
1784 2011-04-08 Ben Konrath <ben@bagu.org>
1786 Add copyright header to files without it.
1788 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1789 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
1790 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
1791 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
1792 * src/main/java/org/glom/web/shared/ColumnInfo.java:
1793 * src/main/java/org/glom/web/shared/GlomField.java:
1795 2011-04-08 Ben Konrath <ben@bagu.org>
1797 Add support for accessing multiple glom documents in the servlet.
1799 This completes the demo selection functionality.
1801 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add
1802 document title to methods.
1803 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
1804 document title to methods.
1805 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1806 Set browser window title when the activity starts. Correct name of
1807 document title variable.
1808 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1809 Set browser window title when the activity starts. Set the table
1810 selector change handler after table selector has been set. Clear the
1811 OnlineGlomView when the activity has been stopped.
1812 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java: Use the
1813 document title as the place token. Use "#Document:" instead of
1814 "#OnlineGlomPlace:" in the URL.
1815 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
1816 Change heading to "Online Glom"
1817 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Use
1818 document title in RPC methods.
1819 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Remove
1820 setDocumentTitle() method. Add clear() method.
1821 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Remove
1822 setDocumentTitle() method. Implement clear() method which removes the
1823 change handler on the ListBox, clears the ListBox and clears the
1825 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1826 Implement methods with document title. Keep track for the configured
1827 glom documents and their corresponding JDBC configurations in a hash
1828 table. This information is retrieved using the document title as the
1829 key in the hash table.
1830 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
1831 document title field as it's no longer needed.
1833 2011-04-08 Ben Konrath <ben@bagu.org>
1835 Update the Eclipse JDT configuration.
1837 * .settings/org.eclipse.jdt.ui.prefs: Automatically add comments to new
1838 methods. Automatically add the copyright header to new files.
1840 2011-04-05 Ben Konrath <ben@bagu.org>
1842 Add new page for demo selection.
1844 This patch adds all the components required to view and start an
1845 OnlineGlom demo by clicking on the desired hyperlink. The user is
1846 able to return to the demo selection page with the browser's back
1847 button. I still need to modify the servlet to work with multiple
1848 documents so all demo links will load the file defined in the
1849 OnlineGlom.properties.
1851 * .gitignore: Add .gwt which holds the error log for the GWT UiBuidler.
1852 This is only useful during development so we don't need to save it.
1853 * src/main/java/org/glom/web/client/ClientFactory.java: Add method to
1854 get a reference to the DemoSelectionView.
1855 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: Implement
1856 method to get a reference to the DemoSelectionView.
1857 * src/main/java/org/glom/web/client/OnlineGlom.java: Change the
1858 default view to DemoSelectionView.
1859 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add method
1860 to get glom document titles for glom files in a hard-coded directory.
1861 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
1862 method to get glom document titles for glom files in a hard-coded
1864 * src/main/java/org/glom/web/client/activity/DemoSelectionActivity.java:
1865 Presenter for DemoSelectionView.
1866 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: Update
1867 for DemoSelectionView.
1868 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1869 Update for DemoSelectionView.
1870 * src/main/java/org/glom/web/client/place/DemoSelectionPlace.java:
1871 Basic 'Place' implementation for the DemoSelectionView.
1872 * src/main/java/org/glom/web/client/ui/DemoSelectionView.java:
1873 The interface for the DemoSelectionView.
1874 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.java:
1875 The implementation of the DemoSelectionView.
1876 * src/main/java/org/glom/web/client/ui/DemoSelectionViewImpl.ui.xml:
1877 The GWT UiBuilder xml file used in DemoSelectionViewImpl.
1878 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
1879 implementation of method to get glom document titles for glom files
1880 in a hard-coded directory.
1881 * src/main/webapp/OnlineGlom.html: Remove link to CSS file as it's
1882 on longer being used.
1883 * src/main/webapp/glom.png: Glom logo.
1885 2011-04-05 Ben Konrath <ben@bagu.org>
1887 Move RPC code from OnlineGlomViewImpl to OnlineGlomActivity.
1889 This is the forth and final commit of a refactor that will allow
1890 OnlineGlom to be used with multiple documents.
1892 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1893 Move RPC code from OnlineGlomViewImpl to this class.
1894 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Add methods
1896 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: Move
1897 RPC code to the presenter class (the P in MVP).
1899 2011-04-04 Ben Konrath <ben@bagu.org>
1901 Start moving the existing OnlineGlom code to MVP.
1903 This work is based on the GWT MVP framework that is documented here:
1905 https://code.google.com/webtoolkit/doc/2.2/DevGuideMvpActivitiesAndPlaces.html
1907 This is the third commit of a refactor that will allow OnlineGlom to
1908 be used with multiple documents.
1910 * src/main/java/org/glom/web/client/ClientFactory.java: New file.
1911 Interface for client factory which is used to get instances of various
1912 classes throughout the app.
1913 * src/main/java/org/glom/web/client/ClientFactoryImpl.java: New file.
1914 Implementation of client factory.
1915 * src/main/java/org/glom/web/client/OnlineGlom.java: Add code to
1916 initialize the MVP framework.
1917 * src/main/java/org/glom/web/client/activity/OnlineGlomActivity.java:
1918 New file. Activity manager for the main container widget. This is the
1920 * src/main/java/org/glom/web/client/mvp/AppActivityMapper.java: New file.
1921 Maps place (URL) to its corresponding activity.
1922 * src/main/java/org/glom/web/client/mvp/AppPlaceHistoryMapper.java:
1923 New file. This is just a place holder for a generated file.
1924 * src/main/java/org/glom/web/client/place/OnlineGlomPlace.java:
1925 New file. Represents the URL for the main Online Glom app.
1926 * src/main/java/org/glom/web/client/ui/LayoutListView.java: Update
1927 for changes in LayoutListViewImpl.
1928 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java: Create
1929 interface for View. Move code to OnlineGlomViewImpl class.
1930 * src/main/java/org/glom/web/client/ui/OnlineGlomViewImpl.java: New
1931 file. Implementation of OnlineGlomView.
1932 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Add Activity and
1933 Place resources. Use ClientFactoryImpl by default.
1935 2011-04-04 Ben Konrath <ben@bagu.org>
1937 Move View classes to their own package.
1939 This is the second commit of a refactor that will allow OnlineGlom to
1940 be used with multiple documents.
1942 * src/main/java/org/glom/web/client/OnlineGlom.java:
1943 * src/main/java/org/glom/web/client/ui/LayoutListView.java:
1944 * src/main/java/org/glom/web/client/ui/OnlineGlomView.java:
1946 2011-04-02 Ben Konrath <ben@bagu.org>
1948 Move UI code from the main module to its own class.
1950 This is the first commit of a refactor that will allow OnlineGlom to be
1951 used with multiple documents.
1953 * src/main/java/org/glom/web/client/LayoutListView.java: Update
1954 references to OnlineGlom to OnlineGlomView.
1955 * src/main/java/org/glom/web/client/OnlineGlom.java: Move code to
1956 OnlineGlomView and instantiate it here.
1957 * src/main/java/org/glom/web/client/OnlineGlomView.java: New class that
1958 represents the main OnlineGlomView with one document.
1960 2011-04-01 Ben Konrath <ben@bagu.org>
1962 Fix formatting of gwt.xml and add DTD.
1964 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
1966 2011-03-30 Ben Konrath <ben@bagu.org>
1968 Propperly convert gdkColor string to html colour string.
1970 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1972 2011-03-28 Ben Konrath <ben@bagu.org>
1974 Change implementation of OnlineGlomServiceImpl.getColumnInfoHorizontalAlignment().
1976 This implementation matches
1977 OnlineGlomServiceImpl.getColumnInfoGlomFieldType(), should perform better, is more
1978 readable and is not tied to Swig.
1980 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
1982 2011-03-28 Ben Konrath <ben@bagu.org>
1984 Use read-only checkboxes for boolean field types.
1986 * src/main/java/org/glom/web/client/LayoutListView.java: Create columns
1987 in the CellTable based on the field type. It currently only
1988 distinguishes between boolean and text columns but I'll need to add
1989 support for more types.
1990 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Set the
1991 column type in the ColumnInfo object. Add method to convert between the
1992 glom field type enum in ColumnInfo and the glom field type in libglom.
1993 * src/main/java/org/glom/web/shared/ColumnInfo.java: Add support for
1995 * src/main/java/org/glom/web/shared/GlomField.java: Add support for
1996 getting and setting booleans.
1998 2011-03-25 Ben Konrath <ben@bagu.org>
2000 Don't get the Date twice from the ResultSet.
2002 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2004 2011-03-25 Ben Konrath <ben@bagu.org>
2006 Cleanup code in the servlet.
2008 * TODO: Remove item about row count. Add item about testing row count
2009 query with large number of rows.
2010 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Fix
2011 spelling mistakes, change method parameter to be consistent with
2014 2011-03-25 Ben Konrath <ben@bagu.org>
2016 Add server side logging with the gwt-log library.
2018 * .gitignore: Ignore the log file we're now producing.
2019 * TODO: Add a couple TODO item for logging.
2020 * pom.xml: Add gwt-log and log4j as a dependency.
2021 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
2022 logging of errors, warnings and some important info.
2023 * src/main/resources/log4j.properties: New file to configure log4j.
2025 2011-03-24 Ben Konrath <ben@bagu.org>
2027 Add a disable button for the Details view.
2029 * src/main/java/org/glom/web/client/LayoutListView.java:
2031 2011-03-22 Ben Konrath <ben@bagu.org>
2033 Use a count query to get the number of rows for the list view pager.
2035 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2037 2011-03-22 Ben Konrath <ben@bagu.org>
2039 Add more TODO information about CellTable pager positioning.
2043 2011-03-19 Ben Konrath <ben@bagu.org>
2045 Add TODO item about CellTable pager positioning.
2049 2011-03-18 Ben Konrath <ben@bagu.org>
2051 Remove unneeded GlomFieldColumn class.
2053 This is just a small code cleanup.
2055 * src/main/java/org/glom/web/client/LayoutListView.java:
2057 2011-03-18 Ben Konrath <ben@bagu.org>
2059 Use cursor mode in the query that gets data for the list view.
2061 I still need to fix the potential memory problem when getting the row
2062 count for the list view.
2064 * TODO: Add note about testing memory usage with large data sets. Add
2065 item about fixing row counting with large data sets.
2066 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Put the
2067 PostgreSQL JDBC driver into cursor mode when getting data for the
2070 2011-03-15 Ben Konrath <ben@bagu.org>
2072 Remove the GWT Container from the Eclipse build classpath.
2074 The GWT dependencies are set by Maven so this isn't needed.
2078 2011-03-15 Murray Cumming <murrayc@murrayc.com>
2080 Added some earlier mockups to git, but not to the tarball dist.
2082 * mockups/: Added some mockups from 2010-02 by Daniel Borgmann for
2083 Openismus. These hopefully show how we might structure the HTML so that
2084 it can be styled easily with CSS. However, we probably need to adapt them
2085 for the CSS structure that GWT dictates for common widgets.
2087 2011-03-14 Ben Konrath <ben@bagu.org>
2089 Locate OnlineGlom.properties using the ServletContext.
2091 This is required to be able to locate the file in the deployed servlet.
2093 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2094 Configure the database and glom document in in a helper method so
2095 that the ServletContext can be used to locate OnlineGlom.properties.
2096 * src/main/webapp/WEB-INF/OnlineGlom.properties: Moved from
2097 src/main/webapp. This is the proper location for .properites files.
2099 2011-03-12 Ben Konrath <ben@bagu.org>
2101 Add note to README about why we're compiling down to obfuscated JavaScript.
2105 2011-03-11 Ben Konrath <ben@bagu.org>
2107 Use properties file to configure servlet.
2109 This allows people to change the glom file path, db username and db
2110 password without recompiling the code.
2112 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2113 * src/main/webapp/OnlineGlom.properties:
2115 2011-03-11 Ben Konrath <ben@bagu.org>
2117 Use table fields in layout list view if the layout list is not defined.
2119 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2120 Manually create a LayoutFieldVector for the query builder using the
2121 table fields when a layout list is not defined in the glom file.
2123 2011-03-11 Ben Konrath <ben@bagu.org>
2125 Only show FIXME string for images when there's an image.
2127 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Also included
2128 in this change are some small code cleanups.
2130 2011-03-11 Ben Konrath <ben@bagu.org>
2132 Set text for fields with TYPE_IMAGE and TYPE_INVALID to avoid NPEs.
2134 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2136 2011-03-11 Ben Konrath <ben@bagu.org>
2138 Correctly set the index of the default table.
2140 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2141 Correctly set the index of the default table. Add commented out example
2144 2011-03-10 Ben Konrath <ben@bagu.org>
2146 Add comment to pom.xml about the previous change.
2148 * pom.xml: Add comment about the deployment issue so that it's obvious
2149 why java-libglom is set to the provided scope.
2151 2011-03-10 Ben Konrath <ben@bagu.org>
2153 Change java-libglom dependency from compile to provided in pom.xml.
2155 Since java-libglom uses jni it can only be loaded once and therefore
2156 must be placed in $CATALINA_HOME/lib and not included in each war.
2157 This directory is defined as /usr/share/tomcat6/lib/ on Ubuntu 10.04.
2158 More information about this issue can be found in the Tomcat 6 release
2159 notes in the "JNI Based Applications" section:
2161 http://tomcat.apache.org/tomcat-6.0-doc/RELEASE-NOTES.txt
2163 * README: Remove note about this issue. Deployment info should really
2164 be on the wiki anyway so I'll add it right now.
2165 * pom.xml: Change java-libglom dependency from compile to provided so
2166 that it's copied in to the packaged war.
2168 2011-03-09 Ben Konrath <ben@bagu.org>
2170 Change to using a neutral locale for currency, date and time formatting.
2172 This solves the problem of currency values being represented without a
2173 space between the currency code and the number (e.g. "EUR5.89" is now
2174 represented as "EUR 5.89"). More work is required when we implement
2175 a locale preference setting.
2177 * TODO: Add note about currency formatting issues with different
2179 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
2180 to using the neutral ROOT locale.
2182 2011-03-09 Ben Konrath <ben@bagu.org>
2184 Add support for currency codes that are not ISO 4217 codes.
2186 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
2187 the currency code defined in the glom file when it's not 3 characters
2188 long or when Java doesn't recognize the string as an ISO 4217 code.
2190 2011-03-08 Ben Konrath <ben@bagu.org>
2192 Remove test classes, launch configurations and configuration.
2194 The test stuff was getting in the way when creating the war. To make
2195 the war file you can now do 'mvn clean package'. The packaged war file
2196 will be in the target directory.
2198 * .classpath: Remove unused classpathentry for tests and i18n.
2199 * pom.xml: Remove junit.jar dependency. Properly use gwt.version
2200 property. Don't run test or i18n goals when packaging the war.
2201 * src/main/webapp/WEB-INF/web.xml: Add xml name space. Correct
2206 * OnlineGlomTest-dev.launch:
2207 * OnlineGlomTest-prod.launch:
2208 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java:
2209 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
2211 2011-03-07 Ben Konrath <ben@bagu.org>
2213 Update gwt-maven plugin to 2.2.0 and fix other configuation problems.
2215 These fixes allow me to use 'mvn deploy' to create the war file.
2217 * .classpath: This generated config has been updated by Eclipse. This
2218 change was probably triggered by me updating from Eclipse 3.6.1 to
2220 * .gitignore: Add entry to ignore the directory
2221 src/main/webapp/WEB-INF/deploy. This directory is generated by Eclipse.
2222 * .project: The generated config has been updated by Eclipse. This
2223 change was probably triggered by me updating from Eclipse 3.6.1 to
2225 * .settings/com.google.appengine.eclipse.core.prefs: Add empty config
2226 so that Eclipse doesn't complain
2227 * pom.xml: Update to gwt-maven-plugin 2.2.0.
2228 * src/test/java/org/glom/web/client/GwtTestOnlineGlom.java: Move from
2229 'tests' directory to 'client' directory. This is the new
2230 gwt-maven-plugin convension.
2231 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml: Correctly
2232 refer to org.glom.web.OnlineGlom gwt module and OnlineGlomServiceImpl.
2234 2011-03-07 Ben Konrath <ben@bagu.org>
2236 Add support for horizontal alignment in the LayoutList columns.
2238 * TODO: Remove item about horizontal alignment. Add item about
2239 improvements to ColumnInfo.
2240 * src/main/java/org/glom/web/client/LayoutListView.java: Set horizontal
2241 alignment on the columns. Use ColumnInfo RPC object get the column
2242 title and horizontal alignment.
2243 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
2244 LayoutListView creation with ColumnInfo RPC object.
2245 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Create
2246 a ColumnInfo object for every LayoutList columnn. Convert the
2247 FieldFormatting.HorizontalAlignment to the correct
2248 ColumnnInfo.HorizontatlAlignment with the new
2249 getColumnInfoHorizontalAlignment helper method.
2250 * src/main/java/org/glom/web/shared/ColumnInfo.java: New RPC object
2251 to encapsulate column information like alignment and title. This
2252 could be used to set the colour instead of on a per cell field basis.
2253 * src/main/java/org/glom/web/shared/LayoutListTable.java: Replace
2254 column title storage and retrieval with ColumnInfo.
2256 2011-03-04 Ben Konrath <ben@bagu.org>
2258 Add support for column sorting.
2260 * src/main/java/org/glom/web/client/LayoutListView.java: Change
2261 AsynDataProvider to be an anonymous inner class. Use new
2262 getSortedTableData RPC method when column sort is requested. Set all
2263 columns sortable and add an AsyncHandler to activate sorting in the
2265 * src/main/java/org/glom/web/client/OnlineGlomService.java: Add new
2266 method getSortedTableData(). Cleanup other method signatures.
2267 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Add
2268 new method getSortedTableData(). Cleanup other method signatures.
2269 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2270 Implement getSortedTableData() and getTableData() methods by using a
2271 private helper method with the appropriate parameters filled in. Use
2272 user supplied sort clause when supplied, otherwise fall back to
2273 sorting by the primary key. Move destroy() method to be underneath
2274 constructor for readability. Cleanup comments.
2276 2011-03-03 Ben Konrath <ben@bagu.org>
2278 Add support for colour text and colour backgrounds to the layout list cells.
2280 Only the cell backgrounds are coloured which leaves a gap between the
2281 cells that isn't coloured. I need to figure out a way to set
2282 'style=background-colour:' on the whole column rather than just the
2285 * TODO: Add a note about colouring the background of the whole column.
2286 * src/main/java/org/glom/web/client/LayoutListView.java: Add a custom
2287 column type (GlomFieldColumn) and a custom cell type (GlomFieldCell) to
2288 render the coloured text and backgrounds. Use GlomField[] for the row type.
2289 * src/main/java/org/glom/web/client/OnlineGlomService.java: Use GlomField[]
2291 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Use
2292 GlomField[] for the row type.
2293 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Use
2294 GlomField[] for the row type. Set the text, text colour and background
2295 colour in the GlomField objects as specified in the glom document. Add
2296 method to convert from Gdk::Color to HTML colour string. Cleanup comments.
2297 * src/main/java/org/glom/web/shared/GlomField.java: New file to encapulate
2298 the glom field text, foreground colour and background colour.
2300 2011-03-02 Ben Konrath <ben@bagu.org>
2302 Don't display hidden tables in the combo box.
2304 * src/main/java/org/glom/web/client/OnlineGlom.java: Update code to use
2306 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
2307 code to ignore hidden tables using ArrayLists for the table names and
2309 * src/main/java/org/glom/web/shared/GlomDocument.java: Change tableTitles and
2310 tableNames to use ArrayLists instead of String[]. Update getter and setter
2313 2011-03-01 Ben Konrath <ben@bagu.org>
2315 Add support for Date and Time number types.
2317 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2318 Implement formatting for Date and Time values. Change the default glom
2319 file to small business example.
2321 2011-03-01 Ben Konrath <ben@bagu.org>
2323 Add support for formatting glom types as specified in the glom file.
2325 Formatting isn't finished yet - I still need to add support for Date
2328 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Add
2329 formatting support for TYPE_TEXT, TYPE_BOOLEAN and TYPE_NUMERIC. Remove
2330 checks for null values in JDBC cleanup code and catch all exceptions
2331 instead of just SQLExceptions.
2332 * src/main/java/org/glom/web/shared/LayoutListTable.java: Fix incorrect
2335 2011-03-01 Ben Konrath <ben@bagu.org>
2337 Use GWT 2.2.0 instead of 2.1.1.
2339 * pom.xml: Change GWT version numbers.
2341 2011-03-01 Ben Konrath <ben@bagu.org>
2343 A few small code cleanups.
2345 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Remove
2347 * src/main/java/org/glom/web/shared/GlomDocument.java: Remove
2348 unnecessary object creation in constructor.
2349 * src/main/java/org/glom/web/shared/LayoutListTable.java: Remove
2350 unnecessary object creation in constructor.
2352 2011-02-28 Ben Konrath <ben@bagu.org>
2354 Add file for TODO list.
2358 2011-02-18 Ben Konrath <ben@bagu.org>
2360 Enable the CellTable Pager when more than 20 rows need to be viewed.
2362 The Pager will automatically become active when the results are larger
2363 than the CellTable size which is currently set to 20 lines.
2365 * src/main/java/org/glom/web/client/LayoutListView.java: Correct class
2366 name on debug statment in RPC call in LayoutListDataProvider, add
2367 numRows parameter to LayoutListView constructor, propperly set rowCount
2369 * src/main/java/org/glom/web/client/OnlineGlom.java: Correct class
2370 name on debug statment in RPC call, use LayoutListTable object in RPC
2371 calls, pass rowCount to LayoutListView.
2372 * src/main/java/org/glom/web/client/OnlineGlomService.java: Change
2373 getLayoutListHeaders to getLayoutListTable and return LayoutListTable
2375 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java: Update
2376 interface for changes in OnlineGlomService.
2377 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java: Change
2378 getLayoutListHeaders() to getLayoutListTable() and return
2379 LayoutListTable. Using this object allows me to pass other information
2380 about the LayoutList like the expected number of rows in the result set.
2381 The Connection object from the connection pool is now propperly closed.
2382 Only the requested number of lines are returned to the client in
2384 * src/main/java/org/glom/web/shared/LayoutListTable.java: Move from
2385 GlomTable and add columnTitles and numRows.
2387 2011-02-18 Ben Konrath <ben@bagu.org>
2389 Use String arrays instead of GlomTable objects in GlomDocument GWT-RPC object.
2391 This is a small performance boost. I'll use GlomTable to get the required
2392 layoutlist information.
2394 * src/main/java/org/glom/web/client/OnlineGlom.java:
2395 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2396 * src/main/java/org/glom/web/shared/GlomDocument.java:
2398 2011-02-18 Ben Konrath <ben@bagu.org>
2400 Add option to turn off formatting in JDT formatter preferences.
2402 * .settings/org.eclipse.jdt.core.prefs:
2404 2011-02-18 Ben Konrath <ben@bagu.org>
2406 Rename LayoutList to LayoutListView.
2408 I'm working towards setting things up to easily use MVP when the time
2411 * src/main/java/org/glom/web/client/LayoutListView.java: Rename from
2413 * src/main/java/org/glom/web/client/OnlineGlom.java: Update
2416 2011-02-17 Ben Konrath <ben@bagu.org>
2418 Move LayoutListDataProvider class into LayoutList.java.
2420 * src/main/java/org/glom/web/client/LayoutList.java:
2422 2011-02-17 Ben Konrath <ben@bagu.org>
2424 Rename RPC service classes from LibGlomService* to OnlineGlomService*.
2426 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Update
2428 * src/main/java/org/glom/web/client/OnlineGlom.java: Update references.
2429 * src/main/java/org/glom/web/client/OnlineGlomService.java: Rename
2430 from LibGlomServer.java.
2431 * src/main/java/org/glom/web/client/OnlineGlomServiceAsync.java:
2432 Rename from LibGlomServiceAsync.java.
2433 * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java:
2434 Rename from LibGlomServiceImpl.java.
2435 * src/main/webapp/WEB-INF/web.xml: Update configuration.
2437 2011-02-17 Ben Konrath <ben@bagu.org>
2439 Update JDT settings.
2441 * .settings/org.eclipse.jdt.core.prefs:
2443 2011-02-17 Ben Konrath <ben@bagu.org>
2445 Move GWT-RPC objects to shared package (where they should be).
2447 * src/main/java/org/glom/web/client/LibGlomService.java: Update imports.
2448 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Update imports.
2449 * src/main/java/org/glom/web/client/OnlineGlom.java: Update imports.
2450 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Update imports.
2451 * src/main/java/org/glom/web/shared/GlomDocument.java: Move to
2452 org.glom.web.shared package.
2453 * src/main/java/org/glom/web/shared/GlomTable.java: Move to
2454 org.glom.web.shared package.
2455 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml: Included shared
2456 directory in compilation to javascript.
2458 2011-02-16 Ben Konrath <ben@bagu.org>
2460 Add sort clause to the sql query that grabs table information.
2462 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add sort clause
2463 if one of the columns is a primary key.
2465 2011-02-16 Ben Konrath <ben@bagu.org>
2467 Disable generateAsync feature of gwt-maven.
2469 The generated interface does not correctly match the methods in LibGlomService
2470 and the generated singleton Util inner-class doesn't respect the servlet
2473 * pom.xml: Turn off generateAsync feature.
2474 * src/main/java/org/glom/web/client/LibGlomServiceAsync.java: Re-add file
2475 with singleton Util inner-class.
2477 2011-02-14 Ben Konrath <ben@bagu.org>
2479 Add LGPL v3 licence notices.
2481 Followed directions listed here:
2482 http://www.gnu.org/licenses/gpl-howto.html
2484 * COPYING: This file is a copy of the GPL v3.
2485 * COPYING.LESSER: This file is a copy of the LGPL v3.
2486 * src/main/java/org/glom/web/client/GlomDocument.java: Add licence
2488 * src/main/java/org/glom/web/client/GlomTable.java: Add licence
2490 * src/main/java/org/glom/web/client/LayoutList.java: Add licence
2492 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Add
2494 * src/main/java/org/glom/web/client/LibGlomService.java: Add licence
2496 * src/main/java/org/glom/web/client/OnlineGlom.java: Add licence
2498 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
2501 2011-02-14 Ben Konrath <ben@bagu.org>
2503 Use ArrayList instead of Array in GWT-RPC calls.
2505 Apparently this gives a slight performance boost to the compiled
2508 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use ArrayList
2510 * src/main/java/org/glom/web/client/LibGlomService.java: Use ArrayList instead
2513 2011-02-14 Ben Konrath <ben@bagu.org>
2515 Access data from a postgres db rather than the example glom file.
2517 * .settings/com.google.gwt.eclipse.core.prefs: Change GWT setting to
2518 compile down to obfuscated javascript.
2519 * pom.xml: Add c3p0 and postgres JDBC libraries.
2520 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Return data
2521 using a postgres db accessed through the c3p0 connection pooling library.
2523 2011-02-14 Ben Konrath <ben@bagu.org>
2525 Update Java formatter settings.
2527 * .settings/org.eclipse.jdt.core.prefs: Change comment length to 120.
2529 2011-02-02 Ben Konrath <ben@bagu.org>
2531 Update Eclipse and Maven configs to in preparation for the postgres JDBC jar.
2533 * .classpath: Change JRE to Java 1.6, remove GWT configuration as we're now
2535 * .settings/com.google.gwt.eclipse.core.prefs: Don't copy gwt-servlet.jar to
2536 the compiled webapp directory that Eclipse uses as we're using Maven now.
2537 * .settings/org.eclipse.jdt.core.prefs: Change target platform to Java 1.6.
2538 * .settings/org.eclipse.wst.common.project.facet.core.xml: Change Java version
2540 * pom.xml: Format file, change target Java version to 1.6.
2542 2011-02-02 Ben Konrath <ben@bagu.org>
2544 Add information about a deployment related issue.
2546 * README: Add Notes section with the problem outlined.
2548 2011-02-02 Ben Konrath <ben@bagu.org>
2550 Call Glom.libglom_deinit() when the servlet is shutdown.
2552 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java: Add
2553 Glom.libglom_deinit() to destroy() method.
2555 2011-01-28 Ben Konrath <ben@bagu.org>
2557 Use generated Util class to get the RPC Async interface.
2559 * .settings/com.google.gwt.eclipse.core.prefs: Update generated Eclipse config
2561 * src/main/java/org/glom/web/client/LayoutListDataProvider.java: Use generated
2562 getInstance() method to get a reference to the RPC Async interface.
2563 * src/main/java/org/glom/web/client/OnlineGlom.java: Use generated
2564 getInstance() method to get a reference to the RPC Async interface, remove
2565 the now unused getLibGlomServiceProxy() method.
2567 2011-01-27 Ben Konrath <ben@bagu.org>
2569 Cleanup ChangeLog entry from previous commit.
2571 * ChangeLog: Group logical changes together and add comments.
2573 2011-01-25 Ben Konrath <ben@bagu.org>
2575 Convert to gwt-maven project.
2577 * .gitignore: Update for new project structure.
2578 * README: New file with a link to the online documentation.
2579 * pom.xml: The generated maven configuration file with some tweaks.
2581 Add / update Eclipse settings. These files are a merge of the files that
2582 were generated with the gwt-maven plugin and the files we were previously
2586 * .settings/.jsdtscope:
2587 * .settings/com.google.gdt.eclipse.core.prefs:
2588 * .settings/com.google.gwt.eclipse.core.prefs:
2589 * .settings/org.eclipse.jdt.core.prefs:
2590 * .settings/org.eclipse.wst.common.component:
2591 * .settings/org.eclipse.wst.common.project.facet.core.xml:
2592 * .settings/org.eclipse.wst.jsdt.ui.superType.container:
2593 * .settings/org.maven.ide.eclipse.prefs:
2594 * OnlineGlomTest-dev.launch:
2595 * OnlineGlomTest-prod.launch:
2597 Java source files moved from the 'src' directory to the directory structure
2599 * src/main/java/org/glom/web/client/GlomDocument.java:
2600 * src/main/java/org/glom/web/client/GlomTable.java:
2601 * src/main/java/org/glom/web/client/LayoutList.java:
2602 * src/main/java/org/glom/web/client/LayoutListDataProvider.java:
2603 * src/main/java/org/glom/web/client/LibGlomService.java:
2604 * src/main/java/org/glom/web/client/OnlineGlom.java:
2605 * src/main/java/org/glom/web/server/LibGlomServiceImpl.java:
2607 Non-functional property file used for translations. I included this as
2608 reminder that it's something I need to sort out.
2609 * src/main/resources/org/glom/web/client/Messages.properties:
2611 The OnlineGlom GWT config file moved from the 'src/org/glom/web' directory.
2612 * src/main/resources/org/glom/web/OnlineGlom.gwt.xml:
2614 The servlet configuration files moved from the 'war' directory.
2615 * src/main/webapp/OnlineGlom.css:
2616 * src/main/webapp/OnlineGlom.html:
2617 * src/main/webapp/WEB-INF/web.xml:
2619 Generated test files with most of the code commented out. I included these
2620 so that it's easy to add tests when we're ready for them.
2621 * src/test/java/org/glom/web/tests/GwtTestOnlineGlom.java:
2622 * src/test/resources/org/glom/web/OnlineGlomJUnit.gwt.xml:
2624 2011-01-25 Ben Konrath <ben@bagu.org>
2626 Remove unused println.
2628 * src/org/glom/web/server/LibGlomServiceImpl.java:
2630 2011-01-25 Ben Konrath <ben@bagu.org>
2632 Add project specific JDT settings.
2634 * .settings/org.eclipse.jdt.core.prefs: Generated by Eclipse.
2635 * .settings/org.eclipse.jdt.ui.prefs: Generated by Eclipse.
2637 2011-01-25 Ben Konrath <ben@bagu.org>
2639 Populate celltable with example data.
2641 * src/org/glom/web/client/GlomDocument.java: Correct formatting.
2642 * src/org/glom/web/client/GlomTable.java: Correct formatting.
2643 * src/org/glom/web/client/LayoutList.java: Renamed from ListLayoutTable.java,
2644 add LayoutListDataProvider to CellTable, add simpler pager (not working yet).
2645 * src/org/glom/web/client/LayoutListDataProvider.java: New file,
2646 asynchronously gets the example data.
2647 * src/org/glom/web/client/LibGlomService.java: Add getTableData() method.
2648 * src/org/glom/web/client/LibGlomServiceAsync.java: Add getTableData() method.
2649 * src/org/glom/web/client/OnlineGlom.java: Allow service proxy object and
2650 curently selected table to be retrieved by other widgets.
2651 * src/org/glom/web/server/LibGlomServiceImpl.java: Correct formatting,
2652 implement getTableData() in a hacky way. This method needs to be updated
2653 to grab information from the database when database creating is
2656 2011-01-20 Ben Konrath <ben@bagu.org>
2658 Set table headers when table dropBox changes.
2660 * src/org/glom/web/client/GlomDocument.java: Correct some method
2662 * src/org/glom/web/client/LibGlomService.java: Add method
2663 to get list layout field names.
2664 * src/org/glom/web/client/LibGlomServiceAsync.java: Add method
2665 to get list layout field names.
2666 * src/org/glom/web/client/ListLayoutTable.java: New file - composite
2667 widget for list layout table.
2668 * src/org/glom/web/client/OnlineGlom.java: Add a change handler for
2669 the table drop box and add new updateTable() method to asynchronously
2670 get the layout list field names for the currently selected table.
2671 * src/org/glom/web/server/LibGlomServiceImpl.java: Add server side
2672 implementation of getLayoutListHeaders() method.
2673 * war/OnlineGlom.html: Remove GlomWebApp div tag as it is not required.
2675 2011-01-18 Ben Konrath <ben@bagu.org>
2677 Make a listBox with table titles instead of the flexTable demo.
2679 This is the start of something more useful.
2681 * .classpath: Exclude a bunch of packages from the JVM that are
2682 getting in the way of the Eclipse content assist.
2683 * src/org/glom/web/client/GlomDocument.java:
2684 * src/org/glom/web/client/GlomTable.java:
2685 * src/org/glom/web/client/LibGlomService.java:
2686 * src/org/glom/web/client/LibGlomServiceAsync.java:
2687 * src/org/glom/web/client/OnlineGlom.java:
2688 * src/org/glom/web/server/LibGlomServiceImpl.java:
2689 * war/OnlineGlom.html:
2690 * war/WEB-INF/web.xml:
2692 211-01-13 Ben Konrath <ben@bagu.org>
2694 Update to new java-libglom API.
2696 * .gitignore: Ignore OnlineGlom.war.
2697 * src/org/glom/web/server/TableNamesServiceImpl.java: Update to new java-libglom API.
2699 2010-12-20 Ben Konrath <ben@bagu.org>
2701 Add some basic style to the table listing.
2703 * src/org/glom/web/client/OnlineGlom.java: Add style to the table
2704 header, print useful error message on async callback failure.
2705 * war/OnlineGlom.css: Add style for table header, remove defaults
2706 provided by the Eclipse project wizard.
2708 2010-12-20 Ben Konrath <ben@bagu.org>
2710 Load example file from installed glom dir.
2712 * src/org/glom/web/server/TableNamesServiceImpl.java: Use the Java API
2713 provided by java-libglom to find the example file.
2715 2010-12-20 Ben Konrath <ben@bagu.org>
2717 Update Eclipse settings.
2720 * .settings/com.google.gdt.eclipse.core.prefs:
2721 * .settings/com.google.gwt.eclipse.core.prefs:
2723 2010-12-17 Ben Konrath <ben@bagu.org>
2727 * .classpath: New file.
2728 * .gitignore: New file.
2729 * .project: New file.
2730 * .settings/com.google.gdt.eclipse.core.prefs: New file.
2731 * .settings/com.google.gwt.eclipse.core.prefs: New file.
2732 * src/org/glom/web/OnlineGlom.gwt.xml: New file.
2733 * src/org/glom/web/client/GlomTable.java: New file.
2734 * src/org/glom/web/client/OnlineGlom.java: New file.
2735 * src/org/glom/web/client/TableNameService.java: New file.
2736 * src/org/glom/web/client/TableNameServiceAsync.java: New file.
2737 * src/org/glom/web/server/TableNamesServiceImpl.java: New file.
2738 * war/OnlineGlom.css: New file.
2739 * war/OnlineGlom.html: New file.
2740 * war/WEB-INF/web.xml: New file.
2741 * war/images/glom.png: New file.