[ANNOUNCE] MyFaces 1.0.6 beta released

New version 1.0.6 beta of free open source JSF implementation was just released.
Have a look at http://www.myfaces.org
This is an overdue maintenance release which also offers some often and long requested issues:
* Library split - there are now 3 myfaces libs:
- myfaces-jsf-api.jar = the javax.faces.* classes for compile time
- myfaces-components.jar = the MyFaces extended and custom components for use with any JSR-127 implementation
- myfaces.jar = the MyFaces implementation (including extended and custom components)
* Better Tiles support with our JspTilesViewHandler
* Switch from LGPL to Apache 2.0 license
Changes in Release 1.0.6 beta:
* switch to apache license
* new JspTilesViewHandler for flawless Tiles support
* RFE #975649 Enhance HtmlTabbedPaneRenderer (rendered attribute for TabbedPane component)
* RFE #990814 dataList component ignores styleClass attribute
* bug #1004867 h:message has duplicate attributes
* bug #1004896 h:dataTable id attribute not rendered
* bug #995085 graphicImage ignores value attribute
* bug #992668 selectOneMenu doesn't restore the bean value if it's a primitive
* bug #992628 StateManager.SerializedView is not static
* bug #992629 FacesContext.getRenderKit() unimplemented
* bug #992452 HtmlTree doesn't properly restore state
* bug #991740 HtmlTreeRender icon URL conversion
* bug #991234 command links not working with javascript disabled
* bug #990395 myfaces.jar has bad taglib descriptor
* bug #990302 Navigation-Rule redirect
* bug #985274 f:view locale does not always work
* bug #978654 Input hidden value of null being converted to zero
* bug #979038 jsCookMenu component does not create dummyForm
* bug #979039 default-values for ConvertNumberTag and ConvertDateTimeTag
* changed build.xml - now myfaces-components are shipped via bin-distribution
* bug #985217 decorator-factory not supported
* splitting jar-files (myfaces.jar, myfaces-jsf-api.jar, myfaces-components.jar)
* new EXPERIMENTAL feature to detect JavaScript support of a client browser
Regards,
Manfred

great!!

