Media path in Windows

11 views
Skip to first unread message

r.richards

unread,
Feb 9, 2011, 4:53:37 PM2/9/11
to Enterprise Addressing System
Hello,

A new django user here. We seem to be having some problems with 404
messages launching EAS on Windows Platform. It cannot find the media
folder? Does anyone have any recommendations on how to resolve this
issue?

Reading some django posts it sounds like this can occur when the
MEDIA_PATH is set to the same path as ADMIN_MEDIA_PREFIX.

--global_settings.py
ADMIN_MEDIA_PREFIX = '/media/'

--eas settings.py
if os.name == 'posix':
MAD_ROOT = '/mnt/fs/sfmaps_web/mad'
MEDIA_ROOT = MAD_ROOT + '/Media/'
# http://www.ventanazul.com/webzine/tutorials/django-deployment-guide-ubuntu
ADMIN_MEDIA_PREFIX = '/Media/admin/'
elif os.name == 'nt':
MAD_ROOT = 'C:/svn/eas/web'
MEDIA_ROOT = MAD_ROOT + '/Media/'
# use default for ADMIN_MEDIA_PREFIX

--output from server
[09/Feb/2011 13:51:07] "GET /Media/ui_frameworks/Ext-2.2/
Ext.ux.MenuPanel.js HTTP/1.1" 404 1831
[09/Feb/2011 13:51:07] "GET /Media/js/proj4js/lib/proj4js-
compressed.js HTTP/1.1" 404 1816
[09/Feb/2011 13:51:08] "GET /Media/ui_frameworks/GeoExt/script/
Popup.js HTTP/1.1" 404 1816
[09/Feb/2011 13:51:08] "GET /Media/mad-min.js HTTP/1.1" 404 1738
[09/Feb/2011 13:51:08] "GET /Media/images/large-loading.gif HTTP/1.1"
404 1780
[09/Feb/2011 13:51:08] "GET /Media/images/eas-logo.png HTTP/1.1" 404
1765

Any help would be appreciated...

Thanks
Ronnie

Karl Fogel

unread,
Feb 11, 2011, 11:19:46 PM2/11/11
to eas-d...@googlegroups.com
"r.richards" <rric...@gmail.com> writes:
>A new django user here. We seem to be having some problems with 404
>messages launching EAS on Windows Platform. It cannot find the media
>folder? Does anyone have any recommendations on how to resolve this
>issue?
>
>Reading some django posts it sounds like this can occur when the
>MEDIA_PATH is set to the same path as ADMIN_MEDIA_PREFIX.

Hi there. This is (unfortunately) a "placeholder" response.

The people who know EAS best are busy getting it into production in San
Francisco this month, and can't respond in detail right now. We can't
promise a detailed response at all, but if you do get one, it may not be
until March. Sorry -- I know that's not ideal.

I'm not part of the EAS team, and while I have some Django experience, I
don't have it under Windows. If you do manage to find the solution by
poking around, and have time to post it here, that would be very
helpful, because then we'd have it in the archives at least.

Agan, sorry for the somewhat lame response. The SF developers are under
deadline to get this thing rolled out, so can't offer much help right
now. I'm writing this partly to save them the time of having to do it.
Things should be better after it goes live.

Best,
-Karl Fogel

p.e.mccullough

unread,
Feb 12, 2011, 8:45:57 PM2/12/11
to Enterprise Addressing System
Ronnie,

Sorry for the slow response.

I am not sure how you set things set up, so let me spend a few
moments on that topic first.
I would recommend following the setup.bat
http://code.google.com/p/eas/source/browse/trunk/setup.bat
as closely as possible.
Unfortunately, you won't be able to run it without modification
because we wrote it for the San Francisco work specifically...
meaning that certain private directories (credential info) are being
pulled from a private repo.
However, if you comment out the svn calls to the jira hosted repo you
can just run it directly.
We intend to make this easier in the future.

