Re: Edit tags, add tags to multiple items?

2007-12-29 Thread pete boardman

On 29 Dec 2007, at 14:16, kananga wrote:


I don't see any answer in this thread about adding tags to multiple
items at once,


Select the items and then type the tags into the inspector.


or modifying tags on multiple items at once. Is it
possible to do this?


Yes. If all the items have the same tags, then you can modify them all  
at the same time using the inspector. But if the items have different  
tags, the inspector warns you by saying "multiple values" instead of  
trying to show the current tags (impossible to do?). If you go ahead  
and type new tags, you'll replace the old tags with the new ones.



--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Re: Archiving

2007-12-19 Thread pete boardman

On 19 Dec 2007, at 12:20, bcathey wrote:

I'd love to 1) be able to drag the entire collection to my desktop,  
or 2) drag a collection drop into an other collection (called  
"Archives"), 3) have a real archive function.


I've writing to Barebones and they tell me none of these options  
are going to happen.


What am I missing?


I'm new to Yojimbo so don't take too much notice of the following  
My understanding is that Yojimbo's primary focus is being really easy  
to use - dump stuff in, and search for it later. If every conceivable  
task were to have a button or menu for it, then you end up with  
Microsoft Word instead...:)


Obviously for 1) you can select everything inside a collection and  
drag it to a Finder folder, then delete the selection (if you're  
clever, you can do it without losing Yojimbo as the front  
application). Only a couple of gestures... Oh, and you'd have to  
delete the collection too.


I suspect this is scriptable...:)

I don't really see the point of 2) because that would require  
hierarchical collections And they're all still in the Library  
anyway.


If you want to hide a collection, you could always name it with a  
blank, and give it an icon of white space. It does look a bit stupid,  
though, with the trash underneath the empty lines, and if you have  
the counts showing too it's even stupiderI suppose having counts on a  
collection by collection basis, and a hideable trash, aren't going to  
happen either, though.


A real archive function sounds like a nice idea. Kind of Export and  
Delete. Another applescript.


tell application "Yojimbo"
tell front browser window
set colls to selected collections
repeat with coll in colls
set everyi to every database item of coll
			export everyi to ((path to desktop folder) as text) & "untitled  
folder"

end repeat
end tell
end tell

There's probably room for a 'delete' in there somewhere. (I don't  
like testing scripts with 'delete' in them...)





--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Re: Merging Yojimbo DBs

2007-12-17 Thread pete boardman

On 17 Dec 2007, at 11:49, Jacob Lyles wrote:


RE: ~/Library/Application Support/Yojimbo/Database.sqlite file

Anyone have a way to merge several of these into one (working)  
Yojimbo DB?


I have several backed up versions which have different contents and  
I'd like

to unify them.


It's relatively straightforward (although extremely tedious) to open  
up sqlite databases and dump their contents.  You can even compare  
two sqlite dumps ...


> diff file1.txt file.txt
732d731
< INSERT INTO "ZBLOB" VALUES(3, 770, 1,  
'06C16BD6-6D53-4068-8172-04FD1F092592', NULL,  
X'62706C6973743030D4010203040506070A59246172636869766572582476657273696F 
6E5424746F7058246F626A656374735F100F4E534B657965644172636869766572120001 
86A0D1080954726F6F748001AA0B0C13141C1D25262B2E55246E756C6CD30D


If this was an iPhone hack of interest to millions, no doubt someone  
would study it in great detail, but for a one-off task it's going to  
be quicker and easier to export some data from one file, swap the  
database for another one, and import it again...


While reading the database file is probably safe enough, I expect  
that there are warnings in the Yojimbo documentation to the effect  
that one shouldn't try to mess with the data other than via the  
correct interface. So I think the solution is to identify the changed  
items somehow and export/import them using commands or AppleScript.


pete



--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Re: Applescripting Yojimbo: Empty items?

2007-12-12 Thread pete boardman

On 12 Dec 2007, at 14:25, Jacob Lyles wrote:

Any ideas how to implement in Applescript a check for empty Web  
Archive

items? (i.e. Failed downloads)


I've only spent a few minutes with Yojimbo, so I'm a real beginner as  
far as scripting it goes.


This code finds some of my web archives that don't appear in the  
browser.


tell application "Yojimbo"
set i to every web archive item
repeat with j in i
if comments of j = "" then
set flagged of j to true
end if
end repeat
end tell

It's as if the source URL and the comments field agree only when the  
web archive has been downloaded.


I'm probably talking nonsense again...

--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Re: Drag .webloc -> becomes web archive

2007-12-12 Thread pete boardman

On 11 Dec 2007, at 16:56, pete boardman wrote:

When I drag a webloc file to the drop dock, it becomes a webarchive  
rather than a bookmark. Is there an option to change this to create  
bookmarks?


Yes.

I now realise that .webloc files are URLs... :)

--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  <http://www.listsearch.com/yojimbotalk.lasso>
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Drag .webloc -> becomes web archive

2007-12-12 Thread pete boardman
When I drag a webloc file to the drop dock, it becomes a webarchive  
rather than a bookmark. Is there an option to change this to create  
bookmarks?




--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>