[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread Andrew Dupont

T.J., are you sure you're running the latest code? Do a git submodule
update from the root Prototype directory. Those sound like issues I
had run into, and fixed, several weeks ago.

Meanwhile, I'll fire up my Windows VM and see what happens when I try
to generate docs from there.

Cheers,
Andrew

On Apr 2, 6:17 am, T.J. Crowder t...@crowdersoftware.com wrote:
 Hi again,

 Thought I'd give this a try on the Ubuntu lab machine I'd just built,
 in hopes that the permissions problem is Windows-specific.  I got
 further, it can read the temp file, but then it runs into a problem in
 the PDoc Runner where it can't find the file ajax/ajax:

 * * * *
 t...@lab06:~/projects/prototype$ rake doc
 (in /home/tjc/projects/prototype)

     Parsing source files: /tmp/pdoc20090402-6276-fmbqy1-0.
     Parsing completed in 81.040395 seconds.

     Generating documentation to: /home/tjc/projects/prototype/doc.
     Rendering: ajax_section.html
 rake aborted!
 No such file or directory - ajax/ajax
 /home/tjc/projects/prototype/Rakefile:74
 (See full trace by running task with --trace)
 * * * *

 (Rakefile:74 is the PDoc Runner call.)  I'm guessing it's meant to be
 in the doc subdirectory, but looking there, there is no subdirectory
 called ajax.  There is, however, one called Ajax (with a capital
 A):

 * * * *
 t...@lab06:~/projects/prototype$ ls -lA doc
 total 44
 drwxr-xr-x 2 tjc tjc  4096 2009-04-02 12:01 Ajax
 -rw-r--r-- 1 tjc tjc 21681 2009-04-02 12:01 ajax_section.html
 -rw-r--r-- 1 tjc tjc 12309 2009-04-02 12:01 index.html
 * * * *

 Some kind of case sensitivity problem?  I wonder if this has only been
 used successfully on Windows (if even there?), Mac OS X, and the like
 that don't (by default) have case-sensitive file systems...

 -- T.J.

 On Apr 2, 10:08 am, T.J. Crowder t...@crowdersoftware.com wrote:



  Folks,

  Can anyone build the docs other than Tobie and Andrew?  If so, do you
  have any idea what's going on?  I really want to close the large
  number of doc tickets on my plate, but there's no point in doing the
  work if the patches are just going to sit there unused (like this one
  [1]), that's just a waste of time, and none of us have time to waste.
  I'm about to hit a phase of a project where I won't have time to do
  this, so I was trying to clean them up before that.

  [1]https://prototype.lighthouseapp.com/projects/8886-prototype/tickets/610

  Thanks in advance,

  -- T.J.

  On Mar 31, 4:00 pm, T.J. Crowder t...@crowdersoftware.com wrote:

   Hi Andrew,

   Thanks for the help.  Yeah, it is weird, isn't it? :-)  And yet we
   have permission to delete it (apparently, as it does get deleted).

Are you logged in as an administrator?

   I am indeed, and that file is being created in the temp directory
   associated with my account, which in theory I'd be able to read/write
   to regardless.  Early on, as a test, I created a different directory
   with a short path with no spaces and that I have full control
   permissions to and pointed TEMP/TMP at it instead.  The directory got
   used, but I got the same result.

   -- T.J. :-)

   On Mar 31, 6:23 am, Andrew Dupont goo...@andrewdupont.net wrote:

Christ, that's weird. It's saying you don't have permission to read
the temporary file we create to build a concatenated version of
Prototype with documentation comments included. The whole point of the
temporary-file approach is to avoid permissions issues.

Are you logged in as an administrator?

Cheers,
Andrew

