Revision: 18223
          http://bibdesk.svn.sourceforge.net/bibdesk/?rev=18223&view=rev
Author:   hofman
Date:     2011-11-16 11:55:51 +0000 (Wed, 16 Nov 2011)
Log Message:
-----------
refresh external groups by asking for its publications, let it retrieve itself 
if necessary

Modified Paths:
--------------
    trunk/bibdesk/BibDocument_Groups.m

Modified: trunk/bibdesk/BibDocument_Groups.m
===================================================================
--- trunk/bibdesk/BibDocument_Groups.m  2011-11-16 11:18:43 UTC (rev 18222)
+++ trunk/bibdesk/BibDocument_Groups.m  2011-11-16 11:55:51 UTC (rev 18223)
@@ -1221,19 +1221,19 @@
 - (IBAction)refreshURLGroups:(id)sender{
     [[groups URLGroups] setValue:nil forKey:@"publications"];
     if ([self hasURLGroupsSelected])
-        [[[self selectedGroups] lastObject] retrievePublications];
+        [[[self selectedGroups] lastObject] publications];
 }
 
 - (IBAction)refreshScriptGroups:(id)sender{
     [[groups scriptGroups] setValue:nil forKey:@"publications"];
     if ([self hasScriptGroupsSelected])
-        [[[self selectedGroups] lastObject] retrievePublications];
+        [[[self selectedGroups] lastObject] publications];
 }
 
 - (IBAction)refreshSearchGroups:(id)sender{
     [[groups searchGroups] setValue:nil forKey:@"publications"];
     if ([self hasSearchGroupsSelected])
-        [[[self selectedGroups] lastObject] retrievePublications];
+        [[[self selectedGroups] lastObject] publications];
 }
 
 - (IBAction)refreshAllExternalGroups:(id)sender{
@@ -1248,7 +1248,7 @@
     if ([group isExternal]) {
         [group setPublications:nil];
         if ([[self selectedGroups] containsObject:group])
-            [group retrievePublications];
+            [group publications];
     } else NSBeep();
 }
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to