Whisht Wind


« 十一月 2009
星期日星期一星期二星期三星期四星期五星期六
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
     
       
今天

Subscribe

Add to My YahooSubscribe in RojoSubscribe in NewsGator OnlineThis blog's XML feed
Subscribe with BloglinesAdd to Google

Search this blog

Blog Roll

Downloads

Other Links

Popular Tags

addons android archive autoloading autopager china chinese cisco dhcp dict earthquake firefox flock fonts foxbeans hgweb j2me java javame jstardict jstardictm language mercurial milax moon mozilla mtu nb-xul netbeans openoffice opensolaris pack palette recommended solaris stardict tar.gz tar.gz2 vpn vpnclient windows wine xul zip 嫦娥 郑萍如 面板

Weblog menu

Feeds

Recent Entries

Today's referrers

今日点击: 949

Locations of visitors to this page

20080715 星期二 2008年07月15日

非常郁闷中 NB-XUL居然不是我提的

刚刚注意到NetBeans的有奖资助开发计划中有个NB-XUL项目,实现的功能和我的FoxBeans类似。

不过居然不是我提交的。你说郁闷不郁闷。
FoxBeans可以在这里下载。注意这个链接可能需要点两次。第二次才能打开,不知道NetBeans的网站怎么做的。

[Read More]

My Tags:

( 2008年07月15日, 10:56:58 下午 CST ) [Listen] Permalink 评论 [0]

Share and enjoy:  Bookmark it with Blinklist Submit to Bloglines Bookmark it with Blogmarks Track with co.mments Bookmark it with Del.icio.us Submit it to Digg Submit it to Fark Bookmark it with Furl Bookmark it with Ma.gnolia Bookmark it with Maple Bookmark it at NewsVine Bookmark it at reddit.com Bookmark it at Simpy.com Bookmark it with Spurl Submit it to slashdot Track with TailRank See who links to it via Technorati Bookmark it with wists

NB-XUL and foxbeans

Just notice there is a NetBeans grant project call NB-XUL.http://www.netbeans.org/grant/

Don't know whether they know there is foxbeans project which already implement some basic editor functions for Mozilla XUL.


You can download foxbeans here.

[Read More]

My Tags:

( 2008年07月15日, 10:42:09 下午 CST ) [Listen] Permalink 评论 [0]

Share and enjoy:  Bookmark it with Blinklist Submit to Bloglines Bookmark it with Blogmarks Track with co.mments Bookmark it with Del.icio.us Submit it to Digg Submit it to Fark Bookmark it with Furl Bookmark it with Ma.gnolia Bookmark it with Maple Bookmark it at NewsVine Bookmark it at reddit.com Bookmark it at Simpy.com Bookmark it with Spurl Submit it to slashdot Track with TailRank See who links to it via Technorati Bookmark it with wists

20080502 星期五 2008年05月02日

Foxbeans 1.0.1.13 Released

Download it here: http://plugins.netbeans.org/PluginPortal/faces/PluginListPage.jsp?search=foxbeans

Foxbeans is a netbeans plugin to support
create Mozilla/Firefox/Thunderbird addons/extensions using netbeans.
You can also import an existing addons project to netbeans.
Changes on previous releases:

Add importing project support.

Add an options to configure the installed mozilla applications to used
while do the testing. Add the selected mozilla application to the
project node as a refer. Please don't modify files under Application
node unless you what you are doing.



New functions added to 1.0.1.13:

Add i18n support for xul file.

It will search and put the hard coded string for following attribute to a dtd file.

*=tooltiptext,label,accesskey,tooltiptextdown,tooltiptextup,title,

toolbar=toolbarname

label=value

key=key

New functions added to 1.0.1.11:

1. Add two functions to add/remove the missed language items from
properties/dtd locale files. Correct Language Files and minimize
Language Files. Correct will add missed string resources, this will
help if you want to release the files. Minimize will remove the string
resources which equal to the default "en-US" ones. This will help to
submit the upgraded files to http://www.babelzilla.org. babelzilla is a site to help localizing mozilla/Firefox addons.


2. Support add extensions to the testing env. You just need put the
addons you want to add to the test profiles to the extensions directory
under your project. They will be automatically installed. For example
you can put the javascript debugger there. XPI files or installed
folders are both supported. You can get the installed addon folders in
your /extensions folder. An small extension have been added by default. It will enable debug chrome files in javascript debugger.

Technorati Tags: , , , [Read More]

My Tags:

( 2008年05月02日, 06:28:56 下午 CST ) [Listen] Permalink 评论 [0]

