I am trying including the OpenEars plugin into phonegap/cordova using this plugin https://github.com/karljacuncha/OpenEarsPlugin
I followed the Readme but i ended up with an error of missing files, all these files are not found :(
Any help/suggestion on how to integrate the library?
thank you any advice appreciated!
As already mentioned on a comment, new, non-backwards compatible version (2.0) of OpenEars was released on 5th of December in 2014. This of course prevents it from working with old code such as the plugin in this case.
Basically there would be two options to get it working:
Use older version of OpenEars (last one was 1.7.1) but that doesn't seem to be possible as I wasn't able to download it from anywhere after extensive search.
Fix the code to work on newest OpenEars. It shouldn't be that hard and the code of plugin is only ~400 lines of code. Most of the changes are quite straightforward as described in the upgrade guide. Feel free to fork the project in GitHub or try to contact the original author of that plugin to make the fixes necessary.
Related
Has anyone used David Orchard's fork for in-app purchases with PhoneGap? It hasn't been updated in over a year. According to this thread Urban Airship can't help yet.
Ah! I just needed to look a bit harder, this PhoneGap plugin should work perfectly. I'll comment here how well it works with Urban Airship.
https://github.com/phonegap/phonegap-plugins/tree/master/iOS/InAppPurchaseManager
The phonegap plugin suggested by daniellmb works well. Please keep the following in mind
CORDOVA_FRAMEWORK in InAppPurchaseManager.h, remove all the code around that. You will run into 'CDVPlugin.h' file not found in inAppPurchaseManager.h, this is how both import should look
#import <Cordova/CDVPlugin.h>
#import <Cordova/NSData+Base64.h>
If you get the errror Plugin 'InAppPurchaseManager' not found, or is not a CDVPlugin. Check your plugin mapping in Cordova.plist. You have to add the following to Cordova.plist
<key>InAppPurchaseManager</key>
<string>InAppPurchaseManager</string>
I've been playing with SourceKit, which is an awesome Chrome app for editing your Dropbox files using the Ajax.org Code Editor. In the release notes for version 0.5 and the readme, the author says
Arbitrary Javascript "plugins" are loaded post initialization from your Dropbox account. It is loaded from /.sourcekit/plugins/"
I've tried putting some Javascript in that directory, but can't seem to get anything to execute. Does anyone know of documentation for or examples of SourceKit plugins?
(I've submitted an issue on the GitHub project, but have gotten no response.)
SourceKit dev here. Forget about the old styled plugins that I was referring to in the old README CHANGELOG entry. I switched internally to use Dojo, Ace and Require JS. I haven't gotten to the point of adding plugin support just yet with this new rewrite...
It'll come in due time! In the meantime, if you have any ideas, I do take in pull requests via github: http://www.github.com/kenotron/sourcekit
It looks like these plugins for Bespin at Mozilla Labs should fit the bill but they don't seem to function at all at the moment. This "plugin_manager.js" file from the pilot library looks like it does just that for the SourceKit project and it was/is the same deal for Bespin/Skywriter/ACE.
I don't think at this stage there are any "downloadable" plugins for SourceKit, but the plugins in the Bespin Gallery might be worth hacking at.
I thought Eclipse PDT had all the Javascript plugins and supported code hinting, but it's not working for me.
Was I wrong, or is there something that needs to be set up for this to work?
Thanks in advance.
The official plugin is JSDT (Eclipse site) (many articles there, including the Using JSDT series)
The old alternative was JSEclipse (like described in this post)
Warning, this plugin might not be compatible with the official JSDT Eclipse one.
This forum post also mentions Aptana Studio as an alternative.
After reading the comments on this site:
http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/
There is a bit of consensus that jWYSIWYG editor is too buggy (especially in the last few recent comments). Has anyone had experience with it in a large production site?
I haven't run a huge sample of markup through it yet, but so far it has seemed to do the job fine.
I have been using jwysiwyg (https://github.com/akzhan/jwysiwyg) for about 4 months now on several production sites and I have to say that it is the best lightweight wysiwyg editor that I have used. It is small, fast, and reliable. I strongly recommend it for anyone that doesn't need a full-featured editor. If you need to work with complex source code and html markup then this may not be for you, but for business-level users it works very well.
I am guessing that the original question and all comments until here are out-dated. This is a great plugin.
are u tried to find some other place where this editor can be located? for example: http://github.com/akzhan/jwysiwyg/downloads ? There u can find v. 0.9 released few days ago
This answer may no longer reflect the current state of the project.
Checkout out the current version on https://github.com/akzhan/jwysiwyg and decide yourself.
I don't know the project but I conclude: Don't use it (at least at the moment)
the google code page jwysiwyg contains no documentation
the download also doesn't contain any
there are 91 open issues in the tracker (which for such a small project isn't a good indicator)
last commit (r33) was on the 21. September 2009
the second-last commit (r32) was on 21. April 2009
so no frequent updates to codebase either
no new download file (current is jwysiwyg-0.5.zip which dates from January 2009), although he made 3 commits after publishing v0.5 of which:
2 contain fixes for issues
1 restructures directory layout and adds a minimal example to the codebase
jwysiwyg has grown year-to-year development activity and community.
It hosted on GitHub more than1 year, so feel free to use, fork, patch and do pull request.
This is a really weird problem that I have been having. When I download Scriptaculous from the official web site, script.aculo.us, bundled in the ZIP is prototype.js version 1.6.0.1. This works perfectly fine, I can follow along the wiki examples and begin learning. However, when I upgrade to prototype 1.6.0.2 (the latest version) from prototypejs.org everything breaks. I have read the documentation, named the new file prototype.js and nothing works. Any help is greatly appreciated!
scriptaculous is a JS library built on top of prototype. As such, they will be behind prototype in their release schedule. To ensure that scriptaculous works only use it with the prototype file that came in the download.
Sure, given enough time and energy, you can find all the changed references from prototype 1.6.0.1 to 1.6.0.2 but is there really something in the newer version of prototype that you need today? If not, then just wait for the scripaculous to update.
Get the latest script.aculo.us version driectly from their source code repository. The zipped version provided on their website is ancient. I'm running the latest script.aculo.us taken from their repo last week with the latest Prototype (1.6.0.3) without a glitch.