You should be aware that someone else a little trouble getting all
the right versions of all the packaages described in the README.
If you spot any problems here please let us know so we can start
hosting those hard to find packages.

Now, back your media problem....I think you need a default
settings_deploy.py file which looks like this:
DATABASE_NAME = 'mad'
DATABASE_USER = 'postgres'
DATABASE_PASSWORD = 'postgres'
DATABASE_HOST = 'localhost'
DATABASE_PORT = '5433'
APPLICATION_ENV = 'DESKTOP'
TEST_RUNNER = "test_suites.runAll"
MEDIA_ROOT = 'C:/svn/eas/Media/'
and I think this is missing from the public repo.
Create this file, with your settings, and make sure it gets imported
properly at the end of settings.py.
If this file was missing, you should have seen an "import failed"
message on startup if you are using the django development server.

Now, the reason that settings.py imports different settings values is
discussed in some detail on the web I think.
It allows you to easily switch values for different ENVs.
Be sure to look at these examples
http://code.google.com/p/eas/source/browse/trunk/web/settings_env/examples/
and we have automated the ENV switch in the linux deploy this way
http://code.google.com/p/eas/source/browse/trunk/releases/bin/deploy_mad.sh

I hope this helps.
Are you using our database that is on the downloads page?

Regards
Paul




On Feb 9, 1:53 pm, "r.richards" <rricha...@gmail.com> wrote:
> Hello,
>
> A new django user here. We seem to be having some problems with 404
> messages launching EAS on Windows Platform. It cannot find the media
> folder? Does anyone have any recommendations on how to resolve this
> issue?
>
> Reading some django posts it sounds like this can occur when the
> MEDIA_PATH is set to the same path as ADMIN_MEDIA_PREFIX.
>
>  --global_settings.py
> ADMIN_MEDIA_PREFIX = '/media/'
>
> --eas settings.py
> if os.name == 'posix':
>     MAD_ROOT = '/mnt/fs/sfmaps_web/mad'
>     MEDIA_ROOT = MAD_ROOT + '/Media/'
>     #http://www.ventanazul.com/webzine/tutorials/django-deployment-guide-u...

Karl Fogel

unread,
Feb 14, 2011, 4:26:02 PM2/14/11
to eas-d...@googlegroups.com
"p.e.mccullough" <p.e.mcc...@gmail.com> writes:
>You should be aware that someone else a little trouble getting all
>the right versions of all the packaages described in the README.
>If you spot any problems here please let us know so we can start
>hosting those hard to find packages.

In fact, Ronnie if you have specific modifications to make to the
README, you can just send them here -- we'll incorporate them. Paul,
I'll volunteer to do preliminary review on any such patch, kind of
predigest it before you look at it. Obviously, you or someone else who
knows the code & installation procedure well would have to do final
approval of any changes.

Best,
-Karl

McCullough, Paul

unread,
Feb 14, 2011, 4:49:18 PM2/14/11
to eas-d...@googlegroups.com, Jiang, Henry
Karl,

Good idea.
In any case Henry Jiang will be reviewing (and probably updating) the READMEs while he is setting up our vmware infrastructure.
Henry, sorry but I forgot to previously invite you to join this discussion group!
http://groups.google.com/group/eas-discuss/

Thanks,
Paul

r.richards

unread,
Feb 22, 2011, 11:31:15 AM2/22/11
to Enterprise Addressing System
Thank you for the response. This line in your example above made all
the difference for me on Windows and it was missing from the example
files.
MEDIA_ROOT = 'C:/svn/eas/Media/'

The source of the 404's were because the default settings.py is using
eas\web\Media\ instead of \eas\Media
MAD_ROOT = 'C:/svn/eas/web'
MEDIA_ROOT = MAD_ROOT + '/Media/'


