Changeset 1237
- Timestamp:
- 11/25/06 14:08:19
- Files:
-
- trunk/README (modified) (1 diff)
- trunk/bindings/python/tinymailui-gtk.override (modified) (1 diff)
- trunk/docs/requirements.txt (modified) (3 diffs)
- trunk/tests/python-demo/tinymail-python-test.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/README
r1154 r1237 25 25 Development tips 26 26 ================ 27 You can find the GUnit framework at http ://kooditakomo.cs.tut.fi/projects/gunit27 You can find the GUnit framework at https://garage.maemo.org/projects/gunit 28 28 You'll need it if you build with --enable-unit-tests which will compile the 29 29 unit tests. Check the sources of the unit tests for more information. trunk/bindings/python/tinymailui-gtk.override
r1005 r1237 41 41 import tinymail.Folder as PyTnyFolder_Type 42 42 import tinymail.MimePart as PyTnyMimePart_Type 43 import tinymail.FolderStoreQuery as PyTnyFolderStoreQuery_Type 43 44 import tinymail.ui.MimePartSaver as PyTnyMimePartSaver_Type 44 45 import tinymail.ui.MimePartSaveStrategy as PyTnyMimePartSaveStrategy_Type trunk/docs/requirements.txt
r1151 r1237 1 When adding requirements here: 2 3 * Please be brief about the build procedure. Try to refer to building.txt 4 for build procedures 5 6 * Try to get as much features as possible documented and working on the 7 host. Specifiy when, how and where you can choose (network manager, 8 GtkMozEmbed, Python bindings, etc, etc) 9 10 * Don't forget packages that are not pulled by the package management 11 automatically (for example of there's no package management on the 12 platform) 13 1 14 Ubuntu Edgy, Dapper, etc etc 2 15 ---------------------------- … … 5 18 the following apt-get: 6 19 7 apt-get install gnome-devel firefox-dev libnm-glib-dev subversion automake1.9 autoconf2.13 autotools-dev gnome-common 20 apt-get install gnome-devel firefox-dev libnm-glib-dev subversion \ 21 automake1.9 autoconf2.13 autotools-dev gnome-common 22 8 23 mkdir -p $HOME/repos/tinymail/ 9 24 cd $HOME/repos/tinymail/ … … 14 29 make install 15 30 31 If you also want to build the Python bindings, install python-gtk2-dev python-dev 32 add --enable-python-bindings to the autogen.sh line. 33 34 Redhat, Fedora, etc etc 35 ----------------------- 36 TODO 37 38 Insert other distro here, etc 39 ----------------------------- 40 TODO trunk/tests/python-demo/tinymail-python-test.py
r1112 r1237 76 76 device = account_store.get_device () 77 77 device.force_online () 78 accounts = tinymail.uigtk.GtkAccountTreeModel (False) 78 query = tinymail.FolderStoreQuery () 79 accounts = tinymail.uigtk.GtkAccountTreeModel (False, query) 79 80 account_store.get_accounts (accounts, tinymail.ACCOUNT_STORE_STORE_ACCOUNTS) 80 81 folderstree.set_model (accounts)