Share and enjoy:  Bookmark it with Blinklist Submit to Bloglines Bookmark it with Blogmarks Track with co.mments Bookmark it with Del.icio.us Submit it to Digg Submit it to Fark Bookmark it with Furl Bookmark it with Ma.gnolia Bookmark it with Maple Bookmark it at NewsVine Bookmark it at reddit.com Bookmark it at Simpy.com Bookmark it with Spurl Submit it to slashdot Track with TailRank See who links to it via Technorati Bookmark it with wists

20080316 星期日 2008年03月16日

Netbeans 开发之 添加自定义面板到现有编辑器

 

为了给我自己的 Netbeans插件 Foxbeans 添加功能,所以我最近研究了一下NetBeans插件的开发。这里会记录一些我的发现,以便其他人可以参考。作为第一篇,我先谢谢如何添加自定义面板。先说说如何给现有文件编辑器添加面板。这里我的例子是html编辑器,完整源代码在这里,效果如下,拖到网页上就添加一个 :):


大 的大致工作思路是用一个XML (下面说的smile.xml)文件定义面板中的一个项。这包含它的名称,描述,图标,以及实现它的类名。layer.xml中引用这个文件,把它加入一 个所谓的folder中,每个编辑器可以使用一到多个这种folder中的项。html编辑器使用的是HTMLPalette (JSP使用JSPPalette). 你可以将你的项加入到它的folder中。如果你做过Firefox插件的话,你会看到他们使用的是相同的思路。在Firefox中,这叫 overlay,也就是覆盖。实际上也不是覆盖,而是添加。一些动态语言里有这种类似的语法。你可以向一个已经在其他地方定义的类里添加新的属性和方法。 扯远了。:)

大致的步骤如下:


Technorati Tags: , , ,

[Read More]

My Tags:

( 2008年03月16日, 12:20:08 下午 CST ) [Listen] Permalink 评论 [1]

Share and enjoy:  Bookmark it with Blinklist Submit to Bloglines Bookmark it with Blogmarks Track with co.mments Bookmark it with Del.icio.us Submit it to Digg Submit it to Fark Bookmark it with Furl Bookmark it with Ma.gnolia Bookmark it with Maple Bookmark it at NewsVine Bookmark it at reddit.com Bookmark it at Simpy.com Bookmark it with Spurl Submit it to slashdot Track with TailRank See who links to it via Technorati Bookmark it with wists

20071125 星期日 2007年11月25日

foxbeans:更快更好的开发firefox/mozilla插件

做了个开发firefox扩展的netbeans插件。只需简单的几步就可以创建一个可以在firefox/mozilla/thunderbird/netbeans/flock/seamonkey的mozilla系列的软件上使用的扩展。
请从这里下载netbeans 6.0,从这里这里下载foxbeans插件。安装netbeans之后安装foxbeans,之后新建工程里就会多一个Mozilla Addons的选项。

My Tags:

( 2007年11月25日, 11:15:26 下午 CST ) [Listen] Permalink 评论 [0]

Share and enjoy:  Bookmark it with Blinklist Submit to Bloglines Bookmark it with Blogmarks Track with co.mments Bookmark it with Del.icio.us Submit it to Digg Submit it to Fark Bookmark it with Furl Bookmark it with Ma.gnolia Bookmark it with Maple Bookmark it at NewsVine Bookmark it at reddit.com Bookmark it at Simpy.com Bookmark it with Spurl Submit it to slashdot Track with TailRank See who links to it via Technorati Bookmark it with wists

foxbeans: create firefox mozilla thunderbird netbeans flock seamonkey addons /extensions in netbeans

Just create a netbeans plugin to support user netbeans as the ide to create the firefox addons /extension. It supports creating addons for firefox mozilla thunderbird netbeans flock seamonkey and sunbird.  You need netbeans 6.0 and this plugin. Another download site. Just download the plugin file, start netbeans 6.0, goto Tools->Plugins->Download and add the downloaded nbm file. Here are some pictures: Technorati Tags: , , , ,

My Tags:

( 2007年11月25日, 11:02:06 下午 CST ) [Listen] Permalink 评论 [0]

Share and enjoy:  Bookmark it with Blinklist Submit to Bloglines Bookmark it with Blogmarks Track with co.mments Bookmark it with Del.icio.us Submit it to Digg Submit it to Fark Bookmark it with Furl Bookmark it with Ma.gnolia Bookmark it with Maple Bookmark it at NewsVine Bookmark it at reddit.com Bookmark it at Simpy.com Bookmark it with Spurl Submit it to slashdot Track with TailRank See who links to it via Technorati Bookmark it with wists