Resolving the media folder issue now getting a series of 404 messages.
IE8 says MAD is undefined and django shows 404's for other js
referecnes. These files are not on our system. To be continued...
[22/Feb/2011 08:18:18] "GET /Media/ui_frameworks/Ext-2.2/
Ext.ux.MenuPanel.js HTTP/1.1" 404 1827
[22/Feb/2011 08:18:18] "GET /Media/ui_frameworks/Ext-2.2/
DynamicRowExpander.js HTTP/1.1" 404 1833
[22/Feb/2011 08:18:18] "GET /Media/mad-min.js HTTP/1.1" 404 1734
>    http://code.google.com/p/eas/source/browse/trunk/web/settings_env/exa...
> and we have automated the ENV switch in the linux deploy this way
>    http://code.google.com/p/eas/source/browse/trunk/releases/bin/deploy_...
> > Ronnie- Hide quoted text -
>
> - Show quoted text -

McCullough, Paul

unread,
Feb 23, 2011, 11:43:49 AM2/23/11
to eas-d...@googlegroups.com
Ronnie,

I have improved the deploy examples using your comments.
Thanks for the feedback.

As I am sure you know, the new error your are getting suggests that you are missing extjs 2.2.
Please let me know if 2.2 is hard to find, where you found it, etc.
If need be we can make it available in eas so set up less painful.

Note that we plan to upgrade all of our older packages as soon as possible.
I expect that this will be around June of 2011 after we complete some integration
work with the SF dept of building inspection.

Regards,
Paul


-----Original Message-----
From: eas-d...@googlegroups.com [mailto:eas-d...@googlegroups.com] On Behalf Of r.richards
Sent: Tuesday, February 22, 2011 8:31 AM
To: Enterprise Addressing System
Subject: Re: Media path in Windows

r.richards

unread,
Feb 24, 2011, 1:40:14 PM2/24/11
to Enterprise Addressing System
We have Ext2.2 but we are missing the custom libraries that are only
on the SF SVN.

As the errow below indicates we are also missing mad-min.js. This
seems custom and not part of Ext2.2 so please let us know how we can
obtain these missing libraries and references.

On Feb 23, 8:43 am, "McCullough, Paul" <paul.mccullo...@sfgov.org>
wrote:
> > - Show quoted text -- Hide quoted text -

McCullough, Paul

unread,
Feb 24, 2011, 7:23:10 PM2/24/11
to eas-d...@googlegroups.com
Richard,

I think I see your problem.
When you go to the URL
http://localhost:80/
the app is expecting the minified JS file.

To create the minified js file, do this:
http://localhost:80/build

To run in debug mode:
http://localhost:80/debug

To run in prod mode:
http://localhost:80/

I do not like the fact that build is exposed this way and we intend to fix it in 1.x.
Also, see the index.html here:
http://code.google.com/p/eas/source/browse/trunk/web/MAD/templates/index.html

And see this file as well:
http://code.google.com/p/eas/source/browse/trunk/releases/README

If you want to suggest specific changes in that file it will make it easier for us to improve the does.
In any case I will try to incorporate this next week.

Is it just the mad-min.js or is there something else?

r.richards

unread,
Mar 2, 2011, 12:37:18 PM3/2/11
to Enterprise Addressing System
Ok we have been fumbling thru setting up EAS on Windows and Linux and
we are stuck in both environments.

It appears we are missing some additional js files in the Ext-2.2
folder or we are missing other configuration components.

Where might we find these or are they dynamically generated?
DynamicRowExpander, Ext.ux.MenuPanel.js

[02/Mar/2011 09:27:56] "GET /Media/ui_frameworks/Ext-2.2/
DynamicRowExpander.js HTTP/1.1" 404 1833
[02/Mar/2011 09:27:56] "GET /Media/ui_frameworks/Ext-2.2/
Ext.ux.MenuPanel.js HTTP/1.1" 404 1827
[02/Mar/2011 09:27:56] "GET /Media/ui_frameworks/Ext-2.2/resources/
images/default/qtip/tip-sprite.gif HTTP/1.1" 200 4271
[02/Mar/2011 09:27:56] "GET /Media/ui_frameworks/Ext-2.2/resources/
images/default/qtip/tip-anchor-sprite.gif HTTP/1.1" 200 951

