rtcpractise
This user hasn't shared any biographical information
Homepage: https://rtcpractise.wordpress.com
RM Queries (OSLC and REST)
Here are the results of “How to create OSLC Queries in DNG with the help of RM OSLC”. Available informations: Using OSLC capabilities in the Requirements Management application Access OSLC services from IBM Rational DOORS RRC Reportable REST API RRC/DNG REST Questions Example: How to find all Artefacts of an Artefact Type like “AuthReq”? https://jazzserver.ibm.com:9443/rm/views?oslc.query=true&projectURL=https://jazzserver.ibm.com:9443/rm/process/project-areas/_bhyT8F6sEeSwto_B6N2_1w&oslc.prefix=rm=<http://www.ibm.com/xmlns/rdm/rdf/>&oslc.select=*&oslc.where=rm:ofType=<https://jazzserver.ibm.com:9443/rm/types/_cdJI8V6sEeSwto_B6N2_1w> […]
Copy/Backup a SD Card
Posted in Cubie, Raspberry Pi on 02/01/2015
After some failures there is an easy way to copy a Raspberry Pi SDCard (with Homematic CCU running in a lxc container) from one SD Card /dev/sdb to another SC Card /dev/sdc: mount (to see the mounted filesystems an their names) umount /dev/sdb1 umount /dev/sdc1 sudo dd if=/dev/sdb of=/dev/sdc bs=4096 conv=notrunc,noerror
Dockerize Doors Next Generation
Posted in Uncategorized on 26/12/2014
After my surprise how easy it is to “dockerize” RTC I think to my self “RTC without DNG is like a fish without a bicycle”. Unfortunately there is no DNG ZIP File…you have to use the IBM Installation Manager and install DNG inside /opt (exactly /opt/IBM/JazzTeamserver) without JTS. If someone knows how to make a silent […]
How to install Docker on the Odroid XU3 or C1
Posted in ARM on 23/12/2014
After waiting for the release of the Cubieboard 4 (or 8) with an A80 CPU I gave up and purchased an Odroid XU3. It has USB3 and an Octacore CPU, but no SATA. With the help of these information, found at the Odroid Forum, I managed to run Docker. Just a hint…use Archlinux for ARM because […]
How to create a Docker Container with RTC 5.0.2
Posted in Uncategorized on 23/12/2014
Based on the great work of Chris McGee found at jazzhub I tried to put RTC 5.0.2 in a Docker Container. It worked and I used this example to get familiar with Docker. Before you start please keep in mind that Docker only runs on Linux, I use Ubuntu 14.04 LTS. Download the RTC ZIP […]
OSLC and REST APIs: “DNG and RTC Cheat sheets”
Inspired by Stephane Leroy Cheat Sheet about RQM Resources I will present my findings about RTC REST APIs. This is “work in progress” I will extend the Post as needed. Every time you request a resource don’t forget to include the following headers. Name Value OSLC-Core-Version 2.0 Accept application/xml Content-Type application/rdf+xml RTC REST API Create […]
Part 1: Doors Next Generation 5.0 with Open Social Gadget
Posted in CLM Web Extension, DNG, Javascript, Open Social Gadgets, rtc on 30/11/2014
The last days I make some tests with Open Social Gadgets inside a DNG UI (webinterface) and found the DNG Open Socail Gadgets very useful. Open Social Gadget are not limited to DNG…also development outside IBM takes place at: Google Gadgets API Open Social RDF and Open Social Open Social support in Jazz Web With the […]
OSLC with Javascript…inside the CLM Web
Posted in CLM Web Extension, D3, Javascript on 27/04/2014
Javascript surprise my every day…the last week (inspired by the OSLC Post from Stephane) I played around with OSLC together with Javascript. I expected obstacles and thought that OSLC is dedicated to Java. Oh boy, I was wrong! Compare the “getCatalog” function below with the Java OSCL examples available at htttp://jazz.net… Attached is an example […]
RELM SPARQL…fun with MotionChart
Posted in CLM Web Extension, Javascript, Sparql on 16/04/2014
If you ever ask yourself “what is so special with Javascript and HTML5?” …let me show you the results of a SPARQL Query with a MotionChart. Details at my last Post or at http://dev.data2000.no/sgvizler/wiki/Sgvizler/Chart/GoogleVisualizationMotionChart. SPARQL is not only “mummified” tables…you can use the query results to create meaningful charts. As I mentioned before “Transform your data […]
Investigate RELM with SPARQL and SGVizler
Posted in CLM Web Extension, Sparql on 13/04/2014
Because the place available for a Open Social Widget is limited we will elaborate today a basic website with SPARQL Queries and the results are displayed as Tables, Maps, Tree, Line, Charts, Graphs, List …what ever you want. The focus is on learning SPARQL with RELM/LQE. The real beauty is the interactivity you can have […]