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
0 answers

JUnit testing blueprint with openJPA in route

I have a test case that loads up the blueprint.xml and persistence.xml at the start of the JUnit but when the test actually runs an error is thrown for not having a persistence provider. Caused by: javax.persistence.PersistenceException: No…
peekay
  • 1,259
  • 2
  • 25
  • 49
0
votes
1 answer

Flask - render template in other Blueprint without redirect

I have a view in a Blueprint: @blueprint1.route("/home"): #load some data .... #if certain condition is present, I want to essentially forward the request if data.has_condition: return render_template(????) Or alternatively, I…
fansonly
  • 1,150
  • 4
  • 14
  • 29
0
votes
2 answers

karaf - How to use websocket jsr JSR-356 or other osgi container

i want to use websocket with apache karaf or other osgi container such as "service mix, felix, ..." The problem is karaf 2.3 or 3.0 use jetty with 8.X max. And jsr 356 has implemented only with jetty 9.X. If you have a really nice example would. I…
timactive
  • 789
  • 6
  • 27
0
votes
1 answer

How to wait for blueprint service being bind

I'm new to the Blueprint service and I looked for any sample to satisfy the requirement of waiting the service being up in a reference-listener context. I have a core bundle which provide some kernel services (db, network etc.), and I wrap it with …
LynxZh
  • 825
  • 5
  • 9
0
votes
1 answer

OSGi using jpa persistence unit from another bundle?

I use ServiceMix with Apache Felix and my Enterprise Application consist of several bundles. For example I have a bundle with my jpa entity classes and another bundle with business logic and dao-classes. Because of I use OpenJPA the entity-bundle…
Philipp Li
  • 499
  • 6
  • 22
0
votes
0 answers

blueprint 1.0.2 can't create inner bean in the War bundle

i want to upgrade virgo to 3.6.2,however i met a strange things. the war bundle can't start. the root reason is cna't load class in the war bundle. but there is no this issue in the blueprint 1.0.0.M1. it is great if someone give me some…
Paul
  • 1
  • 1
0
votes
2 answers

Junit test with osgi blueprint (apache aries or eclipse gemini)

i really can´t find a way to junit test blueprint. With Spring DM (this dead project) was very simple to test the same spring beans with junit and some mocks. In blueprint (either aries or gemini) is nothing like SpringJUnit4ClassRunner. Pax Exam is…
pan40
  • 317
  • 1
  • 5
  • 15
0
votes
2 answers

Using spring osgi service in blueprint

I have a spring context which exports the osgi service defined under /META-INF/spring/spring-dao.xml like this ` The question is: I want to use the above defined service in my blueprint,…
0
votes
1 answer

Upgrading a rails 3.0 app to 3.2 including Compass and Blueprint

Tearing my hair out with this. Trying to upgrade an old app to rails 3.2 Have got most of the way there but I keep hitting an error when the app tries to import blueprint. Started GET "/assets/application.css" for 127.0.0.1 at 2013-05-15…
0
votes
2 answers

Blueprint CSS Grid Layout Anomalies

I'm adapting the Blueprint CSS framework for my web site project, but I'm noticing that the blueprint isn't following some of its own rules. I've run through the tutorials on their web site and tried Googling a solution, but nothing is working. I'm…
Argus9
  • 1,863
  • 4
  • 26
  • 40
0
votes
1 answer

Fusesource - how to encode/decode base64 within a route

Trying to encode/decode base64 within an XML document that is handled within a route in Fusesource ESB. We are using Blueprint.xml to try to encode/decode, but cannot find a way to do this. We need our ruote to convert XML data to base64 string to…
user1769045
  • 141
  • 1
  • 3
  • 12
0
votes
1 answer

How to hide the url displayed after the links from browser view in development mode?

Hi I am very new to RoR and is using Rails 3.2.8 to develop my app. When I am testing my pages, an URL address is automatically displayed after all the links. For instance, <%= link_to 'Home', root_path %> will generate a view in the browser like…
Xiaoli
  • 73
  • 8
0
votes
1 answer

Developing car model with the help of a blueprint

I have taken a car blueprint from the Net(googled)to develop car modeling in Belnder 3d. my question is there any concerns/issues related to copyright/licence ? for example if i want model a AUDI A6, getting the blueprint from the internet, will the…
Yogesh
  • 1,206
  • 4
  • 22
  • 50
0
votes
1 answer

interactive floor plans with photos website

i am trying to create a page where an apartment's floor plan will be visible and while hovering over different areas. my first approach was to create a div with the floorplan as background. inside that div i added 100 smaller divs, all with…
krasatos
  • 1,177
  • 3
  • 13
  • 26
-1
votes
1 answer

Laravel, MariaDB timestamp column without default and onupdate trigger

I have following migration: Schema::create('auctions', function (Blueprint $table) { $table->id(); $table->timestamp('expired_at'); $table->timestamp('sold_at')->nullable()->default(null); // other fields }); Which creates a table…
Pejman
  • 2,442
  • 4
  • 34
  • 62
1 2 3
23
24