aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Simplify clipboard handling in calendar.Matthew Barnes2009-11-122-17/+15
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-112-31/+28
|
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-103-32/+16
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-084-23/+19
| | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block.
* Remove redundant URI/filename conversion functions.Matthew Barnes2009-11-063-20/+16
| | | | | Use g_filename_to_uri() instead of e_util_filename_to_uri(). Use g_filename_from_uri() instead of e_util_uri_to_filename().
* Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-281-0/+1
| | | | | | After the folder's context menu closes the folder tree selection jumps back to the folder whose contents are showing in the message list. Suggested by Philippe LeCavalier on evolution-list.
* Gtk-Doc updates.Matthew Barnes2009-10-071-0/+1
|
* Bug 596843 - Link to libraries when building API docsH.Habighorst2009-09-301-88/+9
|
* Show import progress directly in the assistant window.Matthew Barnes2009-09-262-2/+0
|
* Rename EShellImporter to EImportAssistant and move it to widgets.Matthew Barnes2009-09-264-19/+1
|
* Convert the shell importer to a widget class.Matthew Barnes2009-09-264-28/+22
|
* Developer documentation improvements.Matthew Barnes2009-09-2324-11/+2699
|
* Fix some mistakes in the EShell documentation.Matthew Barnes2009-09-033-1/+17
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-034-8/+16
| | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal.
* Drop obsolete Bonobo-based importer documentation.Matthew Barnes2009-08-3011-526/+0
|
* Deal with untracked files in git.Matthew Barnes2009-08-261-0/+2
|
* Fix Gtk-Doc build break.Matthew Barnes2009-08-231-1/+0
|
* BugĀ 591755 - Gtk-Doc build failure when NM support disabledH.Habighorst2009-08-171-1/+5
|
* Simplify binding EShellSettings properties to GConf keys.Matthew Barnes2009-08-013-3/+11
|
* Finish EggSMClient shell integration.Matthew Barnes2009-07-161-0/+3
|
* Update EShell API docs.Matthew Barnes2009-07-152-4/+9
|
* Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-132-1/+16
| | | | | | | The contact and contact-list editors now demonstrate this part of the shutdown protocol. They listen for the "quit-requested" signal from the shell and prompt to save changes, discard changes or cancel. If the user cancels, the editor calls e_shell_cancel_quit() to do just that.
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-113-37/+40
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Fix up EShell API documentation.Matthew Barnes2009-07-014-2/+51
|
* Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-011-1/+1
|
* Radically reorganize source code.Matthew Barnes2009-06-252-0/+283
| | | | | | | | | | | | | | | | | | | - Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.
* Use key files for tracking widget states.Matthew Barnes2009-06-131-0/+16
| | | | | | | | | | | | | | | | | Each EShellView now maintains a GKeyFile for recording disposable widget state such as tree view path expansion, scroll bar positions, combo box selections, etc. The EShellView records changes to the key file to ~/.evolution/<shell-backend>/config/state, and automatically restores the GKeyFile at startup. Currently only the mailer uses the key file, but it's intended to serve all shell views. It replaces the use of Camel "cmeta" files, as well as "et-expanded-*" and "folder-tree-expand-state.xml" files. Also, the mailer's folder tree model now includes a column for tracking which sidebar folders are expanded. Folder tree widgets appearing in dialog windows can copy the sidebar's expanded state using em_folder_tree_clone_expanded().
* Makefile.am cleanups.Matthew Barnes2009-06-132-15/+1
|
* Search bar improvements.Matthew Barnes2009-06-092-1/+6
| | | | | Split the search entry into a new widget to manage hints (EHintedEntry). Let the search entry expand to use available horizontal space.
* Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-211-7/+7
|
* Fix bugs caused by EShellBackend changes.Matthew Barnes2009-05-102-4/+1
|
* Adapt tasks to EShellBackend changes.Matthew Barnes2009-05-098-51/+265
|
* Use Behdad's brilliant git.mk to generate .gitignore files.Matthew Barnes2009-05-043-0/+6
|
* Add another .gitignoreMatthew Barnes2009-04-291-0/+15
|
* Use consistent variable names for GtkUIManagerMatthew Barnes2009-04-252-1/+2
|
* Manual conflict resolutionMatthew Barnes2009-04-252-2/+1
|
* Correct documentation.Matthew Barnes2009-02-232-1/+9
| | | | svn path=/branches/kill-bonobo/; revision=37310
* Make filter options for mail labels work again.Matthew Barnes2009-02-232-0/+2
| | | | | | | | | | Define a new shell module method named start() that tells the module when to start loading data and running background tasks. Only really applies to the mail module right now since the others use evolution-data-server. Basically it prevents the mail module from loading and refreshing mail stores until you actually switch to the mail view. svn path=/branches/kill-bonobo/; revision=37309
* Documentation tweaks.Matthew Barnes2009-02-191-0/+1
| | | | | | Have e_shell_get_preferences_window() take an EShell argument. svn path=/branches/kill-bonobo/; revision=37294
* Rename EShell:online-mode to EShell:online and update docs.Matthew Barnes2009-02-193-6/+37
| | | | | | | Use EBindings instead of a notify callback to keep other widgets and actions synchronized with EShell:online. Cleaner and less error prone. svn path=/branches/kill-bonobo/; revision=37293
* Clean up the EMFormat stack. Add some GObject properties to bind to.Matthew Barnes2009-02-191-0/+1
| | | | | | Add some handy color conversion functions to e-util. svn path=/branches/kill-bonobo/; revision=37290
* Merge revisions 37200:3266 from trunk.Matthew Barnes2009-02-151-1/+0
| | | | svn path=/branches/kill-bonobo/; revision=37270
* Get mail search bar partially working without help from EFilterBar.Matthew Barnes2009-02-143-45/+38
| | | | | | Search scope (current folder, current account, etc.) is still ignored. svn path=/branches/kill-bonobo/; revision=37263
* Make MailSession available through EShellSettings so composer can use it.Matthew Barnes2009-02-131-0/+2
| | | | svn path=/branches/kill-bonobo/; revision=37257
* Rewrite the mail label code from top to bottom.Matthew Barnes2009-02-082-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Kill the e-util-labels API and read label information into a single-column GtkListStore. Use GConfBridge to automatically keep GConf synched with the list store. - The list store (a singleton instance) is stored in EShellSettings so it's available everywhere. - The list store serves as the model for EMailLabelTreeView, which itself is embedded in EMailLabelManager; a complete label management UI as seen in the preferences dialog. - EMailLabelDialog is used to add or edit a label. Avoid using a color button, instead embed a GtkColorSelection directly in the dialog so everything is in one window. Open issues: - The weird toggle/color/text menu items in the popup menu aren't there. For now they're just regular toggle items. I'll deal with it later. - Filter intergration is broken at the moment. svn path=/branches/kill-bonobo/; revision=37233
* When invoking Evolution with URIs on the command-line (e.g. mailto:),Matthew Barnes2009-01-293-12/+40
| | | | | | terminate after all the windows for those URIs have been closed. svn path=/branches/kill-bonobo/; revision=37157
* Make action group management in shell windows more elegant.Matthew Barnes2009-01-273-0/+19
| | | | svn path=/branches/kill-bonobo/; revision=37137
* Add action groups to support lockdown, starting with printing.Matthew Barnes2009-01-274-0/+49
| | | | | | Other categories to follow. Editors still need lockdown support. svn path=/branches/kill-bonobo/; revision=37136
* Miscellaneous stuff.Matthew Barnes2009-01-272-0/+11
| | | | svn path=/branches/kill-bonobo/; revision=37134
* Redesign EPluginUI to accommodate merging and unmerging shell views.Matthew Barnes2009-01-241-0/+1
| | | | | | Get the "mark-all-read" and "plugin-manager" plugins working. svn path=/branches/kill-bonobo/; revision=37125
* Tweak the EShell API.Matthew Barnes2009-01-083-15/+68
| | | | | | | Disable File -> Close Window when there's only one window. Replace EMMessageBrowser with EMailBrowser. svn path=/branches/kill-bonobo/; revision=37009
* Update EShell documentation.Matthew Barnes2008-12-282-4/+21
| | | | svn path=/branches/kill-bonobo/; revision=36936
* Define a new interface called EMailReader, which implements operationsMatthew Barnes2008-12-272-0/+10
| | | | | | | | common to both the main shell window and the message browser. Replaces EMFolderView. Also begin to define EMailBrowser (GtkWindow subclass), which implements EMailReader and replaces EMMessageBrowser. svn path=/branches/kill-bonobo/; revision=36933
* - Mail: Update the sidebar on folder selection.Matthew Barnes2008-12-163-27/+45
| | | | svn path=/branches/kill-bonobo/; revision=36901
* Merge revisions 36811:36865 from trunk.Matthew Barnes2008-12-115-413/+464
| | | | svn path=/branches/kill-bonobo/; revision=36867
* Implement bug #263268 - Contact categories need to be able to be filtered byMatthew Barnes2008-12-045-464/+413
| | | | | | "not categorized". Also fix a crasher. svn path=/branches/kill-bonobo/; revision=36831
* Documentation improvements.Matthew Barnes2008-11-2011-407/+623
| | | | svn path=/branches/kill-bonobo/; revision=36806
* Progress update:Matthew Barnes2008-11-192-0/+6
| | | | | | | | | | | | | | | | | | | - Tighter integration of GalViewInstance and EShellView. - EBinding. Stolen from ExoBinding. Lets you bind GObject properties together to automatically keep their values in sync. This is a godsend. Added to e-util, but might even deserve a place in libedataserver. - EShellSettings. This is the concept I blogged about. Already started ripping apart em-mailer-prefs.c. Others to follow. Any place where we're monitoring GConf keys is a target. - Incremental progress on the calender and mailer. Got EMFolderView somewhat working, but I think I'll be killing off EMFolderBrowser. svn path=/branches/kill-bonobo/; revision=36795
* Rearranged some of the addressbook code to try and eliminate some circularMatthew Barnes2008-11-142-9/+9
| | | | | | | | dependencies in our libraries. The circular dependency between the composer and the mail module is still causing me headaches. And it doesn't help that the addressbook and calendar also want to link to the composer. svn path=/branches/kill-bonobo/; revision=36782
* Merge revisions 36685:36729 from trunk.Matthew Barnes2008-11-085-454/+404
| | | | svn path=/branches/kill-bonobo/; revision=36763
* Disable parts of my previous calendar work, such that all modules now load!Matthew Barnes2008-10-283-0/+1891
| | | | svn path=/branches/kill-bonobo/; revision=36690
* Fix some compilation errors.Matthew Barnes2008-10-055-9/+35
| | | | svn path=/branches/kill-bonobo/; revision=36561
* Support migration in the new shell design.Matthew Barnes2008-10-054-0/+37
| | | | | | Some code got duplicated for calendars and tasks. Made a note to revisit. svn path=/branches/kill-bonobo/; revision=36560
* Tasks is working. Still need to deal with some loose ends and test it all.Matthew Barnes2008-10-0411-22/+347
| | | | svn path=/branches/kill-bonobo/; revision=36551
* Tasks progress. Merge EMemoPreview back into ECalComponentPreview.Matthew Barnes2008-10-0313-113/+499
| | | | svn path=/branches/kill-bonobo/; revision=36538
* Add more EShell API documentation.Matthew Barnes2008-10-023-18/+42
| | | | svn path=/branches/kill-bonobo/; revision=36533
* Continue documenting the new shell API.Matthew Barnes2008-10-016-2248/+129
| | | | svn path=/branches/kill-bonobo/; revision=36511
* Get Memos to come up. Doesn't really work yet, but the widgets are all there.Matthew Barnes2008-09-302-9/+22
| | | | svn path=/branches/kill-bonobo/; revision=36491
* Saving progress. Experimenting with directory layout.Matthew Barnes2008-09-252-10/+9
| | | | | | | Saving progress. Experimenting with directory layout. svn path=/branches/kill-bonobo/; revision=36446
* Search UI is kinda sorta working. Still some outstanding issues.Matthew Barnes2008-09-232-2/+8
| | | | svn path=/branches/kill-bonobo/; revision=36427
* Fix some miscellaneous address book bugs.Matthew Barnes2008-09-201-1/+0
| | | | | | Kill e-shell-constants.h. svn path=/branches/kill-bonobo/; revision=36392
* Replace EActivityHandler with a new activity-tracking system that usesMatthew Barnes2008-09-206-146/+143
| | | | | | | | | EActivity objects instead of numeric handler IDs. Create an EActivity, configure it, and (optionally) connect to its "cancelled" and "completed" signals. Then hand it to the shell view via e_shell_view_add_activity(). When finished with the activity, call e_activity_finish() and unref it. svn path=/branches/kill-bonobo/; revision=36391
* Finally got the "Current View" menu under control.Matthew Barnes2008-09-191-1/+0
| | | | svn path=/branches/kill-bonobo/; revision=36380
* Progress update:Matthew Barnes2008-09-181-0/+1
| | | | | | | | | - Kill EABMenu. - Centralize marshallers to eliminate duplication. svn path=/branches/kill-bonobo/; revision=36368
* Massive address book refactoring. Things are mostly working again.Matthew Barnes2008-09-174-14/+66
| | | | | | Also, begin documenting the new shell API, and provide a Gtk-Doc framework. svn path=/branches/kill-bonobo/; revision=36359
* Begin documenting the new shell design.Matthew Barnes2008-09-1532-0/+5875
| | | | svn path=/branches/kill-bonobo/; revision=36337
* Update FSF address in header comments (#469886). Patch from TobiasMatthew Barnes2007-09-023-5/+5
| | | | | | | | | | 2007-09-02 Matthew Barnes <mbarnes@redhat.com> * Update FSF address in header comments (#469886). Patch from Tobias Mueller. svn path=/trunk/; revision=34151
* ** Fix for bug #455799Hiroyuki Ikezoe2007-08-043-17/+0
| | | | | | | | | | | | 2007-08-04 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fix for bug #455799 Remove all .cvsignore and update svn:ignore porperty in whole directories. svn path=/trunk/; revision=33945
* Fix a couple of typosKjartan Maraas2006-08-171-2/+2
| | | | svn path=/trunk/; revision=32566
* fix e-import.c not to be included twice & added invocation of xsltproc toNot Zed2005-08-313-3/+10
| | | | | | | | | | | 2005-08-31 Not Zed <NotZed@Ximian.com> * build-eplugin-manual.pl: fix e-import.c not to be included twice & added invocation of xsltproc to build the html. * evolution-plugin-manual.xml: fixed some syntax errors. svn path=/trunk/; revision=30297
* added missing localedir thing.Not Zed2005-08-312-0/+18
| | | | | | | | 2005-08-31 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added missing localedir thing. svn path=/trunk/; revision=30296
* Added some e-import stuff.Not Zed2005-07-123-0/+156
| | | | | | | | | | 2005-07-12 Not Zed <NotZed@Ximian.com> * build-eplugin-manual.pl: * evolution-plugin-manual.xml: Added some e-import stuff. svn path=/trunk/; revision=29726
* added some stuff about the pseudo mime types used for finer control of theNot Zed2005-05-192-4/+49
| | | | | | | | | 2005-05-19 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added some stuff about the pseudo mime types used for finer control of the formatter. svn path=/trunk/; revision=29383
* added some info on the menu tag for popup menus.Not Zed2005-05-132-2/+40
| | | | | | | | | 2005-05-13 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added some info on the menu tag for popup menus. svn path=/trunk/; revision=29350
* Fix the load-on-startup definitionMichael Zucci2004-11-181-1/+1
| | | | svn path=/trunk/; revision=27941
* define load-on-startup parameter.Not Zed2004-11-182-0/+18
| | | | | | | | 2004-11-18 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: define load-on-startup parameter. svn path=/trunk/; revision=27940
* Stupid idiot, I thought i lost these files and remade them.Michael Zucci2004-11-177-0/+185
| | | | | | The menu merging one looks better anyway. svn path=/trunk/; revision=27935
* added author section to eplugin definition.Not Zed2004-11-032-0/+17
| | | | | | | | | 2004-11-03 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added author section to eplugin definition. svn path=/trunk/; revision=27808
* setup for more auto-built stuff.Not Zed2004-10-283-461/+243
| | | | | | | | | | 2004-10-28 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: setup for more auto-built stuff. * build-eplugin-manual.pl: auto-build more stuff. svn path=/trunk/; revision=27755
* Various updates, some more work on auto-generated stuff.Michael Zucci2004-10-252-3/+137
| | | | svn path=/trunk/; revision=27711
* Script which autogenerates some entities for the manual.Michael Zucci2004-10-221-0/+124
| | | | svn path=/trunk/; revision=27696
* some doc updatesMichael Zucci2004-10-221-33/+29
| | | | svn path=/trunk/; revision=27693
* doc updates for new 'check' callback.Not Zed2004-10-122-0/+29
| | | | | | | | 2004-10-12 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: doc updates for new 'check' callback. svn path=/trunk/; revision=27552
* some updates.Not Zed2004-10-072-57/+131
| | | | | | | | 2004-10-07 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: some updates. svn path=/trunk/; revision=27496
* Merged notzed-eplugin-2-branch to head.Michael Zucci2004-09-202-0/+2939
| | | | svn path=/trunk/; revision=27300
* Dead.JP Rosevear2003-12-301-12/+0
| | | | svn path=/trunk/; revision=24018
* Removing more dead docs.JP Rosevear2003-12-3012-1093/+0
| | | | svn path=/trunk/; revision=24017
* Removing old, dead docs.JP Rosevear2003-12-3032-4581/+4
| | | | svn path=/trunk/; revision=24016
* Use non-static libraries.Dan Winship2003-09-113-7/+13
| | | | | | | | | * calendar/cal-client/Makefile.am (GTKDOC_LIBS): Use non-static libraries. * calendar/cal-util/Makefile.am (GTKDOC_LIBS): Likewise svn path=/trunk/; revision=22517
* Put the ChangeLog.pre-1-4 in the Makefiles.Ettore Perazzoli2003-06-132-1/+4
| | | | svn path=/trunk/; revision=21426
* Roll over ChangeLogs.Ettore Perazzoli2003-06-104-1432/+1432
| | | | svn path=/trunk/; revision=21387
* (HTML_DIR): Version using $(BASE_VERSION).Ettore Perazzoli2003-01-232-1/+5
| | | | svn path=/trunk/; revision=19557
* Sync for 1.1.90.Ettore Perazzoli2002-10-292-0/+13
| | | | svn path=/trunk/; revision=18465
* Sync for 1.1.2.Ettore Perazzoli2002-10-081-1/+11
| | | | svn path=/trunk/; revision=18347
* Sync for 1.1.1.Ettore Perazzoli2002-09-103-5/+64
| | | | svn path=/trunk/; revision=18024
* updatedJeffrey Stedfast2002-08-262-0/+2
| | | | svn path=/trunk/; revision=17854
* Added new library to scan programRodrigo Moya2002-08-161-0/+1
| | | | svn path=/trunk/; revision=17789
* Install libversit.a so that people compiling against the addressbook canPeter Williams2002-07-183-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2002-07-09 Peter Williams <peterw@ximian.com> * libversit/Makefile.am (privlib_LIBRARIES): Install libversit.a so that people compiling against the addressbook can do so successfully. * Makefile.am: create our *Conf.sh files and dist them and install them. * configure.in: Define and subst some variables that the Conf.sh file need. 2002-07-08 Peter Williams <peterw@ximian.com> * backend/ebook/Makefile.am: Install libebook-static.la. Also change --all-static to -all-static, which is the right flag. * backend/pas/Makefile.am: Install the PAS headers in $(includedir)/evolution/pas. Install libpas.a 2002-07-08 Peter Williams <peterw@ximian.com> * cal-util/Makefile.am: Install libcal-util-static.la and fix the -all-static flag to make it install statically. * pcs/Makefile.am: Install libpcs.a and its headers. * pcs/cal-backend-util.h: Same sort of include namespacing fix, but for pcs. * pcs/cal.h: * pcs/query.h: * pcs/cal-factory.h: * pcs/cal-backend.h: * pcs/cal-backend-file.h: Same. 2002-07-17 Peter Williams <peterw@ximian.com> * calendar/cal-util/Makefile.am (GTKDOC_LIBS): Because we're using libtool as our LD, we can reference .la's and libtool will DTRT for us. * calendar/cal-client/Makefile.am (GTKDOC_LIBS): Same here. 2002-07-03 Peter Williams <peterw@ximian.com> * Makefile.am: Install libeutil, libeconduit, and libedb3util and their headers. 2002-07-08 Peter Williams <peterw@ximian.com> * Makefile.am: Reference the new libefilterbar.a. 2002-07-12 Peter Williams <peterw@ximian.com> * Makefile.am (INCLUDES): Add -I$(builddir)/libical/src/libical for the generated ical.h (some headers rely on this because they too get installed.) 2002-07-09 Peter Williams <peterw@ximian.com> * e-timezone-dialog/Makefile.am: Add -I$(top_builddir)/libical/src/libical; some headers that we rely on get installed, so they point to the ical.h that gets generated and installed; consequently we need to be able to find the generated ical.h * misc/Makefile.am: Install libemiscwidgets.a and its headers. However, break EFilterBar into a separate libefilterbar.a because we don't want the installed library to depend on libfilter. svn path=/trunk/; revision=17496
* more fixes for libversit.la -> libversit.aDan Winship2002-03-203-2/+9
| | | | svn path=/trunk/; revision=16211
* Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS. Likewise.Ettore Perazzoli2002-01-252-2/+3
| | | | | | | | * calendar/cal-client/Makefile.am: Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS. * calendar/cal-util/Makefile.am: Likewise. svn path=/trunk/; revision=15465
* Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS.Ettore Perazzoli2002-01-252-10/+13
| | | | | | | * calendar/cal-client/Makefile.am: Use EVOLUTION_CALENDAR_CFLAGS and EVOLUTION_CALENDAR_LIBS. svn path=/trunk/; revision=15464
* Clean up some of the Makefiles so we dont' link every library multipleEttore Perazzoli2002-01-251-113/+123
| | | | | | times, causing big libtool 1.4 pain. svn path=/trunk/; revision=15461
* cal-client needs bonobo-conf nowJP Rosevear2001-12-194-188/+195
| | | | | | | | | 2001-12-18 JP Rosevear <jpr@ximian.com> * calendar/cal-client/Makefile.am: cal-client needs bonobo-conf now svn path=/trunk/; revision=15180
* Updated docs for repeating alarms.Federico Mena Quintero2001-10-309-226/+425
| | | | | | | | | 2001-10-29 Federico Mena Quintero <federico@ximian.com> * calendar/alarm-generation.sgml: Updated docs for repeating alarms. svn path=/trunk/; revision=14367
* use install hook instead of install rule to guarantee we run afterJP Rosevear2001-09-151-38/+30
| | | | | | | | | | | | | 2001-09-14 JP Rosevear <jpr@ximian.com> * Makefile.am: use install hook instead of install rule to guarantee we run after installation 2001-09-14 JP Rosevear <jpr@ximian.com> * configure.in: remove unneeded conditionals svn path=/trunk/; revision=12825
* The finaleKjartan Maraas2001-08-174-636/+0
| | | | svn path=/trunk/; revision=12100
* Missed thisKjartan Maraas2001-08-171-9/+0
| | | | svn path=/trunk/; revision=12099
* Here go the restKjartan Maraas2001-08-1733-19802/+0
| | | | svn path=/trunk/; revision=12098
* I have deleted all of these files as they are being moved to the help directory.Aaron Weber2001-08-1746-8967/+0
| | | | svn path=/trunk/; revision=12097
* Nuke the old no docsKjartan Maraas2001-08-1746-8946/+0
| | | | svn path=/trunk/; revision=12096
* Back to building develKjartan Maraas2001-08-171-1/+1
| | | | svn path=/trunk/; revision=12094
* Small fix to build. Small fix. Remove an extra space. Same here. And here.Kjartan Maraas2001-08-166-10/+17
| | | | | | | | | | | 2001-08-16 Kjartan Maraas <kmaraas@gnome.org> * C/Makefile.am: Small fix to build. * C/evolution-C.omf: Small fix. Remove an extra space. * no/Makefile.am: Same here. * no/evolution-no.omf: And here. svn path=/trunk/; revision=12086
* Remove the other copy of the figuresKjartan Maraas2001-08-1623-0/+0
| | | | svn path=/trunk/; revision=12083
* Updated one line about bullet points.Kevin Breit2001-08-162-1/+5
| | | | | | | | 2001-08-15 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Updated one line about bullet points. svn path=/trunk/; revision=12079
* Added beginnings of a Norwegian translation. Forgot to add this. KindaKjartan Maraas2001-08-1649-1/+9087
| | | | | | | | | 2001-08-15 Kjartan Maraas <kmaraas@gnome.org> * no/*: Added beginnings of a Norwegian translation. * sgmldocs.make: Forgot to add this. Kinda important. svn path=/trunk/; revision=12070
* s/fig/figures/ Make it use the sgmldocs.make framework.Kjartan Maraas2001-08-1611-96/+69
| | | | | | | | | 2001-08-15 Kjartan Maraas <kmaraas@gnome.org> * C/*.sgml: s/fig/figures/ * C/Makefile.am: Make it use the sgmldocs.make framework. svn path=/trunk/; revision=12067
* Moved imagesKjartan Maraas2001-08-1623-0/+0
| | | | svn path=/trunk/; revision=12066
* Commented out menuref. Commented out menuref. commented out menuref.Aaron Weber2001-08-155-17/+21
| | | | | | | | | | | 2001-08-14 Aaron Weber <aaron@ximian.com> * C/usage-mainwindow.sgml: Commented out menuref. * C/usage-contact.sgml: Commented out menuref. * C/evolution.sgml: commented out menuref. * C/preface.sgml: commented out menuref. svn path=/trunk/; revision=12028
* Added missing ;'s after entities. s/en/C in Language. Add missing ;. SameKjartan Maraas2001-08-125-5/+12
| | | | | | | | | | | 2001-08-12 Kjartan Maraas <kmaraas@gnome.org> * C/apx-authors.sgml: Added missing ;'s after entities. * C/evolution-C.omf: s/en/C in Language. * C/usage-mail-org.sgml: Add missing ;. * C/usage-mainwindow.sgml: Same here. svn path=/trunk/; revision=11935
* New files.Aaron Weber2001-08-112-0/+0
| | | | svn path=/trunk/; revision=11890
* Switched all images in entire document to *not* use file extensions, soAaron Weber2001-08-115-19/+22
| | | | | | | | | | | 2001-08-10 Aaron Weber <aaron@ximian.com> * C/usage-mail.sgml: Switched all images in entire document to *not* use file extensions, so that they work properly with db2ps. This doesn't completely fix the db2ps issues, but it's apparently the right way to do this. svn path=/trunk/; revision=11889
* Made sharing tip an orderedlist.Aaron Weber2001-08-103-25/+66
| | | | | | | | 2001-08-09 Aaron Weber <aaron@ximian.com> * C/config-prefs.sgml: Made sharing tip an orderedlist. svn path=/trunk/; revision=11835
* sync - FedericoFederico Mena Quintero2001-08-093-5/+38
| | | | svn path=/trunk/; revision=11821
* Add information about sharing mailbox files.Kevin Breit2001-08-092-1/+11
| | | | | | | | 2001-08-08 Kevin Breit <battery841@mediaone.net> * C/config-prefs.sgml: Add information about sharing mailbox files. svn path=/trunk/; revision=11816
* Add information about gathering actions.Kevin Breit2001-08-042-2/+18
| | | | | | | | 001-08-03 Kevin Breit <battery841@mediaone.net> * C/usage-calendar.sgml: Add information about gathering actions. svn path=/trunk/; revision=11620
* Added a <tip> for scrolling through mails.Kevin Breit2001-08-032-0/+12
| | | | | | | | 2001-08-02 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Added a <tip> for scrolling through mails. svn path=/trunk/; revision=11586
* Remove the copying of the index.sgml file which doesn't seem to beEttore Perazzoli2001-07-312-1/+6
| | | | | | | | * Makefile.am (dist-hook): Remove the copying of the index.sgml file which doesn't seem to be generated anywhere anyway. svn path=/trunk/; revision=11506
* Fixed some breakage Aaron caused.Kevin Breit2001-07-312-2/+8
| | | | | | | | 2001-07-30 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Fixed some breakage Aaron caused. svn path=/trunk/; revision=11497
* revised.Aaron Weber2001-07-274-264/+427
| | | | | | | | | | | | 2001-07-26 Aaron Weber <aaron@ximian.com> * C/usage-mail-org.sgml: revised. * C/usage-mail.sgml: revisions and stuff. * C/evolution-faq.sgml: Reworded a few questions. svn path=/trunk/; revision=11436
* Reworded a few questions.Aaron Weber2001-07-242-6/+8
| | | | | | | | 2001-07-24 Aaron Weber <aaron@ximian.com> * C/evolution-faq.sgml: Reworded a few questions. svn path=/trunk/; revision=11339
* Pulled instance of config-setupassist.sgml to make stuff build right.Kevin Breit2001-07-242-1/+4
| | | | | | | | 2001-07-23 Kevin Breit <battery841@mediaone.net> * C/Makefile.am: Pulled instance of config-setupassist.sgml to make stuff build right. svn path=/trunk/; revision=11323
* validated.Aaron Weber2001-07-244-212/+13
| | | | | | | | | | | | 2001-07-23 Aaron Weber <aaron@ximian.com> * C/usage-mainwindow.sgml: validated. * C/config-setupassist.sgml: Removed. * C/evolution.sgml: removed config-setupassist. svn path=/trunk/; revision=11320
* Minor revisions.Aaron Weber2001-07-249-480/+411
| | | | | | | | | | | | | | | | | | | | | | | 2001-07-23 Aaron Weber <aaron@ximian.com> * C/usage-exec-summary.sgml: Minor revisions. * C/usage-contact.sgml: Added 'format="png"' to all <image> tags missing the attribute. * C/usage-calendar.sgml: Added 'format="png"' to all <image> tags missing the attribute. * C/usage-mail.sgml: Added 'format="png"' to all <image> tags missing the attribute. * C/usage-mainwindow.sgml: Style. Merged info from preface. Added 'format="png"' to all <image> tags missing the attribute. * C/preface.sgml: Style changes. Removed info that was duplicated in mainwindow.sgml. svn path=/trunk/; revision=11310
* Changed background transparency.Aaron Weber2001-07-241-0/+0
| | | | svn path=/trunk/; revision=11307
* Fixed the first time druid stuff a little more.Kevin Breit2001-07-212-8/+14
| | | | | | | | 2001-07-20 Kevin Breit <battery841@mediaone.net> * C/usage-mainwindow.sgml: Fixed the first time druid stuff a little more. svn path=/trunk/; revision=11291
* Updated slightly for new design.Kevin Breit2001-07-162-3/+15
| | | | | | | | 2001-07-15 Kevin Breit <battery841@mediaone.net> * C/config-sync.sgml: Updated slightly for new design. svn path=/trunk/; revision=11117
* Added lots of good stuff with the first time druid.Kevin Breit2001-07-141-0/+255
| | | | | | | | 2001-07-13 Kevin Breit <battery841@mediaone.net> * C/usage-mainwindow.sgml: Added lots of good stuff with the first time druid. svn path=/trunk/; revision=11102
* Fixing typo.Aaron Weber2001-07-131-1/+2
| | | | svn path=/trunk/; revision=11064
* svn path=/trunk/; revision=11063Aaron Weber2001-07-132-4/+71
| | | | | | | | 2001-07-12 Aaron Weber <aaron@ximian.com> * C/evolution-faq.sgml: svn path=/trunk/; revision=11063
* Add these files because we're pretty sure gtk-doc needs them.Peter Williams2001-07-122-0/+34
| | | | svn path=/trunk/; revision=11041
* Clean up make dist.Peter Williams2001-07-126-38/+50
| | | | | | | | 2001-07-10 Peter Williams <peterw@ximian.com> * */Makefile.am (dist-hook): Clean up make dist. svn path=/trunk/; revision=11039
* validation on usage-mainwindow and usage-contact.Aaron Weber2001-07-123-18/+18
| | | | | | | | 2001-07-11 Aaron Weber <aaron@ximian.com> * C/evolution.sgml: validation on usage-mainwindow and usage-contact. svn path=/trunk/; revision=11023
* More edits.Kevin Breit2001-07-1212-211/+299
| | | | | | | | | | | | | | 2001-07-11 Kevin Breit <battery841@mediaone.net> * C/usage-calendar.sgml: More edits. * C/usage-contact.sgml: Sick amounts of changes too! * C/usage-mail-org.sgml: Heavy editing...touched almost everything. * C/usage-exec-summary.sgml: Minor change. There was only one change for this chapter, cuz I'm such a 'godly' writer...yeah. svn path=/trunk/; revision=11018
* ShhKjartan Maraas2001-07-125-116/+188
| | | | svn path=/trunk/; revision=11009
* shhKjartan Maraas2001-07-121-0/+1
| | | | svn path=/trunk/; revision=11008
* Small changes to preface.Aaron Weber2001-07-112-14/+10
| | | | svn path=/trunk/; revision=11003
* validation.Aaron Weber2001-07-111-1/+2
| | | | | | | | 2001-07-10 Aaron Weber <aaron@ximian.com> * C/usage-mail-org.sgml: validation. svn path=/trunk/; revision=10963
* Added <application> tagsKevin Breit2001-07-105-7/+15
| | | | | | | | | | | | 2001-07-10 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Added <application> tags * C/usage-mail-org.sgml: Added <application> tags * C/config-prefs.sgml: Added <application> tags svn path=/trunk/; revision=10951
* EditingKevin Breit2001-07-106-39/+52
| | | | | | | | | | | | | | | | 2001-07-09 Kevin Breit <battery841@mediaone.net> * C/usage-exec-summary.sgml: Editing * C/usage-mail.sgml: Editing * C/usage-mail-org.sgml: Editing * C/usage-calendar.sgml: Editing * C/usage-contact.sgml: Editing svn path=/trunk/; revision=10931
* Validation.Aaron Weber2001-07-092-6/+8
| | | | svn path=/trunk/; revision=10909
* Mention UNMATCHEDKevin Breit2001-07-093-3/+24
| | | | | | | | | | 2001-07-09 Kevin Breit <battery841@mediaone.net> * C/usage-mail-org.sgml: Mention UNMATCHED * C/usage-mail.sgml: Commented on trash being a vFolder svn path=/trunk/; revision=10908
* Spell checkKevin Breit2001-07-072-10/+12
| | | | | | | | 2001-07-06 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Spell check svn path=/trunk/; revision=10865
* Spell checkKevin Breit2001-07-073-54/+58
| | | | | | | | 2001-07-06 Kevin Breit <battery841@mediaone.net> * C/usage-calendar.sgml: Spell check svn path=/trunk/; revision=10862
* Added orderedlists.Kevin Breit2001-07-062-21/+84
| | | | | | | | | | 2001-07-05 Kevin Breit <battery841@mediaone.net> * C/usage-mainwindow.sgml: Added orderedlists. * C/usage-exec-summary.sgml: Added orderedlists. svn path=/trunk/; revision=10826
* Added orderedlists.Kevin Breit2001-07-062-94/+132
| | | | | | | | 2001-07-05 Kevin Breit <battery841@mediaone.net> * C/usage-contact.sgml: Added orderedlists. svn path=/trunk/; revision=10823
* Added orderedlists.Kevin Breit2001-07-062-394/+484
| | | | | | | | 2001-07-05 Kevin Breit <battery841@mediaone.net> * C/usage-mail-org.sgml: Added orderedlists. svn path=/trunk/; revision=10818
* Chris pointed out an error in the DB versioning question.Aaron Weber2001-07-061-2/+1
| | | | | | | | | 2001-07-05 Aaron Weber <aaron@ximian.com> * C/evolution-faq.sgml: Chris pointed out an error in the DB versioning question. svn path=/trunk/; revision=10813
* Put in lots of orderedlists...more SGML, less for the user to read.Kevin Breit2001-07-043-366/+650
| | | | | | | | | 2001-07-03 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Put in lots of orderedlists...more SGML, less for the user to read. They'll thank me in droves later. svn path=/trunk/; revision=10764
* Updated slightly.Jeffrey Stedfast2001-07-033-85/+164
| | | | | | | | | | 2001-06-29 Jeffrey Stedfast <fejj@ximian.com> * white-papers/mail/camel.sgml: Updated slightly. * Camel-Classes: Updated. svn path=/trunk/; revision=10692
* Created its own file.Kevin Breit2001-07-037-406/+353
| | | | | | | | | | | | | | 2001-07-02 Kevin Breit <battery841@mediaone.net> * C/apx-common-tasks.sgml: Created its own file. * C/usage-mainwindow.sgml: You name it. * C/preface.sgml: Pulled shortcuts from here into its own apx * C/evolution.sgml: Reordered entities svn path=/trunk/; revision=10686
* Pulled organizing stuff, made its own file.Kevin Breit2001-07-018-1415/+1409
| | | | | | | | 2001-06-30 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Pulled organizing stuff, made its own file. svn path=/trunk/; revision=10634
* Added evolution-alarm-notify.Federico Mena Quintero2001-07-011-1/+2
| | | | | | | | 2001-06-30 Federico Mena Quintero <federico@ximian.com> * tools/killev: Added evolution-alarm-notify. svn path=/trunk/; revision=10632
* Revised move/rename/copy questions, now that these functions work.Aaron Weber2001-06-272-35/+13
| | | | | | | | | 2001-06-26 Aaron Weber <aaron@ximian.com> * C/evolution-faq.sgml: Revised move/rename/copy questions, now that these functions work. svn path=/trunk/; revision=10507
* Now that bug-buddy works with our bugzilla, update faq to reflect it.Aaron Weber2001-06-262-23/+26
| | | | | | | | | 2001-06-25 Aaron Weber <aaron@ximian.com> * C/evolution-faq.sgml: Now that bug-buddy works with our bugzilla, update faq to reflect it. svn path=/trunk/; revision=10487
* Put config-encryption in usage-mail.sgml. config-encryption.sgml should beKevin Breit2001-06-264-3/+153
| | | | | | | | 2001-06-25 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Put config-encryption in usage-mail.sgml. config-encryption.sgml should be depreciated. svn path=/trunk/; revision=10486
* Elaborated on the mailing listsKevin Breit2001-06-262-0/+9
| | | | | | | | 2001-06-25 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Elaborated on the mailing lists svn path=/trunk/; revision=10485
* Added info about mailing listsKevin Breit2001-06-262-115/+100
| | | | | | | | 2001-06-25 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Added info about mailing lists svn path=/trunk/; revision=10484
* Here too.Peter Williams2001-06-262-4/+6
| | | | | | | | 2001-06-25 Peter Williams <peterw@ximian.com> * reference.sgml: Here too. svn path=/trunk/; revision=10483
* ... and comment out more exec summary stuff.Peter Williams2001-06-262-6/+10
| | | | | | | | 2001-06-25 Peter Williams <peterw@ximian.com> * Makefile.am: ... and comment out more exec summary stuff. svn path=/trunk/; revision=10482
* Fix make dist.Peter Williams2001-06-264-6/+13
| | | | | | | | | | | 2001-06-25 Peter Williams <peterw@ximian.com> * calendar/cal-util/Makefile.am, calendar/cal-client/Makefile.am: Fix make dist. * Makefile.am: clean up a bit. svn path=/trunk/; revision=10481
* Fixed a few typosKevin Breit2001-06-252-2/+4
| | | | | | | | 2001-06-25 Kevin Breit <battery841@mediaone.net> * C/usage-exec-summary.sgml: Fixed a few typos svn path=/trunk/; revision=10479
* Added section for importing filesKevin Breit2001-06-252-2/+63
| | | | | | | | 2001-06-25 Kevin Breit <battery841@mediaone.net> * C/preface.sgml: Added section for importing files svn path=/trunk/; revision=10478
* Removed some *'s that are causing problems.Kevin Breit2001-06-254-10/+12
| | | | | | | | 2001-06-25 Kevin Breit <battery841@mediaone.net> * C/usage-calendar.sgml: Removed some *'s that are causing problems. svn path=/trunk/; revision=10476
* Sync - FedericoFederico Mena Quintero2001-06-259-169/+348
| | | | svn path=/trunk/; revision=10455
* Put in Contacts information in the quicktasks.Kevin Breit2001-06-232-18/+72
| | | | | | | | 2001-06-22 Kevin Breit <battery841@mediaone.net> * C/preface.sgml: Put in Contacts information in the quicktasks. svn path=/trunk/; revision=10398
* Pulled some redundant information.Kevin Breit2001-06-222-9/+65
| | | | | | | | 2001-06-22 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Pulled some redundant information. svn path=/trunk/; revision=10395
* Updated screenshots and redid layout for graphics on pages.battery8412001-06-226-28/+100
| | | | | | | | 2001-06-21 battery841 <battery841@mediaone.net> * C/preface.sgml, C/fig/mail-inbox.png, C/fig/mainwindow-pic.png, C/usage-mail.sgml: Updated screenshots and redid layout for graphics on pages. svn path=/trunk/; revision=10394
* disable executive summary build because it is no longer builtJP Rosevear2001-06-222-1/+6
| | | | | | | | | 2001-06-21 JP Rosevear <jpr@ximian.com> * Makefile.am: disable executive summary build because it is no longer built svn path=/trunk/; revision=10388
* add new libJP Rosevear2001-06-222-1/+6
| | | | | | | | 2001-06-21 JP Rosevear <jpr@ximian.com> * calendar/cal-client/Makefile.am: add new lib svn path=/trunk/; revision=10387
* Fixed .gif problemKevin Breit2001-06-224-12/+13
| | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/usage-contact.sgml: Fixed .gif problem svn path=/trunk/; revision=10380
* Specify the file formatKevin Breit2001-06-222-2/+7
| | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Specify the file format svn path=/trunk/; revision=10379
* Trying to fix the .gif problemKevin Breit2001-06-222-11/+20
| | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Trying to fix the .gif problem svn path=/trunk/; revision=10378
* Redid graphics to add labels to them and described the labels in text.Kevin Breit2001-06-224-0/+40
| | | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/usage-calendar.sgml: Redid graphics to add labels to them and described the labels in text. svn path=/trunk/; revision=10376
* calendar/cal-client/Makefile.am: calendar/cal-util/Makefile.am:Peter Williams2001-06-226-428/+785
| | | | | | | | | | | | | | 2001-06-21 Peter Williams <peterw@ximian.com> * Makefile.am: calendar/cal-client/Makefile.am: calendar/cal-util/Makefile.am: importer/Makefile.am: executive-summary/Makefile.am: Changed to used gtk-doc's canonical Makefile.am (plus some tweaks because not every dir builds html). svn path=/trunk/; revision=10375
* Added config-encryption.sgml for buildingKevin Breit2001-06-223-0/+150
| | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/evolution.sgml: Added config-encryption.sgml for building svn path=/trunk/; revision=10370
* Updated graphics for newer UI.Kevin Breit2001-06-2212-0/+4
| | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/fig/*png: Updated graphics for newer UI. svn path=/trunk/; revision=10368
* Redid graphics to add labels to them and described in labels in text.Kevin Breit2001-06-2210-20/+108
| | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/usage-mail.sgml: Redid graphics to add labels to them and described in labels in text. Looks good! svn path=/trunk/; revision=10364
* Added fileKevin Breit2001-06-212-9/+160
| | | | | | | | 2001-06-21 Kevin Breit <battery841@mediaone.net> * C/encryption.sgml: Added file svn path=/trunk/; revision=10354
* Moved my entires to doc/ChangeLog per request of danwKevin Breit2001-06-212-24/+57
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/ChangeLog: Moved my entires to doc/ChangeLog per request of danw svn path=/trunk/; revision=10353
* Updated for new UI.Kevin Breit2001-06-211-30/+18
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/C/config-setupassist.sgml: Updated for new UI. svn path=/trunk/; revision=10346
* Updated for a newer UI (need to update at a later date.Kevin Breit2001-06-211-52/+34
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/C/config-prefs.sgml: Updated for a newer UI (need to update at a later date. svn path=/trunk/; revision=10345
* Make less monotone soundingKevin Breit2001-06-212-7/+5
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/C/usage-calendar.sgml: Make less monotone sounding svn path=/trunk/; revision=10342
* Added more postscript descriptionKevin Breit2001-06-211-3/+3
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * docs/C/usage-print.sgml: Added more postscript description svn path=/trunk/; revision=10341
* Reworded a little bit for more descrip.Kevin Breit2001-06-211-2/+3
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * docs/C/usage-sync: Reworded a little bit for more descrip. svn path=/trunk/; revision=10340
* Documented categorizing an event.Kevin Breit2001-06-211-2/+37
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/C/usage-calendar.sgml: Documented categorizing an event. svn path=/trunk/; revision=10339
* Updated Bcc: exampleKevin Breit2001-06-201-1/+3
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/C/usage-mail.sgml: Updated Bcc: example svn path=/trunk/; revision=10335
* Took out a reference to gloss.Kevin Breit2001-06-201-0/+10
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/C/apx-gloss.sgml: Took out a reference to gloss. svn path=/trunk/; revision=10332
* Made it build.Kevin Breit2001-06-201-1/+1
| | | | | | | | 2001-06-20 Kevin Breit <battery841@mediaone.net> * doc/C/usage-exec-summary.sgml: Made it build. svn path=/trunk/; revision=10331
* Checked for validity.Aaron Weber2001-06-201-1/+7
| | | | svn path=/trunk/; revision=10330
* A couple changes to Kevin's update. Mostly just checking over.Aaron Weber2001-06-202-25/+26
| | | | | | | | 2001-06-19 Aaron Weber <aaron@ximian.com> * C/usage-mainwindow.sgml and usage-mail.sgml: A couple changes to Kevin's update. Mostly just checking over. svn path=/trunk/; revision=10313
* Basic editsKevin Breit2001-06-201-36/+42
| | | | | | * doc/C/usage-mail.sgml: Basic edits svn path=/trunk/; revision=10303
* Updated to say "My Evolution"Kevin Breit2001-06-201-16/+12
| | | | | | * doc/C/usage-exec-summary: Updated to say "My Evolution" svn path=/trunk/; revision=10302
* Added definition.Kevin Breit2001-06-201-73/+52
| | | | | | | | * doc/C/apx-gloss.sgml: Added definition. * doc/C/usage-mainwindow.sgml: Routine updates. svn path=/trunk/; revision=10298
* Commented out DTD which shouldn't be thereKevin Breit2001-06-191-2/+2
| | | | | | * doc/C/usage-mainwindow.sgml: Commented out DTD which shouldn't be there svn path=/trunk/; revision=10279
* added *-undocumented.txt to .cvsignoreDamon Chaplin2001-06-142-0/+2
| | | | svn path=/trunk/; revision=10226
* added *-undocumented.txtDamon Chaplin2001-06-143-0/+7
| | | | | | | | | 2001-06-14 Damon Chaplin <damon@ximian.com> * calendar/cal-util/.cvsignore: * calendar/cal-client/.cvsignore: added *-undocumented.txt svn path=/trunk/; revision=10225
* fixed a typo pointed out by Greg Leblanc. s/listen/listed/Duncan Mak2001-06-082-1/+5
| | | | svn path=/trunk/; revision=10150
* removed duplicate "If mozilla can..." question.Aaron Weber2001-06-071-17/+0
| | | | | | | | 2001-06-07 Aaron Weber <aaron@ximian.com> * C/evolution-faq.sgml: removed duplicate "If mozilla can..." question. svn path=/trunk/; revision=10148
* Note that I think I may have CVS Tag problems at least with the changelog.Aaron Weber2001-06-076-79/+109
| | | | | | | | | | | | | | | | | | | | 2001-06-06 Aaron Weber <aaron@ximian.com> * Note that I think I may have CVS Tag problems at least with the changelog. * C/apx-authors.sgml: Re-added translators that somehow got lost. * C/usage-exec-summary.sgml: Added comment/note to myself about FIXME stuff. * C/usage-mainwindow.sgml: Revisions, especially to folder bar section. Commented out "Context-sensitive help" item, added folder-tree right-click menus, redid menubar stuff. * C/apx-gloss.sgml: Groupware, Forwarding entries revised. * C/evolution.sgml: Added Ettore and Duncan to authors list. svn path=/trunk/; revision=10141
* added questions about KDE, redid other questions.Aaron Weber2001-06-021-444/+516
| | | | svn path=/trunk/; revision=10081
* s/Helix Code/XimianFederico Mena Quintero2001-05-252-2/+6
| | | | | | | | 2001-05-24 Federico Mena Quintero <federico@ximian.com> * evolution-devel-guide.sgml: s/Helix Code/Ximian svn path=/trunk/; revision=9972
* Untabify.Ettore Perazzoli2001-05-231-732/+732
| | | | svn path=/trunk/; revision=9947
* Add Emacs-like local variable settings to disable `indent-tabs-mode'.Ettore Perazzoli2001-05-231-1/+5
| | | | svn path=/trunk/; revision=9946
* More (minor) indentation fixes.Ettore Perazzoli2001-05-231-7/+7
| | | | svn path=/trunk/; revision=9945
* Re-indented the FAQ document.Ettore Perazzoli2001-05-232-438/+425
| | | | svn path=/trunk/; revision=9944
* Added evolution-faq as an entity.Aaron Weber2001-05-223-537/+598
| | | | | | | | | | | | | | 2001-05-22 Aaron Weber <aaron@ximian.com> * C/evolution.sgml: Added evolution-faq as an entity. * C/apx-authors.sgml: Added ettore and duncan to authors for the FAQ. * C/evolution-faq.sgml: Put in <qandaset> form, made an entity included in evolution.sgml. This will require changes to makefiles and will break the current menu item for the FAQ. svn path=/trunk/; revision=9918
* doc/C/evolution.sgml - Pulled my name from copyright listKevin Breit2001-05-221-1/+0
| | | | | | * doc/C/evolution.sgml - Pulled my name from copyright list svn path=/trunk/; revision=9915
* Updated to ignore more built files.Ettore Perazzoli2001-05-201-6/+8
| | | | svn path=/trunk/; revision=9898
* Added a lot of new content. Fixed old content. Validated. Still need toAaron Weber2001-05-194-600/+265
| | | | | | | | | | | | | | 2001-05-18 Aaron Weber <aaron@ximian.com> * C/menuref.sgml: Added a lot of new content. Fixed old content. Validated. Still need to smooth the relation of this section with the preface. 2001-05-16 Aaron Weber <aaron@ximian.com> * C/preface.sgml: Changed to include t-shirt offer for feedback. svn path=/trunk/; revision=9885
* Added two questions about importing Outlook (text from Iain). Fixed someDuncan Mak2001-05-192-2/+76
| | | | | | | | | | 2001-05-18 Duncan Mak <duncan@ximian.com> * C/evolution-faq.sgml: Added two questions about importing Outlook (text from Iain). Fixed some tags and cleaned up a bit here and there. svn path=/trunk/; revision=9884
* Added a question about the need for write permissions onEttore Perazzoli2001-05-181-0/+5
| | | | | | /var/spool/mail. svn path=/trunk/; revision=9881
* Added a question about the need for write permissions onEttore Perazzoli2001-05-181-0/+21
| | | | | | /var/spool/mail. svn path=/trunk/; revision=9880
* Return the serialized EDestinations (rather than just a string w/ e-mailJon Trowbridge2001-05-184-54/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-05-18 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-bonobo.c (entry_get_property_fn): Return the serialized EDestinations (rather than just a string w/ e-mail addresses) through the bonobo component's property bag. * gui/component/select-names/e-select-names-model.c (e_select_names_model_export_destinationv): Added. A convenience routine for serializing the model's EDestinations into a string. * gui/component/select-names/e-select-names-popup.c (add_html_mail): Added. Puts in a check menu item for whether or not the recipient wants HTML mail. (popup_menu_card): Add menu item for HTML mail. Enable edit contact info item. (popup_menu_nocard): Add menu item for HTML mail. Enable edit contact info item. * backend/ebook/e-book-util.c (e_book_use_local_address_book): Added. Fetches the local addressbook and caches it on the first call. This is meant to be an easy and efficient way to get at the local addressbook with the minimum of code. (e_book_query_address_locally): Added. Convenience code that does an e-mail only e_book_name_and_email_query against the local address book. * backend/ebook/e-destination.c (e_destination_set_html_mail_pref): Added. Allows the intended recipient's HTML mail preference to be manipulated. (e_destination_get_email_verbose): Added. Cleaned up to use e_destination_get_name. (e_destination_get_html_mail_pref): Added. Read the recipient's HTML mail preference. If the destination is linked to a card, the preference is taken from the card (unless it has been explicitly overridden by a called to e_destination_set_html_mail_pref). (e_destination_get_address_textv): Added. Form a unified address string from a NULL-terminated vector of EDestinations. (e_destination_export): Added. Serialize an EDestination to a string. (e_destination_import): Added. Unserialize a string to build an EDestination. (e_destination_exportv): Added. Serialize a NULL-terminated vector of EDestinations to a string. (e_destination_importv): Added. Unserialize a string to build a NULL-terminated vector of EDestinations. * gui/component/select-names/e-select-names-completion.c: Implemented local versions of g_strcasecmp and g_strncasecmp (which should really be in glib, I think...) for utf8, and used them to make this code utf8-safe. 2001-05-18 Jon Trowbridge <trow@ximian.com> * Makefile.am (evolution_mail_LDADD): Added libebook.la (which is now required by the composer.) 2001-05-18 Jon Trowbridge <trow@ximian.com> * e-msg-composer-hdrs.c (set_recipients): Properly unserialize the string returned by the "text" property of the bonobo control, convert it into EDestinations, and use them to get the e-mail addresses of our recipients. 22001-05-18 Jon Trowbridge <trow@ximian.com> * Makefile.am (SUBDIRS): Changed build order. Now addressbook gets built before mail. svn path=/trunk/; revision=9878
* Fixed Grammar, edited a few answers, did the vfolder thing.Aaron Weber2001-05-171-22/+30
| | | | svn path=/trunk/; revision=9851
* Get the User guide and the Evolution FAQ to be installed into separateEttore Perazzoli2001-05-162-6/+25
| | | | | | directories. svn path=/trunk/; revision=9834
* Evolution users worldwide, rejoice! We have a FAQ. (Yes, it stillEttore Perazzoli2001-05-162-6/+762
| | | | | | sucks, but it will get better.) svn path=/trunk/; revision=9831
* yea...Jeffrey Stedfast2001-05-161-0/+3
| | | | svn path=/trunk/; revision=9828
* I've said it before and I'll say it again... man am I a dumb schmuckJeffrey Stedfast2001-05-161-0/+536
| | | | svn path=/trunk/; revision=9827
* yes, I am a dumbassJeffrey Stedfast2001-05-161-0/+791
| | | | svn path=/trunk/; revision=9826
* oops, I guess this file does belong hereJeffrey Stedfast2001-05-161-0/+301
| | | | svn path=/trunk/; revision=9825
* updated .cvsignoreJeffrey Stedfast2001-05-162-0/+3
| | | | svn path=/trunk/; revision=9823
* Removed some evolution-*-decl.txt files since these are autogenerated byJeffrey Stedfast2001-05-166-1/+29
| | | | | | | | | | 2001-05-15 Jeffrey Stedfast <fejj@ximian.com> * Removed some evolution-*-decl.txt files since these are autogenerated by gtk-doc and don't belong in cvs anyway. Should the tmpl/ dirs also be removed?? svn path=/trunk/; revision=9822
* added file for ScrollkeeperKevin Breit2001-05-151-0/+14
| | | | | | | | 2001-05-14 Kevin Breit <battery841@mediaone.net> * doc/C/evolution-C.omf: added file for Scrollkeeper svn path=/trunk/; revision=9809
* ShushJP Rosevear2001-05-084-7/+13
| | | | svn path=/trunk/; revision=9701
* UpdateKjartan Maraas2001-04-261-0/+1
| | | | svn path=/trunk/; revision=9580
* Update this a bitKjartan Maraas2001-04-261-6/+6
| | | | svn path=/trunk/; revision=9579
* Removed generated files from CVS, updated .cvsignore files to includeJon Trowbridge2001-04-2619-1698/+141
| | | | | | | | | 2001-04-25 Jon Trowbridge <trow@ximian.com> * Removed generated files from CVS, updated .cvsignore files to include generated files. svn path=/trunk/; revision=9569
* Changed dependency for install-data-local from "evolution" toJon Trowbridge2001-04-242-1/+6
| | | | | | | | | 2001-04-23 Jon Trowbridge <trow@ximian.com> * C/Makefile.am (install-data-local): Changed dependency for install-data-local from "evolution" to "evolution-guide". svn path=/trunk/; revision=9529
* Port builddir != srcdir patch from the evolution-0-10-branch.Ettore Perazzoli2001-04-246-7/+20
| | | | svn path=/trunk/; revision=9522
* Re-commit ChangeLog.Ettore Perazzoli2001-04-241-2/+0
| | | | svn path=/trunk/; revision=9508