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 2C1FB10E2F for ; Tue, 10 Sep 2013 13:16:46 +0000 (UTC) Received: (qmail 53521 invoked by uid 500); 10 Sep 2013 13:16:45 -0000 Delivered-To: apmail-flex-dev-archive@flex.apache.org Received: (qmail 53370 invoked by uid 500); 10 Sep 2013 13:16:44 -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 53361 invoked by uid 99); 10 Sep 2013 13:16:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Sep 2013 13:16:43 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of harbs.lists@gmail.com designates 209.85.215.174 as permitted sender) Received: from [209.85.215.174] (HELO mail-ea0-f174.google.com) (209.85.215.174) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Sep 2013 13:16:37 +0000 Received: by mail-ea0-f174.google.com with SMTP id z15so3835591ead.19 for ; Tue, 10 Sep 2013 06:16:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:content-type:content-transfer-encoding:subject:date:message-id :to:mime-version; bh=vdIhqYYdzaZkwMbDxYM1jnChxNcMkx2hJ+p48598gYk=; b=r6m8mMx/dt8+vNyYMVr8toHbIDpyR/3S+/6sWIq91q6JyCZSOrqOF4SfmxS7h9QXgh t3UK67ouiSIUHfn5Y1mAf2EywFazhtQiX+qCu+h2ibIRejU4KUfyoP3sJ2uUuXmDP8LL hppXdGZy53sv7vLUvUFgJPodVVJbJM19vNypUYdfGlLAJHdG0P31Lbq+L8NAa4mmbL88 6icQz9z0UHKLonPEC1rnFQGWyIWXSODe5jdO78k/15WH1oPFWK92m31POrJ4birmbTsO 9rVnZg3RqMeCtg2KpnEwZtUvhMfNzNhtnbwsecQ9Dksb0oJnxYUR2Rak4Lhtuu2bFMpl ZF5w== X-Received: by 10.14.29.67 with SMTP id h43mr39177206eea.7.1378818975400; Tue, 10 Sep 2013 06:16:15 -0700 (PDT) Received: from [192.168.0.6] ([31.210.181.165]) by mx.google.com with ESMTPSA id m54sm31320101eex.2.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 10 Sep 2013 06:16:14 -0700 (PDT) From: Harbs Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: TLF Tables Date: Tue, 10 Sep 2013 16:16:13 +0300 Message-Id: <4CB863BE-CC13-4ECF-BF43-DA190A0D7C05@gmail.com> To: dev@flex.apache.org Mime-Version: 1.0 (Apple Message framework v1283) X-Mailer: Apple Mail (2.1283) X-Virus-Checked: Checked by ClamAV on apache.org I knew I was going to spend some real time on this one day, and that = time is coming really soon=85 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=85 I'll try to add some documentation to the source code as things become = clearer to me=85 Harbs=