aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/GnomeCal.idl
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-08-02 12:57:30 +0800
committernobody <nobody@localhost>1999-08-02 12:57:30 +0800
commit988d4b6d0e60d1bfb375db9e22cd46e35cdb1757 (patch)
tree56c82631ac33d24a80837896ee606c4631d03ad0 /calendar/gui/GnomeCal.idl
parentf812a77ab63149367d289b9aea02ca7e813c7058 (diff)
downloadgsoc2013-evolution-988d4b6d0e60d1bfb375db9e22cd46e35cdb1757.tar
gsoc2013-evolution-988d4b6d0e60d1bfb375db9e22cd46e35cdb1757.tar.gz
gsoc2013-evolution-988d4b6d0e60d1bfb375db9e22cd46e35cdb1757.tar.bz2
gsoc2013-evolution-988d4b6d0e60d1bfb375db9e22cd46e35cdb1757.tar.lz
gsoc2013-evolution-988d4b6d0e60d1bfb375db9e22cd46e35cdb1757.tar.xz
gsoc2013-evolution-988d4b6d0e60d1bfb375db9e22cd46e35cdb1757.tar.zst
gsoc2013-evolution-988d4b6d0e60d1bfb375db9e22cd46e35cdb1757.zip
This commit was manufactured by cvs2svn to create tagGNOME_PYTHON_1_0_4
'GNOME_PYTHON_1_0_4'. svn path=/tags/GNOME_PYTHON_1_0_4/; revision=1061
Diffstat (limited to 'calendar/gui/GnomeCal.idl')
-rw-r--r--calendar/gui/GnomeCal.idl73
1 files changed, 0 insertions, 73 deletions
diff --git a/calendar/gui/GnomeCal.idl b/calendar/gui/GnomeCal.idl
deleted file mode 100644
index 5c158284a3..0000000000
--- a/calendar/gui/GnomeCal.idl
+++ /dev/null
@@ -1,73 +0,0 @@
-module GNOME {
-
- module Calendar {
-
- interface Repository {
-
- exception NotFound {};
-
- /*
- * get_object:
- * @uid: Unique Identifier for the object
- *
- * Returns a vCalendar object for the object
- * that matches the UID @uid.
- */
- string get_object (in string uid)
- raises (NotFound);
-
- /*
- * get_object_by_pilot_id:
- * @pilot_id: the pilot id
- *
- * Returns the object that has the @pilot_id
- * identifier.
- */
- string get_object_by_pilot_id (in long pilot_id)
- raises (NotFound);
-
- string get_id_from_pilot_id (in long pilot_id)
- raises (NotFound);
-
- /*
- * delete_object:
- * @uid: Unique Identifier for the object
- */
- void delete_object (in string uid)
- raises (NotFound);
-
- /*
- * update_object:
- * @uid: uid of object to update
- * @object: vcard object to update
- */
- void update_object (in string uid, in string object);
-
- /*
- * update_pilot_id:
- * @uid: Unique identifier for the event we want to update
- * @pilot_id: new ID assigned by the pilot
- * @pilot_status: Status to flag the event with
- */
- void update_pilot_id (in string uid, in long pilot_id, in long pilot_status)
- raises (NotFound);
-
- /*
- * get_updated_objects:
- *
- * Returns a vCalendar with all the objects that have been
- * modified since the last Pilot Sync
- */
- string get_updated_objects ();
-
- /*
- * done:
- *
- * Informs the calendar that we are done using it,
- * gets a chance to destroy windows and save information.
- */
- void done ();
- };
- };
-};
-