On Feb 24, 4:23 pm, "McCullough, Paul" <paul.mccullo...@sfgov.org>
wrote:
> Richard,
>
> I think I see your problem.
> When you go to the URL
>        http://localhost:80/
> the app is expecting the minified JS file.
>
> To create the minified js file, do this:
>        http://localhost:80/build
>
> To run in debug mode:
>        http://localhost:80/debug
>
> To run in prod mode:
>        http://localhost:80/
>
> I do not like the fact that build is exposed this way and we intend to fix it in 1.x.
> Also, see the index.html here:
>    http://code.google.com/p/eas/source/browse/trunk/web/MAD/templates/in...

McCullough, Paul

unread,
Mar 2, 2011, 2:40:37 PM3/2/11
to eas-d...@googlegroups.com
Richard,

I am sorry that you are having trouble.
I suspect that your extjs 2.2 is from a different minor revision or something similar.
At this point I think we should just make the ExtJs 2.2 library from SFs jira repo available to google eas project.

Karl,
Is this the sort of thing that civic commons can help with?
If we do this....
- Should it go to downloads or SVN?
- I would like to prevent mods to the contents of extjs 2.2 directory (I used jira to do this; or is it svn under the hood?)
- I'll volunteer to adjust the setup.bat accordingly.


Richard,
Just to be thorough...

I am sure you have already confirmed that the missing javascript files are indeed missing from this location:
/Media/ui_frameworks/Ext-2.2/

I noticed in your email on the 404 lines, that there is a white space in the path.
Is that a cut and paste sort of artifact?


[02/Mar/2011 09:27:56] "GET /Media/ui_frameworks/Ext-2.2/ DynamicRowExpander.js HTTP/1.1" 404 1833
[02/Mar/2011 09:27:56] "GET /Media/ui_frameworks/Ext-2.2/ Ext.ux.MenuPanel.js HTTP/1.1" 404 1827

Karl Fogel

unread,
Mar 2, 2011, 3:08:02 PM3/2/11
to eas-d...@googlegroups.com
"McCullough, Paul" <paul.mc...@sfgov.org> writes:
>I am sorry that you are having trouble.
>I suspect that your extjs 2.2 is from a different minor revision or something similar.
>At this point I think we should just make the ExtJs 2.2 library from SFs jira repo available to google eas project.
>
>Karl,
>Is this the sort of thing that civic commons can help with?

Sure. Helping now :-). See below.

>If we do this....
> - Should it go to downloads or SVN?

Well, we already have this:

http://sfgovdt.jira.com/svn/THIRDPARTY/extjs/Ext-2.2

And 'setup.bat' fetches that into Media\ui_frameworks\Ext-2.2.

So the first thing to do is establish whether what Richard is using for
his ExtJS is the same as the above.

(And anyway, is the version from SF's JIRA different from the above?
Stuff in SF's JIRA should not be relevant now, given that we have
supposedly exported everything necessary to run EAS out into Google
Code...)

Ideally, something like this would live in the Downloads are, since
we're just mirroring a library supplied by someone else, and Downloads
is the right place to do that. But it doesn't really matter if it's in
Downloads or in SVN -- the result should be the same: setup.bat fetches
it, and unpacks it into the right place.

So the first place to start is to establish whether what Richard has
locally is exactly what he should have. Richard, do you have
Media\ui_frameworks\Ext-2.2? Can you do a verbose listing of everything
underneath it (on Unix that's 'ls -lR'; on Windows I'm not sure how)?

And are there any modifications under there? Can you do an 'svn status'
to find out? (If my questions aren't making sense, let me know and I'll
translate to English.)

