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
0
votes
1 answer

Simple Camel run goal with blueprint gives exception

I have a simple maven project created based on camel blueprint archetype. When I do "mvn camel:run" I see this error Caused by: java.lang.RuntimeException: Gave up waiting for service (objectClass=org.apache.camel.CamelContext) at…
treefrog
  • 1,027
  • 1
  • 15
  • 30
0
votes
1 answer

UE4 - Removing Text When Exiting TriggerBox

Having some trouble getting text to disappear when I exit the trigger box from reading the note. I can easily display the text I want but I am unsure how I can make it disappear when I leave the triggerbox. Blueprint included, any help is…
0
votes
1 answer

Karaf v4.0.8 : Multiple Blueprints cannot load configuration from same persistent-id

Update: It took a little time to realize for some reason but I see that configuration files are bundle PID specific and by trying to load the same cfg file in blueprint within two different bundles, I was creating a race condition. Make sure you use…
saycat
  • 11
  • 3
0
votes
1 answer

how to configure camel route for using transactions with database

I need to handle transactions with OSGI applications under Karaf(I am using ServiceMix 7.0). All logic is under camel route. First, I receive Web Requests and process it in route, make transformations and then I need to start transaction : call…
Maciavelli
  • 101
  • 1
  • 14
0
votes
1 answer

Oracle AQ JMS with XA transaction throwing NullPointException while fetching connection

I am trying to use Oracle AQ supporting XA transaction since i have other datasource like Active MQ and DB involved in the transaction. When i tried to post to oracle aq queue1. it is failing with a NullPointerException while getting the…
Rajesh
  • 1
  • 1
0
votes
1 answer

URI is not registered. jasypt in blueprint.xml

I used jasypt for encryption in blueprint.xml of my OSGI application which'll be deployed in Jboss fuse server, xmlns:enc="http://karaf.apache.org/xmlns/jasypt/v1.0.0 I'm seeing an error message in the xml file that "URI is not registered". I'm…
Arun V
  • 63
  • 1
  • 8
0
votes
2 answers

Flask Blueprints sharing

I want to make an API with Flask and it also needs to have an admin panel. I guess that Blueprints are the way to go, but I don't want to make models twice. My structure is going to be this: - app - api - admin - models So my question is:…
Dirk
  • 3,095
  • 4
  • 19
  • 37
0
votes
1 answer

How to query/search/retrieve an Edge with a pair of Vertices in OrientDB using Java API?

I'm developing a web application using OrientDB and the Java API. I have discovered that it is creating (ie. saving) duplicate Edges with the same Vertices. How do I query whether an Edge exist (for the same pair of Vertices). (And if they do not…
ikevin8me
  • 4,253
  • 5
  • 44
  • 84
0
votes
1 answer

User.findOne acting as User.Update in SailsJs

I'm requesting the blueprint route User.findOne in SailsJs on the basis of user Id but it itself is calling User.update. Also, I just experienced a new thing that on sending multiple parameters to findOne, it updates the record on the basis of any…
Adil
  • 21,278
  • 7
  • 27
  • 54
0
votes
1 answer

Kaha DB message store to persist Files in camel

This is my Camel Route: In case of any failure in this route I want to persistently store files in Kaha DB so that files won't be lost. But am not aware of blueprint.xml…
0
votes
1 answer

Define a base route when using flask blueprints

I am currently using blueprints in my flask application. However, I would like to define a simple 'base' route ( '/' ) e.g. myapp.com/ How can I do this?
user1686342
  • 1,265
  • 1
  • 18
  • 24
0
votes
1 answer

Flask blueprint cannot read sqlite3 DATABASES from config file

I would like Python Flask to read from configuration file the location of the sqlite3 database name without explicitly writing database name. Templates used are: http://flask.pocoo.org/docs/0.11/patterns/sqlite3/ and …
user1356863
  • 143
  • 3
  • 12
0
votes
2 answers

Unreal 4 - How to pass a Int Var in Actor to HUD?

Im new to Unreal, im trying to make a 2d Click game, for this i create an Actor and when i click this actor, it add 1 to my var, this is working, the problem is i trying to show this var in the HUD, but a can't do, I searched tutos but its only for…
Diogo
  • 1
  • 1
0
votes
1 answer

Infrastructure error launching Blueprint template on fiware cloud lab

for testing purposes I'm trying to launch a blueprint instance with the following specs: Tier1: base_centos_7 + tomcat6 minimum of instance of 0 and a maximum of 1 (init value: 0) Tier2: base_debian_7 + mysql1.2.4 minimum of instance: 1 and…
sirnino
  • 437
  • 3
  • 13
0
votes
2 answers

Sharing code between Blueprint?

How do you share code between Blueprints in Flask? What structure do you use? Do you create separate class? If yes how do you pass app or db instances. What is the best practice?
sten
  • 7,028
  • 9
  • 41
  • 63