On Mar 30, 5:51 am, T.J. Crowder t...@crowdersoftware.com wrote:

 Hi all,

 I have a bunch of doc tickets I'd like to resolve (not to mention this
 ticket[1] discussed here[2] that I've posted a patch for, but seems to
 be waiting for someone to check that the doc stuff doesn't get broken
 by blank lines), but 'rake doc' doesn't work on my system.  'rake
 dist' and 'rake test' both do.

 [1]http://prototype.lighthouseapp.com/projects/8886-prototype/tickets/610
 [2]http://groups.google.com/group/prototype-core/browse_thread/thread/c5...

 I've installed Ruby, git, rake, etc., cloned the repo, built the
 submodules, etc., and again dist and test work.  But I haven't
 manually installed anything specific for PDoc -- it'd be a great
 answer if it were just that I was missing out something.

 I'd like to get the doc stuff working so I can test my doc changes
 locally before posting patches.  I know nothing about Ruby or rake.
 Anyone have any idea what's going on here and how to resolve this?
 * * * *
 C:\Projects\prototyperake doc --trace
 (in C:/Projects/prototype)
 ** Invoke doc (first_time)
 ** Invoke doc:build (first_time)
 ** Invoke doc:require (first_time)
 ** Execute doc:require
 ** Execute doc:build
 rake aborted!
 Permission denied - C:/DOCUME~1/tjc/LOCALS~1/Temp/pdoc.3196.0
 

[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread T.J. Crowder

Hi Andrew,

 T.J., are you sure you're running the latest code?

Yup, for the Ubuntu system yesterday I grabbed everything fresh,
including updating the submodules.  The Windows stuff last week was
also brand-spanking-new, but just to be sure nothing was fixed in the
last week, I re-grabbed the entire thing this morning and I get the
same permissions error.

Maybe it's an issue with how I'm setting up my repos?  Here's what I'm
doing when building from scratch:

(Starting in my projects directory)
git clone git://github.com/sstephenson/prototype.git
cd prototype
git submodule init
git submodule update
rake dist
(Check that prototype.js is in the dist subdirectory)
rake doc

Until the rake doc part, I'm not getting any errors.

Thanks,

-- T.J.

On Apr 3, 8:35 am, Andrew Dupont goo...@andrewdupont.net wrote:
 T.J., are you sure you're running the latest code? Do a git submodule
 update from the root Prototype directory. Those sound like issues I
 had run into, and fixed, several weeks ago.

 Meanwhile, I'll fire up my Windows VM and see what happens when I try
 to generate docs from there.

 Cheers,
 Andrew

 On Apr 2, 6:17 am, T.J. Crowder t...@crowdersoftware.com wrote:

  Hi again,

  Thought I'd give this a try on the Ubuntu lab machine I'd just built,
  in hopes that the permissions problem is Windows-specific.  I got
  further, it can read the temp file, but then it runs into a problem in
  the PDoc Runner where it can't find the file ajax/ajax:

  * * * *
  t...@lab06:~/projects/prototype$ rake doc
  (in /home/tjc/projects/prototype)

      Parsing source files: /tmp/pdoc20090402-6276-fmbqy1-0.
      Parsing completed in 81.040395 seconds.

      Generating documentation to: /home/tjc/projects/prototype/doc.
      Rendering: ajax_section.html
  rake aborted!
  No such file or directory - ajax/ajax
  /home/tjc/projects/prototype/Rakefile:74
  (See full trace by running task with --trace)
  * * * *

  (Rakefile:74 is the PDoc Runner call.)  I'm guessing it's meant to be
  in the doc subdirectory, but looking there, there is no subdirectory
  called ajax.  There is, however, one called Ajax (with a capital
  A):

  * * * *
  t...@lab06:~/projects/prototype$ ls -lA doc
  total 44
  drwxr-xr-x 2 tjc tjc  4096 2009-04-02 12:01 Ajax
  -rw-r--r-- 1 tjc tjc 21681 2009-04-02 12:01 ajax_section.html
  -rw-r--r-- 1 tjc tjc 12309 2009-04-02 12:01 index.html
  * * * *

  Some kind of case sensitivity problem?  I wonder if this has only been
  used successfully on Windows (if even there?), Mac OS X, and the like
  that don't (by default) have case-sensitive file systems...

  -- T.J.

  On Apr 2, 10:08 am, T.J. Crowder t...@crowdersoftware.com wrote:

   Folks,

   Can anyone build the docs other than Tobie and Andrew?  If so, do you
   have any idea what's going on?  I really want to close the large
   number of doc tickets on my plate, but there's no point in doing the
   work if the patches are just going to sit there unused (like this one
   [1]), that's just a waste of time, and none of us have time to waste.
   I'm about to hit a phase of a project where I won't have time to do
   this, so I was trying to clean them up before that.

   [1]https://prototype.lighthouseapp.com/projects/8886-prototype/tickets/610

   Thanks in advance,

   -- T.J.

   On Mar 31, 4:00 pm, T.J. Crowder t...@crowdersoftware.com wrote:

Hi Andrew,

Thanks for the help.  Yeah, it is weird, isn't it? :-)  And yet we
have permission to delete it (apparently, as it does get deleted).

 Are you logged in as an administrator?

I am indeed, and that file is being created in the temp directory
associated with my account, which in theory I'd be able to read/write
to regardless.  Early on, as a test, I created a different directory
with a short path with no spaces and that I have full control
permissions to and pointed TEMP/TMP at it instead.  The directory got
used, but I got the same result.

-- T.J. :-)

