At line 1 changed 160 lines. |
I did some refactorings on [Struts Menu|http://sourceforge.net/projects/struts-menu] in the last few days and thought I'd document them here as it's a bit more convenient than via e-mail. Also, I have a couple issues that might be better exposed here vs. a mailing list. |
|
!!Refactorings |
|
* Migrated to [Maven|http://maven.apache.org] for building and deploying. |
* Renamed package from ''com.fgm.menu'' to ''net.sf.navigator''. |
* Checked in as a new module [on SourceForge|http://sourceforge.net/cvs/?group_id=48726] called "navigator". I liked the name and thought it would be a bit cleaner than "struts-menu" going forward. I'd like to use the same project at SF, just have a new name for the package/releases/files. |
* Added the ability to specify dynamic parameters in menu-config.xml. Example: |
{{{ page="/velocity.jsp?test=${test} }}} |
In this example, the variable 'test' is searched for using pageContext.findAttribute("test"). You could easily set this parameter using JSTL and <c:set var="test" value="value" />. I also added support for request parameters if not found in the pageContext. |
* Added a VelocityMenuDisplayer which puts a bunch of stuff in a VelocityContext for creating of menus with Velocity. This might make for an easy way to use this navigation system and build it from a database. Just put your Tree (or whatever you want to use) into the request, and grab it in the template. Here are all the current variables exposed: |
|
[{Java2HtmlPlugin |
|
context.put("formatter", new VelocityFormatter(context)); |
context.put("now", Calendar.getInstance().getTime()); |
context.put("ctxPath", request.getContextPath()); |
|
// see if a name and property were passed in |
if (!StringUtils.isEmpty(name)) { |
Object val1 = |
RequestUtils.lookup(pageContext, name, null, null); |
|
if (val1 != null) { |
context.put(name, val1); |
} |
} |
|
// request-scope attributes |
Enumeration enum = request.getAttributeNames(); |
|
while (enum.hasMoreElements()) { |
String name = (String) enum.nextElement(); |
Object value = request.getAttribute(name); |
context.put(name, value); |
} |
|
context.put("request", request); |
context.put("session", request.getSession()); |
context.put("menu", menu); |
context.put("displayer", this); |
}] |
|
Here is a sample velocity template for rendering a simple menu. It shouldn't be too hard to re-create the existing using Velocity templates. |
|
{{{ |
## Evaluates other macros. |
#macro(eval $_macro)$_macro#end |
|
#macro( displayMenu $menu $level ) |
#if ($menu.components.size() > 0) |
## display top menu |
#menuItem($menu $level) |
#foreach ($menu in $menu.components) |
#local ($menu $level) |
#set ($level = $level+1) |
#if ($menu.components.size() > 0) |
#eval("#displayMenu($menu $level)") |
#else |
#menuItem($menu $level) |
#end |
#end |
#end |
#else |
#menuItem($menu $level) |
#end |
#end |
|
#macro( menuItem $menu $level ) |
#foreach ($i in [0..$level]) |
&nbsp;&nbsp; |
#end |
#if ($menu.url) |
<a href="$menu.url" title="$menu.title"> |
$menu.title</a> |
#else |
$menu.title |
#end |
<br /> |
#end |
|
#displayMenu($menu 0) |
}}} |
|
This is configured in your JSP using: |
|
{{{ |
<menu:useMenuDisplayer name="Velocity" config="/table.html" |
bundle="org.apache.struts.action.MESSAGE"> |
<menu:displayMenu name="indexMenu"/> |
</menu:useMenuDisplayer> |
}}} |
|
Where __config__ points to a file relative to your webapp. You can also use config="table.html" where table.html is under WEB-INF/classes. |
|
!!Issues |
* I don't know if its Velocity or the tag library, but someone is caching the templates and the only way to get them to refresh is to restart Tomcat. I'd like to be messing with the JSP and it's template on Tomcat and just refresh them in the browser (after saving). It'd sure cut down on development time. ''Lance: This probably is Velocity, have you checked your velocity properties to make sure cache=false? And try adding this: velocimacro.library.autoreload=true''. ''Ivan: I recently found out that Tomcat 4.1.29 (and probably others) caches the content of resources loaded through getResourceAsStream() (very confusing), this may be causing your problems. As a work around my reloadable configuration class was changed to simply getResource() and then opening the stream on the URL.'' |
* There seems to be an issue when you have two menus (menu:useMenuDisplayer tag) on one page. The second menu seems to try and use parts of the first table's config. Wierd. ''Lance: I've seen some scope issues like this on Roller. There are some optional flags documented in the Users Guide that may help with this - though it isn't altogether clear which does what.'' |
|
__UPDATE:__ I solved all of these issues by implementing Velocity's WebappLoader rather than the one from Roller. Here's the code I used to initialize it: |
|
[{Java2HtmlPlugin |
|
/** |
* Key used to access the ServletContext in the Velocity application attributes. |
*/ |
public static final String SERVLET_CONTEXT_KEY = ServletContext.class.getName(); |
|
//~ Methods ================================================================ |
|
public void init(PageContext pageContext, MenuDisplayerMapping mapping) { |
super.init(pageContext, mapping); |
this.pageContext = pageContext; |
|
// MR: Copied from VelocityViewServlet to initialize WebappLoader |
Velocity.setApplicationAttribute(SERVLET_CONTEXT_KEY, |
pageContext.getServletContext()); |
|
// default to servletlogger, which logs to the servlet engines log |
Velocity.setProperty(RuntimeConstants.RUNTIME_LOG_LOGSYSTEM_CLASS, |
ServletLogger.class.getName()); |
|
// by default, load resources with webapp resource loader |
Velocity.setProperty(RuntimeConstants.RESOURCE_LOADER, "webapp"); |
Velocity.setProperty("webapp.resource.loader.class", |
WebappLoader.class.getName()); |
|
// now all is ready - init Velocity |
try { |
ResourceBundle rb = ResourceBundle.getBundle("velocity"); |
|
Properties props = new Properties(); |
|
for (Enumeration keys = rb.getKeys();keys.hasMoreElements();) { |
String key = (String) keys.nextElement(); |
props.put(key, rb.getString(key)); |
} |
|
// only initialized the first time it's called, from: |
// http://jakarta.apache.org/velocity/developer-guide.html |
// it's ignored for subsequent calls |
Velocity.init(props); |
} catch (Exception e) { |
log.error("Error initializing Velocity: " + e.getMessage()); |
e.printStackTrace(); |
} |
} |
}] |
|
!!TODO |
|
* Use XDoclet to generate the .tld file. |
* Unit Tests!! |
|
Comments, suggestions or questions are most welcome. If not here, doing it on one of the <a href="http://sourceforge.net/mail/?group_id=48726">mailing lists</a> is probably most appropriate. |
|
|
__Update:__ [I|MattRaible] just thought of something that would be pretty cool. Allow the name in <menu:displayMenu name="indexMenu"/> to refer to the name of a tiles definition that defines a menu. That'd be slick! |
|
very hot website: 装修 http://www.funasia.cn 团购 http://www.funasia.cn 门禁 http://www.haishun.net 虚拟主机 http://haishun11.51.net fireworks http://fireworks.garrywa.com gemstone globe http://global.garrywa.com/index1.htm 监控 http://www.haishun.net 网址大全 http://www.fm360.net 手表 http://www.tjwatch.com 数据恢复 http://www.hdfix.com.cn 虚拟主机 http://www.conjhost.com fireworks http://fireworks.garrywa.com/fireworks/fireworks.htm 离心机 http://www.feilun.com.cn 化学试剂 http://www.3335555.com 媒体 http://www.33335556.com http://www.33335556.com 二手笔记本 http://www.3332226.com 手套 http://www.3335558.com 发动机 http://www.3332228.com 免费下载电影 http://www.3336668.com 发动机 http://www.3332228.com 水泥 http://www.5556661.com 塑料制品 http://www.5556663.com 机床 http://www.5556668.com 免费音乐下载 http://www.5556669.com 随身听 http://www.5558881.com 防水材料 http://www.5558882.com 纺织机械 http://www.5558883.com 耐火材料 http://www.5558886.com 肺结核 http://www.5558889.com 肺炎 http://www.6668883.com 风机 http://www.6668886.com 家居装饰 http://www.6668889.com 啤酒 http://www.7773336.com 脱发 http://www.7775556.com 钢板 http://www.7775558.com 汽车美容 http://www.7775559.com 网络电话 http://www.6667773.com 监理 http://www.6667775.com 减速机 http://www.6667776.com 钢板网 http://www.6667777.com 钢管 http://ww.6667778.com 网络设备 http://www.6667779.com 洗衣机 http://www.8883335.com 显卡 http://www.8883336.com 显示器 http://www.8883338.com 橡胶 http://www.8883339.com 刀具 http://www.8885553.com 电视机 http://www.8885556.com 锅炉 http://www.8885558.com 二手车 http://www.8886663.com 滑板 http://www.8886665.com 眼镜 http://www.8886668.com 办公用品 http://www.8886669.com 防盗门 http://www.8888886.com 包装机 http://www.8888885.com 仪器 http://www.9993333.com 保温材料 http://www.9993335.com 继电器 http://www.9993336.com 变频器 http://www.9993338.com 包装机械 http://www.9993339.com 办公家具 http://www.9995555.com具 复印机 http://www.9995556.com 货运 http://www.9995558.com 高尔夫 http://www.9995559.com 视频 http://shipintj.51.net 内衣 http://tjunderwear.51.net 糖尿病 http://jessica00.51.net 体育彩票 http://ticai.51.net 网页制作 http://e2008net.51.net 性病 http://tomcat00.51.net CISCO http://cisco00.51.net VOD http://ohmyvod.51.net 笔记本 http://notebook1.51.net 笔记本电脑 http://notebook2.51.net 成人用品 http://adult001.51.net 癌症 http://cancer007.51.net 翻译 http://translateone.51.net 酒店 http://drinkery.51.net 管理咨询 http://manager007.51.net 大屏幕 http://bigscreen.51.net mp3 http://mp3first.51.net 礼品 http://present.51.net 留学 http://studyabroad.51.net 旅游 http://tour123.51.net 培训 http://train123.51.net 汽车 http://ourauto.51.net 手机 http://mobiletele.51.net 鲜花 http://freshflowers.51.net 移民 http://migration.51.net 招聘 http://myapply.51.net 装修 http://decorate.51.net 租房 http://zufang001.51.net MBA http://videomarket.51.net 门禁 http://email8888bada.51.net 乙肝 http://asp169.51.net 游戏 http://cnnet21.51.net 游戏下载 http://asp169net.51.net 仪器 http://guanghui16.51.net 数码相机 http://juyolo.51.net 网站建设 网站建设 http://guanghui6.51.net erp http://guanghui1.51.net flash http://guanghui4.51.net mp3下载 http://guanghui5.51.net 爱滋病 http://guanghui7.51.net 办公自动化 http://guanghui8.51.net 出国 http://guanghui9.51.net 短信 http://guanghui11.51.net 对讲机 http://guanghui12.51.net 干燥设备 http://guanghui13.51.net 会计师事务所 http://guanghui14.51.net 货架 http://guanghui15.51.net 交友 http://guanhui21.51.net 聊天 http://guanghui71.51.net 美女 http://guanhui585.51.net 监控 http://www.haishun.net 门禁 http://www.haishun.net 手表 http://www.tjwatch.com 网址大全 http://www.fm360.net 不锈钢 http://www.ss-cn.com 打印机 http://www.printer-cn.com 钢结构 http://www.stst-cn.com 计算机 http://www.cn-computer.com 加盟 http://www.joinin-cn.com 建筑材料 http://www.coma-cn.com 旅行社 http://www.t-agency.com 企业管理 http://www.cor-admin.com 人力资源 http://www.human-cn.com 网页设计 http://www.webpage-cn.com 市场营销 http://www.168marketing.com 室内设计 http://www.66interior.com 手机 http://www.66cellphone.com 饲料 http://www.88feedstuff.com 涂料 http://www.china-dope.com 卫星电视 http://www.cn-Satellite-tv.com 物流 http://www.66logistics.com 远程教育 http://www.168Education.com 展览 http://www.cn-exhibition.com 包装机械 http://www.66machine.com 包装设计 http://www.66packing.com 玻璃钢 http://www.88fiber.com 瓷砖 http://www.66ceramic.com 地板 http://www.66floor.com 电池 http://www.66battery.com 电动工具 http://www.66tools.com 电话 http://www.88telephone.com 电缆 http://www.66cable.com 电器 http://www.appliances66.com 电线电缆 http://www.168wire.com 电源 http://www.66supply.com 雕塑 http://www.66sculpture.com 耳机 http://www.earphone168.com 二手电脑 http://www.computer666.com 二手房 http://www.house222.com 发电机 http://www.cn-dynamotor.com 防盗门 http://www.door168.com 纺织 http://www.textile88.com 机票 http://www.ticket88.com 复印机 http://www.copy168.com 钢铁 http://www.888steel.com 工程机械 http://www.machine88.com 广告设计 http://www.chinaad-design.com 继电器 http://www.relay888.com 家电 http://www.jiadian666.com 建筑设计 http://www.551111.com 交换机 http://www.switch88.com 洁具 http://www.jieju-china.com 开关 http://www.switch168.com 乐器 http://www.musical88.com 木地板 http://www.china-wood-floor.com 皮革 http://www.leather168.com 啤酒 http://www.beer-china.com 润滑油 http://www.cn-vcr.com 摄像机 http://www.china-vcr.com 摄像头 http://www.331111.com 数码摄像机 http://www.china-digital-camera.com 塑料机械 http://www.661111.com 体育用品 http://www.china-sports-kit.com 网络电话 http://www.665555.com 望远镜 http://www.663333.com 文具 http://www.662222.com 五金工具 http://www.885555.com 显示器 http://www.8881111.com 相机 http://www.8887777.com 香水 http://www.8886666.com http://www.8885555.com 仪表 http://www.8883333.com 中央空调 http://www.8882222.com 珠宝 http://www.36788.com 平面设计 http://www.26788.com 传感器 http://www.sensor168.com 摩托车 http://www.moto-cn.com 玻璃 http://www.glass8888.com 电机 http://www.motor2008.com 工艺品 http://www.craftwork2008.com 化工 http://www.chem888.com 化妆品 http://www.cosmetics2008.com 机械 http://www.machine168.com 空调 http://www.ac8888.com 时装 http://www.cn-fashion.com 食品 http://www.food-cn.com 塑料 http://www.plastic168.com 陶瓷 http://www.ceramic168.com 玩具 http://www.toy-china.com 五金 http://www.hardware888.com 印刷 http://www.cn-press.com 轴承 http://www.chinaaxletree.com 钢材 http://www.steel168.com 汽车配件 http://www.china-af.com 橡胶 http://www.chinalatex.com 变压器 http://www.china-transformer.com 订房 http://www.booking-room.com 订票 http://www.tb-china.com 水处理 http://www.china-wp.com 显示屏 http://www.screencn.com 礼品 http://www.cn-present.com 旅游 http://www.2008travel.com 汽车 http://www.china-am.com 服装 http://www.cn-clothing.com 电影 http://www.commovie-china.com 手机 http://www.china-cp.com 钢结构 http://www.stst-cn.com 建筑材料 http://www.coma-cn.com 企业管理 http://www.cor-admin.co 饲料 饲料 涂料 http://www.china-dope.com 卫星电视 http://www.cn-Satellite-tv.com 包装设计 http://www.66packing.com 玻璃钢 http://www.88fiber.com 瓷砖 http://www.66ceramic.com 地板 http://www.66floor.com 电缆 http://www.66cable.com 电线电缆 http://www.168wire.com 电源 http://www.66supply.com 雕塑 http://www.66sculpture.com 建筑设计 http://www.551111.com 洁具 http://www.jieju-china.com 开关 http://www.switch168.com 木地板 http://www.china-wood-floor.com 皮革 http://www.leather168.com 啤酒 http://www.beer-china.com 塑料机械 http://www.661111.com 变压器 http://www.china-transformer.com 显示屏 http://www.screencn.com 数码相机 http://www.camera-cn.com 稳压器 http://www.pre-machine.com 招聘 http://www.Invite-cn.com 触摸屏 http://www.hold-screen.com 机柜 http://www.ma-cabinet.com 显示屏 http://www.screen-cn.com 酒店预定 http://www.wine-booking.com 模具 http://www.molding-tool.com 在线电影 http://www.movie-online123.com 笔记本 http://www.notebook555.com 虚拟主机 http://haishun11.51.net 管理咨询 http://www.management666.com 域名注册 http://www.dn-register.com 肾病 http://www.ki-disease.com 免费电影 http://www.freemovie-cn.com 肿瘤 http://www.tumor-cn.com 显微镜 http://www.microscope-cn.com 婚介 http://www.marriage666.com 股票 http://www.stock-cn.com 交换机 http://www.ex-machine.com 糖尿病 http://www.diabetes-cn.com 企业邮箱 http://www.b-mailbox.com 五金 http://www.hardware123.com 乙肝 http://www.b-liver.com 对讲机 http://www.interphone555.com 化妆品 http://www.cosmetics666.com 股骨头坏死 http://www.bdi-bone.com 网站推广 http://www.website-expansion.com 美女 http://www.beauty333.com UPS http://www.ups123.com 液晶 http://www.lcd-cn.com 文具 http://www.stationery555.com 尿毒症 http://www.upoisoning.com 订房 http://www.room-ordering.com 条码打印机 http://www.bc-printer.com 酒店 http://www.wine-shop001.com 电脑 http://www.computer888.com 珠宝 http://www.jewelry666.com 家具 http://www.furniture135.com 投影幕 http://www.cast-shadow.com 服饰 http://www.dress-cn.com 网站空间 http://www.websitespace-cn.com 轮胎 http://www.tire-cn.com 网上购物 http://www.shopping-cn.com 包装机械 http://www.packing-machine.com 条码 http://www.barcode555.com |
[googleÅÅÃû|http://www.yourgoogle.com] |
[google×ó²àÅÅÃû|http://www.yourgoogle.com/google-list/google-list.htm ] |
[ÍøÕ¾½¨Éè|http://www.yourgoogle.com/webdesign/webdesign-1.htm] |
[googleÍƹã|http://googlesz.freewebpage.org] |
[googleÅÅÃû|http://googlegd.freewebpage.org] |
[ inflatables|http://www.inflatables-china.com] |
[Îå½ð¹¤¾ß|http://www.swellongtools.com] |
[ÄÉÃ×|http://nami8.freewebpage.org] |
[ÍøÂçÓªÏú|http://www.tlup.com] |
[ÏîÄ¿ºÏ×÷|http://www.tlup.com] |
[ÍøÂçÉãÏñ»ú|http://www.sfcomm.com] |
[ÍøÂçÉãÏñ»ú|http://swellong.freewebpage.org] |
[ÏÊ»¨|http://www.flowerwish.com] |
[ÍøÉÏ»¨µê|http://www.flowerwish.com] |
[ɽÌØ|http://www.flowerwish.com/ups] |
[ɽÌØupsµçÔ´|http://www.flowerwish.com/ups] |
[APCµçÔ´|http://www.flowerwish.com/ups] |
[ɽÌصçÔ´|http://www.flowerwish.com/ups] |
[²£Á§|http://glasses.freewebpage.org ] |
[ÍøÂ綩»¨|http://www.FLOWERWISH.com/events/fwa.asp] |
[ÍøÂ绨µê|http://www.FLOWERWISH.com/events/fwb.asp] |
[ÍøÂçËÍ»¨|http://www.FLOWERWISH.com/events/fwc.asp] |
[Á¬Ëø»¨µê|http://www.FLOWERWISH.com/events/fwd.asp] |
[»¨µê|http://www.FLOWERWISH.com/events/fwe.asp] |
[ÍøÉÏÏÊ»¨|http://www.FLOWERWISH.com/events/fwf.asp] |
[ÏÊ»¨µê|http://www.FLOWERWISH.com/events/fwg.asp] |
[Âò»¨|http://www.FLOWERWISH.com/events/fwh.asp] |
[꿃즩Ȭ|http://www.FLOWERWISH.com/events/fwi.asp] |
[ÍøÉÏ»¨µê|http://www.FLOWERWISH.com/events/fwj.asp] |
[ÍøÉÏÀñÆ·|http://www.FLOWERWISH.com/events/fwk.asp] |
[ÍøÉÏÂò»¨|http://www.FLOWERWISH.com/events/fwl.asp] |
[ÍøÉÏËÍ»¨|http://www.FLOWERWISH.com/events/fwm.asp] |
[ÍøÉÏ»¨µê|http://www.FLOWERWISH.com/events/fwn.asp] |
[ÍøÉÏÏÊ»¨ËÙµÝ|http://www.FLOWERWISH.com/events/fwo.asp] |
[ÏÊ»¨ËÙµÝ|http://www.FLOWERWISH.com/events/fwp.asp] |
[ÏÊ»¨ÅäËÍ|http://www.FLOWERWISH.com/events/fwq.asp] |
[ÏÊ»¨¿ìµÝ|http://www.FLOWERWISH.com/events/fwr.asp] |
[ÏÊ»¨Íø|http://www.FLOWERWISH.com/events/fws.asp] |
[ÉúÈÕÏÊ»¨|http://www.FLOWERWISH.com/events/fwt.asp] |
[ÀñÒÇÏÊ»¨|http://www.FLOWERWISH.com/events/fwu.asp] |
[°®ÇéÏÊ»¨|http://www.FLOWERWISH.com/events/fwv.asp] |
[¶©»¨|http://www.FLOWERWISH.com/events/fww.asp] |
[¹ú¼ÊËÍ»¨|http://www.FLOWERWISH.com/events/fwx.asp] |
[ÏÊ»¨ÀñÆ·Íø|http://www.FLOWERWISH.com/events/fwy.asp] |
[ÏÊ»¨ÀñÆ·µê|http://www.FLOWERWISH.com/events/fwz.asp] |
[ÇéÈ˽ÚÏÊ»¨|http://www.flowerwish.com/events/f1.asp] |
[ÇéÈ˽Úõ¹å|http://www.flowerwish.com/events/f2.asp] |
[ĸÇ×½ÚÏÊ»¨|http://www.flowerwish.com/events/f3.asp] |
[¸¸Ç×½ÚÏÊ»¨|http://www.flowerwish.com/events/f4.asp] |
[ÆßϦÏÊ»¨|http://www.flowerwish.com/events/f5.asp] |
[½Ìʦ½ÚÏÊ»¨|http://www.flowerwish.com/events/f7.asp] |
[Ê¥µ®½ÚÏÊ»¨|http://www.flowerwish.com/events/f8.asp] |
[±±¾©ÏÊ»¨|http://www.flowerwish.com/city/1a.asp] |
[Ìì½òÏÊ»¨|http://www.flowerwish.com/city/2a.asp] |
[ÉϺ£ÏÊ»¨|http://www.flowerwish.com/city/3a.asp] |
[ÖØÇìÏÊ»¨|http://www.flowerwish.com/city/4a.asp] |
[ʯ¼ÒׯÏÊ»¨|http://www.flowerwish.com/city/5a.asp] |
[Ö£ÖÝÏÊ»¨|http://www.flowerwish.com/city/6a.asp] |
[ÉòÑôÏÊ»¨|http://www.flowerwish.com/city/7a.asp] |
[³¤´ºÏÊ»¨|http://www.flowerwish.com/city/8a.asp] |
[¹þ¶û±õÏÊ»¨|http://www.flowerwish.com/city/9a.asp] |
[³É¶¼ÏÊ»¨|http://www.flowerwish.com/city/10a.asp] |
[ºôºÍºÆÌØÏÊ»¨|http://www.flowerwish.com/city/11a.asp] |
[¸£ÖÝÏÊ»¨|http://www.flowerwish.com/city/12a.asp] |
[Ì«ÔÏÊ»¨|http://www.flowerwish.com/city/13a.asp] |
[º£¿ÚÏÊ»¨|http://www.flowerwish.com/city/14a.asp] |
[ÎÚ³ľÆëÏÊ»¨|http://www.flowerwish.com/city/15a.asp] |
[Òø´¨ÏÊ»¨|http://www.flowerwish.com/city/16a.asp] |
[À¼ÖÝÏÊ»¨|http://www.flowerwish.com/city/17a.asp] |
[Î÷°²ÏÊ»¨|http://www.flowerwish.com/city/18a.asp] |
[À¥Ã÷ÏÊ»¨|http://www.flowerwish.com/city/19a.asp] |
[¹óÑôÏÊ»¨|http://www.flowerwish.com/city/20a.asp] |
[ÄϲýÏÊ»¨|http://www.flowerwish.com/city/21a.asp] |
[ÄÏÄþÏÊ»¨|http://www.flowerwish.com/city/22a.asp] |
[¹ãÖÝÏÊ»¨|http://www.flowerwish.com/city/23a.asp] |
[³¤É³ÏÊ»¨|http://www.flowerwish.com/city/24a.asp] |
[Î人ÏÊ»¨|http://www.flowerwish.com/city/25a.asp] |
[º¼ÖÝÏÊ»¨|http://www.flowerwish.com/city/26a.asp] |
[¼ÃÄÏÏÊ»¨|http://www.flowerwish.com/city/27a.asp] |
[¹ÜÀí×ÊÁÏ|http://www.blueattain.com] |
[ KVM|http://www.szsuun.com] |
[KVM|http://www.szsuun.com/htm/kvm/kvm1.htm] |
[triisopropanolamine|http://www.hongbaoli.com/eng/prod_tipa.htm] |
[µÆÊÎ|http://www.flowerwish.com/dengshi] |
[ÖÐɽµÆÊÎ|http://www.flowerwish.com/dengshi] |
[µÆ¾ß|http://www.flowerwish.com/dengshi ] |
[»·±£¼¼Êõ|http://www.flowerwish.com/huanbao] |
[Ë®´¦Àí|http://www.flowerwish.com/huanbao] |
[¼ÒÕþ|http://www.flowerwish.com/jiazheng] |
[±£Ä·|http://www.flowerwish.com/jiazheng] |
[Öӵ㹤|http://www.flowerwish.com/jiazheng] |
[¿ì²Í|http://www.flowerwish.com/kuaican] |
[ÉîÛÚ¿ì²Í|http://www.flowerwish.com/kuaican] |
[ÉîÛÚ¶©²Í|http://www.flowerwish.com/kuaican] |
[×â³µ|http://www.flowerwish.com/zuche] |
[ÉîÛÚ×â³µ|http://www.flowerwish.com/zuche] |
[Æû³µ×âÁÞ|http://www.flowerwish.com/zuche] |
[ÎïÒµ¹ÜÀí|http://www.tlup.com/wuye] |
[Çå½à|http://www.tlup.com/wuye] |
[±£°²|http://www.tlup.com/wuye] |
[¿ìµÝ|http://www.tlup.com/ups] |
[ KVM|http://kvmkvm.freewebpage.org] |
[ÆóÒµ¹ÜÀí|http://filesdown.freewebpage.org] |
[¹ÜÀíÅàѵ|http://filesdown.freewebpage.org] |
[µçÄÔÅä¼þ|http://hardware.freewebpage.org] |
[µçÄÔÓ²¼þ|http://hardware.freewebpage.org] |
[Ä£¾ß|http://moju.freewebpage.org] |
[Ä£¾ß¼Ó¹¤|http://moju.freewebpage.org] |
[×¢ËÜÄ£¾ß|http://moju.freewebpage.org] |
[ÁÔÍ·|http://humenhunter.freewebpage.org] |
[ pyrethrum|http://pyrethum.freewebpage.org ] |
[ÉãÏñ»ú|http://xiangji.freewebpage.org] |
[ÊýÂëÉãÏñ»ú|http://xiangji.freewebpage.org] |
[ÎÛË®´¦Àí|http://wushui.freewebpage.org] |
[À¬»ø´¦Àí|http://szwuye.freewebpage.org] |
[Èó»¬ÓÍ|http://runhuayou.freewebpage.org] |
[Îå½ð¹¤¾ß|http://chaiyou.freewebpage.org] |
[¿ª¹ØµçÔ´|http://kaiguan.freewebpage.org] |
[Äæ±äµçÔ´|http://kaiguan.freewebpage.org] |
[Ñõ»¯Ã¾|http://yanghuamei.freewebpage.org] |
[magnesia|http://magnesia.freewebpage.org] |
[magnesium oxide|http://magnesium.freewebpage.org] |
[electric magnesium oxide|http://magnesium.freewebpage.org] |
[mica tape|http://www.ktyu.com] |
[fiber glass yarn|http://www.ktyu.com] |
[ EDM|http://www.edmcocn.com] |
[ÆóÒµÃû¼|http://www.yourgoogle.com/company-card-index/companyindex.htm] |
[ÃŽû|http://www.flowerwish.com/menjin] |
[ÃŽûϵͳ|http://www.flowerwish.com/menjin] |
[¿¼ÇÚ|http://www.flowerwish.com/kaoqin] |
[¿¼ÇÚ»ú|http://www.flowerwish.com/kaoqin] |
[¿¼ÇÚϵͳ|http://www.flowerwish.com/kaoqin] |
[ÊÕ·Ñ»ú|http://www.flowerwish.com/shoufei] |
[Ïû·Ñ»ú|http://www.flowerwish.com/shoufei] |
[Í£³µ³¡ÏµÍ³|http://www.flowerwish.com/tingchechang] |
[ÖÇÄÜÍ£³µ³¡|http://www.flowerwish.com/tingchechang] |
[Í£³µ³¡|http://www.flowerwish.com/shoufei] |
[ºìõ¹å|http://www.flowerwish.com/others/xianhua/rose1.asp] |
[»Æõ¹å|http://www.flowerwish.com/others/xianhua/rose1.asp] |
[·Ûõ¹å|http://www.flowerwish.com/others/xianhua/rose1.asp] |
[°×õ¹å|http://www.flowerwish.com/others/xianhua/rose1.asp] |
[õ¹å|http://www.flowerwish.com/others/xianhua/rose2.asp] |
[°ÙºÏ|http://www.flowerwish.com/others/xianhua/baihe1.asp] |
[Óô½ðÏã|http://www.flowerwish.com/others/xianhua/yujinxiang1.asp] |
[°ÙºÏ|http://www.flowerwish.com/others/zhishi/baihecs.asp] |
[²¢µÙÁ«|http://www.flowerwish.com/others/zhishi/bingdiliancs.asp] |
[Ë®ÏÉ|http://www.flowerwish.com/others/zhishi/shuixiancs.asp] |
[ĵµ¤|http://www.flowerwish.com/others/zhishi/mudancs.asp] |
[ÜÔÀò»¨|http://www.flowerwish.com/others/zhishi/molihuacs.asp] |
[²å»¨|http://www.flowerwish.com/others/zhishi/chahua.asp] |
[»¨»Ü±£ÏÊ|http://www.flowerwish.com/others/zhishi/xianhuabaoxian.asp] |
[ÏÊ»¨±£ÏÊ|http://www.flowerwish.com/others/zhishi/xianhuabaoxian.asp] |
[ɽ²è»¨|http://www.flowerwish.com/others/zhishi/shanchahuacs.asp] |
[Ç黨|http://www.flowerwish.com/others/jieri/qinghua.asp] |
[¸¸Ç×½ÚËÍ»¨|http://www.flowerwish.com/others/jieri/fuqinjie.asp] |
[ĸÇ×½ÚËÍ»¨|http://www.flowerwish.com/others/jieri/muqinjie.asp] |
[½Ìʦ½ÚËÍ»¨|http://www.flowerwish.com/others/jieri/jiaoshijie.asp] |
[ÇéÈ˽ÚÀ´Àú|http://www.flowerwish.com/others/jieri/qingrenjie.asp] |
[ÇéÈ˽ÚÏÊ»¨|http://www.flowerwish.com/others/jieri/qingrenjie.asp] |
[Ê¥µ®½ÚËÍ»¨|http://www.flowerwish.com/others/jieri/shengdanjie.asp] |
[ÖйúÇéÈ˽Ú|http://www.flowerwish.com/others/jieri/qingrenjiecn.asp] |
[ÆßϦËÍ»¨|http://www.flowerwish.com/others/jieri/qingrenjiecn.asp] |
[ÈçºÎËÍ»¨|http://www.flowerwish.com/others/shijian/songhualiyi.asp] |
[ËÍ»¨µÄѧÎÊ|http://www.flowerwish.com/others/shijian/songhualiyi.asp] |
[ºÏ·ÊÏÊ»¨|http://www.flowerwish.com/city/28a.asp] |
[ÄϾ©ÏÊ»¨|http://www.flowerwish.com/city/29a.asp] |
[Î÷ÄþÏÊ»¨|http://www.flowerwish.com/city/30a.asp] |
[ÀÈøÏÊ»¨|http://www.flowerwish.com/city/31a.asp] |
[Ïã¸ÛÏÊ»¨|http://www.flowerwish.com/city/32.asp] |
[̨ÍåÏÊ»¨|http://www.flowerwish.com/city/33.asp] |