阅读更多

6顶
1踩

企业架构

翻译新闻 Apache Wicket 1.4.9 发布

2010-05-24 11:18 by 正式编辑 hantsy 评论(0) 有4122人浏览
Wicket 1.4.9 已经发布!

这是 1.4 系列的第 9 个维护版本,带了15个修复和改进。

Tag: http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.9/
Changelog:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561&styleName=Html&version=12314962
 (and pasted below)

Maven 中使用:

<dependency>
 <groupId>org.apache.wicket</groupId>
 <artifactId>wicket</artifactId>
 <version>1.4.9</version>
</dependency>
下载: http://www.apache.org/dyn/closer.cgi/wicket/1.4.9

值得注意的是,基于优先级考虑, WICKET-2846 会留下一个发布版本。

Best Regards,

--
Jeremy Thomerson
http://www.wickettraining.com

PS - Release Notes - Wicket - Version 1.4.9

** Bug
    * [WICKET-2741] - non-performant Collections.synchronizedMap() should be
replaced with ConcurrentMap
    * [WICKET-2843] - Palette is incompatible with ListMultipleChoice in its
use of the model
    * [WICKET-2853] - ListMultipleChoice/CheckBoxMultipleChoice do not
retain selected but disabled items
    * [WICKET-2856] - PackageStringResourceLoader.loadStringResource()
causes NullPointerException when used in a Class within the root package
(i.e. it has no package declaration)
    * [WICKET-2858] - WicketSessionFilter:
java.lang.IllegalArgumentException: Argument application can not be null
    * [WICKET-2859] - Wrong package names in Examples
    * [WICKET-2860] - Wrong name for swiss Application.properties
    * [WICKET-2861] - getConvertedInput() returns null and
selectedValues.addAll tries adding it

** Improvement
    * [WICKET-2790] - wicketTester.executeAjaxEvent method does not check if
form is multiPart
    * [WICKET-2840] - Remove final on
AbstractRequestTargetUrlCodingStrategy#getMountPath()
    * [WICKET-2846] - Store Application in InheritableThreadLocal instead of
ThreadLocal
    * [WICKET-2855] - Constructor of RedirectRequestTarget does not validate
URL
    * [WICKET-2869] - RangeValidator should use getMinimum and getMaximum
    * [WICKET-2870] - Fix hungarian translation for Wizard
    * [WICKET-2879] - delegate isVisible in PanelCachingTab

来自: Apache Wicket
6
1
评论 共 0 条 请登录后发表评论

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

  • is-color:检查字符串是否为CSS颜色值

    是彩色的 检查字符串是否为CSS颜色值 安装 $ npm install is-color 用法 var isColor = require ( 'is-color' ) isColor ( 'rgb(255, 0, 0)' ) // true isColor ( 'rgb(255)' ) // false isColor ( 'rgba(255, 0, 0, .8)' ) // true isColor ( 'rgba(255, 0, 0)' ) // false isColor ( 'hsl(123, 45%, 67%)' ) // true isColor ( 'hsl(123, 45%)' ) // false isColor ( 'hsla(123, 45%, 67%, 0.4)' ) // true isColor ( 'hsla(123, 45%, 67%)' ) // f

  • 判断字符串是否是16进制颜色工具类

    该方法接受一个字符串参数colorCode,表示需要校验的十六进制颜色值。方法内部使用正则表达式来匹配colorCode是否符合规则,如果。因此,该正则表达式可以匹配形如#000、#fff、#123456、#abcdef等格式的十六进制颜色值。[] 表示一个字符集,其中 A-Fa-f0-9 表示匹配任意一个十六进制字符。符合则返回true,否则返回false。{6} 表示前面的字符集匹配 6 次。{3} 表示前面的字符集匹配 3 次。^ 表示匹配字符串的开头。$ 表示匹配字符串的结尾。

  • JQ验证输入的颜色是否合法

    参考:https://www.jb51.net/article/112757.htm var val = '#000'; var pattern = /^#([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$/; console.log(pattern.test(val));

  • java判断颜色合法_判断颜色是否合法的正则表达式(详解)

    判断颜色是否合法的正则表达式(详解)"^#([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$";意思是:以#开头,后面是数字和a-f的字符(大写或小写),这个值是6位或3位。要匹配一个3为是为了符合css颜色的简写规则:"#abc"=="#aabbcc"注意:如果需要进行16位和10位的转换,比如将颜色值转成int存在数据库,如果是6位的颜色没问题,如果是3位的颜色就有问题了,因为当...

  • 在输入框实现十六进制颜色的校验规则

    在输入框实现十六进制颜色的校验规则。

  • JavaScript如何检查指定16进制颜色字符串是否有效?

    JavaScript如何检查指定16进制颜色字符串是否有效?

  • 另外一套中英文颜色代码

    颜色英文代码形像颜色HEX格式RGB格式 LightPink浅粉红#FFB6C1 255,182,193 Pink粉红#FFC0CB 255,192,203 Crimson猩红#DC143C 220,20,60 LavenderBlush脸红的淡紫色#FFF0F5 255,2

  • C#中将表示颜色的string转换成Color

    场景 在Winform中需要存储某控件的Color属性,存储的是string字符串, 然后再对控件进行赋值时需要将string转换成Color。 实现 myPane.YAxis.Color = System.Drawing.ColorTranslator.FromHtml(yList[0].Color); 转载于:https://www.cnblogs.com/b...

  • C#根据RGB判断颜色

    【代码】C#根据RGB判断颜色。

  • 分享颜色判断之RGB值转颜色字符串方法-RGB2Name by C#

    背景:RGB值(R,G,B)转颜色简单,直接用Color.FromArgb(R,G,B)即可实现,但是本文要讲的是,给定一个(R,G,B),要求不转换成Color也能直观的知道它是属于哪一种颜色(比如LED灯颜色自动判断是否OK)。RGB2Name就是这样一种实现的方法。 C#中已分类的颜色种类从AliceBlue(240,248,255)到YellowGreen(154,205,50)一共有1...

  • 将字符串转换成颜色值

    #define UIColorFromString(rgbValue) [UIColor colorWithRed:((int)strtoul([[rgbValue substringWithRange:NSMakeRange(2, 2)] UTF8String], 0, 16))/255.0 green:((int)strtoul([[rgbValue substringWithRange:NS...

  • 判断颜色是否合法的正则表达式

    "^#([0-9a-fA-F]{6}|[0-9a-fA-F]{3})$"; 意思是:以#开头,后面是数字和a-f的字符(大写或小写),这个值是6位或3位。要匹配一个3为是为了符合css颜色的简写规则: "#abc"=="#aabbcc"

  • 正则表达式验证输入是否颜色值

    1.正则:支持#FFFFFF格式或者RGB(255,255,255)格式 function CheckIsColor(bgVal) {   var type = "^#[0-9a-fA-F]{6}$";   var re = new RegExp(type);   if (bgVal.match(re) == null) {     type...

  • 【Java】将字符串(String)转换为颜色(Color)

    提供一种方法。

  • 基于springboot大学生就业信息管理系统源码数据库文档.zip

    基于springboot大学生就业信息管理系统源码数据库文档.zip

  • 基于java的驾校收支管理可视化平台的开题报告.docx

    基于java的驾校收支管理可视化平台的开题报告

  • 原木5秒数据20241120.7z

    时间序列 原木 间隔5秒钟 20241120

Global site tag (gtag.js) - Google Analytics