Displaying 20 results from an estimated 1000 matches similar to: "New packages?"
2005 Jan 25
3
Change Journals
Hi,
I''ve released win32-changenotify 0.3.0 today. Take a look.
Park and I have discussed a Ruby interface to change journals a little bit:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/creating_modifying_and_deleting_a_change_journal.asp
Park, would you like to do this, or did you want me to? I wasn''t sure from
your RubyForge post.
Also, do
2005 Feb 04
7
FW: Bug fix
Forwarded, because I don''t think he''s subscribed and I''m not getting an
email notification in my Yahoo account.
Dan
-----Original Message-----
From: CT [mailto:demerzel@gmail.com]
Sent: Friday, February 04, 2005 4:17 PM
To: Berger, Daniel
Cc: win32utils-devel@rubyforge.org
Subject: Re: Bug fix
On Fri, 4 Feb 2005 16:53:17 -0600, Berger, Daniel
2007 Aug 04
10
Need some help with pure Ruby win32-changenotify
Hi all,
I know it''s deprecated, but people seem to still be using
win32-changenotify, so I thought I''d see if I could make it pure Ruby.
Also, I thought it would be a good opportunity to test passing a custom
Win32::Event object.
I''m mostly done I think, but I''m having trouble unraveling the
FILE_NOTIFY_INFORMATION struct buffer. Please check out the
2006 Nov 17
2
[ win32utils-Bugs-6722 ] win32-changenotify fails on Ruby 1.8.4
Bugs item #6722, was opened at 2006-11-17 05:17
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=411&aid=6722&group_id=85
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Nobody (None)
Assigned to: Nobody (None)
Summary: win32-changenotify fails on Ruby 1.8.4
Initial Comment:
throws an exception when loading, roughly
2005 Jan 20
1
ChangeNotify help wanted
Hi all,
I''ve checked in some code to win32-changenotify. Unfortunately, it
doesn''t work right. I need some help. I don''t understand what,
exactly, I''m supposed to pass to ReadDirectoryChangesW() for the 2nd
argument, nor how to read the data back out.
There''s also a WCHAR issue that needs to be worked out with regards to
the FileName
2005 Apr 21
3
win32-changejournal modification
Hi all,
Should we make the same change for win32-changejournal
that we made for win32-changenotify (i.e yield an
array of structs rather than a single struct)?
Any objections?
Dan
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
1999 Jan 20
1
JBuilder Reload buffers? confusion (any update?) (PR#12876)
aideen@persimmon.co.uk wrote:
>
> Hi,
>
> We've got some Java projects that are being developed on both Unix and
> NT and we're struggling with JBuilder 2.0 and its "File has been
> externally updated, reload buffers?" messages. Has anyone found a fix?
> Is it a bug in JBuilder? i.e should I save my hair and not spend any
> more time investigating/trying
2006 Feb 17
4
PayPal WSDL API on Rails anyone ?
Hi !
Has anyone connected to the Mass Pay API of PayPal using Rails ? I
need to do this for a customer, and I wanted to know how easy/hard it
was. I have no experience using SOAP, WSDL, etc.
I saw soap4r[1] on the RAA[2]. This is probably what I''ll need to
use. One question I haven''t answered yet is whether soap4r will
accept PayPal''s certificates ?
Thanks for any
2005 Feb 26
7
Symlinks for Windows
Hi all,
Dave Burt mentioned the possibility of adding symlinks
to the Dir class.
http://www.sysinternals.com/ntw2k/source/misc.shtml#junction
There is also Autrijus Tang''s symlink Perl module at
http://search.cpan.org/~autrijus/Win32-Symlink-0.04/
Looks easy enough, but it only seems to work for
directories, not regular files. Should we add this to
the Directory class, or simply
2005 Feb 14
8
DONT_RESOLVE_DLL_REFERENCES info
For future reference, it looks like we should avoid
DONT_RESOLVE_DLL_REFERENCES in any extensions.
http://weblogs.asp.net/oldnewthing/archive/2005/02/14/372266.aspx
Regards,
Dan
2003 Nov 11
1
wxRuby is now linked from the wxWindows site
I sent a message to Julian (the primary author of wxWindows), and he
immediately added wxRuby to the list of "Related Projects" on the
"Community" page of the wxWindows site:
http://wxwindows.org/
Thanks to Gour for suggesting this.
We are also listed in the Ruby RAA, under Library, GUI.
If anyone knows of other places we should be linked, let me know. Or
better yet,
2004 Aug 06
1
ruby-shout 2.0 released
ruby-shout 2.0 has been released. it has an raa entry on
raa.ruby-lang.org, and a (modest) page at
http://www.dingoskidneys.com/~jaredj/shout.html.
--
01CB B175 70D8 2E39 CA13 AEA6 3A2B 2219 31CD 5381
check out www.fastmail.fm. fast mail, free or cheap. web + IMAP.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: part
Type: application/pgp-signature
Size:
2006 Oct 14
2
Updating RAA
I realized we might want to update RAA to mention wxruby2. But should it
be a new "wxruby2" entry, or should we add mentions of wxruby2 in the
existing entry, or should we switch the entry to only talk about wxruby2?
Kevin
2007 Aug 08
12
Some more win32-changenotify analysis
Hi all,
I decided to check the responsiveness of the pure Ruby vs C extension
versions of win32-changenotify. I setup this little file generator program:
a = []
10.times{ |n|
a << Thread.new{
File.open("File_#{n}", ''w''){ |fh| fh.puts "test #{n}" }
}
}
a.each{ |t| t.join }
The pure Ruby version did not do so well. In some cases it
2009 Apr 16
2
Authorship and Attribution
A question on authorship and attribution policy for the Wiki. I
originally credited Alan Bartlett for the page content on
HowTos/ConfigureNewVideoCard, but he was not comfortable with that and
the reference got removed in the edit process. I generally do not
include my name on Wiki pages I create, but it is fairly common
practice. Should there be a statement in the Guidelines covering this
2005 Jan 06
0
Some thoughts on win32-changenotify
Hi all,
As things stand now, you can do something like this with
win32-changenotify:
require "win32/changenotify"
include Win32
filter = ChangeNotify::FILE_NAME | ChangeNotify::DIR_NAME |
ChangeNotify::LAST_WRITE
cn = ChangeNotify.new("c:\\",false,filter){
puts "Something changed"
}
cn.wait
You can pass a block that''s executed when a change occurs, but
2005 Mar 04
3
Need volunteer for cool RubyForge add-on
You''ve probably been reading the ruby-talk thread I started titled "RAA
Status & The Problem with Ruby" that rehashes that age-old conversation we
keep having about how to tell the good from the bad when it comes to ruby
libs and apps.
We now have an opportunity to stop talking about it and actually do
something.
I proposed a RubyForge add-on to create a user-driven
2008 Aug 27
2
problems formating scientific collaboration data
Hello all and thanks in advance for any help or direction. I have
co-authorship data that looks like:
Paper Author Year
1 SmithKK JonesSD 2008
2 WallaceAR DarwinCA 1999
3 HawkingS 2003
I would like:
Paper Author Year
1 SmithKK 2008
1 JonesSD 2008
2
2014 Mar 04
1
forking a CRAN project
There is a CRAN package licensed just as "GPL", say, XX, I want to use
in a book.
But I've needed to modify the package to make it do what I need for
expository purposes.
The package author(s) are amenable to my modifications, but probably
unlikely to
incorporate them into the CRAN version any time soon.
Am I allowed, under GPL, to create a new version of the package, say
XX2,
2007 Aug 06
0
win32-changenotify and events
Hi all,
I''ve made some changes to the way that events are handled in
win32-changenotify, and I wanted to verify that they were both
appropriate and sensical.
First, win32-changenotify now requires win32-event. In the constructor,
if an event isn''t explicitly passed, a new Win32::Event object is
created (instead of calling CreateEvent directly).
Then, in the