> - I would like to prevent mods to the contents of extjs 2.2 directory
> (I used jira to do this; or is it svn under the hood?)

Do you mean just that part of the deployment/setup process should be to
make the Ext-2.2 tree read-only, after it's been unpacked?

-Karl

McCullough, Paul

unread,
Mar 2, 2011, 4:20:13 PM3/2/11
to eas-d...@googlegroups.com
All,

With respect to problems Richard is having with extjs 2.2....

This
http://sfgovdt.jira.com/svn/THIRDPARTY/extjs/Ext-2.2
will not be accessible unless you have a jira account with sfgovdt.
This is restricted to SF employees and contractors so it does not help Richard.

> So the first thing to do is establish whether what Richard is using for his ExtJS is the same as the above.
Right, this is the heart of the problem.
I strongly suspect that Richard is using an extjs 2.2 that is a different minor revision than what is here:
http://sfgovdt.jira.com/svn/THIRDPARTY/extjs/Ext-2.2

> Ideally, something like this would live in the Downloads area...
> ... it doesn't really matter if it's in downloads or in SVN...
Let's see if we can get the existing bat file to pull from google downloads.
If that's too complicated, we'll pull from google code.
Does that make sense?

>> - I would like to prevent mods to the contents of extjs 2.2 directory
>> (I used jira to do this; or is it svn under the hood?)
>Do you mean just that part of the deployment/setup process should be to
>make the Ext-2.2 tree read-only, after it's been unpacked?
No. I am not advocating that we replicate what I did in jira.
What I did in jira was to prevent any commits to the extjs 2.2 node of the repo.
Not sure what was enforcing this under the hood.
In any case, we simply want to protect the extjs lib from inadvertent modification...in any way that is appropriate.
I think putting it in downloads will suffice, providing that we can get the bat file to pull from downloads.

Paul

Karl Fogel

unread,
Mar 2, 2011, 4:28:16 PM3/2/11
to eas-d...@googlegroups.com
"McCullough, Paul" <paul.mc...@sfgov.org> writes:
>With respect to problems Richard is having with extjs 2.2....
>
>This
> http://sfgovdt.jira.com/svn/THIRDPARTY/extjs/Ext-2.2
>will not be accessible unless you have a jira account with sfgovdt.

Oh, sorry! Yeah, I didn't read the URL carefully. Yes, in that case,
just grab it out of JIRA, wrap it up in a .zip, and put it up in our
Downloads area. Or grab the upstream distribution and use that.

>Let's see if we can get the existing bat file to pull from google downloads.
>If that's too complicated, we'll pull from google code.
>Does that make sense?

It should be really easy: just wget or some similar tool for Windows.

>In any case, we simply want to protect the extjs lib from inadvertent
>modification...in any way that is appropriate.
>I think putting it in downloads will suffice, providing that we can
>get the bat file to pull from downloads.

