Return-Path: X-Original-To: apmail-flex-dev-archive@www.apache.org Delivered-To: apmail-flex-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 41B70C78F for ; Tue, 10 Sep 2013 16:18:34 +0000 (UTC) Received: (qmail 5605 invoked by uid 500); 10 Sep 2013 16:18:33 -0000 Delivered-To: apmail-flex-dev-archive@flex.apache.org Received: (qmail 5552 invoked by uid 500); 10 Sep 2013 16:18:33 -0000 Mailing-List: contact dev-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list dev@flex.apache.org Received: (qmail 5544 invoked by uid 99); 10 Sep 2013 16:18:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Sep 2013 16:18:33 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of aharui@adobe.com designates 64.18.1.218 as permitted sender) Received: from [64.18.1.218] (HELO exprod6og125.obsmtp.com) (64.18.1.218) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Sep 2013 16:18:25 +0000 Received: from outbound-smtp-1.corp.adobe.com ([192.150.11.134]) by exprod6ob125.postini.com ([64.18.5.12]) with SMTP ID DSNKUi9GO614plpuljA7eUC/FSqJkQulozul@postini.com; Tue, 10 Sep 2013 09:18:04 PDT Received: from inner-relay-2.corp.adobe.com ([153.32.1.52]) by outbound-smtp-1.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r8AGESiH022930 for ; Tue, 10 Sep 2013 09:14:28 -0700 (PDT) Received: from nahub02.corp.adobe.com (nahub02.corp.adobe.com [10.8.189.98]) by inner-relay-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r8AGI3w7007526 for ; Tue, 10 Sep 2013 09:18:03 -0700 (PDT) Received: from NAMBX02.corp.adobe.com ([10.8.127.96]) by nahub02.corp.adobe.com ([10.8.189.98]) with mapi; Tue, 10 Sep 2013 09:18:02 -0700 From: Alex Harui To: "dev@flex.apache.org" Date: Tue, 10 Sep 2013 09:17:58 -0700 Subject: Re: TLF Tables Thread-Topic: TLF Tables Thread-Index: Ac6uQVKpCXYOyAlnT9Gn3gdvwyR1Rg== Message-ID: In-Reply-To: <4CB863BE-CC13-4ECF-BF43-DA190A0D7C05@gmail.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Microsoft-MacOutlook/14.3.6.130613 acceptlanguage: en-US Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org Hi Harbs, I see code for Tables, but I'm not sure it is "officially" there. Or even complete, or even working at a prototype-level. So good luck with it. I might be able to ask folks who used to work on it a few questions, but I'm pretty sure their memories of it are pretty dim by now. -Alex On 9/10/13 6:16 AM, "Harbs" wrote: >I knew I was going to spend some real time on this one day, and that time >is coming really soon=8A > >Before I dig in too deeply, what's the status on TLF Table support? I >know it's officially there, but I don't see any documentation on it -- >not even the basics on how it's supposed to be used. > >I fully expect to find bugs once I start really digging into it, but some >documentation (any) would be nice to get me started. > >Looking at the source code, I see the following classes: > >TableElement >TableBodyElement >TableColElement >TableRowElement >TableColGroupElement >TableDataCellElement >TableFormattedElement > >I understand the structure like this: > >* A TableElement is the top level element for any table >* All elements in a table inherit from TableFormattedElement >* The bottom level of a table which needs to contain one or more >ParagraphElements in a TableDataCellElement >* TableDataCellElements must reside within a TableRowElement > >After this things get a bit fuzzier. > >What is TableBodyElement used for? >How is TableColGroupElement and TableColElement used? (I assume they are >used for formatting table columns, but the details are not very clear to >me.) >What about header and footer rows? Is that supported yet? >Header and footer columns? >Is breaking tables across containers supported yet? > >I have not started studying how to specify table formatting either. I'm >hoping that's obvious=8A > >I'll try to add some documentation to the source code as things become >clearer to me=8A > >Harbs