>
> just to remember: firebug is not global - it is active for the current 
> tab. --> if you switch to an other tab it hides - only if it is already 
> active for this tab..
>
That's actually not correct. Firebug's default activation model is based on 
URLs, i.e. if you open the same page in another browser tab, Firebug will 
be activated for it, too. See the wiki page about activation 
<https://getfirebug.com/wiki/index.php/Activation> for more info.

Having said that there's an option to enable Firebug for all pages. To do 
that right-click the Firebug Start Button 
<https://getfirebug.com/wiki/index.php/Start_Button> (the button with the 
Firebug symbol) and check the option *On for All Web Pages*. In combination 
with the *Persist* button in the panel toolbar that should do the trick.

Sebastian
 

On Wednesday, October 8, 2014 10:17:32 AM UTC+2, Xavier Flamant wrote:
>>
>> Hello,
>>
>> I have Firefox 26.0 and added Firebug 1.12.8b1.
>>
>> I beleived that the console would display all the request that I enter in 
>> my adress bar, but it is not the case. How to obtain them all ? Furthermore 
>> When I enter once and again several request in my http address bar, firebug 
>> window (displayed underneath) close unexpectedly
>>
>> In particular, I deployed a web application in Java J2ee under jboss and 
>> I have the following servlet (see underneath) and I can't see the request I 
>> made (http://localhost:8080/EJBTutorialWeb/test) in the console. How can 
>> I obtain all the request displayed in the console tab ?
>>
>>  
>>    protected void processRequest(HttpServletRequest request, 
>> HttpServletResponse response)
>>             throws ServletException, IOException {
>>         response.setContentType("text/html;charset=UTF-8");
>>         //PrintWriter out = response.getWriter();
>>         PrintWriter out = new PrintWriter (response.getOutputStream());
>>         try {
>>             out.println("<html>");
>>             out.println("<head>");
>>             out.println("<title>Servlet MaServlet</title>");
>>             out.println("</head>");
>>             out.println("<body>");
>>             out.println("</body>");
>>             out.println("</html>");
>>         } finally {
>>             out.close();
>>         }
>>
>>     }
>>
>> Thank you in advance for your answer
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/firebug.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/firebug/ff463d5b-ed93-4bb3-9871-172242555aad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to