Similar Messages

  • [ANNOUNCE] MyFaces 1.0.5 beta released

    This is a maintenance release.
    http://www.myfaces.org
    Improvements in Release 1.0.5 beta:
    - New faces configurator (complete implementation, including decorator pattern for delegation)
    - rssticker (Newsfeed component)
    - dataScroller (at long last, the ultimative sroller component for UIData!)
    - jscookMenu (Renders a Javascript menu based on the excellent JSCookMenu by Heng Yuan - have a look at it!)
    - new validators (Regular Expressions, Equal)
    - of course many bugs got fixed
    Changes in Release 1.0.5 beta:
    * new faces configurator
    * new validator (Regular Expressions)
    * new validator (Equal)
    * new component (rssticker)
    * new component (dataScroller)
    * new component (jscookMenu)
    * modified renderers to comply with version 1.1 of the spec
    * modified dataList to support active components (comandLink, ...)
    * bug #955111 RestoreState of outputText with mixed ValueBinding attribute
    * bug #962084 rowClasses in GridRenderer
    * bug #967991 Action always called twice
    * bug #952385 decorator only for Viewhandler available
    * bug #957938 map-entries in faces-config.xml
    * bug #970747 Incorrect rendering of tag
    * bug #972165 and disabled attribute
    Regards,
    Manfred

    As explained by Marc Fluery of JBoss, there are essentially three types of
    open-source:
    1) Corporations that open their source for market share, such as IBM's Eclipse, that
    then uses it to market WebSphere Studio
    2) Hobbyist who develop an open-source project for free. The hobbyist may be a true
    professional developer, but he is dedicated to his project as a hobby. In this situation,
    donations are substantial enough to pay a dedicated developer.
    3) Professional Open-Source in which developer is paid to maintain and develop an
    open-source project in the hopes of making money with it through consulting and
    professional services.
    My question to the MyFaces team, which type of open-source are you?
    As a corporate developer, I would hope it is Professional Open-Source, since that
    model may have more support for the product I am using.
    -Me

  • [ANNOUNCE] MyFaces 1.0.7 beta released

    New version 1.0.7 beta of free open source JSF implementation was just released.
    Have a look at http://www.myfaces.org
    This is a maintenance release and at the same this is our LAST release on sourceforge.net before we move our project infrastructure to the Apache site.
    Some highlights:
    * New custom components (Panel stack, Stylesheet)
    * Autoscroll feature (Prevent browsers from jumping to top of page on every click)
    * Japanese translation
    * Improved Tiles support
    * And of course: Many, many bug fixes and improvements
    Have fun,
    Manfred

    great :)
    thanks a lot for your excellent work... I'm downloading it right away !

  • [ANNOUNCE] MyFaces 1.0.0 alpha released

    This is the first MyFaces release that comes with our own JSF-API (the javax.faces classes).
    So, the jsf-api.jar from the reference implementation is no longer needed!
    In addition to that, the samples from the Sun reference implementation run with MyFaces now!
    Changes in Release 1.0.0 alpha:
    * MyFaces has it's own JSF-API Implementation now!
    * Sun's JSF-RI samples (cardemo, guessNumber) now run with MyFaces!
    * all core tags implemented now
    * new Calendar component (see examples webapp)
    * Bugfixes
    Regards,
    Manfred
    P.S.
    Dedicated to Admam Winer. Yes, you were right about the API classes! ;-)

    why is the encoding of file name is error if I set the JSP encoding to UTF-8?
    the following code can correct the error:
    String s = file.getName();
    byte[] b = s.getBytes("iso-8859-1");
    s = new String(b, "utf-8");
    response.getWriter().println(s);
    the whole code is like this:
    <%@ page import="java.util.Random,java.io.File"%>
    <%@ page session="false" contentType="text/html; charset=utf-8"
    %><%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"
    %><%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"
    %><%@ taglib uri="http://myfaces.sourceforge.net/tld/myfaces_ext_0_9.tld" prefix="x"
    %><html>
    <%@include file="inc/head.inc" %>
    <!--
    * MyFaces - the free JSF implementation
    * Copyright (C) 2003, 2004 The MyFaces Team (http://myfaces.sourceforge.net)
    * This library is free software; you can redistribute it and/or
    * modify it under the terms of the GNU Lesser General Public
    * License as published by the Free Software Foundation; either
    * version 2.1 of the License, or (at your option) any later version.
    * This library is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    * Lesser General Public License for more details.
    * You should have received a copy of the GNU Lesser General Public
    * License along with this library; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    //-->
    <body>
    <f:view>
    <f:loadBundle basename="net.sourceforge.myfaces.examples.resource.example_messages" var="example_messages"/>
    <x:panelLayout id="page" layout="#{globalOptions.pageLayout}"
    styleClass="pageLayout"
    headerClass="pageHeader"
    navigationClass="pageNavigation"
    bodyClass="pageBody"
    footerClass="pageFooter" >
    <%@include file="inc/page_header.jsp" %>
    <f:facet name="navigation">
    <f:subview id="menu" >
    <jsp:include page="inc/navigation.jsp" />
    </f:subview>
    </f:facet>
    <f:facet name="body">
    <h:panelGroup id="body">
    <h:messages id="messageList" showSummary="true" showDetail="true" />
    <f:verbatim>
    <h4>File upload</h4>
    <table border="1"><tr><td>
    </f:verbatim>
    <h:form id="form1" name="form1" enctype="multipart/form-data" >
    <h:outputText value="Gimme an image:"/>
    <x:inputFileUpload id="fileupload"
    accept="image/*"
    value="#{fileUploadForm.upFile}"
    styleClass="fileUploadInput" />
    <h:commandButton value="load it up" action="#{fileUploadForm.upload}" />
    </h:form>
    <f:verbatim>
    </td></tr></table>
    <%
    if (application.getAttribute("fileupload_file") != null)
    File file = (File)application.getAttribute("fileupload_file");
    if (file != null)
    String s = file.getName();
    byte[] b = s.getBytes("iso-8859-1");
    s = new String(b, "utf-8");
    response.getWriter().println(s);
    // response.getWriter().println("&#20013;&#25991;");
    %>
    <!--
    <p>The image you loaded up:</p>
    <img src="fileupload_showimg.jsp?dummy=<%=Math.random()%>">
    -->
    <%
    %>
    </f:verbatim>
    </h:panelGroup>
    </f:facet>
    <%@include file="inc/page_footer.jsp" %>
    </x:panelLayout>
    </f:view>
    </body>
    </html>

  • [ANNOUNCE] MyFaces 1.0.1 alpha released

    http://myfaces.sourceforge.net
    Many bugs fixed, new components, new examples.
    Changes in Release 1.0.1 alpha
    * new DataList component (dynamical List based on UIData - see examples webapp)
    * new (speadsheet like) editable table example (see master/detail example in examples webapp)
    * x-checked various Renderers for Specs (tlddoc) compliance
    * serious bug in UIData fixed
    * server state saving bug fixed
    * f:convertNumber threw NPE - fixed
    * HiddenRenderer fixed
    * x:panelTabbedPane now supports dynamic jsp includes and f:subview
    * many small bugfixes
    Regards,
    Manfred Geiler

    Hi Manfred,
    Basically there is a very very popular library called displaytag on sourceforge:
    http://displaytag.sourceforge.net
    What it provides is if a table has 70 rows, it provides the ability to page through those rows by providing hyperlinks below the table. As in Google.
    In addition, many times, the user is presented with a large table say 100 rows and he wants to look for companies begining with 'N'
    In this case hiperlinks contain: "A", "B"...."Z"
    If MyFaces table tag provides these capabilities, it would be a life saver.
    Display tag also allows you to export the table as Excel spreadsheet write within the browser. Look at the demo. If such features were there in a JSF table components I am sure every one would be using that implementation.
    Please don't reinvent the wheel. Talk to the guy who has build displaytag (Matt Reible). I am sure the code and licencing terms would be favourable to allow making use of it.
    Look at the demo:
    http://www.displaytag.org/example-pse.jsp
    other demos are on:
    http://www.displaytag.org/index.jsp
    Hope you like it.
    Regards,
    Vinay

  • [ANNOUNCE] Beta Release availbe for download

    I'm very happy to announce that the JavaServer Faces 1.0 Beta Release is available for download at <http://java.sun.com/j2ee/javaserverfaces/download.html>.
    Please share your feedback here!
    Thanks,
    Ed
    JSF Staff

    I wonder whether the companies about to publish books
    on JSF were aware about
    these changes, and whether they will be postponing the
    release of their books in order
    to reflect the changes to the Specification, in case
    their work does not reflect the latest specs.
    Some of the authors are on the EG, so they will have known about the
    changes. Others are not, so they will have been as much in the dark as
    you have been until the Beta was released. What was always clear, though,
    is that there would be lots of major and minor changes and I'm sure that
    we'll be seeing more of the same (but hopefully not so major) before FCS.
    Right now the just recently published book from
    McGraw-Hill is outdated due to these changes?That could always have been foreseen. There was no secret about the fact
    that EA4 was nowhere near the final word.
    Wiley and Apress are about to release their books. I
    would like to know if the code examples
    will reflect the changes in the latest specs.
    Book publication dates that you see on Amazon and elsewhere are often based on their authors' best
    guesses at the time that they submit a proposal and are sometimes updated as the project
    progresses. In the case of JSF, I think you'll find that most of the book dates that you see now are
    probably quite fictional (no pun intended). As the author of the APress! book, I can assure you that
    its examples will be up to the latest spec and, in fact, to the FCS spec, whenever that happens and
    I would expect that to be true of all the books that are not yet published.
    Kim Topley

  • UMS Portlet (Beta Release) available for download

    What are we announcing?
    The beta release of the Unified Messaging Service (UMS) portlet is available for download on Portal Studio from Integration Solutions page. The UMS Portlet makes available to Oracle9iAS Portal users the abilities to send SMS messages, Emails, Voice notifications, Fax and WAP Push messages on a single web interface. These messaging capabilities are provided by the Oracle Notification Service (ONS, formerly the Push Service). By hosting this portlet, you automatically get a free trial account with the ONS service. Please send your comments, suggestions, and evaluations of this beta release on this discussion forum.
    How can I use it?
    The Oracle Notification Service (formerly known as Push Service) is an Oracle online service that allows Oracle9i Application Server Wireless and Oracle9iAS Portal users to send SMS messages, Emails, Voice notifications, Fax and WAP Push messages in an easy to access manner without installing any new software. The Oracle Notification Service is hosted at Oracle's data centers and is managed and maintained 24x7 by highly skilled staff. Users connect to it as a Web Service using an XML SOAP API over HTTP/HTTPS. The UMS portlet abstracts this communication and multiprotocol, multidevice complexities for the Oracle9iAS Portal users.
    An Oracle9iAS Portal user can sign up for this service and pay per usage.The user of this portlet would need to register and get an account with Oracle9iAS Wireless Service. However, to encourage the use of this service, a trial account of 500 units per IP address has been permitted. For purchasing more units and know more about the pricing mechanism, you can send an e-mail to [email protected]
    More information on Oracle9iAS Wireless and Oracle Notification Service is available at http://otn.oracle.com/products/iaswe/content.html
    Currently, this portlet allows sending SMS, Voice Mails, E-mails, Fax and WAP Push Messages. Future extensions will include support for Multimedia Messaging Service (MMS).
    Using this portlet, a portal user can send the same message as an SMS to people who have mobile phones, as an Email to those who would be at office, as a Voice mail to an employee who is at home and doesn't have access to Emails or mobile phones. For example, this portlet can be used in a hospital web site where the staff can send instant requests to the doctors or can be used in a financial portal which informs users about the changes in his/her stock prices on the device they wish.
    How do I get it?
    This portlet is available through the Portal Integration Solutions page (http://portalstudio.oracle.com/servlet/page?_pageid=3189&_dad=ops&_schema=OPSTUDIO) on Portal Studio. You can download this portlet from the Download Integration Portlets page (http://portalstudio.oracle.com/servlet/page?_pageid=3191&_dad=ops&_schema=OPSTUDIO). You would be asked to enter your OTN user details to download the portlet.
    Thanks & Regards,
    Abhinav

    Hi,
    I few minor issues with the SMS Portlet have been resolved & the updated version is available for download from the same location.
    If you have any queries, please post them at this forum. Your feedback on this portlet would be greatly appreciated.
    Thanks & Regards,
    Abhinav

  • ANNOUNCE: BEA WLS 6.0 Beta available

    ANNOUNCE: BEA WLS 6.0 Beta available
    We are proud to announce that the BEA WebLogic Server version 6.0 public
    beta has begun. You can download the Beta at http://commerce.BEA.com. The
    Beta is free and open to anyone.
    More information can be found at the above URL.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc

    Hi,
              why wasn't that email sent to weblogic.announce??
              I'm starting to believe weblogic.annouce is truly useless since neither
              service packs nor betas are announced there. What is the official way of
              monitoring releases of SP,etc. from bea?
              Mathieu
              Michael Girdley wrote:
              >
              > ANNOUNCE: BEA WLS 6.0 Beta available
              >
              > We are proud to announce that the BEA WebLogic Server version 6.0 public
              > beta has begun. You can download the Beta at http://commerce.BEA.com. The
              > Beta is free and open to anyone.
              >
              > More information can be found at the above URL.
              >
              > Thanks,
              > Michael
              >
              > --
              > ----
              > Michael Girdley
              > BEA Systems Inc
              

  • Beep Beta Release...

    I am glad to announce that my group has just released the beta version of our JME Jabber Library named "Beep Framework"... u can find the project here
    http://sourceforge.net/projects/beep/ and download it here http://sourceforge.net/project/showfiles.php?group_id=183541
    we r more than happy to receive ur feedback :D

    Firefox officially don't have 64-bit version, but 32bit support 64bit also
    Download beta firefox
    *http://www.mozilla.org/en-US/firefox/all-beta.html
    64bit version of firefox
    *http://www.waterfoxproject.org/

  • MSI BIG BANG MARSHAL -- UEFI-(Click-BIOS)-BETA Releases [MS-7670]

    I will upload the latest available BETA Release for the BIG BANG MARSHAL mainboard: E7670IMS.113 [v1.1b3]
    Changelog:
    E7670IMS.100 ---> E7670IMS.113
    - Fixed the system will hang in blank screen when press F11 to select UEFI DVD installing 64Bit OS issue.
    - Fix DRAM Timing not match SPD value.
    - Add the new BOM support.
    - Improve mouse compatibility in bios setup menu.
    - Change the Package C State limit item default value.
    - Fix the PC Health Status show N/A issue when use the User PassWord entering the Setup.
    - Fix can not entering dos mode issue when onboard lan controller set disabled.
    - Fix plug 4 dimm G-Skill F3-12800CL7D boot fail when XMP enabled.
    - Fix mouse click will hang 0Dh in some page when entering setup with user password.
    Flash/use this release at your own risk!
    For BIOS Update: >>Use the MSI HQ Forum USB flasher<<

    Hey guys real quick. So after updating to the new 7670IMS>310 bios so that I may use my GTX780s, I reinstalled with windows 8. Everything was fine until I was on teamviewer just last nite and upon switcing sides my bios got corrupted. How do I know you ask? Upon getting back into windows my LANS did not work so I had not internet connection. I tried uninstalling it from Device Manager and deleting it. After a few clrmos. I thought I would switch over to the other bios and see if the LAN works and it does because of the status lights because now it lights up. So I switch back to main bios and LAN works but it would not post whatsoever and just cycles through post finally ending with a " DE ". Not sure what the new LED DEBUG codes are but if someone could post it would be nice to be able to refer to it.
    Anyways on win 8, no matter what it will not let me into windows And when it looks like it will...gives me "your pc ran into problems and we are collecting data and we'll restart after" message. After a few of these wonderful messages, I decided I was going to flash my bios again. It did look like I was sucessful until after restart it did the same thing. Going through post I saw 19,15 then shuts off. Does this and ends with "DE" pc still on but nothing. No windows.
    I got lucky a few times and was able to get into my bios and decided I was going back to Win 7 64......I put the good ole XFX6990 back in and got windows 7 to reinstall and continue to flash my bios to an older one. I used your method before and it work> from 3.0 back to 1.5 then from 1.5 back to 1.2 for OC purposes. So i tried that method but it looked like it just reflash it with 3.1, odd.
    So after a few restarts everything seems fine, no cycles just normal. When I reboot normal process no double boots or cycles this time so I thought hey, that fixed my corrupted bios somehow. I thought I gotten lucky.... So I switch out the good old 6990 and in with my 780s. Reinstalled win 7 and upon completion of windows update. Again with the cycles of 19,15 turns off does this again over and over like 5 or 6 times and ends with "DE"
    And this is where I'm at atm. I remember when I DL'd the flasher and bios. I only saw 2 files which was " VALVE CHECK AND E7670IMS.310".
    When I tried to do it again with the same method as the first I have "
    #BIOS
    #BK_6.Z7
    #EFIFLASH
    #MSIHQ(icon)
    #MSIHQ_INFO
    #MT420"
    This time it does not go through the same when flashing, just tells me bios update complete. I've done this a million times and all have been successful.
    Basically I'm still on 3.1 bios but I 'm curious as what other methods do you suggest I try now? I have left everything alone after reinstalling windows and updates. Everything seems okay, reboots fine no cycles and still get the random hit or miss with 15,19 turns off cycles and ends with "DE". Would like to get a resolution if possible. Thank you and I know I said real quick right, but really. Thanks for any help.
    I'm going nuts!!

  • Flash Player Beta Releases and Prod Releases

    Current Flash player version is 15.0.0.188. Was there any beta release for this version?

    Sorry for the delay, I've been out of the office.
    Yes, there was a beta released before the .188 update.
    9/24/2014 - Beta - Flash Player 15.0.0.183
    Thanks,
    Chris

  • Download links for beta releases and release notes

    All
    Where is the download links for all the beta-release packages and their release notes?

    Thanks. So loading B19 the CSS on TableHeaders is showing White Bold for me. Using the following CSS before
    .table-view .column-header .label {
         -fx-text-fill: #f1f3f2;
         -fx-font: 11pt "Century Gothic";
    /** this is for the the last cell in the column-header so should essentially be the same styling as column-header* */
    .table-view .column-header-background {
         -fx-background-color: linear (0px,0px) to (0px,8px) stops (100%, rgb(127,127,127)) (10%, rgb(89,89,89));
         -fx-font: 10pt "Century Gothic";
         -fx-text-fill: #f1f3f2;
         -fx-font-weight: bold;
         -fx-border-color: #F1F1F1;
         -fx-border-weight: 1px;
    Is there a CSS change List?

  • Is a Beta release secure enough for e-commerce ?

    I know beta versions are generally''' not''' recommended as everyday browsers,but now that current Firefox betas are conceptually more like release candidates,are they stable and secure enough to be used for e-commerce (ebay and the likes) just like a normal release version? If nothing,they should receive security fixes before the release,whilst critical bugs should have already been dealt with in earlier stages,is that understanding correct?
    edit:yes this was posted with a nightly but the question was really aimed at current beta releases.

    Firefox 8.0 beta becomes a release version today 11/08 at 8am PST. Security is no issue with any version, as all supported versions are going to get an update today.

  • ANN: XDK 9.2.0.5 production and 10.1.0.0.0(patch1) beta release on OTN

    XDK 10.1.0.0.0 Beta(patch 1) and 9.2.0.5.0 production are available
    online at:
    http://otn.oracle.com/tech/xml
    In the 9.2.0.5 release, various XDK C memory leak bugs
    and XDK C XML Schema conformance bugs are fixed.
    In the 10.1.0.0.0(patch1) beta release, the enhancements are:
    * JAXB Class Generator for Java
    * Updated "Getting Started with XDK" Documentation
    * New C XPATH sample in $XDK_HOME/xdk/demo/c/parser/

    Can I ask you why the documentation doesn't mention any BUG fixes?
    Don't tell me that you haven't find any bugs?
    The XSLPROCESSOR package kills your session after you use it..

  • New Soundbooth Public Beta released!

    Hi Everyone,
    I wanted to invite everyone to download and check out the just-released public beta for the next edition of Soundbooth! You can read more about it and download it from http://labs.adobe.com/technologies/soundboothcs4/
    Some of the new features that may interest everyone is multi-track support, our new Adobe Sound Document (ASND) format, WDM driver support (via ASIO wrapper,) volume keyframing, XMP metadata support, Speech transcription, and much more.
    Install and download for a 2-day trial, or use the link on the site above to enter ANY valid CS3 serial number to receive a personal serial number for this beta release and extend the trial.
    If you have any questions or issues, please be sure to post them in the Labs forum. I look forward to hearing your opinions on the new tools.
    Thanks,
    Durin

    Hi Laine,
    There is a link to the Soundbooth Labs Forum on the main Soundbooth labs page at http://labs.adobe.com/technologies/soundboothcs4/
    As for fades, the quick-fade handles that were available in CS3 are still available only at the beginning and end of the clips, however we have implemented volume keyframing which will allow you to fade in and out anywhere in your files.
    Durin

Maybe you are looking for

  • Reconcilation account data

    HI all, In my system when i am processing a billing document it retrives the reconcilation account no of Business partner from R/3. But i could not able to see how records are come to CRM. I have checked with BDOC which sends the record to R/3.It doe

  • Deserialization failed: Value was either too large or too small for an Int32.

    hi all I'm getting below error when I click on Properties of Datasource in Sql server analysis server; kindly help me.

  • Windows service pack three conflict with indesign

    I have hundreds, if not thousands, of Pagemaker 7 client files. My Windows machine was recently upgraded to Service Pack 3 and it will not let me open Pagemaker files into Indesign CS3 and convert. jApparently, there was no problem with Service Pack

  • Runtime environment

    Did anyone happen to meet this situation? I have no idea about it. Pls give me some hint to solve it. Thanks C:\j2sdk1.4.0\JNDI\getStarted\examples\src>java Getattr Registry key 'Software\JavaSoft\Java Runtime Environment\CurentVersion' has value '1.

  • Can I print an address on an envelope directly from a Pages doc (like Word), if so, how?

    I have recently moved from a PC (using MS Office) to an iMac.  I have just drafted my first business letter, and want to print the recipient's address on an envelope using the letter as the source of the address.  In Word, that's simple and doesn't r