Enyo 在 Pre3 设备上的位置

发布于 2024-12-04 23:46:49 字数 377 浏览 0 评论 0原文

我刚开始了解 enyo 框架,因为我买了 Pre3。我已经下载了SDK和VM,以及在eclipse中编写代码的eclipse插件。

一切运行良好,只是插件尚未更新为使用 enyo 框架。

index.xml 文件指向 mojo :

<script src="/usr/palm/frameworks/mojo/mojo.js" type="text/javascript" x-mojo-version="1"></script>

所以我假设骨架的其余部分也在使用 mojo 对象...

这似乎不对,eclipse 插件尚未更新?

我可以知道 enyo.js 在掌上设备上的位置吗?

I'm just starting to have a look at the enyo framework as I bought a Pre3. I've downloaded the SDK and VM, and also the eclipse plugins to write code in eclipse.

Everything works well, except that the plugins has not been updated to use the enyo framework.

The index.xml file points to mojo :

<script src="/usr/palm/frameworks/mojo/mojo.js" type="text/javascript" x-mojo-version="1"></script>

So I assume the rest of the skeleton is also using mojo objects ...

It doesn't seem right, the eclipse plugin has not been updated ?

Could I know the enyo.js location on the palm device ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清旖 2024-12-11 23:46:49

我不使用 Eclipse,所以这对我个人没有影响,但我的理解是 HP/Palm 从未更新过 Enyo 框架的 Eclipse 插件。我在 Windows 上的 Notepad++ 和 Mac 上的 TextWrangler 中开发了我的 Enyo 应用程序,并在 Chrome 或 Safari 上进行了本地测试。

请注意,您不需要知道 Enyo 框架在设备上的确切位置。在index.html中,您需要将Enyo的位置放在您的计算机中,因为这样您就可以在浏览器上测试您的应用程序,而无需设备或模拟器。

palm-package 实用程序会在创建 ipk 包时重写 index.html 中的

对于稍微过时的 webOS SDK,Enyo 的安装位置如下:

在 Mac OS X 上:

<script src="/opt/PalmSDK/0.1/share/refcode/framework/enyo/0.10/framework/enyo.js" type="text/javascript"></script>

在 Windows 7 64 位上:

<script src="C:/Program Files (x86)/HP webOS/SDK/share/refcode/webos-framework/enyo/0.10/framework/enyo.js" type="text/javascript"></script>

I don't use Eclipse, so this never affected me personally, but my understanding is that HP/Palm never updated the Eclipse plugin for the Enyo framework. I developed my Enyo apps in Notepad++ on Windows and TextWrangler on Mac, testing locally on Chrome or Safari.

Note that you do not need to know the exact location of the Enyo framework on the device. In index.html you need to put the location of Enyo in your computer, as this allows you to test your app on your browser without a device or emulator.

The palm-package utility rewrites the <script> tag in your index.html to point to the correct place on your phone or emulator when it creates the ipk package.

For a slighly outdated webOS SDK the install locations for Enyo are these:

on Mac OS X:

<script src="/opt/PalmSDK/0.1/share/refcode/framework/enyo/0.10/framework/enyo.js" type="text/javascript"></script>

on Windows 7 64-bit:

<script src="C:/Program Files (x86)/HP webOS/SDK/share/refcode/webos-framework/enyo/0.10/framework/enyo.js" type="text/javascript"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文