On Mar 31, 6:23 am, Andrew Dupont goo...@andrewdupont.net wrote:

 Christ, that's weird. It's saying you don't have permission to read
 the temporary file we create to build a concatenated version of
 Prototype with documentation comments included. The whole point of the
 temporary-file approach is to avoid permissions issues.

 Are you logged in as an administrator?

 Cheers,
 Andrew

 On Mar 30, 5:51 am, T.J. Crowder t...@crowdersoftware.com wrote:

  Hi all,

  I have a bunch of doc tickets I'd like to resolve (not to mention 
  this
  ticket[1] discussed here[2] that I've posted a patch for, but seems 
  to
  be waiting for someone to check that the doc stuff doesn't get 
  broken
  by blank lines), but 'rake doc' doesn't work on my system.  'rake
  dist' and 'rake test' both do.

  [1]http://prototype.lighthouseapp.com/projects/8886-prototype/tickets/610
  

[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread T.J. Crowder

Hi,

 I think the issue is the /'s in the filename.

 I know nada about Ruby, but does it auto translate / to \ for window?
 I don't think.

If it didn't, it probably wouldn't get that far.  Most cross-OS
systems (Java, for instance) handle translating slashes to backslashes
in file ops on Windows.  I also know nothing about Ruby, but I suspect
that it does as well.

-- T.J.

On Apr 3, 1:37 pm, Richard Quadling rquadl...@googlemail.com wrote:
 2009/4/3 T.J. Crowder t...@crowdersoftware.com:



  Hi Andrew,

  T.J., are you sure you're running the latest code?

  Yup, for the Ubuntu system yesterday I grabbed everything fresh,
  including updating the submodules.  The Windows stuff last week was
  also brand-spanking-new, but just to be sure nothing was fixed in the
  last week, I re-grabbed the entire thing this morning and I get the
  same permissions error.

  Maybe it's an issue with how I'm setting up my repos?  Here's what I'm
  doing when building from scratch:

  (Starting in my projects directory)
  git clone git://github.com/sstephenson/prototype.git
  cd prototype
  git submodule init
  git submodule update
  rake dist
  (Check that prototype.js is in the dist subdirectory)
  rake doc

  Until the rake doc part, I'm not getting any errors.

  Thanks,

  -- T.J.

  On Apr 3, 8:35 am, Andrew Dupont goo...@andrewdupont.net wrote:
  T.J., are you sure you're running the latest code? Do a git submodule
  update from the root Prototype directory. Those sound like issues I
  had run into, and fixed, several weeks ago.

  Meanwhile, I'll fire up my Windows VM and see what happens when I try
  to generate docs from there.

  Cheers,
  Andrew

  On Apr 2, 6:17 am, T.J. Crowder t...@crowdersoftware.com wrote:

   Hi again,

   Thought I'd give this a try on the Ubuntu lab machine I'd just built,
   in hopes that the permissions problem is Windows-specific.  I got
   further, it can read the temp file, but then it runs into a problem in
   the PDoc Runner where it can't find the file ajax/ajax:

   * * * *
   t...@lab06:~/projects/prototype$ rake doc
   (in /home/tjc/projects/prototype)

       Parsing source files: /tmp/pdoc20090402-6276-fmbqy1-0.
       Parsing completed in 81.040395 seconds.

       Generating documentation to: /home/tjc/projects/prototype/doc.
       Rendering: ajax_section.html
   rake aborted!
   No such file or directory - ajax/ajax
   /home/tjc/projects/prototype/Rakefile:74
   (See full trace by running task with --trace)
   * * * *

   (Rakefile:74 is the PDoc Runner call.)  I'm guessing it's meant to be
   in the doc subdirectory, but looking there, there is no subdirectory
   called ajax.  There is, however, one called Ajax (with a capital
   A):

   * * * *
   t...@lab06:~/projects/prototype$ ls -lA doc
   total 44
   drwxr-xr-x 2 tjc tjc  4096 2009-04-02 12:01 Ajax
   -rw-r--r-- 1 tjc tjc 21681 2009-04-02 12:01 ajax_section.html
   -rw-r--r-- 1 tjc tjc 12309 2009-04-02 12:01 index.html
   * * * *

   Some kind of case sensitivity problem?  I wonder if this has only been
   used successfully on Windows (if even there?), Mac OS X, and the like
   that don't (by default) have case-sensitive file systems...

   -- T.J.

   On Apr 2, 10:08 am, T.J. Crowder t...@crowdersoftware.com wrote:

Folks,

Can anyone build the docs other than Tobie and Andrew?  If so, do you
have any idea what's going on?  I really want to close the large
number of doc tickets on my plate, but there's no point in doing the
work if the patches are just going to sit there unused (like this one
[1]), that's just a waste of time, and none of us have time to waste.
I'm about to hit a phase of a project where I won't have time to do
this, so I was trying to clean them up before that.

[1]https://prototype.lighthouseapp.com/projects/8886-prototype/tickets/610

Thanks in advance,

-- T.J.

On Mar 31, 4:00 pm, T.J. Crowder t...@crowdersoftware.com wrote:

 Hi Andrew,

 Thanks for the help.  Yeah, it is weird, isn't it? :-)  And yet we
 have permission to delete it (apparently, as it does get deleted).

  Are you logged in as an administrator?

 I am indeed, and that file is being created in the temp directory
 associated with my account, which in theory I'd be able to read/write
 to regardless.  Early on, as a test, I created a different directory
 with a short path with no spaces and that I have full control
 permissions to and pointed TEMP/TMP at it instead.  The directory got
 used, but I got the same result.

 -- T.J. :-)

 On Mar 31, 6:23 am, Andrew Dupont goo...@andrewdupont.net wrote:

  Christ, that's weird. It's saying you don't have permission to read
  the temporary file we create to build a concatenated version of
  Prototype with documentation comments included. The whole point of 
  the
  temporary-file approach is to avoid permissions issues.

  Are you logged in as an administrator?

