File: TODO

package info (click to toggle)
anymeal 0.30-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,656 kB
  • ctags: 1,292
  • sloc: sh: 12,281; cpp: 11,600; perl: 2,730; lex: 1,098; makefile: 117
file content (89 lines) | stat: -rw-r--r-- 3,629 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
Implementation:
-fast HTML display, see http://en.wikibooks.org/wiki/Cookbook:Rhubarb_Pie
-Use "Compiler::errorHandler", Errorhandler calls parser?,
 handle empty xml-documents
 <-> KIO
-Create error-handler for setting symlink to erroneous RecipeML files
-KMainWindow::saveProperties()
-Recognise paragraphs in RecipeML, enclose with par
-history, search
-ISO-8859-1 export
-krecipes-printing? poppler: PDF-rendering
-Mobiltelephon? SOAP Thin client? Shopping-Liste, Rezepte, Einkaufsliste?
-gleichheit von Zutaten (marmelade,konfituere), Categorien, Bulk-operations
-Mealmaster documentation, Embedded mysql documentation
-output escaping for command-line arguments in MySQLDaemon::create
-Sonderzeichen in kdewallet? 'localhost'-verzeichnisse
-crashes when exporting 2500 recipes
-"Encountered l" during Mealmaster import!
-Dokumentation, warum ':' vor jedem Absatz eingebaut wird, Dokumentation
 warum Leerzeilen zur Trennung von Zutaten, Anweisung und Kopfzeilen beim
 Export verwendet werden.
-Benutzer als Quellenangabe hinzufügen
-Toleriere leere Category-Zeile in Mealmaster -> Add to warning list?
-Import-export for "100% Wheat Bread From Therese" converts "Salt" to "salt"
-KDE-Manual
-HTML-export in mehrere Dateien
-continuation line on top right: test preparation-method entry
-Documentation: variables in xsl won't take most unicode-characters
-Bilder für Rezepte und Zutaten
-Saison Kalender
-http://www.dvo.com/cookn.html

-Docu: y2pmbuild  --no-init --ccache

-Mealmaster: Ingredient line (two-column) may be filled with spaces
-Problem: ----- or MMMMM in recipe-text can't get quoted? test sequence
 import-export-import
-libsvm-Bibliothek (support vector classification, regression)
-Referenz: http://www.boz.ch/artikel_42696.html (Berner Zeitung, Mathias Born [15.12.04 12:05)
-Referenz: http://www.linuxrsp.ru/2005/07/
-Referenz: http://www.root.cz/clanky/nova-softwarova-sklizen-20-7-2005/
-Referenz: http://oss.moongift.jp/intro/i-739.html (7.10.2005)

Documentation:
-FO-export, PDF, websites
-Laura Menke (menkell@us.ibm.com)
 Technical Coordinator, IBM WebSphere Developer Domain
 http://www-106.ibm.com/developerworks/web/library/wa-xslt/
 An XSLT style sheet and an XML dictionary approach to internationalization


http://fuse.sourceforge.net/

  1     
  2   KIO::TransferJob *job = KIO::get( "http://www.kde.org/index.html" );
  3   connect( job, SIGNAL( data( KIO::Job *, const QByteArray& ),
  4            SLOT( slotDataArrived( KIO::Job *, const QByteArray& )));
  5   connect( job, SIGNAL( result( KIO::Job * )), 
  6            SLOT( slotResult( KIO::Job * )));
  7 [...]
  8 
  9 void SampleApplication::slotResult( KIO::Job *job )
 10 {
 11     if ( job->error() != 0 ) // something has gone wrong
 12 [...]
 13 }
 14 
 15 void SampleApplication::slotDataArrived( KIO::Job *job, 
 16                                          const QByteArray& data )
 17 {
 18     // this is where the job receives its data in a QByteArray
 19     // in this example, hopefully it's the contents of the file
 20     // index.html
 21     // Don't forget, data may arrive in several stages.
 22 }

Xalan compilation documentation:
# Now compile and install the library:
    cd xml-xalan/c # Enter source-directory.
    export XALANCROOT=`pwd`
    ./runConfigure -p linux -c gcc -x g++ -r pthread -b 32 -P /usr
    make # Compile the library.
    su # Log in as super-user.
    make install # Install the whole lot.
    exit # Logout from super-user.
# On some platforms you may have to fix the file-permissions of the include-files:
    cd /usr/include/xalanc
    find -type f -exec chmod a+r {} \;