aboutsummaryrefslogtreecommitdiffstats
path: root/doc/devel/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Removed generated files from CVS, updated .cvsignore files to includeJon Trowbridge2001-04-261-0/+5
| | | | | | | | | 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
* Port builddir != srcdir patch from the evolution-0-10-branch.Ettore Perazzoli2001-04-241-0/+9
| | | | svn path=/trunk/; revision=9522
* Documentation building fixes merged from the evolution-0-10-branch:Ettore Perazzoli2001-04-241-0/+7
| | | | | | | Get the docs to build and install properly. Temporarily disable the importer devel docs as they seem to be pretty broken. svn path=/trunk/; revision=9507
* changed path to the importer header files, since we've had reports thatDamon Chaplin2001-04-211-0/+6
| | | | | | | | | | 2001-04-20 Damon Chaplin <damon@ximian.com> * importer/evolution-shell-importer.types: changed path to the importer header files, since we've had reports that they aren't being found (though it worked OK for me). svn path=/trunk/; revision=9478
* Pull up fix from the branch:Ettore Perazzoli2001-04-181-0/+8
| | | | | | | builddir != srcdir fix for building the calendar, executive summary and importer developers' docs. svn path=/trunk/; revision=9408
* Change (nonexistant) importer.sgml references to evolution-importer.sgmlJohn R. Sheets2001-01-281-0/+5
| | | | | | | | | 2001-01-26 John R. Sheets <dusk@ravendusk.org> * importer/Makefile.am: Change (nonexistant) importer.sgml references to evolution-importer.sgml to fix dependency problem. svn path=/trunk/; revision=7860
* Some API documentation for the importerIain Holmes2001-01-181-0/+11
| | | | svn path=/trunk/; revision=7589
* Ximianified.Federico Mena Quintero2001-01-171-0/+10
| | | | | | | | | | | | | | 2001-01-17 Federico Mena Quintero <federico@ximian.com> * evolution-devel-guide.sgml: Ximianified. * calendar/evolution-calendar.sgml: Ditto. * calendar/cal-util/evolution-cal-util-sections.txt: Updated. * calendar/cal-client/evolution-cal-client-sections.txt: Updated. svn path=/trunk/; revision=7573
* Make it work when gtk-doc is not installed.Federico Mena Quintero2001-01-111-0/+8
| | | | | | | | | | | | 2001-01-10 Federico Mena Quintero <federico@helixcode.com> * Makefile.am: Make it work when gtk-doc is not installed. * calendar/cal-client/Makefile.am: Likewise. * calendar/cal-util/Makefile.am: Likewise. svn path=/trunk/; revision=7384
* Added proper dependency lists to the gtk-doc mess.Federico Mena Quintero2000-12-201-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-12-19 Federico Mena Quintero <federico@helixcode.com> Added proper dependency lists to the gtk-doc mess. * calendar/cal-client/Makefile.am (TARGET_DIR): Removed unused variable. (SOURCE_FILES): New variable with the list of source files we depend on. (IGNORED_SOURCE_HEADERS): New variable with the headers we ignore for the gtkdoc-scan phase. (scan_generated): (tmpl_dependencies): (tmpl_sources): (tmpl_generated); (sgml_dependencies): (sgml_generated): Lists of stuff that is generated and that other stuff depends on. (all): Added the $(sgml_generated) as the final target. (install-data-local): Added an installation hook; gtk-doc seems to want some of its generated files to be installed. * calendar/cal-client/evolution-cal-client-sections.txt: Updated. * calendar/cal-util/Makefile.am: Made the same changes as for calendar/cal-client/Makefile.am. * calendar/cal-util/evolution-cal-util-sections.txt: Updated. * Makefile.am (local_entities): Added alarm-generation.sgml. (all): Made the main target be the html/index.html. svn path=/trunk/; revision=7084
* Alarm instance generation support for the Wombat.Federico Mena Quintero2000-12-191-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-12-18 Federico Mena Quintero <federico@helixcode.com> Alarm instance generation support for the Wombat. * idl/evolution-calendar.idl (Cal::CalAlarmInstance): Changed to have an alarm UID, the trigger time, and the actual occurrence time. (Cal::CalComponentAlarms): New structure to hold a pair of a component and its alarms that trigger in a particular range of time. (Cal::getAlarmsInRange): Changed to return a CalComponentAlarmsSeq. * cal-util/cal-component.h (CalAlarmInstance): New C-side structure to match the one on the IDL. (CalComponentAlarms): Ditto. (CalAlarmAction): Renamed from CalComponentAlarmAction. (CalAlarmTriggerType): Renamed from CalComponentAlarmTriggerType. Encoded the START and END parameters for the RELATED parameter in this enum, too. Added a NONE value for invalid or missing trigger specifications. (CalComponentAlarmTriggerRelated): Removed. (CalAlarmTrigger): Renamed from CalComponentAlarmTrigger. Renamed the duration/time fields to rel_duration/abs_time, respectively. * cal-util/cal-component.c (cal_component_alarm_get_trigger): Changed to use the new trigger structure. (cal_component_alarm_set_trigger): Likewise. (cal_component_alarm_free_trigger): Removed function. (cal_component_has_alarms): Count the elements in the alarm_uid_hash instead of trying to fetch the first alarm subcomponent. (cal_component_alarms_free): New function to free a CalComponentAlarms structure. (CalComponentAlarmPrivate): Added an uid property pointer. (scan_alarm_property): Scan for the our extension UID property. (cal_component_alarm_get_uid): New function. * pcs/cal-backend.h (CalBackendClass): Changed the signatures of the ::get_alarms_in_range() and ::get_alarms_for_object() methods. * pcs/cal-backend.c (cal_backend_get_alarms_in_range): Changed signature; use the new method. (cal_backend_get_alarms_for_object): Likewise. * pcs/cal-backend-file.c (compute_alarm_range): New spiffy function to compute a range of time for alarm occurrences. (add_alarm_occurrences_cb): New function to add alarms for a particular occurrence of the component. (generate_absolute_triggers): New function to add the absolute alarm triggers. (generate_alarms_for_comp): New function to generate all the alarm instances for a component. (cal_backend_file_get_alarms_in_range): Implemented. * pcs/cal.c (Cal_get_alarms_in_range): Use the new CalBackend API. (Cal_get_alarms_for_object): Likewise. (build_alarm_instance_seq): Removed old function. * cal-util/cal-util.c (cal_alarm_instance_list_free): Removed function. * cal-client/cal-client.c (build_component_alarms_list): New function to demarshal the component alarms sequence. (build_alarm_instance_list): New function to demarshal the alarm instances sequence. (cal_client_get_alarms_in_range): Updated for the new API. (cal_client_get_alarms_for_object): Updated for the new API. * gui/gnome-cal.c: Temporary #ifdef-ing out of alarm-related stuff to make it build. svn path=/trunk/; revision=7076
* make it public-reference.sgml not referenc.sgml here.Larry Ewing2000-12-141-0/+5
| | | | | | | | | 2000-12-13 Larry Ewing <lewing@helixcode.com> * calendar/Makefile.am (EXTRA_DIST): make it public-reference.sgml not referenc.sgml here. svn path=/trunk/; revision=6973
* Finished the calendar architecture chapter.Federico Mena Quintero2000-11-301-0/+5
| | | | | | | | | 2000-11-29 Federico Mena Quintero <federico@helixcode.com> * calendar/architecture.sgml: Finished the calendar architecture chapter. svn path=/trunk/; revision=6729
* Added an id for the API reference <part>. Added the FDL <legalnotice>.Federico Mena Quintero2000-11-301-0/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-11-29 Federico Mena Quintero <federico@helixcode.com> * evolution-devel-guide.sgml: Added an id for the API reference <part>. Added the FDL <legalnotice>. Added the preface and toplevel reference entities. Added entities for Evolution, Wombat, and Camel. Added an appendix for the GNU FDL. * preface.sgml: New file with the introduction to the Evolution Developer's Guide. * reference.sgml: Split the toplevel reference part into its own file. * fdl.sgml: Added the GNU Free Documentation License. * calendar/evolution-calendar.sgml: Added an id for the <part>. * calendar/public-reference.sgml: Added an id for the <reference>. Moved this file over from calendar/reference.sgml. * Makefile.am (local_entities): Added a list of the SGML files that define entities for inclusion in the toplevel document. This way we can track documentation file dependencies down to all levels. (html/index.html): Made the toplevel document depend on $(local_entities). Also, removed the "html" target and put its contents directly here; this way we avoid having .PHONY targets. (EXTRA_DIST): Removed the evolution_devel_guideDATA; it made no sense. (content_files): Added preface.sgml and reference.sgml. svn path=/trunk/; revision=6715
* Made the toplevel <book> id be "index".Federico Mena Quintero2000-09-161-0/+5
| | | | | | | | | 2000-09-15 Federico Mena Quintero <federico@helixcode.com> * evolution-devel-guide.sgml: Made the toplevel <book> id be "index". svn path=/trunk/; revision=5467
* Added the cal-util library to the documentation framework - FedericoFederico Mena Quintero2000-08-151-0/+15
| | | | svn path=/trunk/; revision=4839
* Fix make maintainer-cleanPeter Williams2000-08-101-0/+5
| | | | svn path=/trunk/; revision=4670
* Docs docs docs - FedericoFederico Mena Quintero2000-07-181-0/+2
| | | | svn path=/trunk/; revision=4206
* New <book> toplevel for the Evolution Developer's Guide.Federico Mena Quintero2000-07-181-0/+13
2000-07-17 Federico Mena Quintero <federico@helixcode.com> * evolution-devel-guide.sgml: New <book> toplevel for the Evolution Developer's Guide. * calendar/evolution-calendar.sgml: New <part> for the calendar developer's documentation. * calendar/architecture.sgml: New <chapter> for the calendar architecture. * calendar/reference.sgml: New <reference> for the calendar API reference. svn path=/trunk/; revision=4191