[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread Richard Quadling

2009/4/3 T.J. Crowder t...@crowdersoftware.com:

 Hi,

 I think the issue is the /'s in the filename.

 I know nada about Ruby, but does it auto translate / to \ for window?
 I don't think.

 If it didn't, it probably wouldn't get that far.  Most cross-OS
 systems (Java, for instance) handle translating slashes to backslashes
 in file ops on Windows.  I also know nothing about Ruby, but I suspect
 that it does as well.

 -- T.J.

 On Apr 3, 1:37 pm, Richard Quadling rquadl...@googlemail.com wrote:
 2009/4/3 T.J. Crowder t...@crowdersoftware.com:



  Hi Andrew,

  T.J., are you sure you're running the latest code?

  Yup, for the Ubuntu system yesterday I grabbed everything fresh,
  including updating the submodules.  The Windows stuff last week was
  also brand-spanking-new, but just to be sure nothing was fixed in the
  last week, I re-grabbed the entire thing this morning and I get the
  same permissions error.

  Maybe it's an issue with how I'm setting up my repos?  Here's what I'm
  doing when building from scratch:

  (Starting in my projects directory)
  git clone git://github.com/sstephenson/prototype.git
  cd prototype
  git submodule init
  git submodule update
  rake dist
  (Check that prototype.js is in the dist subdirectory)
  rake doc

  Until the rake doc part, I'm not getting any errors.

  Thanks,

  -- T.J.

  On Apr 3, 8:35 am, Andrew Dupont goo...@andrewdupont.net wrote:
  T.J., are you sure you're running the latest code? Do a git submodule
  update from the root Prototype directory. Those sound like issues I
  had run into, and fixed, several weeks ago.

  Meanwhile, I'll fire up my Windows VM and see what happens when I try
  to generate docs from there.

  Cheers,
  Andrew

  On Apr 2, 6:17 am, T.J. Crowder t...@crowdersoftware.com wrote:

   Hi again,

   Thought I'd give this a try on the Ubuntu lab machine I'd just built,
   in hopes that the permissions problem is Windows-specific.  I got
   further, it can read the temp file, but then it runs into a problem in
   the PDoc Runner where it can't find the file ajax/ajax:

   * * * *
   t...@lab06:~/projects/prototype$ rake doc
   (in /home/tjc/projects/prototype)

       Parsing source files: /tmp/pdoc20090402-6276-fmbqy1-0.
       Parsing completed in 81.040395 seconds.

       Generating documentation to: /home/tjc/projects/prototype/doc.
       Rendering: ajax_section.html
   rake aborted!
   No such file or directory - ajax/ajax
   /home/tjc/projects/prototype/Rakefile:74
   (See full trace by running task with --trace)
   * * * *

   (Rakefile:74 is the PDoc Runner call.)  I'm guessing it's meant to be
   in the doc subdirectory, but looking there, there is no subdirectory
   called ajax.  There is, however, one called Ajax (with a capital
   A):

   * * * *
   t...@lab06:~/projects/prototype$ ls -lA doc
   total 44
   drwxr-xr-x 2 tjc tjc  4096 2009-04-02 12:01 Ajax
   -rw-r--r-- 1 tjc tjc 21681 2009-04-02 12:01 ajax_section.html
   -rw-r--r-- 1 tjc tjc 12309 2009-04-02 12:01 index.html
   * * * *

   Some kind of case sensitivity problem?  I wonder if this has only been
   used successfully on Windows (if even there?), Mac OS X, and the like
   that don't (by default) have case-sensitive file systems...

   -- T.J.

   On Apr 2, 10:08 am, T.J. Crowder t...@crowdersoftware.com wrote:

Folks,

Can anyone build the docs other than Tobie and Andrew?  If so, do you
have any idea what's going on?  I really want to close the large
number of doc tickets on my plate, but there's no point in doing the
work if the patches are just going to sit there unused (like this one
[1]), that's just a waste of time, and none of us have time to waste.
I'm about to hit a phase of a project where I won't have time to do
this, so I was trying to clean them up before that.

[1]https://prototype.lighthouseapp.com/projects/8886-prototype/tickets/610

Thanks in advance,

-- T.J.

On Mar 31, 4:00 pm, T.J. Crowder t...@crowdersoftware.com wrote:

 Hi Andrew,

 Thanks for the help.  Yeah, it is weird, isn't it? :-)  And yet we
 have permission to delete it (apparently, as it does get deleted).

  Are you logged in as an administrator?

 I am indeed, and that file is being created in the temp directory
 associated with my account, which in theory I'd be able to 
 read/write
 to regardless.  Early on, as a test, I created a different directory
 with a short path with no spaces and that I have full control
 permissions to and pointed TEMP/TMP at it instead.  The directory 
 got
 used, but I got the same result.

 -- T.J. :-)

 On Mar 31, 6:23 am, Andrew Dupont goo...@andrewdupont.net wrote:

  Christ, that's weird. It's saying you don't have permission to 
  read
  the temporary file we create to build a concatenated version of
  Prototype with documentation comments included. The whole point 
  of the
  temporary-file approach is 

