commited...
try ::bugs::get_svn_revision
using sxml, not xml2list, so it's the most secure method used.
Also, try I re-enabled the sxml messages.. but set the default setting to
silent.
If we want to have the debug, we put the silent back to 0, or do a
::sxml::set_attr $id silent 0
you can also
On Mon, 29 May 2006 22:33:17 -0400, Karol Krizka <[EMAIL PROTECTED]> wrote:
> On Mon, 2006-29-05 at 15:39 -0400, Youness Alaoui wrote:
>> Yes, but the file is not read... you should read the svn_rev file, if it
>> doesn't exist, then try the svn command, if it doesn't exist, then use
>> the
>> $
Sorry.. seems I commited clgui.tcl...
I gtg now, tomorrow I'll see if I broke something, if I need to add the
contact.tcl and other similar files I have locally... now I can't.
I didn't want to commit until it's done, but hey, it's svn, so let's keep
it in svn.. if it bothers someone, then you'
set fd [open .svn/entries]
set xml [read $fd]
close $fd
set revision [GetXmlAttribute [xml2list $xml] "wc-entries:entry" revision]
done...
Actually, this will only return the first element, we assume here the
first entry is the entry for the whole svn checkout, but we'd actually
need to use t
On Mon, 2006-29-05 at 15:39 -0400, Youness Alaoui wrote:
> Yes, but the file is not read... you should read the svn_rev file, if it
> doesn't exist, then try the svn command, if it doesn't exist, then use the
> $::date
The problem with this at the moment is that $::date variable is always
used
well, it would need some tweaking indeed, but yes, THANKS to the XML
system, we can add a tag without breaking anything! :)
so a new tag would be nice, being able to sort by revision number would be
nice.. when setting something to fixed, be able to set which revision it
was fixed on (now it
On Mon, 2006-29-05 at 15:39 -0400, Youness Alaoui wrote:
> Yes, but the file is not read... you should read the svn_rev file, if it
> doesn't exist, then try the svn command, if it doesn't exist, then use the
> $::date
> also, the revision number is not a date, so watch out for that, it may
>
Thanks for the answer, at least I know I can begin without being
interupted with a huge "it's the total opposite you should do"...
I won't create the svn module or do the commits in new dirs, but I can
start working on the files locally at least.
KaKaRoTo
On Mon, 29 May 2006 17:43:36 -0400, H
http://tcllib.cvs.sourceforge.net/tcllib/tcllib/modules/irc/
http://tcllib.cvs.sourceforge.net/tcllib/tclapps/apps/ijbridge/
http://tcllib.cvs.sourceforge.net/tcllib/tclapps/apps/ircbridge/
how about a plugin to do the same as ijchain and azbridge from #tcl a
bridge between a jabber chat convers
Op maandag 29 mei 2006 23:16, schreef Youness Alaoui:
> no answers on this subject ? I'm still waiting for everyone's feedback on
> this so I can start a bit of code... I have some code done, but I don't
> want to commit it...
> Harry, u there ?
>
Yes, but too tired for a complete reply now...
So,
yes but we need tkdnd to be installed separately. :)
On 5/30/06, Youness Alaoui <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED]:~/amsn-0.96$ grep dnd *
> chatwindow.tcl: ::dnd bindtarget [::ChatWindow::GetInputText $w]
> Files "::ChatWindow::HandleFileDrop $w %D"
> chatwindow.tcl:
No, it is now added to the core, we just need tkdnd to be installed
On 5/30/06, Thomas Geirhovd <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Will the next release have drag and drop support? I'm asking because I
> have a D'n'D plugin in my queue, and I was wondering if I should add
> it to the website or
[EMAIL PROTECTED]:~/amsn-0.96$ grep dnd *
chatwindow.tcl: ::dnd bindtarget [::ChatWindow::GetInputText $w]
Files "::ChatWindow::HandleFileDrop $w %D"
chatwindow.tcl: #::dnd bindtarget [::ChatWindow::GetInputText $w]
UniformResourceLocator "%W insert end %D"
chatwindow.tcl:
Hi,
Will the next release have drag and drop support? I'm asking because I
have a D'n'D plugin in my queue, and I was wondering if I should add
it to the website or not.
--
Regards,
Thomas Geirhovd
___
Amsn-devel mailing list
Amsn-devel@lists.sourcef
no answers on this subject ? I'm still waiting for everyone's feedback on
this so I can start a bit of code... I have some code done, but I don't
want to commit it...
Harry, u there ?
KKRT
On Sat, 27 May 2006 04:25:06 -0400, Youness Alaoui
<[EMAIL PROTECTED]> wrote:
> Hi,
> I wanted a sepa
Hey, did anyone notice... when you send a mail to the amsn-devel ML, look
at the To: field... look at it in the latest messages.. maybe in this one
I'm just sending (I sent simply to [EMAIL PROTECTED])... SF service
upgrade ? they did talk about a sendmail upgrade...
--
KaKaRoTo
_
Removed :
- Add a menu item "Send Message" in the trayicon popup menu
COMPLETE TODO LIST FOR 0.96
- Make sure all binary files in SVN were added as binary, not as ASCII.
* Was removed, but is it really done for www module???
- maybe apply holy_wood patch for saving DPs in a per_email directorie
Added :
- Add a menu item "Send Message" in the trayicon popup menu
Removed
- amsn-remote server is created with [socket -server localhost] so we can
never connect to amsn remotely unless we ssh first to our machine (server
is on the loopback device), problem with windows too.. socket should
liste
no, you made it clear and I understood you, maybe I should have made clear
that my comment was to help think of what should be added to that patch of
yours before it becomes ready to apply :P
KKRT
On Mon, 29 May 2006 15:43:58 -0400, Sander Hoentjen <[EMAIL PROTECTED]>
wrote:
> On Mon, 2006
why not link against /usr/lib/libssl.so
this way it depends on the symlink the user has.. I don't think (hope)
that the API changed from one version to another.
Also, do you really want to 'ldconfig -p |grep' each time before sending
that info so the user can know ? if you add an option for th
On Mon, 2006-05-29 at 15:39 -0400, Youness Alaoui wrote:
> Yes, but the file is not read... you should read the svn_rev file, if it
> doesn't exist, then try the svn command, if it doesn't exist, then use the
> $::date
> also, the revision number is not a date, so watch out for that, it may
>
On Mon, 2006-05-29 at 15:33 -0400, Youness Alaoui wrote:
> We decided IIRC to have tls switch the autoupdater to tls 1.5, actually,
> do the fetching of http://amsn.sf.net/download-tls.php?platform=
> where platform would contain all the info, the platform, the number of
> bits of the cpu, etc
Yes, but the file is not read... you should read the svn_rev file, if it
doesn't exist, then try the svn command, if it doesn't exist, then use the
$::date
also, the revision number is not a date, so watch out for that, it may
crash the bug reporting if the DB assumes it should receive a date
On Mon, 29 May 2006 13:28:42 -0400, Vivia Nikolaidou <[EMAIL PROTECTED]>
wrote:
>> - finish proxy support
>
> is this done now? (Congrats Youness, give me your home address so I
> can send you choco :D:D:D:D:D )
yes it works! I'll commit to the 0.96 branch in a few secs
>
>> - Make amsn 0.96 u
Added :
- Add a menu item "Send Message" in the trayicon popup menu
Readded:
- amsn-remote server is created with [socket -server localhost] so we can
never connect to amsn remotely unless we ssh first to our machine (server
is on the loopback device), problem with windows too.. socket should
list
That's perfect, thanks.
On Monday, May 29, 2006, at 10:48AM, Harry Vennik <[EMAIL PROTECTED]> wrote:
>Hi,
>
>I think we got it all right now. Billiob applied a patch from Tom H. that
>modified the behavior on Mac when closing aMSN with the close button of the
>WM. He did that because the closeO
On Tue, 2006-05-30 at 00:19 +1000, Arieh Schneier wrote:
> Aren't you assuming that the user has svn support installed and is using the
> svn version? What about all the users that use the packages, or the tarball?
>
Yes I am asuming that. In packages and the tarball there should be this
info incl
Removed:
- finish proxy support <-- thanx Youness! :)
- amsn-remote server is created with [socket -server localhost] so we can
never connect to amsn remotely unless we ssh first to our machine (server
is on the loopback device), problem with windows too.. socket should
listen to all ips. <-- done
> - finish proxy support
is this done now? (Congrats Youness, give me your home address so I
can send you choco :D:D:D:D:D )
> - Make amsn 0.96 use TLS 1.5
I didn't understand what we decided for that :S we include tls in amsn
for those who compile from source or use autopackage and create
separ
I know the bug was there for quite some time before I officially entered the
team, so I think it is very likely that the bug was introduced either in rev.
6511 or 6513. (Both from date April 29th, 2006 and with a change in
capture.c).
Harry
Op maandag 29 mei 2006 14:11, schreef Vivia Nikolaido
Aren't you assuming that the user has svn support installed and is using the
svn version? What about all the users that use the packages, or the tarball?
- Original Message -
From: "Sander Hoentjen" <[EMAIL PROTECTED]>
To: "amsn-devel"
Sent: Tuesday, May 30, 2006 12:09 AM
Subject: [Ams
attached is a small fix that works on linux, don't know about other
platforms.
This is just an idea, don't know if this is the way to go but it was
easy enough
Index: bugs.tcl
===
--- bugs.tcl (revision 6733)
+++ bugs.tcl (working cop
Hi guys,
For a *long* time now, I've experienced a problem with tray dock in
aMSN. I first thought it was fluxbox but a couple of days ago I looked
in to what may be causing this, in aMSN.
What I was experiencing was the tray dock didn't always load correctly.
Sometimes the icon wouldn't be there
Follow GrdScarabe's instructions to get older SVNs and try to see when
the bug appeared this might help us understand where it comes
from. :)
On 5/28/06, Cristian Peraferrer <[EMAIL PROTECTED]> wrote:
> Well not so fast... I was using the "stable" 10.0.12 pwc driver for a several
> time, and I
Well not so fast... I was using the "stable" 10.0.12 pwc driver for a several
time, and I never experimented that issue. Today I've tested it with the
(old) 10.0.12 again (nowadays I use the most recent snapshot), and the issue
now appears!, with the actual aMSN. So I think it's not a pwc driver
35 matches
Mail list logo