[email protected] schrieb:
> Specifically:
> 
> .. csv-table::
>     :header: Col1, Col2, Col3
>     :file: myfile.csv
> 
> Many thanks.

I've now tried that on Windows, and couldn't reproduce the
behavior you describe.

The code that checks for changed dependent files is in
sphinx/environment.py, around line 410:

                # finally, check the mtime of dependencies
                for dep in self.dependencies.get(docname, ()):
                    try:
                        # this will do the right thing when dep is absolute too
                        deppath = path.join(self.srcdir, dep)
                        if not path.isfile(deppath):
                            changed.add(docname)
                            break
                        depmtime = path.getmtime(deppath)
                        if depmtime > mtime:
                            changed.add(docname)
                            break
                    except EnvironmentError:
                        # give it another chance
                        changed.add(docname)
                        break

If you could investigate what happens there (I suspect an EnvironmentError
is raised, so you could try putting a "raise" just below the "except"
line), it would be great.

Georg


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to