n#480876: Find "Note" is a <comment> in a .../comments relation,
which are not being parsed at all. Here's an idea of what we expect.
Implement parsing actual contents of comments1.xml in
OoxCommentsFragment. Luckily, the text details are handled by
OOxRichStringContext. Weirdly, it seems not trivially possible
to print the contents of an OoxRichString; it will only
export to text:XText. XCell does have an XText so as a
second test, try putting the note directly into its cell.
This works.
<a:hlinkClick xmlns:r="http://schemas.openxmlformats.org/
officeDocument/2006/relationships" r:id="rId1"/>
the rId1 in this case means: look in xl/drawings/_rels/drawing1.xml.rels
relations and get Relationship with Id="rId1"<Relationships xmlns="http://schemas.openxmlformats.org/
package/2006/relationships">
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/
officeDocument/2006/relationships/hyperlink"
Target="http://www.heise.de/" TargetMode="External"/>
</Relationships>
Now I wonder what's wrong with giving a:hlinkClick an attibute
href="http://heise.de". And what's this about Click? Is there
also a <a:hlinkKeyPress>? Is a hlinkClick truly a hlinkClick if
it's--sadly--in all eternity *never ever* getting clicked? Anyway.
Thread: 1 :void oox::xls::OoxWorksheetFragment::
importTable(const oox::AttributeList&): reading table: xl/tables/table1.xml
Thread: 1 :void oox::xls::OoxWorksheetFragment::
importTable(const oox::AttributeList&): reading table from: rId2
Error: File /home/janneke/vc/ooo310-m6/build/ooo310-m6/oox/source/xls/tablebuffer.cxx,
Line 158: TableBuffer::insertTable - multiple table identifier
but indirectly from Rels instead of when encountering
<tableParts><tablePart ../> in the .xlsx. Hmm. Why would that be?
Not only do we have chart data now, even the formulas and
labels show fine :-) Yay, squashed my first ooxml import
bug, albeit with much help from Kohei.
It is still a subject of debate whether or not "free will" exists (or rather, the philosophical debate on free will is on hold). But if free will does exists, it is commonly ascribed to be a property of conciousness. Now, if science finds the universe to share a property of conciousness with us, that's interesting.The Strong Free Will Theorem
It asserts, roughly, that if indeed we humans have free will, then elementary particles already have their own small share of this valuable commodity. More precisely, if the experimenter can freely choose the directions in which to orient his apparatus in a certain measurement, then the particle’s response (to be pedantic—the universe’s response near the particle) is not determined by the entire previous history of the universe.
***
Some readers may object to our use of the term “free will” to describe the indeterminism of particle responses. Our provocative ascription of free will to elementary particles is deliberate, since our theorem asserts that if experimenters have a certain freedom, then particles have exactly the same kind of freedom. Indeed, it is natural to suppose that this latter freedom is the ultimate explanation of our own.
and adding -lcharttoolslxs to sc/util/makefile.mk. It works!#include <../../chart2/source/inc/CachedDataSequence.hxx>
because I thought they looked fishy and there seemed to be no data in those ranges--well, they do and there isn't, the [1] means: external reference 1--in the hope this would be a quick fix.<c:f>[1]Sheet2!$A$10:$A$19</c:f> <c:f>[1]Sheet2!$B$10:$B$19</c:f>
As we're not handling external references in ooxml at all, as I
seem to remember Kohei was saying, avoid setting the c:f result
for external references while parsing chart data. This makes
n#480868's chart.xlsx draw the lineChart chart1 and pieChart
chart2 graphs correctly. The labels and external reference
data is missing, so we possibly need a better fix.
Y:\odf\Test-Documents\Upstream-Release-1.1-March-6-2008\PPT\[Linking_Excel_Charts.xlsx]Sheet2'!$B$9Ah, those are external references that Kohei was talking about. These are easy to spot if you know where to look, there's an
<cols>
<col min="1" max="19"/>
<col min="1" max="19"/>
</cols>
<sheetData>
<row r="1">
<c r="A1" t="n">
<v>1</v>
</c>
<c r="B1" t="n">
<v>19</v>
</c>
</row>
...
</sheetData>
which finally makes Chart1 show a graph (this is not the graph
we should be seeing, this is showing made-up data).
Nice to see how this all works, though.
************************************************** ERROR: ERROR: Could not register all components for file services.rdb (gid_Starregistry_Services_Rdb)! in function: create_services_rdb **************************************************