File: BUGS

package info (click to toggle)
gnumeric 1.10.8-1squeeze5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 90,968 kB
  • ctags: 23,303
  • sloc: ansic: 248,235; xml: 51,894; sh: 10,491; makefile: 2,822; perl: 2,466; yacc: 1,272; python: 205
file content (889 lines) | stat: -rw-r--r-- 30,900 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
   To report Gnumeric bugs, please visit bugzilla.gnome.org.

    This file is used as a scratch pad by developers.  It is a list of known
issues that need to be addressed.  Divided into, things that will prevent
release, and longer term bugs.

-------------------------------------------------------------------------------
For 1.10
    - Bump libgsf version req and de-conditionalize xlsx pivot import.

Release Critical
----------------
    - hidding col/row headers should not hide outline symbols
    - header selection broken when there are groups

In Progress
-----------
    Jody
	- xlsx chart axis export
	- data slicers
	- CELL translation & array handling
	- INDEX range res, iteration
	- ExprEntry extensions
	- Tool to filter dups
	- python wrapper for libspreadsheet
	- mis-export of array expr
	    http://bugzilla.gnome.org/show_bug.cgi?id=322096

    : s/range_equal/gnm_range_eq/

Review
------
    - func name translation		{Manny}
    - merge libgda port

Target Features
---------------
- insert cut
- clipboard handlers in plugins
- load/save of external references
- all the merged cell singleton bugs
- scripting

Short term goals
----------------
    - .gnumeric I/O for PI:{error_display,comment_placement}
    - Use go_glade_signal_connect (and friends)
    - undo of cell range cut over clipboard
      http://live.gnome.org/Academic
    - ={A1:A3+rand()}	only calls rand() once.

Misc stuff that should be fixed
-------------------------------

