Why only in firefox imported javascript source code doesn't run?

The html source code properly exhibits a pop-up box as expected in almost all browsers(chrome,ie11,opera,android,...) but only it fails in Firefox... Can you explain why this happens so? How to make the script in question get work that is loaded from another domain as shown in source code?
---SOURCE CODE---
<pre><nowiki><head>
</head>
<body>
<script>
function processJson(r) {
alert("Function Called");
</script>
<script src="http://api.ipinfodb.com/v3/ip-city/?key=a2f2062d64fd705bbb32ce4c44e8ebb508d080990528d7cb4f1a0c5e7ddf5c1e&format=json&callback=processJson"></script>
</body>
</html></nowiki></pre>

<pre><nowiki>data:text/html;charset=utf-8;base64,PGh0bWw+CjxoZWFkPgoKPC9oZWFkPgo8Ym9keT4KCjxzY3JpcHQ+CmZ1bmN0aW9uIHByb2Nlc3NKc29uKHIpIHsgCiAgICBwcm9tcHQoIkZ1bmN0aW9uIENhbGxlZCIsSlNPTi5zdHJpbmdpZnkocikpOwogIH0gCSAgCjwvc2NyaXB0Pgo8c2NyaXB0IHNyYz0iaHR0cDovL2FwaS5pcGluZm9kYi5jb20vdjMvaXAtY2l0eS8/a2V5PWEyZjIwNjJkNjRmZDcwNWJiYjMyY2U0YzQ0ZThlYmI1MDhkMDgwOTkwNTI4ZDdjYjRmMWEwYzVlN2RkZjVjMWUmZm9ybWF0PWpzb24mY2FsbGJhY2s9cHJvY2Vzc0pzb24iPjwvc2NyaXB0PgoKPC9ib2R5Pgo8L2h0bWw+</nowiki></pre>
<pre><nowiki><html>
<head>
</head>
<body>
<script>
function processJson(r) {
prompt("Function Called",JSON.stringify(r));
</script>
<script src="http://api.ipinfodb.com/v3/ip-city/?key=a2f2062d64fd705bbb32ce4c44e8ebb508d080990528d7cb4f1a0c5e7ddf5c1e&format=json&callback=processJson"></script>
</body>
</html>
</nowiki></pre>

Similar Messages

  • Hello, I have a computer that was running Firefox version 3.05, now doesn't run. I upgraded firefox to 15.0.1 with no change.?

    Hello,
    I have a computer that was running Firefox version 3.05, now doesn’t run. I upgraded firefox to 15.0.1 with no change. When Firefox is started, I get the attached message.
    Unable to connect.
    Firefox is unable to connect to the server at comcast.net.
    The computer is a HP Pavilion is Pentium 4 CPU at 2.80 GHz with 1.50GB of RAM.
    The operating system is Windows XP Home Edition Version 2002, Service Pack 3.
    The Harddrive is 143GB with 62.7GB used and 80.7GB free.
    I would appreciate any help you can provide.
    My contact information is: e-mail ****[email protected]
    Cell Phone is ***-***-****
    Home phone is ***-***-****
    ''moderator deleted personal information - privacy'' <br />
    ''https://support.mozilla.com/en-US/kb/Forum+and+chat+rules+and+guidelines''
    Thank you
    Ken Hardy

    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *http://kb.mozillazine.org/Error_loading_websites
    *http://kb.mozillazine.org/Browser_will_not_start_up

  • Xletview: why not use sun's javaTV source code directly ?

    xletview : one emulator for viewing MHP Xlets on a PC;
    I see many difference from sun's code about the part of javaTV.
    Why the author Martin Sveden need to rewrite them and not use sun's javaTV source code directly ?
    Thank you for your any answer.
    Sorry for my horrible english.

    XleView is a fine effort, but it has its limitations. I tried using it for the GunBunny demo available in the JavaME SDK 3.0 Eary Access available in
    http://java.sun.com/javame/downloads/sdk30ea.jsp
    and I encountered some of thost limitations. What Sveden does it several tricky manipulations in a classloader for the Xlet. In particular, he translates bytecode as he loads the Xlet's classes, changing some class names, such as changing
    java.awt.Toolkit
    tto
    xjava.awt.Toolkit
    This works up to a point. This version of Toolkit usually just turns around calls java.awt.Toolkit's corresponding routine, but he deliberately he does not implement the ubiquitous
    public Image createImage(URL url)
    When I downloaded his source and tried adding ths into his code, I then encountered at runtime
    Uncaught error fetching image:
    java.lang.NullPointerException
    at sun.awt.image.URLImageSource.getConnection(URLImageSource.java:97)
    at sun.awt.image.URLImageSource.getDecoder(URLImageSource.java:107)
    at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
    at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
    at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
    I think that this is some optimization within J2SE where they do not wait for the image to load and do the fetching in a separate thread. I do not know if there is some way to force the Sun's JVM to disable this optimization and I have not investigated furher, but I did email Svenden. I noticed that the current version of XleTView is 0.3.6 which is dated June 2004 and the web site http://www.xletview.org/ has had not news since 2005 .
    I note that Svenden provides an elegant user interface but I advise you not try to learn the API's from his classes: he makes no effort to keep his implementation separate from the API standards so, for instance, his version of HScene is
    package org.havi.ui;
    public class HScene extends Container
    implements HComponentOrdering, ImageObserver, MenuContainer, Serializable {
    whereas the real standard is
    public class HScene extends Container
    implements HComponentOrdering {
    I hate to critize such a fine effort, but it is best to keep an imlementation separate from the public API.
    I agree that having a lightweight, simple and Java feature-complete Xlet viewer running would be very helpful, especially if BD-J gains much popularity. I have found trying to work with the vendor players described at
    http://wiki.java.net/bin/view/Mobileandembedded/Blu-RayDiscHelloWorld
    to be frustrating. I tried all four mentioned and I have gotten none of them to work for me yet. These are huge downloads and the "Intro Version" of Arcsoft pointed to at the SDK 3.0 Early Access page
    http://www.arcsoft.com/products/totalmediatheatre/
    just gives a "File not found" HTML page. This forum post mentions that perhaps it was recently taken down?
    http://www.arcsoft.com/forum/forum_posts.asp?TID=1084
    I have already emailed Michael Downs of Arcsoft since he is mentioned here:
    http://wiki.java.net/bin/view/Mobileandembedded/BDJPCPlayers
    What did work for me was to take Sun's JavaTV 1.1 Reference Implementation and PowerDVD's BDJ.jar and hack/fix a few classes to get GunBunny to work within the RI's RunXlet program. This is not trivial but I will will describe:
    Download the JavaME 3.0 SDK EA and then download the correct version of PowerDVD that the SDK page points to:
    http://www.brothersoft.com/powerdvd-download-50794.html
    Download the RI binary and source of Java TV API 1.1
    http://java.sun.com/javame/technology/javatv/index.jsp
    Since I am too lazy to use anything but the latest 1.6 JRE as a runtime, I have to fix
    com.sun.tv.media.util.MediaThread
    to comment out its stop() method. This is becase stop() was deprecated and made final in J2SE 1.5
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html#stop()
    http://java.sun.com/j2se/1.5.0/docs/guide/misc/threadPrimitiveDeprecation.html
    Next, I had to mae a change to Sun's JavaTV implementation to keep the GunBunny demo happy by providing a ServiceContext. The RunXlet program calls SIEmulator, but that environment does not provide a ServiceContex, so I added one back in:
    com.sun.tv.receiver.SIEmulator
    private static ServiceContext svcctx = null;
    Add before every call to new AppSignalEvent() and add the svcctx as the second-to-last argument:
    if(svcctx == null){ try { svcctx = new com.sun.tv.ServiceContextImpl(); }catch (Exception e){ e.printStackTrace(); } }
    I then had to hack a few PowerDVD classes, which is evil of me. First, I had to build an empty class by the name of
    sun.util.BDJPlugin
    becuase some PowerDVD class extends it but it is not in its BDJ.jar and then I had to reverse-compile (evil!) and modify one of their internal classes to avoid a dependency on their native methods. What I ended up with was a hacked version of com.cl.bdj.helper.CUtil to avoid the native methods which access the registry where they query for registry settings but also provide a default value (which I return).
    com.cl.bdj.helper.CUtil
    private static String pGetRegistryString(long i ,String string ,String string3) {
    return string3;
    private static int pGetRegistryInt(long i ,String string ,int j) {
    return j;
    The last thing I had to do was to change com.hdccookbook.gunbunny.BaseXlet, to use the JavaTV container rather than the org.havi one:
    import javax.tv.graphics.TVContainer;
    import java.awt.Container;
    change
    // protected HScene scene;
    protected Container scene;
    public final void run() {
    // waitForPresenting();
    // scene = HSceneFactory.getInstance().getDefaultHScene();
    scene = TVContainer.getRootContainer(xletContext);
    In order to having working keys, I had to add the KeyListener interface to BaseXet and
    run(){
    addKeyListener(this);
    and then add a near duplicate of the org.dvb.event.UserEvent* stuff that is already there:
    public void keyPressed(KeyEvent e){
    switch(e.getKeyCode()){
    case KeyEvent.VK_0:
    case KeyEvent.VK_1:
    case KeyEvent.VK_2:
    case KeyEvent.VK_3:
    case KeyEvent.VK_4:
    case KeyEvent.VK_5:
    case KeyEvent.VK_6:
    case KeyEvent.VK_7:
    case KeyEvent.VK_8:
    case KeyEvent.VK_9:
    numberKeyPressed(e.getKeyCode() - KeyEvent.VK_0);
    break;
    case KeyEvent.VK_ENTER:
    enterKeyPressed();
    break;
    case KeyEvent.VK_LEFT:
    arrowLeftKeyPressed();
    break;
    case KeyEvent.VK_RIGHT:
    arrowRightPressed();
    break;
    case KeyEvent.VK_UP:
    arrowUpPressed();
    break;
    case KeyEvent.VK_DOWN:
    arrowDownPressed();
    break;
    public void keyReleased(KeyEvent e){
    // System.out.println("Released: e="+e+" code="+e.getKeyCode());
    public void keyTyped(KeyEvent e) {
    // System.out.println("Typed: e="+e+" code="+e.getKeyCode());
    It then comes up and functions, but the rendering is not very good. Again, this is complete hack. Running the Java TV 1.1 RI in a JRE 1.6 is not supported. If you try to run any of the other examples, you will discover that the XML parsing is broken in JRE 1.6 with this message:
    Parsing failed: com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequence
    Exception: Invalid byte 1 of 1-byte UTF-8 sequence., file: lib\JavaTVSampleFile01.xml
    and you have to go and change the lines in
    lib\JavaTV.properties
    from
    ServiceFileHandler=com.sun.tv.receiver.ReceiverFile
    # ServiceFileHandler=SampleData_01
    to
    # ServiceFileHandler=com.sun.tv.receiver.ReceiverFile
    ServiceFileHandler=SampleData_01
    and build samples\db\SampleData_01.java and put it in your classpath along with all these other hacks.
    Nonetheless, if you want to develop a somewhat generic Xlet that uses some BD-J features, that is how you might do it. But the moment you exercise anything else in the vendor's BDJ.jar that simply doe snot work outside of their environment or invokes one of their native methods, you are again stuck.
    It would be nice if Sun would at least bother to update the JavaTV RI with the fixes I hae mentioned. Their "jmflite" implementation does not render perfecly but at least it would give the programmer something to work with without having to deal with an older JRE, etc.
    Andrew
    Edited by: AndrewMorrow on Oct 20, 2008 2:48 AM

  • Why can't I edit the source code?

    Updating an existing site that was created in Front Page. Am using DW CS4. Must be missing something totally obvious, but when I have pages open in split view, I'm unable to edit the source code. Any thoughts? I can make changes to the CSS, but direct editing in the source code seems to be unavailable.

    > Is it because I didn¹t download the site through DW, that I can¹t edit the source
    code?
    No.  HTML is HTML no matter who writes it.
    This page is definitely a template controlled page, but it is one that has been 'hacked' in the sense that someone has removed the link to the template page from the head of this document (there should be a link to the template page just below the <html> tag).  For example, if you look at the code on the about.htm page, you will see this -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><head><!-- InstanceBegin template="/Templates/main.dwt" codeOutsideHTMLIsLocked="false" -->
    And by the way, I will say that this looks suspiciously like a DW page not a FrontPage page....
    What edits are you wanting to make to this page?

  • Source code doesn't seem to line up with the compiled classes in ECLIPSE

    I am trying to write a Tomcat servlet to parse an incoming message, however when I parse the message to get the parts out of it I get a a parse error that doesn't really tell me a lot.
    I have downloaded the source code for the Java Mail API 1.3.2 and attached it to the jar file in Eclipse.
    However when I debug the code and step through it I get two problems. 1) I get a warning that I can't see the local variables (not really a great problem). 2) The lines in the source code do not line up with where the stack says I am.
    I have checked the dates on the various classes and the source of the API and they seem to line up.
    I did try to recompile the classes just as an experiment but I am runing JDK_1.4.2_06 and the source seems to be set up for 1.5 and I have some missing classes. I can't switch to 1.5 because there are some other servlets running on this server that won't work on 1.5.
    Can anyone give me a clue how I can at least get the the correct line number.
    Thanks
    Brynn

    Has anyone any ideas on this please?

  • This code doesn't run

    This code doesn't pass run time. Can you please help me.
    * Copyright (c) 2004 David Flanagan.  All rights reserved.
    * This code is from the book Java Examples in a Nutshell, 3nd Edition.
    * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
    * You may study, use, and modify it for any non-commercial purpose,
    * including teaching and use in open-source projects.
    * You may distribute it non-commercially as long as you retain this notice.
    * For a commercial use license, or to purchase the book,
    * please visit http://www.davidflanagan.com/javaexamples3.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.lang.*;
    * This program is a very simple Web server.  When it receives a HTTP request
    * it sends the request back as the reply.  This can be of interest when
    * you want to see just what a Web client is requesting, or what data is
    * being sent when a form is submitted, for example.
    public class HttpMirror {
        public static void main(String args[]) {
            try {
                // Get the port to listen on
                int port = Integer.parseInt(args[0]);
                // Create a ServerSocket to listen on that port.
                ServerSocket ss = new ServerSocket(port);
                // Now enter an infinite loop, waiting for & handling connections.
                for(;;) {
                    // Wait for a client to connect.  The method will block;
              // when it returns the socket will be connected to the client
                    Socket client = ss.accept();
                    // Get input and output streams to talk to the client
                    BufferedReader in = new BufferedReader(
                          new InputStreamReader(client.getInputStream()));
                    PrintWriter out = new PrintWriter(client.getOutputStream());
                    // Start sending our reply, using the HTTP 1.1 protocol
                    out.print("HTTP/1.1 200 \r\n");        // Version & status code
                    out.print("Content-Type: text/plain\r\n"); // The type of data
              out.print("Connection: close\r\n");        // Will close stream
                    out.print("\r\n");                         // End of headers
                    // Now, read the HTTP request from the client, and send it
                    // right back to the client as part of the body of our
                    // response.  The client doesn't disconnect, so we never get
                    // an EOF.  It does sends an empty line at the end of the
                    // headers, though.  So when we see the empty line, we stop
                    // reading.  This means we don't mirror the contents of POST
                    // requests, for example.  Note that the readLine() method
              // works with Unix, Windows, and Mac line terminators.
                    String line;
                    while((line = in.readLine()) != null) {
                        if (line.length() == 0) break;
                        out.print(line + "\r\n");
                    // Close socket, breaking the connection to the client, and
              // closing the input and output streams
              out.close();     // Flush and close the output stream
              in.close();      // Close the input stream
                    client.close();  // Close the socket itself
                } // Now loop again, waiting for the next connection
            // If anything goes wrong, print an error message
            catch (Exception e) {
                System.err.println(e);
                System.err.println("Usage: java HttpMirror <port>");
       * Copyright (c) 2004 David Flanagan.  All rights reserved.
       * This code is from the book Java Examples in a Nutshell, 3nd Edition.
       * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
       * You may study, use, and modify it for any non-commercial purpose,
       * including teaching and use in open-source projects.
       * You may distribute it non-commercially as long as you retain this notice.
       * For a commercial use license, or to purchase the book,
       * please visit http://www.davidflanagan.com/javaexamples3.
      class MulthServ extends Thread
      Socket s;
      BufferedReader i;
    PrintWriter o;
      public MulthServ(Socket s) throws Exception
      this.s = s;
      this.i = new BufferedReader(new
      InputStreamReader(s.getInputStream()));
      this.o = new PrintWriter(s.getOutputStream(), true);
      public void run()
      try {
      o.close();
      i.close();
      s.close();
      catch(Exception e) {}
    }

    just compiled and ran it on my machine. runs fine, just as the comments say it should.
    i ran it using this java command:
    F:\Software\Java\Forum>java HttpMirror 9999which starts the server listening for http requests on port 9999.
    i entered this url into my browser:
    http://localhost:9999/?first=foo&last=bari got this response back in my browser, just as the comments said i would:
    GET /?first=foo&last=bar HTTP/1.1
    Host: localhost:9999
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8) Gecko/20050511 Firefox/1.0.4
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alivewhat does "not running" look like to you? maybe you don't know what http is all about.
    %

  • Stop(); within movieclip doesn't work and all my other code doesn't run

    Hey guys,
    I've got a movieclip which has the code stop(); written within it, so that it doesn't play unless i interact with it. What happens now is that when i run the swf file, the entire movie keeps looping, and all my other code just doesn't run.
    I've named my instances buyButton and so on but yeah, somehow it just ignores all my code and just loops. Help!

    Hi Ned,
    In the main timeline it's just one frame yes. So on my main timeline there is a movieclip. Within that movie clip is an animation that adjusts the 'shine' on it. That animation is 20 frames long and i put a stop(); on the first frame inside that movieclip, with the intention that when i publish the swf, the movieclip doesn't loop, but should stop on the first frame. Only if i start to move my cursor over the movieclip, then it has feedback, which is to play the 'shine' animation. That sorta thing. So i had some code in the actionscript layer which edits the text property of the movieclip and it changes from "Click to Buy"(as shown in the screenshot) to "Buy a Shirt!".
    However, when i publish the swf file, the other code, like the one which changes the text property of the movieclip is ignored and also the stop(); function within that movieclip too. And i end up having a movieclip which constantly loops within itself. Other code which i put in, like setting the buttonMode = true and useHandCursor = true are also ignored. The odd thing is that there are no error in my output window. and my publish settings are set to use Actionscript 3.
    EDIT: sorry i used my other account on this haha

  • Why can't I view the source code?

    I found a website that I would like to use as an example for my next site (except for the fonts), but when I right click the 'view source' button, nothing comes up.  I also tried it from the toolbar and nothing again.  Just curious  as to why I can't see the code.  Would that site be difficult to create?  (I wouldn't think so).
    http://www.nathanwoodsoffroad.com/
    (ps - please don't bash the site if you don't like it - Nathan passed away yesterday)

    I see the code OK in Win/IE8
    Right click > View Source and View > Source in the IE toolbar works fine.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Nathan Woods Offroad MX</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    <link href="blog3/blog.css" rel="stylesheet" type="text/css" />
    <script src="../jquery.js" type="text/javascript"></script>
    <script src="../main.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="wrapper">
    <div id="wrapper2">
    <div id="header"></div>
      <div id="navContainer">
        <ul id="nav">
          <li id="home"><a href="http://www.nathanwoodsoffroad.com" class="tooltip" title="Home Page"><span>Home Page</span></a></li>
          <li id="profile"><a href="http://www.nathanwoodsoffroad.com/pages/profile.html" class="tooltip" title="Profile"><span>Profile</span></a></li>
          <li id="calendar"><a href="http://www.nathanwoodsoffroad.com/pages/calendar.html" class="tooltip" title="Calendar"><span>Calendar</span></a></li>
          <li id="media"><a href="http://www.nathanwoodsoffroad.com/pages/media.html" class="tooltip" title="Media"><span>Media</span></a></li>
          <li id="sponsors"><a href="http://www.nathanwoodsoffroad.com/pages/sponsors.html" class="tooltip" title="Sponsors"><span>Sponsors</span></a></li>
          <li id="links"><a href="http://www.nathanwoodsoffroad.com/pages/links.html" class="tooltip" title="Links"><span>Links</span></a></li>
          <li id="mxschool"><a href="http://www.nathanwoodsoffroad.com/pages/mxschool.html" class="tooltip" title="MX School"><span>Mx School</span></a></li>
          <li id="theranch"><a href="http://www.nathanwoodsoffroad.com/pages/theranch.html" class="tooltip" title="The Ranch"><span>The Ranch</span></a></li>
          <li id="contact"><a href="http://www.nathanwoodsoffroad.com/pages/contact.php" class="tooltip" title="Contact"><span>Contact</span></a></li>
        </ul>
      </div>
      <div id="sidebar">
      <div class="mxschool">
        <div class="mxschool-sign"></div>
        <span class="comingsoon">Coming Soon</span></div>
      <div class="poll">
       <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="250" height="300" align="middle">
    <param name="movie" value="http://nathanwoodsoffroad.com/poll/poll.swf?setWIDTH=250&pollid=5&owner=phpjabbers.com&php URL=nathanwoodsoffroad.com/poll/" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000099" />
    <embed src="http://nathanwoodsoffroad.com/poll/poll.swf?setWIDTH=250&pollid=5&owner=phpjabbers.com&php URL=nathanwoodsoffroad.com/poll/" quality="high" bgcolor="#000099" width="250" height="300" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </div>
      </div><!--end sidebar-->
    <div id="main-content">
         <div class="title"></div>
         <div class="intro">With two WORCS Championships now to my name, I have proudly won more individual races than any other rider in the history of the series.  And in 2010, I’m looking to bring the WORCS title back home.  Check out my site after each race for race reports and photos.  </div>
           <div class="news-title"></div>
             <div class="blog-news">
               <p>
                 <div class="BlogContainer3">
    <!--
    <div class="SearchFrom3">
    <form action="/index.php" method="get">
    <input type="text" name="search" size="20" value="" /><input type="submit" value="Find in blog" />
    </form>
    </div><div style="clear:both"></div>
    -->
    <div class="BlogPostContainer3">
    <div class="BlogPostTitle3" onclick="window.location.href='/index.php?id=22'">Thank You</div>
    <div class="BlogPostDate3">Published on: January 16, 2011, 10:36 pm</div>
    <div style="clear:both"></div>
    <div class="BlogPostBody3">
      <p><span style="font-family: impact,chicago;"><span style="font-size: xx-large;"><span style="font-family: verdana,geneva;"><span style="font-size: x-large;">Thanks to all the kids who came out the weekend of January 8 &amp; 9, 2011.  We all had a great time and the weather was awesome.  I'm looking forward to continuing my MX and Off-Road Schools, and working with you all again.  I can't wait for the 2011 Season Kick-Off of WORCS Racing in Taft, CA January 28-29, 2011.  Hope to see you out there.</span></span></span></span></p>... <a href="/index.php?id=22" class="BlogLinks">Read more</a>
    </div>
    </div>
    <div class="BlogPagesContainer3">
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=1&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    <strong>1</strong></div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=2&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    2</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=3&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    3</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=4&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    4</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=5&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    5</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=6&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    6</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=7&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    7</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=8&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    8</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=9&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    9</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=10&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    10</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=11&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    11</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=12&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    12</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=13&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    13</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=14&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    14</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=15&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    15</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=16&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    16</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=17&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    17</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=18&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'">
    18</div>
    <div class="BlogPagesNumbers3" onclick="window.location.href='/index.php?p=2&search='" onmouseover="this.style.backgroundColor = '#e7e7e7'" onmouseout="this.style.backgroundColor = '#FFF'"><img src="http://www.nathanwoodsoffroad.com/blog3/images/old.jpg" width="29" height="18" /></div>
    </div>
    </div>
               </p>
             </div>
    </div>
    <!-- end main content-->
    <div style="clear:both"></div>
      <div class="sponsors-home">
          <div class="sponsors-title"></div><!-- #BeginLibraryItem "/Library/logos.lbi" --><ul class="coll1 logossmall">
           <li class="ktm-sm"><a href="http://ktmnorthamerica.com" class="tooltip" title="KTM" target="_blank"></a></li>
           <li class="maxxis-sm"><a href="http://maxxis.com" class="tooltip" title="Maxxis" target="_blank"></a></li>
           <li class="bolt-sm"><a href="http://www.boltmotorcyclehardware.com" class="tooltip" title="Bolt Motorcycle Hardware" target="_blank"></a></li>
           <li class="asterisk-sm"><a href="http://asterisk.com/" class="tooltip" title="Asterisk" target="_blank"></a></li>
    </ul>
          <ul class="coll2 logossmall">
           <li class="sidi-sm"><a href="http://www.sidisport.com/" class="tooltip" title="Sidi Boots" target="_blank"></a></li>
           <li class="fastway-sm"><a href="http://www.promotobillet.com/" class="tooltip" title="Fastway" target="_blank"></a></li>
           <li class="fmf-sm"><a href="http://fmfracing.com/" class="tooltip" title="FMF Racing" target="_blank"></a></li>
           <li class="smith-sm"><a href="http://www.smithoptics.com/" class="tooltip" title="Smith Optics" target="_blank"></a></li>
           <li class="musclemilk-sm"><a href="http://musclemilk.com/" class="tooltip" title="Muscle Milk" target="_blank"></a></li>
           <li class="dunlop-sm"><a href="http://dunlop.com/" class="tooltip" title="Dunlop" target="_blank"></a></li>
    </ul>
          <ul class="coll3 logossmall">
           <li class="moose-sm"><a href="http://mooseracing.com/" class="tooltip" title="Moose Racing" target="_blank"></a></li>
           <li class="motorex-sm"><a href="http://www.motorex.com/" class="tooltip" title="Motorex" target="_blank"></a></li>
           <li class="gpr-sm"><a href="http://gprstabilizer.com/" class="tooltip" title="GPR Stabilizer" target="_blank"></a></li>
           <li class="motoxcinema-sm"><a href="http://motoxcinema.com/" class="tooltip" title="MotoXCinema" target="_blank"></a></li>
    </ul>
          <ul class="coll4 logossmall">
           <li class="promotobillet-sm"><a href="http://www.promotobillet.com/" class="tooltip" title="Pro Moto Billet" target="_blank"></a></li>
           <li class="rekluse-sm"><a href="http://rekluse.com/" class="tooltip" title="Rekluse" target="_blank"></a></li>
           <li class="renthal-sm"><a href="http://renthal.com/" class="tooltip" title="Renthal" target="_blank"></a></li>
           <li class="motionpro-sm"><a href="http://motionpro.com/" class="tooltip" title="Motion Pro" target="_blank"></a></li>
           <li class="wp-sm"><a href="http://wpsuspension.com/" class="tooltip" title="WP Suspension" target="_blank"></a></li>
    </ul>
          <ul class="coll5 logossmall">
           <li class="rkexcell-sm"><a href="http://www.rkexcelamerica.com/" class="tooltip" title="RK Excel" target="_blank"></a></li>
           <li class="shoei-sm"><a href="http://shoei.com/" class="tooltip" title="Shoei" target="_blank"></a></li>
           <li class="twinair-sm"><a href="http://twinairusa.com/" class="tooltip" title="Twin Air" target="_blank"></a></li>
           <li class="gopro-sm"><a href="http://gopro.com/" class="tooltip" title="Gp Pro" target="_blank"></a></li>
    </ul><!-- #EndLibraryItem --></div>
    <div id="footer">
       <ul class="ftr">
        <li><a href="http://www.nathanwoodsoffroad.com">Home</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/profile.html">Profile</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/calendar.html">Calendar</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/media.html">Media</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/sponsors.html">Sponsors</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/links.html">Links</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/mxschool.html">MX School</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/theranch.html">The Ranch</a> |</li>
        <li><a href="http://www.nathanwoodsoffroad.com/pages/contact.php">Contact</a></li>
      </ul>
    </div>
    <div class="copyright">&copy; NathanWoodsOffroad.com 2009 All RIghts Reserved  |  <a href="http://www.amberdesignz.com" target="_blank">Website: AmberDesignz.com</a></div>
    </div>
    </div><!--end wrapper -->
    </body>
    </html>

  • How to export and import the source code

    Hi,
    I want to ensure the dev databse and prod databse same
    I dont mind about the data.
    I want all the objects ( packages,procedures,functions ) to be exported and imported.
    Please help me out in this
    Regards,
    Ravi

    I wrote a long message but lost everything while trying to post :(
    You haven't mentioned about tables. If there are some changes in the tables structure, you need to take care of that also as in the new database if you don't change the tables all the dependent procedures...functions...packages would go invalid.
    Amardeep Sidhu
    http://www.amardeepsidhu.com

  • Code Doesn't Run - Not Sure Why.....

    Hello Everyone:
    I have an Oracle “program” (I wouldn’t call it a program, but just some code for a one off move of data). I use TORA as the interface for Oracle. I do not have a copy of TOAD. But for some reason, when I run this code, it takes all of 0.003 seconds and doesn’t actually move any data. Below is a copy of the code. If I take the query being used in the cursor, it does return data and takes about 1.5 seconds to execute, but when trying to run this code, it takes 1/10th of that time, so I am doing something wrong but I can’t figure out what.
    I also tried to copy this code into SQLPlus, but that also does not run. Can anyone spot what I am doing wrong? I am not sure if it is my environment and how I am trying to run this or the code itself is flawed.
    DECLARE
    -- Local Variables
    l_gm_master_label VARCHAR2(20);
    l_active_flag VARCHAR2(1);
    l_currdate DATE;
    l_comp_id VARCHAR2(2);
    l_site_id VARCHAR2(2);
    l_gm_master_id NUMBER;
    c_serial_number VARCHAR(40);
    c_creation_date DATE;
    c_interface_date DATE;
    c_ebiz_sku_no NUMBER;
    c_ebiz_ord_no NUMBER;
    -- Cursor
    CURSOR serial_number_data IS
    SELECT
    S.serial_number,
    S.creation_date,
    S.interface_date,
    S.ebiz_sku_no,
    O.ebiz_ord_no
    FROM
    dmlogic.trn_rm_serial_number S
    INNER JOIN ebiznet.trn_ordhead O ON S.ord_no = O.ord_no;
    BEGIN
    DBMS_OUTPUT.ENABLE(2000);
    -- Set default values
    l_gm_master_label := 'DMLogic001';
    l_active_flag := 'N';
    l_currdate := SYSDATE;
    l_comp_id := 'XE';
    l_site_id := 'OHIO';
    l_gm_master_id := 0;
    -- Get the next value
    SELECT
    trn_gm_master_seq.NEXTVAL
    INTO
    l_gm_master_id
    FROM
    dual;
    -- Insert generic Gray Number master record that will be joined to all the DMLogic serial numbers
    INSERT INTO trn_gm_master
    (gm_master_id,
    gm_master_label,
    active_flag,
    currdate,
    comp_id,
    site_id)
    VALUES
    (l_gm_master_id,
    l_gm_master_label,
    l_active_flag,
    l_currdate,
    l_comp_id,
    l_site_id);
    -- Open the cursor
    OPEN serial_number_data;
    LOOP
    -- Fetch the values
    FETCH serial_number_data INTO c_serial_number, c_creation_date, c_interface_date, c_ebiz_sku_no, c_ebiz_ord_no;
    EXIT WHEN serial_number_data%NOTFOUND;
    INSERT INTO ebiznet.trn_gm_serial_number
    (gm_serial_number_id,
    gm_master_id,
    gm_serial_number,
    received_by,
    received_date,
    picked_by,
    picked_date,
    ebiz_sku_no,
    comp_id,
    site_id,
    ebiz_ord_no,
    interface_date)
    VALUES
    (trn_gm_serial_number_seq.NEXTVAL,
    l_gm_master_id,
    c_serial_number,
    1,
    c_creation_date,
    1,
    c_creation_date,
    c_ebiz_sku_no,
    l_comp_id,
    l_site_id,
    c_ebiz_ord_no,
    c_interface_date);
    EXIT WHEN serial_number_data%NOTFOUND;
    END LOOP;
    CLOSE serial_number_data;
    -- Commit the changes
    COMMIT;
    -- Rollback if an error has occured
    EXCEPTION
    WHEN OTHERS THEN
    ROLLBACK;
    DBMS_OUTPUT.PUT_LINE('ERROR HAS OCCURED');
    END;

    When running it in SQL Plus, remember to put the / at the end of the script;
    Also, remember to print out your error in your exception handler;
    DECLARE
      -- Local Variables
      l_gm_master_label VARCHAR2(20);
      l_active_flag VARCHAR2(1);
      l_currdate DATE;
      l_comp_id VARCHAR2(2);
      l_site_id VARCHAR2(2);
      l_gm_master_id NUMBER;
      c_serial_number VARCHAR(40);
      c_creation_date DATE;
      c_interface_date DATE;
      c_ebiz_sku_no NUMBER;
      c_ebiz_ord_no NUMBER;
      -- Cursor
      CURSOR serial_number_data IS
        SELECT
          S.serial_number,
          S.creation_date,
          S.interface_date,
          S.ebiz_sku_no,
          O.ebiz_ord_no
        FROM
          dmlogic.trn_rm_serial_number S
        INNER JOIN ebiznet.trn_ordhead O ON S.ord_no = O.ord_no;
    BEGIN
      DBMS_OUTPUT.ENABLE(2000);
      -- Set default values
      l_gm_master_label := 'DMLogic001';
      l_active_flag := 'N';
      l_currdate := SYSDATE;
      l_comp_id := 'XE';
      l_site_id := 'OHIO';
      l_gm_master_id := 0;
      -- Get the next value
      SELECT trn_gm_master_seq.NEXTVAL
      INTO   l_gm_master_id
      FROM   dual;
      -- Insert generic Gray Number master record that will be joined to all the DMLogic serial numbers
      INSERT INTO trn_gm_master
                (gm_master_id,
                gm_master_label,
                active_flag,
                currdate,
                comp_id,
                site_id)
                VALUES
                (l_gm_master_id,
                l_gm_master_label,
                l_active_flag,
                l_currdate,
                l_comp_id,
                l_site_id);
      -- Open the cursor
      OPEN serial_number_data;
      LOOP
        -- Fetch the values
        FETCH serial_number_data INTO c_serial_number
                                     ,c_creation_date
                                     ,c_interface_date
                                     ,c_ebiz_sku_no
                                     ,c_ebiz_ord_no;
        EXIT WHEN serial_number_data%NOTFOUND;
        INSERT INTO ebiznet.trn_gm_serial_number
                    (gm_serial_number_id,
                    gm_master_id,
                    gm_serial_number,
                    received_by,
                    received_date,
                    picked_by,
                    picked_date,
                    ebiz_sku_no,
                    comp_id,
                    site_id,
                    ebiz_ord_no,
                    interface_date)
                    VALUES
                    (trn_gm_serial_number_seq.NEXTVAL,
                    l_gm_master_id,
                    c_serial_number,
                    1,
                    c_creation_date,
                    1,
                    c_creation_date,
                    c_ebiz_sku_no,
                    l_comp_id,
                    l_site_id,
                    c_ebiz_ord_no,
                    c_interface_date);
        EXIT WHEN serial_number_data%NOTFOUND;
      END LOOP;
      CLOSE serial_number_data;
      -- Commit the changes
      COMMIT;
      -- Rollback if an error has occured
      EXCEPTION
        WHEN OTHERS THEN
        ROLLBACK;
        DBMS_OUTPUT.PUT_LINE('ERROR HAS OCCURED ' || sqlerrm);
    END;
    /

  • Why does my Firefox freeze and Flash crash whenever I run a Flash video with 3.6.13 when it doesn't with 3.6.12?

    I got the notice a few days ago that 3.6.13 was available. I immediately downloaded it and installed it. I found that after when I went to YouTube that if I loaded any video that when I went to play it Firefox froze until Flash crashed. I reloaded 3.6.12 and the problem went away.

    IF you are running AVG (Free); try this:
    -Open the AVG window (double click on the icon in the system tray). - Double Click on "Link Scanner" in the main window. -Under the "Settings" portion, deselect the "Enable Search-Shield" and the "Enable Surf Shield" options.
    I hope this works for you! Post back if it does!
    I've read that other anti-virus programs can also "create" this problem. . . .not familiar with them though.

  • Source code organization: How to divide large JavaScript files into several smaller JavaScript files?

    Hello,
    some of my JavaScripts have become considerably large over time. What I would like to do is to split a single (large) JavaScript source file into several smaller source files plus an additional JavaScript file containing code or directives to recombine the split files.
    In other words, I would like to organize my JavaScript source code into re-usable modules.
    Although I searched the Acrobat JavaScript developer documentation and did a lot of Web searching, I still have no idea...
    whether the Acrobat JavaScript scripting environment itself does provide a code structuring mechanism
    how to properly organize large Acrobat JavaScripts in general.
    Any help would be greatly appreciated! Thanks a lot in advance!
    Sebastian

    Document-level scripts are not accessible to other documents/scripts, so they're not a good option.
    Folder-level scripts, on the other hand, are accessible to all other documents/scripts. So if you have a general function that creates a 3D annotation, for example, you can place it in a folder-level script and then call it from other scripts (you will probably need to provide it a handle for the document and properties of the annotation).
    One thing to be aware of, though, is that the folder-level scripts are loaded alphabetically, so don't put a reference in script aaa.js to something that loads in zzz.js, or you will get an error message when you open Acrobat. (this is not a problem if zzz.js is not called during the launch of Acrobat)

  • Importing MSA HH Source Code to NWDS

    Hi Ted,
       I am able to download the source code attached to the SAP note 879647 as a zip file called MSAHH50src.zip.
       I want to customize this application. Can you please tell me how to import this source code in NWDS?
       Thanks in advance.
    Topic branched from: Re: CRM installtion on handheld devices
    Message was edited by: Ted Petrenko

    Hello Nanda,
    There is no way to modify the ESS source code without NWDS/NWDI environment...you have to set it up..
    Regards,
    Shikhil

  • Is it possible to get source code of AutomationManager.as class or/and QTPAdapter.as?

    Sorry, we don’t really provide source for those classes right now.
    On 2/25/09 2:47 AM, "JabbyPanda" <
    [email protected]> wrote:
    A new discussion was started by JabbyPanda in
    General Discussion --
      Is it possible to get source code of  AutomationManager.as class or/and QTPAdapter.as?
    I have a license of Flex Builder 3.0.1 Pro, running Win XP.
    Inside "c:\Program Files\Adobe\Flex Builder 3 Plug-in\sdks\2.0.1\frameworks\source\mx\automation\"  folder I can only locate a listing of source code of IAutomationManager interface.
    Inside "c:\Program Files\Adobe\Flex Builder 3 Plug-in\sdks\3.2.0\frameworks\projects\automation\src\mx\automation\" folder there is also a bunch of open sourced classes present, but even source code of IAutomationManager interface is missing.
    And source code for AutomationManager.as and QTPAdapter.as classes are nowhere to find.
    And I tried to extract source files from Data Visualization package as suggested here
    http://blogs.adobe.com/flexdoc/2008/04/extracting_data_visualization.html, no luck
    View/reply at Is it possible to get source code of  AutomationManager.as class or/and QTPAdapter.as? <
    http://www.adobeforums.com/webx?13@@.59b80b91>
    Replies by email are OK.
    Use the unsubscribe <
    http://www.adobeforums.com/webx?280@@.59b80b91!folder=.3c060fa1>  form to cancel your email subscription.

    We can look at setting up some subtopic forums targeting specifics like automation once we have our new system in place.
    On 2/26/09 7:57 AM, "JabbyPanda" <
    [email protected]> wrote:
    A new message was posted by JabbyPanda in
    General Discussion --
      Is it possible to get source code of AutomationManager.as class or/and QTPAdapter.as?
    What I plan to do, is to write a couple of delegates to prepare (instrument) my custom components that extend from UIComponent for testing.
    I found the source file for AQAdapter.as from FlexMonkey tool at  
    http://code.google.com/p/flexmonkey/source/browse/trunk/FlexMonkey/src/com/gorillalogic/aq adaptor/AQAdapter.as, by studying the code of AQAdapter.as I can get the better idea what QTPAdapter.as does.
    In general, I found the documentation on test automation for Flex application to be very modest and limited, for example many attributes for XML-based "class information file" for HP QuickTest tool are not documented at Adobe Flex livedocs.
    BTW, is there any better place where test professionals and Adobe Flex developers exchange the knowledge on test automation of Flex apps?
    I've tried
    http://www.sqaforums.com by running search query
    http://www.google.com/custom?domains=SQAforums.com&! q=Adobe+Flex&sitesearch=SQAforums.com <
    http://www.google.com/custom?domains=SQAforums.com&q=Adobe+Flex&sitesearch=SQAforums.com> , but I left with a feeling the most enquiries were made by people who are just evaluating possiblity of testing of Flex apps with HP QuickTest tool.  

  • AWT SOURCE CODE---PLS HELP

    Can anyone help me on the how to develop GUI using only AWT..(the source code)
    FIRST SCREEN --> Opening Splash Screen "Application to view log details" with the sub topics "daily transmission Statistics and "Hourly Transmission Statistics" and a ok button at bottom.My own logo in a canvas should be displayed
    2nd screen---> Menu bar has 2 items such as file and help..If a button is pressed before using the File menu to open a file,then a dialog box should appear to tell the user to chose a file before selecting an option.

    Post your completly runnable demo program andget
    a
    complete solution,a runnable one!Alternatively, I will write it for you for $100.I'll lower the bid to $90 :-)I'm going to have to get nasty if you keep undercutting me like this.

Maybe you are looking for

  • Unable to Launch Integration Builder: Java Web Start problem

    Hi, I am unable to launch the integration builder. I am using JDK 1.4.2_05. The java Web Start gives the following error: Unsigned application requesting unrestricted access to system Unsigned resource: http://<XIHostName>:50000/rep/repository/aii_ut

  • I cannot open quicktime

    Why can't i open "Quick Time" on my laptop?

  • Preparation   of  SAP  WM

    Hello  SAP  Gurus  , Can any one help  me  how  to prepare  for  SAP  WM/EWM  ? Can  I follow  SAP WM  certification Material  or  Any  other  reference  material ? Iam  so confusing  ........

  • Reg : HRA and PF Eligibility

    Hello friends, We are implementing indian payroll. I got few doubts during configuring. can you please help me out. 1. Where should we ristrict PF eligibility = 6500? 2. If HRA = 40% of basic + 1000. Does it require to maintain Rs. 1000/- in raps tab

  • Congratulations your iPhone has been unlocked!

    I decided to update my AT&T iPhone 4S 32GB last night to iOS 6.1.1.  I was going to do a normal update and restore process, backed up my phone, ran the update and half way through it glitched and I had to do a factory restore.  I figured I could do a