1
I Use This!
Activity Not Available

News

Analyzed about 1 year ago. based on code collected about 1 year ago.
Posted almost 9 years ago by Ondrej Zizka
Windup roadmap leads the 3.0 milestone to be a web application. After some consideration, we chose Angular 2 (the other considered option was Wicket 7) and, of course, JBoss EAP 7 as a backend platform.   So far, the application is quite small. And since JBoss EAP Quickstarts are missing an Angular 2 quickstart, you can use it as such
Posted almost 9 years ago by Ondrej Zizka
There's a new video codec HEVC (High Eficiency Video Codec), and certain media from "certain sources" come in that format. To play that, you need the latest SW or firmware. If you play these videos in VLC, then you're going to need VLC 2.2.x. Here's ... [More] how to put it to Ubuntu 14.04: https://launchpad.net/~mc3man/+archive/ubuntu/trusty-media/   In short: sudo add-apt-repository ppa:mc3man/trusty-media sudo apt-get update sudo apt-get dist-upgrade   Pay the special attention to the note: Please note that if using this ppa I would *not* try upgrading to 14.10/15.04, ect. Do a fresh install instead. The intent here is just for users wishing to stay on 14.04* If upgrading anyway use ppa-purge first - sudo ppa-purge ppa:mc3man/trusty-media Then you need the codec itself: sudo apt-add-repository ppa:strukturag/libde265 sudo apt-get update sudo apt-get install vlc-plugin-libde265   This worked for me. Enjoy. And don't forget to purge and remove these repos before upgrading to new Ubuntu version! [Less]
Posted almost 9 years ago by Ondrej Zizka /people/ozizka [email protected]
Posted almost 9 years ago by Ondrej Zizka
I've set up Arquillian with Selenium 2 testing. It's not trivial as Arquillian is quite modularized and you need to pick the right bits and right versions, and there are not many places which would guide you through that. This is what I used to get ... [More] oriented: Testing JSF Applications with Arquillian and Selenium - YouTube   After setting things up, I got into WebDriverException: Permission denied to access property '...'. That turned out to be a bug in Selenium 2.52 which is discussed here: Webdriver Firefox Exception : org.openqa.selenium.WebDriverException: Permission denied to access property '__qosId' · I…   That's where I got before Jess Sightler came with his master skills and figured that out sooner than me, and used PhantomJS instead of FirefoxDriver. [Less]
Posted almost 9 years ago by Ondrej Zizka /people/ozizka [email protected]
Posted almost 9 years ago by Ondrej Zizka
##  E.g. /home/ondra/sw/AS/jboss-eap-7.0 EAP_DIR=$1 if [ "" == "$1" ] ; then     echo "Where is the EAP to which the MySQL JDBC module should be installed?"     read EAP_DIR; fi MODULES_DIR=$EAP_DIR/modules/system/layers/base if [ ! -d ... [More] $MODULES_DIR ] ; then     echo "Module's dir not found in EAP: " + $MODULES_DIR;     return -1; fi JDBC_DIR=$MODULES_DIR/mysqljdbc wget -q https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.zip unzip mysql-connector-java-5.1.38.zip rm mysql-connector-java-5.1.38.zip mkdir -p $JDBC_DIR/main mv mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar $JDBC_DIR/main rm -rf mysql-connector-java-5.1.38/ cat < $JDBC_DIR/main/module.xml         EOF [Less]
Posted almost 9 years ago by Ondrej Zizka /people/ozizka [email protected]
Posted almost 9 years ago by Ondrej Zizka /people/ozizka [email protected]
Posted almost 9 years ago by Ondrej Zizka
Long, long time ago, in a remote kingdom of North Carolina, the Wicket quickstart was removed from JBoss EAP quickstarts. The reason was the wicket-cdi integration was using seam-conversation to control the scope. The Wicket version used was 1.5.5 ... [More] at that time. https://bugzilla.redhat.com/show_bug.cgi?id=1103713   Now, with Wicket 7.x and wicket-cdi-1.1, this problem has gone, and I hope the Wicket quickstart will make it back. https://github.com/jboss-developer/jboss-eap-quickstarts/pull/1789   Enjoy  [Less]
Posted almost 9 years ago by Ondrej Zizka /people/ozizka [email protected]