0
votes
1answer
16 views
SVG Elliptical Arcs with Java
I recently wrote a java program transforming a SVG document to HTML/Canvas: It was easy to translate a path such as
d="M 0 0 L 100 100 z"
to something like
GeneralPath L= new …
0
votes
3answers
49 views
Point Django at different Python version
Django application requires a later version of Python. I just installed it to 2.5 (from 2.4) and now when I do a python at the command line, it says 2.5.2.
Having said that, Djan …
0
votes
3answers
96 views
How do you find the fully qualified path name of a file?
On Windows, you can go to "Run," type in "cmd," press enter, and start up "C:\Windows\system32\cmd.exe" rather easily. The same is true for "python" or "pythonw" (though nothing po …
0
votes
0answers
15 views
Mac File Name Conversion
I'm looking for the officially sanctioned algorithm to convert from mac
FSSpec to a HFS full path name (ie: one with colons) that includes the volume.
Preferably expressed in C
1
vote
5answers
44 views
Module import path
I'm unable to test-run a cssparser that I'd like to use.
test.py:
from css.parse import parse
data = """
em {
padding: 2px;
margin: 1em;
border-width: medium;
…
3
votes
3answers
50 views
Choosing a Path for Python File Access
One of the features of my project is to allow users to create their own little .txt file, put it somewhere on their HDD, which can then be used as criteria for a part of my applica …
0
votes
2answers
31 views
Module import error using IDLE
I'm an absolute beginner using IDLE (Python 2.6.4) to learn the basics. I recently found a Python program that I want to run but it throws an error although the code looks fine (i. …
0
votes
1answer
80 views
Java Path compression
Hi, I have to create a method find that would use a local Set to collect the objects and the root. Then, I would compress the object e (in the parameter) and have the roost as its …
0
votes
2answers
46 views
jquery - check if string begins with something?
I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a cl …
3
votes
3answers
105 views
C#/.NET app doesn’t recognize Environment Var Change (PATH)
In my C# app, I am programmatically installing an Oracle client if one is not present, which requires adding a dir to the PATH system environment variable. This all works fine, bu …
2
votes
5answers
79 views
Making Python Use Code in My Directory (not that in /usr/…)
I am trying to work on a Python library that is already installed on my (Ubuntu) system. I checked out that library, edited some files, and wrote a small script to test my changes. …
0
votes
5answers
88 views
iPhone table view - problem with indexPath.row
I'm using indexPath.row do determine in which row of my tableview I do something. The title of my cells is containing a number which should be 1 in the first row and 18 in the last …
0
votes
3answers
113 views
Relative path of a given file from a service application in Delphi
I have a problem loading a file, as I'm passing a relative path to the function FileExists(Filename: String) and it's returning false, that is, it does not find the file in the dir …
0
votes
1answer
28 views
How to set output path in a Qt project
After building, Qt Creator puts my output exe in folder "Debug". I want to change the output folder by adding output path to the .pro file. Any idea?
0
votes
3answers
84 views
PHP absolute path to file URI
In order to refer to a local DTD when using PHP SimpleXML, I need to convert the absolute path into a file type URI. For example, convert /home/sitename/www/xml/example.dtd to fil …
