-
You use in your code several increments of this type
*(((u_char *) src)++)=...
but it gives error: invalid lvalue in increment error
using gcc (GCC) 4.1.2 20061028 (prerelease) (Debian
4.1.1-19) I think it can be changed in
*((u_char *) src++)
since src is void * (when incrementing void * or char *
one is added in both cases). Or maybe
src= ((uchar*)src)+1;
src = ...
even...
2006-11-12 16:32:03 UTC in icsDrone
-
paolopan83 registered the MyCast - Desktop streaming application project.
2006-10-25 20:07:11 UTC in MyCast - Desktop streaming application
-
Logged In: YES
user_id=1535860
I forgot to log.in, but that was me in the previous post :)
PAolo.
2006-08-24 11:14:46 UTC in P-gal
-
Logged In: YES
user_id=1535860
The GUI is nice, and seems handy to use.
Well, I am not a GUI expert, but what about using wxPython?
I found a little error in the code:
from os import getcwd
and after the code calls
os.getcwd()
and not
getcwd()
Moreover you call
('python p-gal.py -t', '/usr/share/p-gal/templates', '-T',
'/usr/share/p-gal/templates/gold', '-d', 'desc')
2006-08-21 16:22:47 UTC in P-gal
-
Logged In: YES
user_id=1535860
About data paths in Windows... (I forgeotted it in the
previous post)
Well... it would be nice if you can choose to intall for
current user only or for everybody... but maybe this could
come later.
Well some place in Documets (like User Data) would be good.
I'll think on it in next days (Any suggstion is welcome).
PAolo.
2006-08-20 17:38:42 UTC in P-gal
-
Logged In: YES
user_id=1535860
First of all thanks for your help, really thanks :)
Adding a chmod is ok (I'll do it), but it should be not
necessary because when you unzip the files they have the 755
permissions, that are preserved when copying.
I can't run the graphical interface, i get the error:
Traceback (most recent call last):
File "p-galgui.py", line 12, in ?
import...
2006-08-20 17:32:46 UTC in P-gal
-
Logged In: YES
user_id=1535860
Thank you for the fixes. I modified the develop version, in
next days I will upload a new version.
Testing on Windows would be great. Actually I didn't try to
run it. The only system dependent stuff should be the
locations /usr/share/p-gal and /usr/bin. BTW how to set up
things so the user just run
p-gal
and things works? Any idea?
Setup.py would...
2006-08-14 17:59:17 UTC in P-gal
-
Logged In: YES
user_id=1535860
Sorry for filing a non existing bug, and thnx for your quick
response.
PAolo.
2006-08-05 08:25:22 UTC in Python parsing module
-
[Very nice python module, thnx for writing it]
I used your tool to prse a simple file for defining
some attributes. The format is:
%filename1 {
attr1 "attr1 value"
attr2 "attr2 value"
}
%filename2 {
attr1 "attr1 value"
}
and so on...
so if i insert a word:
%filename1 {
attr1 "attr1 value"
attr2 "attr2 value"
}
InsertedWord
%filename2 {
attr1 "attr1 value"
}.
2006-08-04 21:28:51 UTC in Python parsing module
-
paolopan83 registered the P-gal project.
2006-06-12 21:40:22 UTC in P-gal