[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread Richard Quadling

2009/4/3 Richard Quadling rquadl...@googlemail.com:
 2009/4/3 T.J. Crowder t...@crowdersoftware.com:

 Hi,

 I think the issue is the /'s in the filename.

 I know nada about Ruby, but does it auto translate / to \ for window?
 I don't think.

 If it didn't, it probably wouldn't get that far.  Most cross-OS
 systems (Java, for instance) handle translating slashes to backslashes
 in file ops on Windows.  I also know nothing about Ruby, but I suspect
 that it does as well.

 -- T.J.

 On Apr 3, 1:37 pm, Richard Quadling rquadl...@googlemail.com wrote:
 2009/4/3 T.J. Crowder t...@crowdersoftware.com:



  Hi Andrew,

  T.J., are you sure you're running the latest code?

  Yup, for the Ubuntu system yesterday I grabbed everything fresh,
  including updating the submodules.  The Windows stuff last week was
  also brand-spanking-new, but just to be sure nothing was fixed in the
  last week, I re-grabbed the entire thing this morning and I get the
  same permissions error.

  Maybe it's an issue with how I'm setting up my repos?  Here's what I'm
  doing when building from scratch:

  (Starting in my projects directory)
  git clone git://github.com/sstephenson/prototype.git
  cd prototype
  git submodule init
  git submodule update
  rake dist
  (Check that prototype.js is in the dist subdirectory)
  rake doc

  Until the rake doc part, I'm not getting any errors.

  Thanks,

  -- T.J.

  On Apr 3, 8:35 am, Andrew Dupont goo...@andrewdupont.net wrote:
  T.J., are you sure you're running the latest code? Do a git submodule
  update from the root Prototype directory. Those sound like issues I
  had run into, and fixed, several weeks ago.

  Meanwhile, I'll fire up my Windows VM and see what happens when I try
  to generate docs from there.

  Cheers,
  Andrew

  On Apr 2, 6:17 am, T.J. Crowder t...@crowdersoftware.com wrote:

   Hi again,

   Thought I'd give this a try on the Ubuntu lab machine I'd just built,
   in hopes that the permissions problem is Windows-specific.  I got
   further, it can read the temp file, but then it runs into a problem in
   the PDoc Runner where it can't find the file ajax/ajax:

   * * * *
   t...@lab06:~/projects/prototype$ rake doc
   (in /home/tjc/projects/prototype)

       Parsing source files: /tmp/pdoc20090402-6276-fmbqy1-0.
       Parsing completed in 81.040395 seconds.

       Generating documentation to: /home/tjc/projects/prototype/doc.
       Rendering: ajax_section.html
   rake aborted!
   No such file or directory - ajax/ajax
   /home/tjc/projects/prototype/Rakefile:74
   (See full trace by running task with --trace)
   * * * *

   (Rakefile:74 is the PDoc Runner call.)  I'm guessing it's meant to be
   in the doc subdirectory, but looking there, there is no subdirectory
   called ajax.  There is, however, one called Ajax (with a capital
   A):

   * * * *
   t...@lab06:~/projects/prototype$ ls -lA doc
   total 44
   drwxr-xr-x 2 tjc tjc  4096 2009-04-02 12:01 Ajax
   -rw-r--r-- 1 tjc tjc 21681 2009-04-02 12:01 ajax_section.html
   -rw-r--r-- 1 tjc tjc 12309 2009-04-02 12:01 index.html
   * * * *

   Some kind of case sensitivity problem?  I wonder if this has only been
   used successfully on Windows (if even there?), Mac OS X, and the like
   that don't (by default) have case-sensitive file systems...

   -- T.J.

   On Apr 2, 10:08 am, T.J. Crowder t...@crowdersoftware.com wrote:

Folks,

Can anyone build the docs other than Tobie and Andrew?  If so, do you
have any idea what's going on?  I really want to close the large
number of doc tickets on my plate, but there's no point in doing the
work if the patches are just going to sit there unused (like this one
[1]), that's just a waste of time, and none of us have time to waste.
I'm about to hit a phase of a project where I won't have time to do
this, so I was trying to clean them up before that.

[1]https://prototype.lighthouseapp.com/projects/8886-prototype/tickets/610

Thanks in advance,

-- T.J.

On Mar 31, 4:00 pm, T.J. Crowder t...@crowdersoftware.com wrote:

 Hi Andrew,

 Thanks for the help.  Yeah, it is weird, isn't it? :-)  And yet we
 have permission to delete it (apparently, as it does get deleted).

  Are you logged in as an administrator?

 I am indeed, and that file is being created in the temp directory
 associated with my account, which in theory I'd be able to 
 read/write
 to regardless.  Early on, as a test, I created a different 
 directory
 with a short path with no spaces and that I have full control
 permissions to and pointed TEMP/TMP at it instead.  The directory 
 got
 used, but I got the same result.

 -- T.J. :-)

 On Mar 31, 6:23 am, Andrew Dupont goo...@andrewdupont.net wrote:

  Christ, that's weird. It's saying you don't have permission to 
  read
  the temporary file we create to build a concatenated version of
  Prototype with documentation comments included. The 