Can't imagine it will be a problem in the .bat, since the package be at
a publicly downloadable URL in Google Code. I don't have a Windows
machine to help with that here, unfortunately (I could come up with a
line for .bat, but I couldn't test it...)

-K

McCullough, Paul

unread,
Mar 2, 2011, 4:39:18 PM3/2/11
to eas-d...@googlegroups.com
Can anyone else lend a hand on this right now? (see below)
Maybe someone from FARGEO?
Otherwise I'll have to do it tomorrow.
Too many balls in the air.
Paul

-----Original Message-----
From: eas-d...@googlegroups.com [mailto:eas-d...@googlegroups.com] On Behalf Of Karl Fogel
Sent: Wednesday, March 02, 2011 1:28 PM
To: eas-d...@googlegroups.com
Subject: Re: Media path in Windows

Karl Fogel

unread,
Mar 2, 2011, 6:14:54 PM3/2/11
to eas-d...@googlegroups.com
"McCullough, Paul" <paul.mc...@sfgov.org> writes:
>Can anyone else lend a hand on this right now? (see below)
>Maybe someone from FARGEO?
>Otherwise I'll have to do it tomorrow.
>Too many balls in the air.

I'll give it a try; I think I still have JIRA access. Will post here
with results.

-Karl

Karl Fogel

unread,
Mar 2, 2011, 6:25:11 PM3/2/11
to eas-d...@googlegroups.com
I wrote:

>"McCullough, Paul" <paul.mc...@sfgov.org> writes:
>>Can anyone else lend a hand on this right now? (see below)
>>Maybe someone from FARGEO?
>>Otherwise I'll have to do it tomorrow.
>>Too many balls in the air.
>
> I'll give it a try; I think I still have JIRA access. Will post here
> with results.

Okay, Richard, it's here:

http://eas.googlecode.com/files/Ext-2.2.zip

Are you proficient enough with .bat scripts to modify setup.bat to:

- Fetch that zipfile
- Unpack it into the right place
(i.e., .\%DIRNAME%\Media\ui_frameworks\Ext-2.2)

? If so, that'd be great. I don't have a Windows machine here to test
with, so I'm reluctant to try and make the changes myself. If you can
make the change, let us know and I'll be happy to walk you through the
process of submitting the change for inclusion into the project.

Even without modifying setup.bat, you can still download the zip and
manually unpack it in the right place (make sure to clean away the old
one first!) to see if it fixes your problems. Just know that would be a
step in the right direction.

-Karl

Rob Gaston

unread,
Mar 2, 2011, 7:16:53 PM3/2/11
to Enterprise Addressing System
Hey all,

I'm pretty out of the loop here, but I saw our name mentioned and
thought I should chime in. Looks like Karl jumped on this one and got
the Ext stuff up (thanks...), but let me know if there is something
specific I can be of assistance with. I'm unfamiliar with the
setup.bat file so I'm reluctant to try to make any updates to that at
the moment, but I'm available to answer questions or help out however
I can...

- Rob

On Mar 2, 3:25 pm, Karl Fogel <kfo...@oreilly.com> wrote:
> I wrote:

Paul McCullough

unread,
Mar 2, 2011, 11:19:20 PM3/2/11
to eas-d...@googlegroups.com
Thanks Rob and Karl.
Making the extjs 2.2 from jira available on google code should get
Richard past his current obstacle.
Rob, you are welcome to update the setup.bat if you can afford the time.
The value of this file is 2 fold...
- gets a new developer set up quickly (for SF at least)
- is an example for a non-SF developer for what needs to be done to get started
At some point, we should have one working copy with some external config files.

In any case, Karl has already described what needs be done if you want
to follow up.
I do not know the windows analogue to wget.
Maybe its time to stop using bat and do a setup.py?

Paul

Karl Fogel

unread,
Mar 3, 2011, 12:13:56 PM3/3/11
to eas-d...@googlegroups.com
Paul McCullough <p.e.mcc...@gmail.com> writes:
>Thanks Rob and Karl.
>Making the extjs 2.2 from jira available on google code should get
>Richard past his current obstacle.
>Rob, you are welcome to update the setup.bat if you can afford the time.
>The value of this file is 2 fold...
> - gets a new developer set up quickly (for SF at least)
> - is an example for a non-SF developer for what needs to be done to get started
>At some point, we should have one working copy with some external config files.
>
>In any case, Karl has already described what needs be done if you want
>to follow up.
>I do not know the windows analogue to wget.
>Maybe its time to stop using bat and do a setup.py?

Well, setup.bat is pretty easy to modify. I think all Richard needs is
a Windows machine, access to Google, and a half hour to spend on it :-),
to figure the mod needed to make setup.bat fetch the Ext-2.2 download
and do the right thing with it. Richard or Rob, want to give it a try?

-K

McCullough, Paul

