summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Update UsingLibical.txtTyler Polen2021-11-161-7/+7
| | | | Typo fixes
* Incorrectly placed commaAnthon van der Neut2021-04-111-1/+1
| | | | Signed-off-by: Allen Winter <allen.winter@kdab.com>
* doc/Doxyfile.cmake - HTML_TIMESTAMP=YESAllen Winter2020-07-211-0/+1
| | | | show when doxygen was last run on the html pages
* various - use https instead of http where we canAllen Winter2019-12-143-10/+10
| | | | | Update Eric's email Remove softwarestudio.com which no longer exists as a domain
* [libical-glib] Remove langbind as it is already covered by the introspection ↵Corentin Noël2019-05-011-1/+0
| | | | | | itself All the langbind methods are helpers for the bindings in libical, here the GObject Introspection already covers all the features.
* merge doc/reference from masterAllen Winter2019-04-061-11/+12
|
* various - cleanup after the new ENABLE_GTK_DOC optionAllen Winter2018-11-111-1/+1
|
* libical-glib documentation doesn't go through gtkdoc-scangobjMilan Crha2018-11-112-66/+11
| | | | | | | | | Using gtkdoc-scangobj adds also glib GObject hierarchy, properties and signals into the documentation. This adds also an ENABLE_GTK_DOC option which can be used to disable the gtk-doc usage explicitly, rather than ignore the build when necessary binaries are not found. It also extracts the commands into a GtkDoc.cmake module, rather than have it inline on the place where it's used.
* doc/Mainpage.dox - update the rfc implementation listAllen Winter2018-08-121-1/+4
| | | | for consistency with the ReadMe.
* Enable libical-glib API indexes in gtk-docMilan Crha2018-02-181-6/+6
|
* CMakeLists.txt, docs/CMakeLists.txt, Install.txt - new CMake option ↵Allen Winter2018-01-211-1/+12
| | | | ICAL_BUILD_DOCS
* Merge branch 'master' into remove-is_utcKent Sutherland2017-10-015-40/+1487
|\
| * doc/UsingLibical.md - fixes code examplePatrick Elsen2017-07-111-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While running the code example locally, I ran into a bug where icalcomponent_vanew() would crash, but only when I was using more than 4 variable arguments. Code to reproduce is: icalcomponent_vanew( ICAL_VEVENT_COMPONENT, icalproperty_new_dtstamp(atime), icalproperty_new_dtstamp(atime), icalproperty_new_dtstamp(atime), icalproperty_new_dtstamp(atime), icalproperty_new_dtstamp(atime), 0); My machine is a 64-bit OS X machine. After a bit of fiddling and experimentation I think I found the cause, which is that on my machine, `sizeof(int) == 4` whereas `sizeof(void*) == 8`. In icalcomponent_add_children(), varargs are interpreted as `void *`, and checked for equality with 0 (therefore, the is automagically cast to a `void*`. As to why this only happened when there are more than 4 varargs, my best guess is that since the first N arguments are passed via registers on x86-64, it would be passed as a zeroed-register, whereas any arguments after that would be passed on the stack, where obviously anything that is on the stack after the 4-byte 0 would make this code crash. This should probably be marked in the documentation for the vanew functions (if it hasn't already).
| * doc/UsingLibical.md - cleans up the example code, somewhatPatrick Elsen2017-07-111-326/+303
| |
| * doc/UsingLibical.md - converts doc/UsingLibical.txt to markdown formatPatrick Elsen2017-07-111-0/+1462
| |
| * doc/UsingLibical.txt - more minor fixesPatrick Elsen2017-07-111-4/+4
| |
| * doc/UsingLibical.txt - minor cleanups (spelling & removes dead links)Patrick Elsen2017-07-111-26/+26
| |
| * doc/CMakeLists.txt - add set_package_properties for doxygenAllen Winter2017-06-031-0/+6
| |
| * buildsystem: use more cmake set_package_properties and add_feature_info()Allen Winter2017-06-031-4/+4
| | | | | | | | Issue#259
| * Relicense to MPL 2.0 instead of MPL 1.0Allen Winter2017-05-072-6/+6
| | | | | | | | | | | | | | | | fix urls. make source license headers consistent GNU "Lesser" vs. GNU "Library" etc. issue: #297
* | Removed references to is_utc in UsingLibical.txt.Kent Sutherland2017-02-121-6/+1
|/
* libical-glib-docs.xml.in - revert the "new symbols in" pagesAllen Winter2017-01-111-6/+6
|
* add libical-glib docs for some new functionsAllen Winter2017-01-051-0/+12
| | | | | | * icalvalue_new_datetimedate (DATE or DATE-TIME) * icalvalue_set_datetimedate * icalvalue_get_datetimedate
* doc/Doxyfile.cmake - generate doxygen tag fileAllen Winter2017-01-011-1/+2
| | | | issue#282
* doc/Doxyfile.cmake - improve doxygen configurationAllen Winter2017-01-011-22/+27
|
* * Signature changed for functions:Allen Winter2016-12-211-1/+1
| | | | | | | | | | | | + VObject *Parse_MIME_FromFileName(const char *fname) + icalgauge *icalgauge_new_from_sql(const char *sql, int expand) + const char *icallangbind_property_eval_string(icalproperty *prop, const char *sep) + const char *icallangbind_property_eval_string_r(icalproperty *prop, const char *sep) + void set_zone_directory(const char *path) + icalcalendar *icalcalendar_new(const char *dir) + int icalrecur_expand_recurrence(const char *rule, time_t start, int count, time_t *array) issue#276
* Merge pull request #274 from ksuther/remove-deprecatedAllen Winter2016-12-191-9/+13
|\ | | | | Remove deprecated functions
| * Replace reference to icaltime_from_timet with icaltime_from_timet_with_zone ↵Kent Sutherland2016-12-181-12/+11
| | | | | | | | | | in UsingLibical Remove old reference to old icaltime_from_int
| * Remove deprecated icaltime_start_doy_of_weekKent Sutherland2016-12-181-1/+1
| | | | | | | | Use icaltime_start_doy_week instead. The generated SWIG interface in Net-ICal-Libical hasn't been regenerated.
| * Remove deprecated icalproperty_remove_parameterKent Sutherland2016-12-181-1/+1
| | | | | | | | Use icalproperty_remove_parameter_by_kind instead.
* | libical-glib-docs.xml.in - quiet "failed to load external entity" warningsAllen Winter2016-12-191-2/+0
| | | | | | | | issue#261
* | doc/UsingLibical.txt - remove mention to non-existent icaltime_from_intAllen Winter2016-12-181-5/+0
|/
* remove declared but unimplemented functionsAllen Winter2016-12-181-3/+0
| | | | issue#270
* doc/reference/libical-glib/CMakeLists.txt - fix install directoryAllen Winter2016-09-281-1/+1
|
* cleaning, coding style, fixing FSF urlAllen Winter2016-05-111-2/+2
|
* doc/reference/libical-glib/CMakeLists.txt - XML_CATALOG_FILES on OSXAllen Winter2016-05-071-18/+23
| | | | this time use env to pass the environment variable to gtkdoc_mkhtml
* doc/reference/libical-glib/CMakeLists.txt - set XML_CATALOG_FILES on OSXAllen Winter2016-05-071-40/+51
|
* Provide libical-glib, a GObject-based interface for libical with introspectionMilan Crha2016-04-264-1/+147
|
* Change RFC2445/2446 references to RFC5545/5546Ken Murchison2015-08-181-21/+22
|
* say goodbye the global variable icalerror_errors_are_fatalAllen Winter2015-08-141-4/+9
| | | | and hello to icalerror_[set,get]_errors_are_fatal().
* icalbdbset, icalfileset, icalset - splint cleaningAllen Winter2015-05-021-198/+197
|
* remove libicalcap - unknown purpose.Allen Winter2015-04-301-1/+0
| | | | searched back to v0.31 and never found it was ever built
* ReadMe.txt, Mainpage.dox - remove reference to Theo's vsnprintfAllen Winter2015-04-181-3/+0
|
* remove unused option ICAL_UNIX_NEWLINEAllen Winter2014-12-071-5/+0
|
* remove .svnignore filesAllen Winter2014-11-281-6/+0
|
* first attempt at generating api documentation using doxygenAllen Winter2014-09-263-1/+277
|
* change links from freeassociation.sourceforge.net to libical.github.ioAllen Winter2014-05-311-1/+1
|
* Re-arrange after svn to git conversionAllen Winter2014-05-314-0/+1410