On Jun 6, 5:13 am, CPHREC <[email protected]> wrote: > But I can see the URL to the CSS-files. Thats not availible for > the .php/html files?
I don't understand your question. Firebug shows you the response content for any URL used in creating a web page in the Net panel. It cannot show you any 'files', that is the server-side buffers before the server sends them. The server can perform arbitrary operations unknown to firebug on the files it has before sending them to the browser. Commonly it is true that URLs that end in paths similar to paths to files on the server are available as buffers in Firebug, but that just means the server did not munge the content. Firebug also shows the content of .js in the script panel and .css in the CSS panel. These panels use source text as a device for relating runtime information to things the developer understands. Firebug does not show you .html or .php source text because it is difficult to relate the run time information to the source in the case of HTML. It would interesting to try to create such a view, showing how source html was transformed into result HTML. jjb > > On 4 Jun., 02:27, John J Barton <[email protected]> wrote: > > > On Jun 3, 2:44 pm, CPHREC <[email protected]> wrote: > > > > When seeing some html code, is it then possible to see which file this > > > is attached to? Right now I want to do some editing with a site of > > > mine, but since I got alot of .php-files its a mess to find the right > > > file, where the code belong... > > > Sorry, the server only gives firebug the URL, not the mess ;-) > > jjb -- You received this message because you are subscribed to the Google Groups "Firebug" 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/firebug?hl=en.