unread,
Mar 3, 2011, 12:51:32 PM3/3/11
to eas-d...@googlegroups.com
About modifying setup.bat....
If we have extjs2.2 on google code downloads, we'll need a windows equivalent of wget.
I took a casual look at this and it appears that we would need to install a wget for windows.
I hope I am wrong!

-----Original Message-----
From: eas-d...@googlegroups.com [mailto:eas-d...@googlegroups.com] On Behalf Of Karl Fogel
Sent: Thursday, March 03, 2011 9:14 AM
To: eas-d...@googlegroups.com
Subject: Re: Media path in Windows

Karl Fogel

unread,
Mar 3, 2011, 2:09:28 PM3/3/11
to eas-d...@googlegroups.com
"McCullough, Paul" <paul.mc...@sfgov.org> writes:
>About modifying setup.bat....
>If we have extjs2.2 on google code downloads, we'll need a windows
>equivalent of wget.
>I took a casual look at this and it appears that we would need to
>install a wget for windows.
>I hope I am wrong!

If there's no easy way to fetch a zip file from a URL in a Windows .bat
script, then an alternative would be to check the zip file into
Subversion, in the THIRDPARTY directory, and use Subversion to pull it
down independently. I.e., use svn as a glorified wget.

We should first hear from Rob what his progress is, though. Rob?

(Sorry, I got confused and called you "Richard" a few times; clearly the
first-name part of my brain is mixing signals with the last-name part!)

-Karl

r.richards

unread,
Mar 7, 2011, 2:00:39 PM3/7/11
to Enterprise Addressing System
Thanks everyone. I did not mess with the setup.bat or wget in this go-
round. I was able to download the Ext2.2 and replace the other one in
our windows environment. We now have a UI appearing but many of the
objects are missing some references. Off to the next configuration
item. Will start a new post when I figure out what's next.

No problem on calling me Richard. You are not the first...



On Mar 3, 11:09 am, Karl Fogel <kfo...@oreilly.com> wrote:
> "McCullough, Paul" <paul.mccullo...@sfgov.org> writes:
> >About modifying setup.bat....
> >If we have extjs2.2 on google code downloads, we'll need a windows
> >equivalent of wget.
> >I took a casual look at this and it appears that we would need to
> >install a wget for windows.
> >I hope I am wrong!
>
> If there's no easy way to fetch a zip file from a URL in a Windows .bat
> script, then an alternative would be to check the zip file into
> Subversion, in the THIRDPARTY directory, and use Subversion to pull it
> down independently.  I.e., use svn as a glorified wget.
>
> We should first hear from Rob what his progress is, though.  Rob?
>
> (Sorry, I got confused and called you "Richard" a few times; clearly the
> first-name part of my brain is mixing signals with the last-name part!)
>
> -Karl
>
> >-----Original Message-----
> >From: eas-d...@googlegroups.com
> >[mailto:eas-d...@googlegroups.com] On Behalf Of Karl Fogel
> >Sent: Thursday, March 03, 2011 9:14 AM
> >To: eas-d...@googlegroups.com
> >Subject: Re: Media path in Windows
>

Karl Fogel

unread,
Mar 7, 2011, 3:46:55 PM3/7/11
to eas-d...@googlegroups.com
"r.richards" <rric...@gmail.com> writes:
>Thanks everyone. I did not mess with the setup.bat or wget in this go-
>round. I was able to download the Ext2.2 and replace the other one in
>our windows environment. We now have a UI appearing but many of the
>objects are missing some references. Off to the next configuration
>item. Will start a new post when I figure out what's next.

Great! If you get a chance to try patching up setup.bat (so that it
natively does what you've accomplished manually), that'd be great --
it'd help future users of the project.

>No problem on calling me Richard. You are not the first...

I figured that was probably the case :-). Still, I'll try to get it
right from now on.

Best,
-Karl

Reply all
Reply to author
Forward
0 new messages