- Missing undo/redo for
    - Freeze panes (tricky this is a view attribute)
    - `Add Scenario' Portion of Solver
 
- cols/rows
    : Make unhide smarter to find hidden regions on either side of
      selected ranges.
    : drag based col/row resize should support negative sizes to
      correspond to hiding.
    : support delete for discontinuous ranges

Worries
-------
    : range_translate in stf.c looks suspicous.
    : Add bounds checking of integers on the xml based importers
    : do bounds check in excel_get_text
    : provide undo for dropped objects from sheet_objects_clear
    : undo of pasting copy/cut of objects
    : Select graph, Copy, and paste to Emacs: used to crash, but now it
      just g_barfs and pastes empty string.

    - Create new type string/double/int (not bool) for BIN2DEC etc.
    - Allow missing arguments that are not '?' for ACCRINT.

    - TestForBiffConsumer : #REF ??
    - accrint-test.xls : why fail ?
    - BAHT functions
    - broken-name.xls
    - database_test.xls
    - div0-xp.xls
    - edward~1.xls
    - eng.xls
	- XL returns real numbers as strings from complex functions
	- Check difference in besseli
    - errors.xls
	: calc of interest
	: #REF on sheet2
    - extract-clean-new.xls : loss of data in col A ?
    - furigana.xls : #NAME?
    - global_calling_placeholder.xls
    - named-expr-95.xls
    - named-expr-97.xls
    - operand.xls
    - pivot-edited.xls : odd colours in the 'the range that contains' box
    - store and persist view modes
    - fix bogosity of 'ant' cursors being in sheet_view and having the app contact them.

-------------------------------------------------------------------------------

Pending Patches
---------------

Blocked Patches
---------------

-------------------------------------------------------------------------------
Architecture Changes
--------------------

- Merge wb_control_init_state and wb_control_set_view
- Use gtk_window_group_new to keep wbcg's distinct

1) things to move into libgoffice
    1.1) plugin-manager dialog
    1.2) doc meta data
	1.2.1) Use GsfDocMetaData	{Jody}
	    1.2.1.1) sax-in             (DONE)         
	    1.2.1.2) sax-out		(DONE)
	1.2.2) doc meta data dialog	{Trelane and etrunko}
    1.3) Insert hyperlink dialog
	1.3.1) Integration with evo address book
    1.4) move password dialog to goffice

2) Font handling (move to GOFont)

3) Function docs                                                (DONE)

4) AutoFilter [share functionality with slicers]
    4.19) Change value entries in expr dialog into combos
    4.4) 2nd value in expr dialog only if 1st is active
    4.23) undo/redo for creation                                (DONE)
    4.24) undo/redo for condition set change
    4.25) Undo redo support for ins/del col/row with filters
    4.26) guess initial region if its a singleton               (DONE)
    4.27) combo contains start to end of continuous region
           not just the end of the selected region
    4.28) filter changes should dirty things
    4.34) Tooltip on combo with the current filter details
    4.35) Change icon in combo from arrow to filter instead
	    of changing colour
    4.36) Support Office 2007 toggle selection
    4.37) Add fun new types (std dev)
    4.38) Add new condition types from style-condition
    4.39) Look at merging style-condition and filter
    4.40) col selector to autofilter dialog ala OOo
    4.45) MOOX
	4.45.1) import
	    4.45.1.1) top10					(DONE)
	    4.45.1.2) items
	    4.45.1.3) custom
	    4.45.1.4) dynamic
	4.45.2) export
	    4.45.2.1) top10					(DONE)
	    4.45.2.2) items
	    4.45.2.3) custom
	    4.45.2.4) dynamic
    4.46) ODF
	4.46.1) import
	4.46.2) export
    4.50) #346002 : tooltip of matching rows
    4.51) #383400 : '95' should match 95
    22.52) Clipboard ?? do we want this ?
    4.53) Support Office 2007 toggle date based buckets

5) Data Slicers
    5.1) I/O)
	5.1.1) MOOX						{David Thorne/Jody}
	    5.1.1.1) import
		5.1.1.1.1) Cache Definition			(DONE)
		    5.1.1.1.1.1) Groups				(DONE)
		    5.1.1.1.1.2) Sources			(DONE)
		5.1.1.1.2) Cache Records			(DONE)
		5.1.1.1.3) Table
		    5.1.1.1.3.1) Basic				(DONE)
	    5.1.1.2) export
		5.1.1.2.1) Cache Definition			(DONE)
		    5.1.1.2.1.1) Groups				(DONE)
		    5.1.1.2.1.2) Sources			(DONE)
		5.1.1.2.2) Cache Records			(DONE)
		5.1.1.2.3) Table
		    5.1.1.2.3.1) Basic
	5.1.2) xls						{Jody}
	    5.1.2.1) import
		5.1.1.1) Basics					(DONE)
		5.1.1.2) sources				(DONE)
		5.1.1.3) Groups					(DONE)
	    5.1.2.2) export pivot cache
		5.1.2.1) create streams				(DONE)
		5.1.2.2) records				(DONE)
		    5.1.2.2.1) SXDB				(DONE)
		    5.1.2.2.2) SXFDB				(DONE)
		    5.1.2.2.3) SXDDB				(DONE)
		5.1.2.3) streamId record
	5.1.3) ODF
    5.2) Data Structures
	5.2.1) Cache & Fields
	5.2.2) Slicer & fields
    5.3) Control Logic
	5.3.1) Sort by display fields				(DONE)
	5.3.2) dump as if all are row fields			(DONE)
	5.3.3) Grouping						(DONE)
	5.3.4) Aggregations
	5.3.5) Filters ('page')
    5.4) Undo/Redo
	5.4.1) refresh
	    5.4.1.1) stub					(DONE)
	5.4.2) reconfigure
	5.4.3) delete
	5.4.4) create
    5.5) UI
	5.5.1) actions						(DONE)
	    5.5.1.1) stub					(DONE)
	    5.5.1.2) context sensitive				(DONE)
	5.5.2) context menu
	    5.5.2.1) hook it up					(DONE)
	5.5.3) field dialog
	    5.5.3.1) stub					(DONE)
	    5.5.3.2) re-order fields
	    5.5.3.2) re-order fields
	5.5.4) cell combos
	    5.5.4.1) create					(DONE)
	    5.5.4.2) display for headers			(DONE)
	    5.5.4.3) support toggles				(DONE)
	    5.5.4.4) Add ok/cancel buttons
	    5.5.4.5) filter/sort options
    5.6) Functions
	5.6.1) GETPIVOTDATA signature

6) Undo/redo improvements
    6.1) Keep a .swp style log of user actions			{Dan Hall}
    6.2) Restore Row heights in CmdFormat::undo
    6.3) X-GNOME-Bugzilla-ExtraInfoScript=myscript

7) Drag and Drop						{Jon Kare}
    7.1) Common code framework for dnd and X/W32 clipboard
    7.2) Find a better place than SheetControlGUI for dnd code
    7.3) More formats, at least html and text
    7.4) Advertise SVG for graphs, as the preferred format      (DONE)
    7.5) Autoscroll for sheet object movement			(DONE)
    7.6) Autoscroll in 1 dimension and movement in other

8) Rich Text
    8.13) xls
	8.13.3) collect fonts from markup for export
	    8.13.3.1) cells					(DONE)
	    8.13.3.2) comments                                  (partial)
	    8.13.3.2) text boxes                                (partial)

9) RTL
    9.1) Drawing
	9.1.2) item-cursor
	    9.1.2.1) basic drawing				(DONE)
	    9.1.2.2) motion					(DONE)
	    9.1.2.3) drag autoscroll				(DONE)
	    9.1.2.4) re-position the autofill handle
	9.1.4) item-edit
	    9.1.4.1) basic					(DONE)
	    9.1.4.2) at the margins				(DONE)
	    9.1.4.3) mouse events				(DONE)
	    9.1.4.4) right alignment editing
	    9.1.4.4) center alignment editing
	    9.1.4.5) rotation
	    9.1.4.6) merges					(DONE)
	9.1.5) wbcg/scg/pane
	    9.1.5.1) init scroll regions for rtl		(DONE)
	    9.1.5.2) set_top_left				(DONE)
	    9.1.5.3) set_left					(DONE)
	    9.1.5.4) scrollbars					(DONE)
	    9.1.5.5) positioning/redraw when flipping at IV1	(DONE)
	    9.1.5.6) Zooming					(DONE)
	    9.1.5.7) zooming sometimes loses headers		(DONE)
			until a scroll
	    9.1.5.8) increase zoom misaligns grid		(DONE)
	    9.1.5.9) frozen panes				(DONE)
	    9.1.5.10) autoscroll
		9.1.5.10.1) basics				(DONE)
		9.1.5.10.2) draging to right of col A jumps ?	(DONE)
		9.1.5.10.3) object drags outside window
    9.2) spans
	9.2.1) swap left/right align during rtl			(DONE)
	9.2.2) Respect style selected dir
	9.2.3) add 'context' selected text dir
    9.3) Model
	9.3.1) Add GtkAction					(DONE)
	9.3.2) Store state in scg				(DONE)
	9.3.3) Store state in view				(DONE)
	9.3.4) Store state in sheet				(DONE)
	9.3.5) Update view when sheet changes			(DONE)
	9.3.6) update sheet-controls when view changes		(DONE)
	9.3.7) update wbcg when view changes			(DONE)
	9.3.8) update wbcg when switching tabs 			(DONE)
	9.3.9) Add a new style element for text dir		(DONE)
	9.3.10) swap action icon depending on state
	9.3.11) Add entry to format dialog to set text dir
	9.3.12) Undo/Redo					(DONE)
    9.4) Persistence
	9.4.5) csv
	9.4.6) html
	9.4.7) latex
	9.4.8) sylk (unsupported in format)			(DONE)
	9.4.9) dif (unsupported in format)			(DONE)
    9.5) Printing
	9.5.1) single cells					(DONE)
	9.5.2) outline borders					(DONE)
	9.5.4) diagonal borders					(DONE)
	9.5.5) spans						(DONE)
	9.5.5) merges						(DONE)
	9.5.6) check right margin, we overwrite the edge	(DONE)
	9.5.7) init preview scroll to right in rtl mode
	9.5.8) Objects						(DONE)
        9.5.9) Patterns
    9.6) Add entry in manage sheet dialog			(DONE)
    9.7) Add entry to tab context menu (do we need ?)
    9.8) autofilters (see 4.41)					(DONE)
    9.9) validate from list (see 22.10)				(DONE)
    9.10) cell comments						(DONE)
    9.11) sheet objects
	9.11.1) reposition views when direction changes		(DONE)
	9.11.2) movement					(DONE)
	9.11.3) resize						(DONE)
	9.11.4) creation pivots on right side.			(DONE)
	9.11.5) selecting object sometimes jumps it to right	(DONE)
	9.11.6) objects created in rtl disappear in ltr		(DONE)
	9.11.7) set direction of views
    9.12) preview grid ??
	9.12.1) do we need/want the autoformat examples to swap dir ?
    9.13) Set default value depending on LC_MESSAGE		(DONE)

10) Functions
    - Function range_min_k uses an O(n*log n) algorithm.  It should use O(n)
      algorithm, see Knuth.
    - WORKDAY	Add holiday support (Leonard is working on this)
    - Suport >100 style for SUBTOTAL
    - docs
	: Translate each arg name + description seperately to get better
	  commonality.                                                       (DONE)
	: Translate description paragraphs seperately to allow better grouping.( DONE)
	: Make 'func is foo compatible' a flag on the importers
	: func_help [] = {							(DONE)
	    { ARG, N_("issue:The issue date of the underlying bond") },
	    { ARG, N_("maturity:The maturity of the underlying bond") },
	    { DESC, N_("calculates some stuff") },
	    { DESC, N_("available day count basis conventions are :\n"
		    "0\tUS 30/360") },
	    { 0, NULL }
	};
	: need conventions for including markup
	    - simple bold/italic/font
	    - links
	    - embedded images ??
    - Support parsing and displaying locale specific function names.
    - When loading a function that already has a definition (such as a stub),
      we're in trouble: (a) we just overwrite the old definition in the symbol
      table, (b) both old and new owner want to remove the symbol on exit.

      We should somehow steal the old definition (and complain unless the old
      was a stub) without changing the GnmFunc address.  On exit we should
      explicitly check that it is ours to remove.
    - examples
	1) A registry of named data tables to reference from examples
	2) The example text should have the expr in C locale
		?? how to reference the sample data ??
    : HARMEAN with no arguments (or just strings/booleans) should yield N/A,
      not NUM.
    : MAXA,MINA with no arguments should yield N/A, not NUM.
    : STDEVPA,VARPA with no arguments should yield VALUE, not DIV0.
    : STDEVA,VARA with 0-1 arguments should yield DIV0, not VALUE.
    : DEVSQ with no arguments should yield #NUM, not zero.
	? How did you enter this.  xl-2k refuses to parse that
        ! Import from a .csv file.

    : tie the custom ui into action sensitivity pools
    : support array evaluation for =LARGE and friends
    : ISREF is a list function ?

11) Conditional formats
    11.1) Data Structures in the core
	11.1.1) Storage						(DONE)
	11.1.2) Update GnmStyle to flag changes			(DONE)
	11.1.3) Release						(DONE)
	11.1.5) Check re-merging on change
	11.1.6) Check merging of auto pattern colours on link
    11.2) Gnumeric XML
	11.2.1) import						(DONE)
	    11.2.1.1) SAX					(DONE)
	    11.2.1.2) DOM					(DONE)
	11.2.2) Gnumeric XML export				(DONE)
	    11.2.2.1) SAX					(DONE)
	    11.2.2.2) DOM					(DONE)
	11.2.3) Add to .xsd schema
    11.3) MOOX
	11.3.1) import
	11.3.2) export
    11.4) ODF
	11.4.1) import	                                        (partial)
	11.4.2) export	(conditional number formats DONE)
    11.6) Evaluation
	11.6.1) Custom						(DONE)
	11.6.2) Comparisons
	11.6.3) Optimize constants (=1)
	11.6.4) Optimize non-position dependent (=$A$1>3)
    11.7) Rendering
	11.7.1) background					(DONE)
	11.7.2) borders						(DONE)
	11.7.3) font and font colour
	11.7.4) Merged cells					(DONE)
	11.7.5) Long spans
    11.8) Printing
	11.8.1) background
	11.8.2) borders
	11.8.3) font and font colour
	11.8.4) Merged cells
	11.8.5) Long spans
    11.8) UI to modify

12) Input Messages
    12.1) Implement
	12.1.1) Data Structure to store it			(DONE)
	12.1.2) Display them
    12.2) UI to modify them
    12.3) Gnumeric XML						(DONE)
	12.3.1) import						(DONE)
	    12.3.1.1) SAX					(DONE)
	    12.3.1.3) DOM					(DONE)
	12.3.3) Gnumeric XML export				(DONE)
	    12.3.3.1) SAX					(DONE)
	    12.3.3.3) DOM					(DONE)
	12.3.3) Add to .xsd schema				(DONE)
    12.6) ODF
	12.6.1) import
	12.6.2) export						(DONE)

16) Protection limits for selection
    16.2) I/O
	16.2.1) Gnumeric
	    16.2.1.1) Extend XSD
	    16.2.1.2) SAX Export			{partial}
	    16.2.1.3) SAX Import
	    16.2.2.4) DOM Import
	16.2.3) ODF
	    16.2.3.1) Import
	    16.2.3.2) Export
    16.3) Honour flags for Return/Tab
	16.3.1) Return/Tab
	    16.3.1.1) Initial					(DONE)
	    16.3.1.2) Wrap around
	    16.3.1.3) Optimize finding next unlocked
	16.3.2) mouse click					(DONE)
	16.3.3) range selection					(DONE)
	16.3.4) keyboard range extension
	16.3.4) select all
	16.3.5) cols/rows

17) Explicit Page Breaks
    17.1) Store them in PrintInfo				(DONE)
    17.2) Respect them						(DONE)
    17.3.3) ODF
    17.3.3.1) Import						(DONE)
    17.3.3.2) Export	{merge breaks and styles}
    17.3.4) Lotus ?
    17.3.5) Applix ?
    17.3.6) Create User Interface for them

2) stf							{Andreas/Morten}
    2.1) UTF-8 cleanliness					(DONE)
    2.2) User specifiable character encoding                    (DONE)
    2.3) Replace UI for format selection                        (DONE)
    2.4) Provide an optional mechanism for specifying the
	 target location useful for text to columns, and
	 import into sheet
    2.5) A help button                                          (DONE)
    2.6) Make it possible to ignore column on import, thus      (DONE)
	 making it possible to import (parts of) files with
	 more than 256 columns.  (Think of this as a special
	 "format".)
    2.7) Create interface for line terminator selection         (DONE)
    2.8) Make listed separators locale dependent (ie translators
         should be able to define separators)
    2.9) User specifiable locale encoding (not to be confused   (DONE)
         with character encoding)
    2.10) Fix stf bugs                                          (DONE)
    2.11) Improve initial file preview                          (DONE)
    2.12) Hook up workbook-control-gui.c:cb_data_import_text    (DONE)
	Data -> External -> Import _Text File...
    2.13) Separate guessing of csv/fixed from importer.         (DONE)
    2.14) Implement format guessing.
    2.15) Put big "best guess" button on front page.
    2.16) Fix character set mess on paste                       (DONE)
    2.17) Tabs: handle optional expansion.
    2.18) Kill use of "importlines" and properly find the end.  (DONE)
    2.19) Fix locale specific parsing on paste.                 (DONE)

3) hlinks
    3.1) Finish the edit dialog to load and store results 	(DONE)
    3.2) Figure out import semantics of the other 2 XL types	(DONE)
    3.3) email support ? via system 'evolution mailto:....'	(DONE)
    3.4) XLS export (6.10)
      3.4.1) fix import of short names without long names
    3.5) ODF
	3.5.1) import
	3.5.2) export
    3.6) Entering text of the form scheme://blah or a@b.c
	    should insert hyperlinks
    3.7) HYPERLINK function should create link.

6) XL
    6.5) Intersection, union and set export
    6.12) Set operand classes
	6.12.1) calc and set the classes			(DONE)
	6.12.2) check target_type of external func		(DONE)
	6.12.3) check target type of range/intersect
    6.13) image export
	6.13.1) Excel95
	6.13.1) Excel97                                         (DONE)
    6.13) chart import
	6.13.8) Axis
	    6.13.8.1) value format				(DONE)
	    6.13.8.2) Axis bounds and ticks size		(DONE)
	    6.13.8.3) log scale					(DONE)
	    6.13.8.4) deleted axis should not appear		(DONE)
	    6.13.8.5) double axis import on simple_bar2
	    6.13.8.6) high/low flag is for partner not self
	6.13.9) Gradients
	    6.13.9.1) Horizontal x4				(DONE)
	    6.13.9.2) Vertical x4				(DONE)
	    6.13.9.3) Diag Up x4				(DONE)
	    6.13.9.4) Diag Down x4				(DONE)
	    6.13.9.5) From center
	    6.13.9.6) From corner
	    6.13.9.7) Two colour				(DONE)
	    6.13.9.8) Two colour alpha (is this possible)
	    6.13.9.9) One colour				(DONE)
	    6.13.9.10) One colour alpha (is this possible)
	    6.13.9.11) presets
	6.13.10) override auto series indexing for xls
	6.13.11) error bars
    6.14) chart export
	6.14.1) Infrastructure
	    6.14.1.1) escher wrappers				(DONE)
	    6.14.1.2) spid generation across sheets		(DONE)
	    6.14.1.3) collect colors				(DONE)
	    6.14.1.4) collect fonts
	    6.14.1.5) collect fmts
	    6.14.1.6) Create a NullRenderer for measurement
	    6.14.1.7) Handle multiple charts in a graph
	    6.14.1.8) spid group allocation for gradients
	6.14.5) Axes
	    6.14.5.1) value axis				(DONE)
	    6.14.5.2) discrete axis
	    6.14.5.3) axis set creation				(DONE)
	    6.14.5.4) handle bar plot axes			(DONE)
	    6.14.5.4) handle area plot axes
	    6.14.5.5) radar plot axes
	    6.14.5.6) check line formatting			(DONE)
	    6.14.5.7) label fmt
	    6.14.5.8) Tick position and axis label		(DONE)
	6.14.6) Area Formating
	    6.14.6.1) None					(DONE)
	    6.14.6.2) Pattern					(DONE)
	    6.14.6.3) Gradient
	    6.14.6.3) Image
	6.14.7) Marker Formating				(DONE)
	6.14.7) Line Formating					(DONE)
	6.14.8) labels
	    6.14.8.1) Content
	    6.14.8.2) Placement
	    6.14.8.3) Markup
	6.14.8) Legends
	    6.14.8.1) Basic					(DONE)
	    6.14.8.2) Exceptions
	6.14.9) error bars
	6.14.10) OOo compat
	    6.14.10.1) Bubble seems broken
	    6.14.10.2) Markers are not appearing
	6.14.11) Singletons
	6.14.12) Grid lines
	    6.14.12.1) Import
	    6.14.12.2) Export
    6.15) Store and round trip macros (functional, but could be prettier)
	6.15.7) generate CompObj stream
	6.15.8) generate property streams to get the flags
	6.15.9) Look into Michael's vba compressor
    6.16) Excel95 object import
	6.16.1) TextBox						(DONE)
    6.17) Excel95 object export

13) UI
    13.1) Zoom
	13.1.1) Add a 'global' flag for the zoom dialog
	13.1.2) Zoom to selection
    13.2) Formula Guru
	13.2.1) Fix keyboard interface
    13.3.1) Item Edit
	13.3.1) Mouse select range

14) Polish up Open and Save
    14.3) sort the file types by precedence and recently used
    14.4) do we want to persist recently used ?

22) Validate from List
    22.11) Odd .xls storage of aa,bb,cc
    22.13) ODF
	22.13.1) import
	22.13.2) export

29) gconf.
    29.1) Check for errors					(DONE)
    29.2) update on remote changes
    29.3) see if schema is installed				(DONE)
    29.4) Move the pref storage into app and compartmentalize	(DONE)
    	  the use of gconf.
    29.5) update the preference structure on local changes
          (this is an automatic consequence of 29.2)
    29.6) Lockdown
	    (from libgnome/schemas/desktop_gnome_lockdown.schemas)
	29.6.1) /desktop/gnome/lockdown/disable_save_to_disk
	29.6.2) /desktop/gnome/lockdown/disable_printing
	29.6.3) /desktop/gnome/lockdown/disable_print_setup

30) Cleanup importers/exporters
    30.1) multiple extensions for exporters, with a default
    30.2) flag/virtual for an imp/exp to flag viability with current context
    30.3) support command line flags via goption (glib-2.5)		(DONE)
    30.4) remove bogosity of function pointers that are unused
    	in the base instance.
    30.5) Allow import of multiple views			{jody}
    30.5) Allow export of multiple views			{jody}

31) sylk
    31.1) importer
	31.1.1) constants						(DONE)
	31.1.2) expressions						(DONE)
	31.1.3) array expressions					(DONE)
	31.1.4) column widths						(DONE)
	31.1.5) formats							(DONE)
	31.1.6) fonts							(DONE)
	31.1.7) styles							(DONE)
	31.1.8) sheet/wb options					(DONE)
	31.1.9) hidden cells
	31.1.10) cell protection
	31.1.11) comments
	31.1.12) array row sep ';;'					(DONE)
	31.1.13) escaping in expression string				(DONE)
    31.2) exporter
	31.2.1) constants						(DONE)
	31.2.2) expressions						(DONE)
	31.2.3) array expressions					(DONE)
	31.2.4) column widths
	31.2.5) formats
	31.2.6) fonts
	31.2.7) styles
	31.2.8) sheet/wb options					(DONE)
	31.2.9) hidden cells
	31.2.10) cell protection
	31.2.11) comments
	31.2.12) array row sep ';;'
	31.2.13) escaping in expression string				(DONE)

32) SheetObjects
    32.1) SheetView specific objects					(DONE)
    32.2) Add acetate_create virtual to handle shaped objects.
    32.3) Other anchor types for sheet objects				(DONE)
    32.4) Add keyboard controls for the control points			(DONE)
	32.4.1) Arrows move						(DONE)
	32.4.2) Ctrl Arrows expand					(DONE)
	32.4.3) Shift Ctrl Arrows shrink				(DONE)
    32.5) Use delta from start of drag rather than previous movement
    32.6) Add 'is_printable' flag					(DONE)
    32.7) Add 'move_with_cells' flag					(DONE)
    32.8) Add ability to fix aspect ratio of drag resize
    32.9) Honour rubber_band_directly during resize too			(DONE)
    32.10) research the other xl object flags.
    32.11) remove update_view_bounds and have the model emit a		(DONE)
    	   bound_changed signal
    32.12) double click to bring up prefs dialog			(DONE)
    32.13) selecting object with other objects on top of it should
   	   hide them while editing
    32.14) ngettext for insert/delete objects undo message
    32.15) Check the stacking of ctrl pts when moving multiple selections
    32.16) event handling for check boxes				(DONE)
    32.17) Combos
	32.17.1) Gnumeric						(DONE)
	    32.17.1.1) DOM import					(DONE)
	    32.17.1.2) SAX import					(DONE)
	    32.17.1.3) SAX export					(DONE)
	32.17.2) XLS
	    32.17.2.1) import						(DONE)
	    32.17.2.2) export
	32.17.3) MOOX
	    32.17.3.1) import
	    32.17.3.2) export
	32.17.4) ODF
	    32.17.4.1) import
	    32.17.4.2) export
	32.17.5) Populate list						(DONE)
	32.17.6) Update list on source change				(DONE)
	32.17.7) Link cell change updates selection			(DONE)
	    32.17.7.1) in range						(DONE)
	    32.17.7.2) truncate floats					(DONE)
	    32.17.7.3) less than or eq 0 implies no selection		(DONE)
	    32.17.7.4) gte list size selects last element		(DONE)
	32.17.8) Selection change updates cell link			(DONE)
	32.17.9) Use GtkComboBoxEntry					(DONE)
	32.17.10) Make Entry non-focusable				(DONE)
	32.17.11) update entry on model content change			(DONE)
	32.17.12) Write a prop dialog #156762				(DONE)
	32.17.13) Right click for context menu #135966			(DONE)
    32.18) Lists
	32.18.1) Gnumeric						(DONE)
	    32.18.1.1) DOM import					(DONE)
	    32.18.1.2) SAX import					(DONE)
	    32.18.1.3) SAX export					(DONE)
	32.18.2) XLS
	    32.18.2.1) import						(DONE)
	    32.18.2.2) export
	32.18.3) MOOX
	    32.18.3.1) import
	    32.18.3.2) export
	32.18.4) ODF
	    32.18.4.1) import
	    32.18.4.2) export
	32.18.5) Populate list						(DONE)
	32.18.6) Update list on source change				(DONE)
	32.18.7) Link cell change updates selection			(DONE)
	    32.18.7.1) in range						(DONE)
	    32.18.7.2) truncate floats					(DONE)
	    32.18.7.3) less than or eq 0 implies no selection		(DONE)
	    32.18.7.4) gte list size selects last element		(DONE)
	32.18.8) Selection change updates cell link			(DONE)
	32.18.9) Write a prop dialog #156762				(DONE)
    32.19) SheetObjectGroup
    32.20) editing text boxes (do a derived FooCanvasEditableTextItem) we can
          steal some of the xim support from item-edit.
    32.21) rich text for objects

33) Rotated text
    33.1) Resurrect printing                                            (DONE)
    33.2) Create new span type so drawing can overflow cells.
    33.3) Draw borders sheared.
    33.4) Draw background sheared when border present.

35) Accessibility
    We can use
	http://bugzilla.gnome.org/attachment.cgi?id=47315&action=view
    as a template

36) OpenDocument (ODF)
    36.1) missing features in importer that we in fact export
         36.1.1)  Cell Comments                                 (DONE)
    36.2) Import
         36.2.1)  We fail to do proper white space handling on import, see
                 5.1.1 of the OpenDocument Standard. 
	36.2.2) default col/row compression on OOo import.	(DONE)
	36.2.3) table styles					(DONE)
	36.2.4) col/row manual vs auto
    36.3) Export
         36.3.1)  We don't handle whitespace correctly. See OpenDocument
                 format 5.1.1                                   (DONE)
    36.4) See 11.4 (Conditionals)				(DONE)
    36.5) See 12.6 (Input Messages)
    36.6) See 4.46 (Autofilters)
    36.7) See 22.13 (Validation)
    36.8) See 32.17.4 (Sheet Object Combos)
    36.9) See 32.18.4 (Sheet Object Lists)
    36.10) See 5.3 (pivots)
    36.11) See 17.2.5 (page breaks)

37) MOOX
    37.1) Import
	37.1.1) workbook/calc properties (Calc_PR)		(DONE)
	    37.1.1.1) refMode from wb -> sheet			(DONE)
	37.1.2) Named expressions
	37.1.3) Rich text
	37.1.4) Validation					(DONE)
	37.1.6) More print settings
	    37.1.6.1) PI:{error_display,comment_placement}
	37.1.7) Comments
	37.1.8) Text direction in styles
    37.2) Export
	37.2.1) workbook/calc properties (Calc_PR)		(DONE)
	37.2.2) Named expressions
	37.2.3) Rich text
	37.2.4) Validation					(DONE)
	37.2.6) More print settings
	    37.2.6.1) PI:{error_display,comment_placement}
	37.2.7) Comments
	37.2.8) Text direction in styles

38) Printing
    38.1) cell text wraps differently when printing than
	  displaying due to scaling differences in font size.   (DONE)
    38.2) explicit page breaks	    		   		(DONE)
    38.3) PI:comment_placement
    38.4) PI:display_errors

39) Lotus filter
    39.1) http://www.openoffice.org/issues/show_bug.cgi?id=84496
	 Lots of juicey warnings.  Although we do seem to handle the sheet
	 names correctly.

41) win32
    41.1) Fix preview [#533795]
	41.1.1) port over evince based preview from unix
	    41.1.1.1) port it
	    41.1.1.2) patch glib [#566348]
    41.2) python installation [#549387]
	41.2.1) pygobject build fix
	41.2.2) automate pygobject build fix
	41.2.3) package pygobject
	41.2.4) install pygobject
    41.3) Docs
	41.3.1) Generation of hhmap 				(DONE)
	41.3.2) include hhmap with installer			(DONE)
	41.3.3) Include chm/hhmap build in build process	(DONE)
	41.3.4) Generate chm package during build		(DONE)
    41.6) long pause between license and screen ?
    41.7) version dll.a the same way the .dll is handled
    41.8) Add MS Office processing instruction hooks for us
    41.9) Increase stack size					(DONE)
    41.10) Check registry/gconf wrapper

autoformat
----------
    - leaking styles when an edge is disabled
    - consider either using the users data as a sample, or at least making the
      sample adaptive based on which edges are disabled.

auto-fill
---------
    - The autocalc label should use a more readable format and should not get
      clipped.

    - Names
	: references in names do not get changed with cut/paste or ins/del row/col.
	  How to handle relative references in names ?? here.
	: Dialog
	    * We should start with the expr entry set to either the current cell,
	      or by selecting the first named expression in scope that contains the
	      current cell.
	: Check scoping changes.						(DONE)
	: Handle pasting an expression with an un-qualified sheet local name into
	  another sheet

    - clean up the range_list codes to differentiate a list of ranges from a list
      of cellranges.

    - The max row/col canvas scroll size is still hard coded.

    - let's add simple commands like inc/dec font size and things like that.

    - Auto resize needs to handle empty cells.

    - Styles
	: improve uniform_get to handle full sheet more quickly.
	: Borders
	    * use new border code for cell format dialog (possibly preview-grid)

Import/Export
-------------
    : Look into octave/matlab filters
    : look into maxima
    : Talk to shaunm about mathematica

Clipboard
---------
    - Fall back to string import when incoming html and OpenOffice doesn't
      contain tables.                                               (DONE)
    - May be not export html as table when just one cell is selected.

General Ideas
-------------
    - A connection to swivel (www.swivel.com)
    - Sugar/OLPC UI & collab
    - Add 'send a frown/smile' button
    - 'fish eye' zoom to around selection
    - treemap for hierarchical data
    - conditional / computed formats
	: referenced styles (eg for time sheets)
	: GnmColor computable to move the calculated aspect into the actual
	  selectors
    - 'Custom' autofilter type to eval expr per cell
    - autofilter : refresh
    - macro hook in validation to run proc if valid

/* vim : ai, ts=8, sw=4, expandtab */