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

What API blueprint renderer can generate a three-column html file for API documentation purpose?

Here's the API doc of Stripe: https://stripe.com/docs/api They seem to be using a three-columns template. I am wondering whether they use some API blueprint renderer (markdown-to-html type of script) to generate it, similarly to Aglio:…
vintagexav
  • 2,011
  • 2
  • 18
  • 22
3
votes
1 answer

How to create a custom blueprint?

I'm trying to create a customized JHipster blueprint for my organization. I've started my journey: Installed Yeoman v4.3.0 Installed Jhipster v7.9.3 Created a directory for my future blueprint mkdir mygenerator && cd mygenerator Executed the…
Fabiano
  • 143
  • 9
3
votes
1 answer

Access database from Flask blueprint

I'm building a RESTful API application using Flask and SQLAlchemy and try to apply blueprint pattern to register my routes. Blueprint @route functions contain references to database session object. I wish to get access to it "proxy style" - in a way…
dexpiper
  • 91
  • 7
3
votes
0 answers

Procedural Landscape Generation from Data (BP, C++)

in UE4 we want to create procedural landscapes from freely available geological and height data. We've been following the book "Unreal Engine 4 Scripting with C++ Cookbook", which is a little older. The code adapted accordingly also works well,…
Reiti
  • 57
  • 4
3
votes
1 answer

How to use React BluePrint components with TypeScript?

I am trying to use React and blueprint with tsx files import * as React from 'react'; import { Button } from "@blueprintjs/core" class App extends React.Component { render() { return
Geeky
  • 7,420
  • 2
  • 24
  • 50
3
votes
1 answer

Flask URL not found when using blueprint

This is really strange but am facing this problem. Everything was working and i was almost done with the app but out of a sudden it stopped. I have isolated the code and i realized that when i register a blueprint and use it on a route, it fails to…
demerit
  • 141
  • 1
  • 9
3
votes
0 answers

Blueprint binary response

How is it possible to make the blueprint return a binary data, a pdf file for example. Response 200 (application/json) Attributes (byte[]) is this correct ?
GeniDeveloper
  • 361
  • 3
  • 18
3
votes
1 answer

Camel exchange properties lost during split

I have the following setup of camel routes:
Viktor D
  • 136
  • 1
  • 7
3
votes
1 answer

Blueprint array of objects (apiary)

I'm trying to describe array of objects with syntax based on this answer + Response 200 (application/json) + Attributes + time (object, required) + default (string, required) - `HH:MM` default time + times (array,…
Aleš Oskar Kocur
  • 1,381
  • 1
  • 13
  • 29
3
votes
0 answers

Substitute Blueprint templates-folder on the fly in Flask

I would like to substitute the templates-folder associated with my Blueprint and originally registered with that Blueprint to my Flask app. I have tried the following: from flask import current_app as app bp = Blueprint('myblueprint', __name__,…
rize
  • 849
  • 6
  • 17
  • 33
3
votes
2 answers

CQ aka AEM | Blueprints vs. Live copies

In cq we can create live copies by either blueprints by opting "New Site..." or directly trough content nodes by opting for "New Live Copy...". In both the cases inheritance is maintained and roll-out works too in same ways. So what is the…
Rupesh
  • 2,627
  • 1
  • 28
  • 42
3
votes
1 answer

Blueprint 404 errorhandler doesn't activate under blueprint's url prefix

I created a blueprint with a 404 error handler. However, when I go to non-existent urls under the blueprint's prefix, the standard 404 page is shown rather than my custom one. How can I make the blueprint handle 404 errors correctly? The following…
Spouk
  • 691
  • 7
  • 18
3
votes
2 answers

sails.js Blueprint query by relations

I'm running sails 0.10.5 with postgresql support and I want to ask if there is any way to do a query to filter results by relations. For example: http://api/documents?user.role=Admin Or http://api/documents?where={"user.role":…
Drakson
  • 41
  • 3
1 2
3
23 24