aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-01-25 06:45:40 +0800
committerChris Toshok <toshok@src.gnome.org>2001-01-25 06:45:40 +0800
commit57f0e85f6ccbe64904414fb6ede859dcc8acdc5b (patch)
treebdd0ec5d22948c1c798d1e469ce2102f23e964ec /addressbook
parent7a45edf2b5dbcd98a4b4ae7f9c36dd2f280f06af (diff)
downloadgsoc2013-evolution-57f0e85f6ccbe64904414fb6ede859dcc8acdc5b.tar.gz
gsoc2013-evolution-57f0e85f6ccbe64904414fb6ede859dcc8acdc5b.tar.zst
gsoc2013-evolution-57f0e85f6ccbe64904414fb6ede859dcc8acdc5b.zip
make sure to add the lengths here (include the \0? anyone?).
2001-01-24 Chris Toshok <toshok@ximian.com> * backend/pas/pas-backend-ldap.c (email_ber_func): make sure to add the lengths here (include the \0? anyone?). (build_mods_from_ecards): if we're filling in mod->mod_bvalues, set mod_op |= LDAP_MOD_BVALUES. svn path=/trunk/; revision=7791
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/backend/pas/pas-backend-ldap.c7
2 files changed, 12 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 890e170f19..439eb34874 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+2001-01-24 Chris Toshok <toshok@ximian.com>
+
+ * backend/pas/pas-backend-ldap.c (email_ber_func): make sure to
+ add the lengths here (include the \0? anyone?).
+ (build_mods_from_ecards): if we're filling in mod->mod_bvalues,
+ set mod_op |= LDAP_MOD_BVALUES.
+
2001-01-23 Jason Leach <jasonleach@usa.net>
(Fix #1225: advanced search cancel/close)
diff --git a/addressbook/backend/pas/pas-backend-ldap.c b/addressbook/backend/pas/pas-backend-ldap.c
index 46681af3a6..6d7c9f5f8f 100644
--- a/addressbook/backend/pas/pas-backend-ldap.c
+++ b/addressbook/backend/pas/pas-backend-ldap.c
@@ -482,6 +482,7 @@ build_mods_from_ecards (ECardSimple *current, ECardSimple *new, gboolean *new_dn
mod->mod_values[1] = NULL;
}
else {
+ mod->mod_op |= LDAP_MOD_BVALUES;
mod->mod_bvalues = prop_info[i].ber_func (new);
}
@@ -1005,8 +1006,10 @@ email_ber_func(ECardSimple *card)
j = 0;
for (i = 0; i < 3; i ++) {
- if (emails[i])
- result[j++]->bv_val = g_strdup (emails[i]);
+ if (emails[i]) {
+ result[j]->bv_val = g_strdup (emails[i]);
+ result[j++]->bv_len = strlen (emails[i]) + 1;
+ }
}
result[num] = NULL;
+27 * Line up the padding for the folder title bar labels when you have theJason Leach2001-07-203-3/+15 * Removed. (load_shortcuts): Don't call it.Ettore Perazzoli2001-07-162-29/+6 * [Fix #4387, Shortcut bar items don't keep the name after rename.]Ettore Perazzoli2001-07-152-1/+8 * Display an icon for nodes at depth greater than 2 in the tree view asEttore Perazzoli2001-07-152-11/+10 * Fix a crash that could happen by closing one or more views, and thenEttore Perazzoli2001-07-153-4/+14 * Because bugzilla.ximian does have a mail gateway now, we can haveJason Leach2001-07-132-22/+13 * Remove warningIain Holmes2001-07-132-1/+4 * Initialize priv->db and priv->iid so that destroy() won't crash ifDan Winship2001-07-132-0/+8 * DONT ASK ME AGAIN!Iain Holmes2001-07-122-0/+7 * Mark a string for translation.Kjartan Maraas2001-07-112-1/+5 * Make sure to create ~/evolution/config/ if it doesn't exist. (ShellViewJason Leach2001-07-112-2/+19 * Add a temporary block of code to not use theJason Leach2001-07-112-0/+16 * convert the folder name from utf8 before displaying them in the dialog andLarry Ewing2001-07-102-3/+14 * Make the "Rename" item be a GNOMEUIINFO_ITEM_NONE() since we don't have aFederico Mena Quintero2001-07-102-7/+15 * It's very possible that get_storage_set_path_from_uri() returns NULL (5 ofJason Leach2001-07-102-1/+8 * Return a gboolean saying whether or not the shortcut changed. Use strcmpDan Winship2001-07-093-17/+52 * Little UI tweak for right click menu, pronouns shouldn't be capitalizedJason Leach2001-07-072-2/+5 * [Misc fixes and part of #2228, There should be no dialog boxes duringJason Leach2001-07-072-7/+17 * [This should fix #3873, Bizzarre crash after deleting a fewEttore Perazzoli2001-07-062-5/+9 * Added error dialogs for when the user tries to copy/move a folder overEttore Perazzoli2001-07-062-0/+36 * Special case the My Evolution uri so that the correct icon appears in theIain Holmes2001-07-062-9/+19 * Get the File -> Folder -> Properties menu item work again for theEttore Perazzoli2001-07-054-28/+15 * set "pixname" value only if pixbuf was loaded successfully. OtherwiseGediminas Paulauskas2001-07-052-3/+15 * Revised to make it less scary.Aaron Weber2001-07-042-10/+10 * [Fix a problem with not being able to save a newly createdEttore Perazzoli2001-07-042-1/+15 * use bonobo-conf everywhereDietmar Maurer2001-07-044-109/+135 * More BonoboConf workIain Holmes2001-07-042-0/+5 * [The following makes the shell able to create the `shortcuts.xml'Ettore Perazzoli2001-07-034-21/+72 * Ref/unref the handler so the signal handlers can unref it safely. Also, ifEttore Perazzoli2001-07-033-2/+25 * [Fixed #3643, Shell crash when component crashed]Ettore Perazzoli2001-07-032-1/+19 * Made evolution depend on bonobo-conf 0.2.Christopher James Lahey2001-07-032-0/+7 * Don't assert that there is a handler, so we don't crash if user clicks onEttore Perazzoli2001-07-038-44/+132 * Make the EUriSchemaRegistry object non-floating at construction time.Ettore Perazzoli2001-07-023-1/+8 * Get the "Open in a New Window" shortcut right-click menu to actuallyEttore Perazzoli2001-07-023-12/+49 * Fix a crash that happened when dragging a folder that didn't have aEttore Perazzoli2001-07-012-1/+8 * Implemented the `File -> New -> Shortcut' command.Ettore Perazzoli2001-07-014-14/+150 * Missing ChangeLog entries for the previous commit.Ettore Perazzoli2001-07-011-1/+14 * Implemented a "Rename Group" command. Unfortunately, it doesn't workEttore Perazzoli2001-07-015-1/+97 * Change EShortcuts to not use group titles to access specific groups.Ettore Perazzoli2001-07-014-32/+33 * Implemented a "Rename Shortcut" command.Ettore Perazzoli2001-07-013-31/+88 * Change the internal structure for shortucts, so that it contains aEttore Perazzoli2001-07-015-36/+242 * Pass the event time to gtk_menu_popup() so that we can release the buttonFederico Mena Quintero2001-07-012-1/+7 * This is a first shoot at making shortcuts renameable [#3719];Ettore Perazzoli2001-06-307-297/+263 * Replaced GList with GSList here to fix a type mismatch.Christopher James Lahey2001-06-302-1/+6 * Changed $(datadir)/evolution/etspec to "$(etspecdir)" here.Christopher James Lahey2001-06-302-2/+7 * Replaced GList with GSList here to fix a type mismatch.Christopher James Lahey2001-06-302-1/+6 * Change EShortcuts to use GSLists instead of GLists.Ettore Perazzoli2001-06-304-60/+75 * Fix the fix.Ettore Perazzoli2001-06-291-1/+1 * Ooops. Update ChangeLog entry correctly.Ettore Perazzoli2001-06-291-1/+2 * Fix #3756, `--debug' option not working anymore.Ettore Perazzoli2001-06-292-5/+18 * Fix #3382, shortcut bar crashes when checking mail, and all theEttore Perazzoli2001-06-292-6/+22 * (e_storage_new_folder): Move the folder_changed_cb() call to avoidDan Winship2001-06-292-1/+4 * Call folder_changed_cb after adding the new folder so that if it was addedDan Winship2001-06-292-0/+7 * Rename `e_shell_new_view()' into `e_shell_create_view()' to avoidEttore Perazzoli2001-06-286-11/+16 * Make the shell to be able to display URIs that the user specified onEttore Perazzoli2001-06-289-47/+159 * Added a URI schema registry to the shell, and changed the bootstrapEttore Perazzoli2001-06-289-5/+440 * Remove redundant declaration for `free_ShellComponentListener_servant()'.Ettore Perazzoli2001-06-282-3/+5 * Get EvolutionShellComponent to emit a "handle_external_uri" when itEttore Perazzoli2001-06-282-0/+20 * Rename the method implementation functions to match the CORBA names.Ettore Perazzoli2001-06-282-41/+58 * Add method `ShellComponent::handleExternalURI' and anEttore Perazzoli2001-06-285-2/+108 * Remove a ChangeLog entry that referred to code that I haven'tEttore Perazzoli2001-06-271-11/+0 * Plug a leak. Every time the ETable would query the model for theEttore Perazzoli2001-06-272-1/+7 * Avoid calling the listener directly in `e-local-folder.c'; instead,Ettore Perazzoli2001-06-272-67/+38 * display a selected uri in a timeout rather than right away, so the UIjacob berkman2001-06-262-3/+68 * Get the shell to unregister the components on exit again.Ettore Perazzoli2001-06-254-1/+25 * Break the build so the current shell breakage doesn't get into theEttore Perazzoli2001-06-251-0/+13 * Remove some spurious "\n"s from g_warnings.Ettore Perazzoli2001-06-253-6/+16 * Ooops. I missed one ChangeLog entry in the previous commit.Ettore Perazzoli2001-06-251-0/+2 * Fixed a nasty chain of broken fixes to broken fixes to broken fixes,Ettore Perazzoli2001-06-255-21/+28 * Remove the ugliness that was `e_shell_quit()'; implement anEttore Perazzoli2001-06-255-44/+25 * Rename `GNOME_Evolution_TestComponent.oafinfo' intoEttore Perazzoli2001-06-253-2/+9 * Change EShell to derive from BonoboXObject for sake of simplicity.Ettore Perazzoli2001-06-253-100/+55 * Actually implement the "clicked" signal for the EActivityHandler, andEttore Perazzoli2001-06-253-12/+41 * Fix a gazillion warnings.Ettore Perazzoli2001-06-242-4/+14 * Derive ETaskWidget from GtkEventBox instead of GtkFrame so that we canEttore Perazzoli2001-06-244-7/+57 * Added an EvolutionActivityClient object to libeshell, to handleEttore Perazzoli2001-06-247-158/+628 * Add code to query the ::Activity interface in theEttore Perazzoli2001-06-244-25/+88 * (Implemented deleting folders in the shell. Files changed that aren'tJason Leach2001-06-2414-51/+404 * Stylistical changes: moveEttore Perazzoli2001-06-243-33/+46 * Remove some useless `#if 0'ed code.Ettore Perazzoli2001-06-232-68/+4 * Get rid of the tons of ugly Bonobo Warnings by removing the code thatEttore Perazzoli2001-06-232-40/+12 * Update the copyrights, replacing Helix Code with Ximian andEttore Perazzoli2001-06-2356-64/+64 * Fix a bunch of stupid warnings caused by missing includes. AlsoEttore Perazzoli2001-06-235-3/+25 * Get the menu hints to work with the new status bar.Ettore Perazzoli2001-06-232-6/+56 * Add `evolution-test-component'.Ettore Perazzoli2001-06-231-0/+1 * Fix the "Quit" command so that the shell actually exits properly.Ettore Perazzoli2001-06-232-0/+7 * Implemented an Evolution::Activity interface for keeping track ofEttore Perazzoli2001-06-2319-85/+2131 * Oops, small fix.Jacob Leach2001-06-221-1/+1 * Fix bug #3409: Removing an EvolutionStorage from the shell's folderJacob Leach2001-06-223-3/+65 * Remove DB3_LDADDDan Winship2001-06-192-1/+2 * Fix the help URLsDan Winship2001-06-192-6/+9 * Check priv->uri isn't null before strcmp'ing it here too.Not Zed2001-06-132-1/+6 * Don't destroy the offline_toggle_pixmap: the offline_toggle 0wnz it.Dan Winship2001-06-122-2/+8 * Fixed folder creation on IMAP storages (by notifying bonobo listener withJason Leach2001-06-123-44/+46 * Committing the new My Evolution.Iain Holmes2001-06-096-48/+201 * Allow a NULL @shell_view arg inEttore Perazzoli2001-06-092-2/+6 * Fix splash setup to keep it from giving two Gtk-CRITICAL assertions whenJason Leach2001-06-092-14/+14 * Removed some left-over conflict indicators.Jon Trowbridge2001-06-071-2/+1 * Changed purely informational debug spew from a g_warning to a g_message.Jon Trowbridge2001-06-073-4/+22 * Changed the dialog box and added a Don't Ask Me Again button. Oh yeah!Iain Holmes2001-06-072-8/+73 * (Fix bug #3205: Component crash causes folder switch even when not needed)Jason Leach2001-06-072-4/+20 * (Fix bug #418: Save state of folder tree view)Jason Leach2001-06-075-34/+86 * Plug in all the folder tree right click menu verbs so bonobo-warningsJason Leach2001-06-064-1/+65 * (Fixing bug #1299: Shell saves shortcuts when display name changes)Jason Leach2001-06-065-12/+70 * Fix linking order for `$(DB3_LDADD)'s so that we avoid pullingEttore Perazzoli2001-06-032-2/+7 * Add some missing `$(DB3_LDADD)'s to get it to compile.Ettore Perazzoli2001-06-012-1/+6 * New function (probably should just be static).Jason Leach2001-05-3111-13/+154 * Removed an unecessary sleep(2) call, so evolution will start up 2 secondsJason Leach2001-05-316-3/+58 * Added missing castt. (setup_offline_toggle): Likewise.Federico Mena Quintero2001-05-302-3/+8 * unref the control when finished with it (setup_offline_toggle): dittoJP Rosevear2001-05-302-3/+16 * Call e_tree_node_set_expanded on the storage_set_view, not the storage_setDan Winship2001-05-292-1/+7 * add *.lo, libeshell.laDan Winship2001-05-291-0/+2 * New file. (e_pixmaps_update): Moved here from e-util to break e-utilDan Winship2001-05-285-1/+150 * Don't free the hash keys in priv->path_to_etree_node, because they'reDan Winship2001-05-272-10/+7 * Reference libeshell.la instead of libeshell.a.Peter Williams2001-05-263-19/+43 * place the shortcut bar in a framejacob berkman2001-05-262-6/+17 * Added ETSPECDIR. Added e-storage-set-view.etspec to get installed.Christopher James Lahey2001-05-2610-39/+85 * track change to the path to the ComponentPlaceholder.Chris Toshok2001-05-232-1/+7 * Add a button and an icon to toggle between online and offlineEttore Perazzoli2001-05-212-23/+201 * Implemented the "Copy Folder" and "Move Folder" menu items. Untested.Ettore Perazzoli2001-05-205-12/+302 * Add a caption to the folder selection dialog widget, and get theEttore Perazzoli2001-05-206-10/+67 * Renamed the "NewWindow" verb into "OpenFolderInNewWindow". Got theEttore Perazzoli2001-05-194-68/+97 * Create new files for the folder commands, and move the "Create newEttore Perazzoli2001-05-195-12/+181 * Change the code to pop-up the folder context menu to use the stuffEttore Perazzoli2001-05-173-42/+17 * Make the "Submit Bug Report" menu item fire up a browser withEttore Perazzoli2001-05-162-1/+27 * Add an "Evolution FAQ" entry to the Help menu, and update the existingEttore Perazzoli2001-05-162-5/+10 * Update the file name in the top comment.Ettore Perazzoli2001-05-161-1/+1 * Some demeeksifying indentation changes.Ettore Perazzoli2001-05-161-25/+16 * set the subfolder's parent to NULL so the subfolder list doesn't changejacob berkman2001-05-152-1/+10 * implement the CORBA side of dragging.Chris Toshok2001-05-122-6/+94 * add RemoveFolder menu item and verb. (folder_context_menu_remove_cb): newChris Toshok2001-05-124-8/+51 * add this define for the xml path to use when adding menu items to theChris Toshok2001-05-123-5/+26 * Ask for a folder to import into.Iain Holmes2001-05-127-20/+75 * component_new refs the object itself, so unref ours when we finish with itJP Rosevear2001-05-123-6/+11 * Lots of people seem to have "broken" local storage hierarchies. So ignoreDan Winship2001-05-122-2/+10 * the only problematic area - pass NULL for now in as the BonoboUIContainer.Chris Toshok2001-05-1110-34/+116 * Made this function static. Removed the unused variable placeholder.Christopher James Lahey2001-05-102-3/+10 * Remove get_physical_path and load_folders, and replace the calls to themDan Winship2001-05-102-178/+34 * Rename "port" to "type" here too.Dan Winship2001-05-102-1/+6 * Importer changesIain Holmes2001-05-098-153/+363 * Removed EVOLUTION_VERSION from the rest of makefiles. use VERSION instead. SoGediminas Paulauskas2001-05-081-1/+0 * Fix a free of non-malloc'ed memory introduced by my last change.Dan Winship2001-05-082-2/+5 * Added command entry for 'ToggleOffline'.Jon Trowbridge2001-05-082-2/+7 * take a physical_uri and pass it to the callback.Chris Toshok2001-05-055-4/+31 * Use type instead of portNumber.Dan Winship2001-05-053-5/+16 * Remove a line of code that caused the offline confirmation dialog toEttore Perazzoli2001-05-052-3/+7 * Undo a broken leak fix.Ettore Perazzoli2001-05-052-2/+5 * Plug more leaks.Ettore Perazzoli2001-05-044-2/+24 * Plug a leak in the folder creation dialog (a string was beingEttore Perazzoli2001-05-042-1/+6 * Plug a leak (the return value from `oaf_query()' must be freed!).Ettore Perazzoli2001-05-042-0/+7 * Change `e_shell_get_icon_path()' to only look up the Evolution imageEttore Perazzoli2001-05-042-8/+10 * Change the mode for the GtkCList in the active connection dialog to beEttore Perazzoli2001-05-042-1/+6 * Complete the shell side for supporting off-line operations, gettingEttore Perazzoli2001-05-044-21/+120 * Initial implementation for the "warning, some connections are stillEttore Perazzoli2001-05-048-22/+537 * Make the `EShellOfflineHandler' object non-floating in the constructEttore Perazzoli2001-05-032-0/+7 * Add interfaces to the shell to handle off-line operation, as well as aEttore Perazzoli2001-05-0310-1/+955 * new file.Chris Toshok2001-05-034-0/+581 * Remove $(UNICODE_LIBS).Dan Winship2001-04-263-3/+6 * free the private memberJP Rosevear2001-04-262-1/+5 * #include <glib.h> and move corresponding local includes to the top.Kjartan Maraas2001-04-2527-25/+62 * #include gnome-window-icon.hJeffrey Stedfast2001-04-242-0/+5 * Set window_icon of the splash screen to "evolution.png"Duncan Mak2001-04-222-0/+6 * #include <unistd.h>Ettore Perazzoli2001-04-182-0/+6 * Proxy events to the tooltip object properly.Christopher James Lahey2001-04-182-0/+55 * Pull up fix from the branch:Ettore Perazzoli2001-04-153-11/+49 * Do this everywhere, also fixup CLEANFILESMichael Meeks2001-04-143-2/+17 * Pull up fix from the 0-10 branch (chain the ::destroy handler forEttore Perazzoli2001-04-142-0/+7 * Implemented these.Christopher James Lahey2001-04-132-0/+23 * Don't get into an infinite loop when clicking on an IMAP storage. MightDan Winship2001-04-122-0/+11 * fix type. we want the destination interface, not source.Chris Toshok2001-04-082-1/+6 * Here goes my additional simple include fixes.Gediminas Paulauskas2001-04-053-1/+6 * Fix headers. Same here. Same here. Same here. Same here.Kjartan Maraas2001-04-056-0/+32 * set content type to utf8. fix warning. just call on_link_clicked().Gediminas Paulauskas2001-04-043-63/+61 * Don't declare debug_log as extern in evolution-shell-component-client.c,Dan Winship2001-04-043-7/+16 * Merge fix for #1117 (g-warning being emitted when clicking on storageEttore Perazzoli2001-04-043-1/+15 * Pulled up fixes from evolution-0-10-branch.Ettore Perazzoli2001-04-043-3/+50 * Iain's fix did not help, fixing myself. closes #1914Gediminas Paulauskas2001-04-032-3/+8 * Blessed by Ettore.Gediminas Paulauskas2001-04-022-0/+17 * Include <gal/util/e-util.h> here.Christopher James Lahey2001-04-012-0/+5 * If the importer can't be started, don't continueIain Holmes2001-03-312-0/+17 * Fix a crash when the evolution-importer-client tries to pass NULL for the fol...Iain Holmes2001-03-312-0/+7 * Since this is an ETree now, the signature of the double click callback hasChristopher James Lahey2001-03-312-0/+7 * add a "debug" method to tell a component to output debugging messages to aDan Winship2001-03-316-1/+77 * Remove/replace unneeded includes and move around stuff so that systemKjartan Maraas2001-03-3040-87/+221 * Use `g_strcasecmp()' instead of `strcasecmp()', just to be anal aboutEttore Perazzoli2001-03-292-2/+7 * Use strcasecmp instead of strcmp.Christopher James Lahey2001-03-292-4/+9 * Sigh. Use the right variable, idiot. And fix a crash bug thatEttore Perazzoli2001-03-292-1/+6 * In a fit of egomania, added myself to the authors array.Jon Trowbridge2001-03-282-0/+6 * Get the shell to compile by implementing a missing function.Ettore Perazzoli2001-03-272-2/+17 * Finish the DnD stuff by implementing move/copy on the shell side asEttore Perazzoli2001-03-2710-26/+423 * Refactor ELocalStorage a bit so that it's easier to implement theEttore Perazzoli2001-03-232-192/+206 * Fix some warnings, Allow the importers to import into any folder. UpdateIain Holmes2001-03-2310-37/+110 * Leak plug: free the target list after starting the drag.Ettore Perazzoli2001-03-232-2/+7 * Fix the signature of a callback for the `e_storage_set_async_create()'Ettore Perazzoli2001-03-232-1/+8 * Changed the EStorageSet API to have a single `xfer()' method insteadEttore Perazzoli2001-03-225-98/+164 * Added an xfer method to `EStorage' and `GNOME::Evolution::Storage'.Ettore Perazzoli2001-03-225-17/+99 * More DnD work. Now we handle copying and moving of folders, althoughEttore Perazzoli2001-03-224-59/+228 * renaming icons to make Miguel's speedups possibleJakub Steiner2001-03-221-0/+1 * Changed get_save_id to just return a strdup of the path. (new_storage_cb,Christopher James Lahey2001-03-222-23/+40 * Fix a stupid g_warning caused by calling EStorageSet functions on aEttore Perazzoli2001-03-212-8/+16 * s/helixcode\.com/ximian.com/ and update all the copyrights in the IDLEttore Perazzoli2001-03-218-16/+16 * Update description of the file and my email address in it.Ettore Perazzoli2001-03-211-2/+3 * StudlyCapsify struct members to match the new IDL naming standards.Ettore Perazzoli2001-03-213-14/+20 * Handle the destination side of drag and drop too.Ettore Perazzoli2001-03-213-18/+165 * make sure intelligent.h gets distedJP Rosevear2001-03-202-0/+5 * Bumped gal requirement to 0.5.99.8.Christopher James Lahey2001-03-204-244/+293 * Added a simple FIXME comment about possibly using theEttore Perazzoli2001-03-201-0/+3 * Added calls to the `EvolutionShellComponentClient' API to query theEttore Perazzoli2001-03-203-4/+109 * Sigh. Fix a few really stupid crashes in EStorageSetView.Ettore Perazzoli2001-03-202-17/+26 * Use the new DnD interfaces on the source side of DnD actions.Ettore Perazzoli2001-03-203-37/+249 * Initial step for refactoring of the DnD API for ShellComponents.Ettore Perazzoli2001-03-199-115/+114 * Added Azeri language filePablo Saratxaga2001-03-152-3/+6 * Removed .oafinfo files -- they are obsolete. Moved pixmaps fromGediminas Paulauskas2001-03-151-15/+0 * builddir != srcdir fixes. Yay!Ettore Perazzoli2001-03-142-4/+13 * Have a "Do not ask me again" box for the importers.Iain Holmes2001-03-142-12/+55 * All my changes to get the folder creation working, and the magic NetscapeIain Holmes2001-03-1315-164/+669 * Added a ShellComponent method to retrieve the selection for drag andEttore Perazzoli2001-03-087-61/+276 * Added the ability for components to specify drag/drop types, andEttore Perazzoli2001-03-088-14/+425 * Don't try to generate a Makefile in camel/providers/vee as it's empty.Kjartan Maraas2001-03-081-1/+1 * Override cursor_activated signal instead of cursor_changed signal.Christopher James Lahey2001-03-052-4/+9 * Update this again.Dan Winship2001-02-282-14/+16 * Added `accepted_dnd_mime_types' and `exported_dnd_mime_types' membersEttore Perazzoli2001-02-275-14/+26 * Don't free a const pointer.Jeffrey Stedfast2001-02-252-3/+9 * Remove a warning....DOH!Iain Holmes2001-02-241-1/+0 * Changes to allow folders to be created from a callback.Iain Holmes2001-02-243-36/+87 * add include. (show_import_wizard): update signature to that of a verb.Michael Meeks2001-02-235-76/+41 * split "highlighted" into self_highlight and child_highligh.Dan Winship2001-02-214-14/+61 * Cast this fucntion pointer.Christopher James Lahey2001-02-17