You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Sam Bisbee (Updated) (JIRA)" <ji...@apache.org> on 2012/02/18 05:13:59 UTC

[jira] [Updated] (COUCHDB-1381) Support Windows 8 Metro Apps

     [ https://issues.apache.org/jira/browse/COUCHDB-1381?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sam Bisbee updated COUCHDB-1381:
--------------------------------

    Attachment:     (was: 0002-Adding-callbacks-for-errors-in-Futon-that-display-al.patch)
    
> Support Windows 8 Metro Apps
> ----------------------------
>
>                 Key: COUCHDB-1381
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1381
>             Project: CouchDB
>          Issue Type: Bug
>          Components: HTTP Interface
>    Affects Versions: 1.1.1
>         Environment: Windows 8
>            Reporter: Chang Luo
>              Labels: javascript, metro, windows
>
> jquery.couch.js doesn't work for Windows 8 Metro apps.  Below code works fine on browsers.  However when run within a Windows 8 Metro app, it throws an error in line 665 jquery.couch.js:  alert undefined.
> If this is hard to fixed, any alternative javascript library recommendation is welcome.
> <!DOCTYPE html>
> <html>
>   <head>
>     <title>CouchDB jQuery Examples</title>
>     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
>     <script src="js/json2.js"></script>
>     <script src="js/sha1.js"></script>
>     <script src="js/jquery.js"></script>
>     <script src="js/jquery.couch.js"></script>
>     <script src="js/jquery.dialog.js"></script>
>   </head>
>   <body>
>       <script>
>         
>           console.log('starting');
>           $.couch.urlPrefix = "http://localhost:5984";
>           $.couch.db("_users").allDocs({
>               success: function (data) {
>                   console.log();
>               }
>           });
>           console.log('done');
>       </script>
>   </body>
> </html>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira