Skip to content
#

Framework

A framework is a reusable set of libraries or classes in software. In an effort to help developers focus their work on higher level tasks, a framework provides a functional solution for lower level elements of coding. While a framework might add more code than is necessary, they also provide a reusable pattern to speed up development.

Here are 7,838 public repositories matching this topic...

ddcruver
ddcruver commented Jan 28, 2020

While loading of YAML files in home directory was fixed in #19081 it appears it is ignoring the profiles defined by the spring.profiles property and loading in all YAML documents (the sections in a YAML file) as property sources.

When running the example application with the example spring-boot-devtools.yaml with no profiles activate I would expect only one YAML document to be loaded, the top o

aspiers
aspiers commented Dec 6, 2019

https://edgeguides.rubyonrails.org/association_basics.html#the-belongs-to-association says:

A belongs_to association sets up a one-to-one connection with another model

However (unless I'm going crazy), this is not accurate, because belongs_to can also set up a many-to-one relationship as the other side of has_many. This is explicitly stated in [the has_many section of the same gui

ionic
mattsteve
mattsteve commented Feb 5, 2020

Feature Request

Ionic version:
[x] 4.x or 5.x

Describe the Feature Request
Currently if you present multiple toasts in the same position they show on top of one another which looks like a bug.

Describe Preferred Solution
I would suggest one of two things:

  1. Implement toast stacking. If you present multiple toasts, they display in a list like the phone's notifi
pere
pere commented Oct 22, 2019

Hi, I have been spending quite sometime wondering why a simple dropdown was not working.
Is not specified on the docs that the must have the class 'dropdown-trigger' (any other is not triggering the dropdown!)

Just a matter of documentation but crucial in order not to waste time :.)
example, this will not work:

<a class='dropdown-button-example btn' href='#' data-target='dropdo
KernelDeimos
KernelDeimos commented Nov 16, 2019

Description

Using the fetch API from WHATWG in Google Chrome, an image upload does not have Content-Type multipart/form-data. Instead, the content type is set to the MIME type (ex: image/jpeg) with a boundary parameter. Setting Content-Type explicitly to multipart/form-data should result in an error (and it does).

How to reproduce

Follow an existing image upload example from

odrotbohm
odrotbohm commented Jan 15, 2020

tl;dr

The default Spring MVC date/time form binding is slightly at odds with the way modern date and time form input fields are submitted by browsers. This results in the need for (quite a bit of) explicit binding configuration to make default form submissions from browsers work.

Details

The current Spring MVC way of binding of date value stems from the time when date and time values

manniL
manniL commented Sep 1, 2019

Related PR: #6331
Suggested by @pimlie

When trailing slash handling is enforced (in any manner), it'd be great to have two things for improved DX:

Nuxt Link adaption

No matter how you input the links in your Nuxt link (be it as an object via named routes or via string), the component should enforce the set up trailing slash handling (adding or removing the slashes as needed).

U

saulotoledo
saulotoledo commented Feb 11, 2020

The documentation for the HTTP exceptions in packages/common/exceptions/ is incorrect:

  • The default return format for specific HTTP exceptions is { statusCode, error }, not { statusCode, message } (this leads to #4044, but it may be a breaking change and it can wait);
  • The statusCode in the result cannot be overwritten as described;
  • A proper explanation for the message argument
symfony
B-Galati
B-Galati commented Nov 8, 2019

Description
At the moment it's quite hard to debug HTTP errors because the only information we get is:

HTTP/1.1 400 Bad Request returned for "https://example.com/".

It would be nice to have an opt-in option that would automatically open response payload and headers in order to log them in Sentry for example. It may require to handle a max lenght on the response payload.

iris
asyslinux
asyslinux commented Dec 28, 2019

Dear developers. I write my custom specific web server for work with specific archive files, compression, encryption, etc. And i want to publish my web server under BSD-2-Clause license.

In my project i use Iris and Iris logger as basement.
I'm not going to use the name of your project to promote my project.

Can I publish my project under the BSD-2-Clause license?

Thanks.

jusw85
jusw85 commented Nov 29, 2019

Issue details

Camera.unproject does not return original value

Reproduction steps/code

    public void create() {
        Vector2 tmpvec = new Vector2();
        tmpvec.set(0, 0);

        Stage stage = new Stage(new ScreenViewport());
        stage.stageToScreenCoordinates(tmpvec); // has the correct screen coords;
        stage.screenToStageCoordinates(tmpvec);
        
JeemBeen
JeemBeen commented Oct 16, 2019
  • Framework7 version: 3.x, 4.x, 5.x
  • Platform and Target: Android Cordova

Describe the bug

If you increase font size in Android system settings text in many components is misaligned
e.g. Buttons, Dialog.

To Reproduce

Install Framework7 Kitchen Sink as Cordova app.

Expected behavior

Correct position of component text e.g. Button, Dialog.

Actual Behavior

Wrong or

egg
sanic
WeeSee
WeeSee commented Feb 9, 2020

In console/Controller.php we can read:

/**
     * Prints a string to STDOUT.
     *
     * You may optionally format the string with ANSI codes by
     * passing additional parameters using the constants defined in [[\yii\helpers\Console]].
     *
     * Example:
     *
     * ```
     * $this->stdout('This will be red and underlined.', Console::FG_RED, Console::UNDERLINE);
  
PowerMogli
PowerMogli commented Sep 9, 2019

We are trying to migrate to v4. But now we are failing because we have no clue how to setup a custom auth (api-key) strategy. In v3 we registered our custom api-key strategy at passport like this:

this.passport.use('apikey', new Strategy(verifier));
// and
app.configure(apikey({ header: config.apiKey.header }));

Is there any documentation how to setup a custom (api-key) authentic

Wikipedia
Wikipedia
You can’t perform that action at this time.