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
7
votes
3 answers

How to export Apiary Blueprint as PDF, stand-alone HTML or similar "deliverable"?

We need to export our Apiary Blueprint for task assignment purposes as a self containing "deliverable" like PDF or ZIP or similar. I'm aware of the feature request and the discussion below. Is it possible to "hack" something better than the poor…
Rodja
  • 7,998
  • 8
  • 48
  • 55
7
votes
4 answers

blueprint of blueprints (Flask)

I have a series of blueprints I'm using, and I want to be able to bundle them further into a package I can use as seamlessly as possible with any number of other applications. A bundle of blueprints that provides an entire engine to an application.…
blueblank
  • 4,724
  • 9
  • 48
  • 73
6
votes
1 answer

Does Aries managed-service-factory also manage properties?

I'm using Apache Aries 0.2 in Servicemix 4.3.1 and creating a cm:managed-service-factory. Creation of the services with .cfg files works fine (except for #ARIES-584), but the properties from the .cfg file do not get injected into the service…
John Ellinwood
  • 14,291
  • 7
  • 38
  • 48
6
votes
1 answer

How to use custom template in JHipster blueprint?

I am trying to override the a template Entity.java.ejs in my custom blueprint to add some extra functionality. Unfortunately JHipster uses its default one if generate an entity. I don’t want to overwrite the whole writing. Is there a possibility to…
5
votes
1 answer

Laravel blueprint inet type for postgresql

I needed a migration in my project (laravel) to create some new tables, one of these tables must have a column with inet type, so I did this: Schema::create('host_servers', static function (Blueprint $t) { //... $t->addColumn('inet', 'ip'); …
Pejman
  • 2,442
  • 4
  • 34
  • 62
5
votes
4 answers

Extending Laravel 5.5/5.6 Blueprint

How to extend Laravel 5.5/5.6 MySQL Blueprint with custom method $table->myMethod() like pre-built method $table->timestamps();? I have tried an example with SQLlite: Extending Blueprint for SQLite in Laravel 5 But I couldn't get it work. I am…
5
votes
3 answers

Run Compass/SASS with a different version

I am trying to find a nice solution working on two different compass projects. One is based off Compass using Blueprint (older version), and the other is based on susy grid (newer version). Currently, I have to reinstall the right version for the…
YeppThat'sMe
  • 1,812
  • 6
  • 29
  • 45
4
votes
4 answers

How to implement Celery using Flask application factory pattern

I am having issues with implementing celery with python flask application factory app I have intend creating an instance of the Celery app from the app init file as below: from celery import Celery celery = Celery('myapp',…
Peter Ewanfo
  • 114
  • 1
  • 7
4
votes
1 answer

Service reference in OSGi/blueprint not working properly

I currently have two OSGi bundles (bundle1 and bundle2) both both exposing services through a blueprint in an EBA. In bundle2's blueprint.xml i want to reference a service from bundle1 and Inject it into the BuildService (code below), as…
stuff22
  • 1,662
  • 4
  • 24
  • 42
4
votes
1 answer

BlueprintJS is not loading its icon CSS module, but is able to load the core CSS module

I'm learning to incorporate BlueprintJS into my React web app, and having a lot of trouble loading in some of the CSS modules. I've installed npm install @blueprintjs/core and npm install react-transition-group. The BlueprintJS Getting Started…
Yu Chen
  • 6,540
  • 6
  • 51
  • 86
4
votes
1 answer

Maven bundle plugin generates Manifest with wrong or missing versions

When debugging, why a service from my bundle was not imported by other bundles, I've noticed, I've declared wrong version of commons-io (1.4 instead of 2.4). However, after invoking mvn clean and then mnv install I've noticed, that the old version…
9ilsdx 9rvj 0lo
  • 7,955
  • 10
  • 38
  • 77
4
votes
1 answer

Stopping a Camel route from outside the route

We have a data processing application that runs on Karaf 2.4.3 with Camel 2.15.3. In this application, we have a bunch of routes that import data. We have a management view that lists these routes and where each route can be started. Those routes do…
maxdev
  • 2,491
  • 1
  • 25
  • 50
4
votes
0 answers

Confused on proper implementation of Flask blueprints and socketio

I have a Flask app that I have restructured to leverage blueprints. The application runs and everything seems to be going ok except for SocketIO and my socketio.on events. I never see SocketIO and the web socket attempt to connect or disconnect in…
user982599
  • 975
  • 13
  • 28
4
votes
1 answer

Pan - zoom - orbit using Multi Touch - Unreal Engine -

I would like to make a multi touch control for my camera This camera should do: zoom in/out when pinching orbit when swiping pan when swiping with 2 fingers. Is there somebody who know some good examples/tutorials or give me some advice? Thank you…
ddonk
  • 43
  • 2
  • 6
4
votes
1 answer

How handle different logging solutions in OSGi (Apache Felix)

In OSGi there is a separation between the logging frontend and the actual output. So, by using the LogService, this doesnt mean that anything is written to the console for example. This is what a LogReaderService is responsible for. In my current…
lostiniceland
  • 3,729
  • 6
  • 38
  • 50
1
2
3
23 24