[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread Richard Quadling

2009/4/3 T.J. Crowder t...@crowdersoftware.com:

 [snip]

 I think I've found the problem.
      File.utime(timestamp, timestamp, filename)
 is trying to amend the time on the open file.
 I commented this line and it worked.

 Yup, that lets me get past that point as well.  Andrew said he'd be
 working on this in his Windows VM soon, so hopefully that gives him a
 leg up.

 rake aborted!
 undefined method `signature' for #Documentation::InstanceProperty
 Ajax.Response#headerJSON

 Yup, here too.  Probably a different problem.

 -- T.J.
 


I'm really stumped here. I wonder if the lack of a ...

headerJSON: function() {
...

is causing it. I tried temporarily adding one to response.js, but it
didn't make a diff.



-- 
-
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498r=213474731
Standing on the shoulders of some very clever giants!

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to 
prototype-core-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---



[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread Andrew Dupont

*headdesk*

Had local changes to my PDoc checkout that I had not pushed back to
the repo. Fixed now.

git pull  git submodule update

...should do the trick.

Cheers,
Andrew

On Apr 3, 9:28 am, T.J. Crowder t...@crowdersoftware.com wrote:
 Hi Richard,

  I'm really stumped here. I wonder if the lack of a ...

 I'd leave it until Andrew's had a chance to take a look.

 -- T.J. :-)

 On Apr 3, 3:21 pm, Richard Quadling rquadl...@googlemail.com wrote:



  2009/4/3 T.J. Crowder t...@crowdersoftware.com:

   [snip]

   I think I've found the problem.
        File.utime(timestamp, timestamp, filename)
   is trying to amend the time on the open file.
   I commented this line and it worked.

   Yup, that lets me get past that point as well.  Andrew said he'd be
   working on this in his Windows VM soon, so hopefully that gives him a
   leg up.

   rake aborted!
   undefined method `signature' for #Documentation::InstanceProperty
   Ajax.Response#headerJSON

   Yup, here too.  Probably a different problem.

   -- T.J.

  I'm really stumped here. I wonder if the lack of a ...

  headerJSON: function() {
  ...

  is causing it. I tried temporarily adding one to response.js, but it
  didn't make a diff.

  --
  -
  Richard Quadling
  Zend Certified Engineer :http://zend.com/zce.php?c=ZEND002498r=213474731
  Standing on the shoulders of some very clever giants!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to 
prototype-core-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---



[Prototype-core] Re: Permission denied error from 'rake doc'

2009-04-03 Thread Andrew Dupont

OK, once I commented out that File.utime line, things went smoothly.
There was an error in the rendering stage that I had to correct
(something that was showing up with BlueCloth but not with RDiscount)
— so do a git pull once again. Then the docs will build.

The line that needs commenting out is a bug in Sprockets that I've
passed along to Sam, so expect a fix for that sometime soon.

T.J., let me know if you have any further problems.

Cheers,
Andrew

On Apr 3, 11:22 am, Andrew Dupont goo...@andrewdupont.net wrote:
 *headdesk*

 Had local changes to my PDoc checkout that I had not pushed back to
 the repo. Fixed now.

 git pull  git submodule update

 ...should do the trick.

 Cheers,
 Andrew

 On Apr 3, 9:28 am, T.J. Crowder t...@crowdersoftware.com wrote:



  Hi Richard,

   I'm really stumped here. I wonder if the lack of a ...

  I'd leave it until Andrew's had a chance to take a look.

  -- T.J. :-)

  On Apr 3, 3:21 pm, Richard Quadling rquadl...@googlemail.com wrote:

   2009/4/3 T.J. Crowder t...@crowdersoftware.com:

[snip]

I think I've found the problem.
     File.utime(timestamp, timestamp, filename)
is trying to amend the time on the open file.
I commented this line and it worked.

Yup, that lets me get past that point as well.  Andrew said he'd be
working on this in his Windows VM soon, so hopefully that gives him a
leg up.

rake aborted!
undefined method `signature' for #Documentation::InstanceProperty
Ajax.Response#headerJSON

Yup, here too.  Probably a different problem.

-- T.J.

   I'm really stumped here. I wonder if the lack of a ...

   headerJSON: function() {
   ...

   is causing it. I tried temporarily adding one to response.js, but it
   didn't make a diff.

   --
   -
   Richard Quadling
   Zend Certified Engineer :http://zend.com/zce.php?c=ZEND002498r=213474731
   Standing on the shoulders of some very clever giants!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype: Core group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to 
prototype-core-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~--~~~~--~~--~--~---