Questions tagged [blueprint]

Blueprint is a CSS framework that comes with an easy-to-use grid, sensible typography, useful plugins, and a stylesheet for printing.

Blueprint is a CSS framework designed to reduce development time and ensure cross-browser compatibility when working with Cascading Style Sheets (CSS).

It also serves as a foundation for many tools designed to make CSS development easier and more accessible to beginners.

Blueprint is released under a modified version of the MIT License, making it free software. It can be either used as is, or further adapted for use via a compression tool that is written in Ruby.

359 questions
2
votes
1 answer

Unreal Engine 4 multiplayer LAN - Second player not spawning

I am trying to set up a basic LAN two player game on UE4, I have been able to do the following: Host a game Search for games being hosted Join the hosted game (partly) I need help with the following: Spawning the second players character. Second…
Aaron
  • 121
  • 11
2
votes
4 answers

How to render a table in React by using Blueprint

I'm trying to render a very simple table with React and the Blueprint UI toolkit. The documentation relative to the Table component is quite simple, but it seems like my code doesn't work. import React from 'react'; import ReactDOM from…
Luke
  • 2,976
  • 6
  • 34
  • 44
2
votes
1 answer

Apache Karaf Blueprint Service is not injecting the objects

Karaf reference is not injecting the reference objects. Please see my setup and code. Version: apache-karaf-3.0.5 Part 1: Service class Service: package org.jrb.test; public interface MyService { String echo(String message); } package…
2
votes
1 answer

Blueprint maven plugin RuntimeException

I don't have any blueprint annotations in my code, but when I try to build my bundle using maven I get [ERROR] Failed to execute goal org.apache.aries.blueprint:blueprint-maven-plugin:1.1.0:blueprint-generate (default) on project…
Alexey Galanov
  • 421
  • 4
  • 21
2
votes
0 answers

Limiting content length of request with flask blueprints

I am running a Flask API with multiple blueprints registered to it, but I want to limit the content length with different sizes for different blueprints. I want to do something similar to "app.config["MAX_CONTENT_LENGTH"] = 1024" but for each…
rjr862
  • 51
  • 5
2
votes
1 answer

Camel restlet terminate after POST rather than return body

I am using blueprint to develop a camel restlet project to deploy on Fuse. It is a very simple HTTP POST with simple text body. I set the exchange pattern to Inonly. However, I was expecting the connection to be terminated after the actual post, but…
Souciance Eqdam Rashti
  • 3,143
  • 3
  • 15
  • 31
2
votes
1 answer

More [GET] request-response examples with different URI parameters

I have an URI: /lessons/{language}/{type} I would like to have more mock requests-responses with different parameters {language} and {type} in my blueprint. It seems to me that this is not possible for GET method. My idea is that: GET…
Jirik
  • 1,435
  • 11
  • 18
2
votes
1 answer

Call native blueprint actions from custom route

On different projects, I've been stucking on a very basic idea. Everytime, that's the same concern. I want to add a new record to an association, but grabbing the parent without it's primary key. For example, let's take a api/models/car.js model…
Cyril CHAPON
  • 3,556
  • 4
  • 22
  • 40
2
votes
1 answer

How do you get a new service bean implementation instance each time you call an OSGi Blueprint service?

I have a java class, call it "Job", that implements an interface that I export as a service using blueprint. Although the class is defined as a bean with scope="prototype" in the blueprint xml file, and the service referen ces that bean, I can see…
bmcdonald
  • 311
  • 6
  • 12
2
votes
2 answers

Camel JPA XML Configuration with EntityManagers

I'm trying to use JPA to save an Entity to a database using Camel. I have my persistence.xml as this:
Ben Harris
  • 1,734
  • 3
  • 15
  • 24
2
votes
1 answer

Aries blueprint and system properties

I'd like to get system properties (e.g. username) and pass them as properties to a bean in aries blueprint. Something to pass on a property placeholder default, like username or computername from system properties:
Luis Matos
  • 347
  • 3
  • 14
2
votes
2 answers

How do i reconnect when an OSGI service with an higher ranking comes availible?

I have two osgi service which implements the same interface with a different quality-of-service. One has a default ranking of 0 and the other one has a ranking of 3. I am searching for a blueprint configuration where the default service acts as a…
Guido Zockoll
  • 141
  • 3
  • 11
2
votes
2 answers

CQ5: links/paths in properties aren't updated on page rollout

When I create a live copy of a blueprint website, and rollout pages using standard rollout config, links in the pages are updated to reflect the live copy version. ex. /content/myblueprintwebsite/home.html -> /content/mylivecopywebsite/home.html But…
JS Bournival
  • 113
  • 2
  • 7
2
votes
1 answer

Unable to deploy a osgi bundle containing a camel route defined via aries blueprint in Websphere 8.5

I created an .eba file (enterprise bundle archive) that contains one osgi bundle having a apache camel route (Java DSL). The camel context definition is done via a blueprint xml file. When I tried to deploy the .eba file in Websphere Application…
2
votes
2 answers

assets/stylesheets vs public/stylesheets

Under the section "Cascading Style Sheets" in M. Hartl's Rails 3 tutorial he mentions copying the CSS blueprint directory into the 'public/stylesheets' folder. My stylesheets folder resides within the assets directory. Is it reasonable to copy the…