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,778 public repositories matching this topic...

simonhermann
simonhermann commented Jun 25, 2019

What problem does this feature solve?

I just spent way too long debugging something really weird until I realized I accidentally wrote :v-if instead of v-if.

A warning when wrongly using shorthands like : on "native" vue attributes could prevent this bad experience easily.

What does the proposed API look like?

:v-if="foo"

--> console.warn("You specified v-bind:/ v-on:

snicoll
snicoll commented Jan 28, 2020

The build plugins use the cloudfoundry/cnb:0.0.43-bionic Builder by default, which bundles the OpenJDK Buildpack. The OpenJDK Buildpack exposes a number of options as env variables, see https://github.com/cloudfoundry/openjdk-cnb/blob/master/README.md.

A couple examples demonstrating the use of the default builder with the OpenJDK Buildpack would be interesting to help users getting started.

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

crapthings
crapthings commented Dec 19, 2019

where to declare .d.ts? 1.8.2

Package.describe({
  name: 'gooodrr',
  version: '0.0.1',
  summary: 'gooodrr',
  documentation: 'README.md'
})

Package.onUse(function (api) {
  api.use('typescript')
  api.mainModule('gooodrr.ts', 'server')
  api.export('Gooodrr', 'server')
})

where to put d.ts file?

declare module "meteor/gooodrr" {
    export module Goood
ionic
ebk46
ebk46 commented Dec 18, 2019

Bug Report

Ionic version:
[x] 4.7.11

Current behavior:
When the value of an Ionic input element is changed from OUTSIDE of the element, the element's onIonChange is triggered, thereby duplicating the change event.

Expected behavior:
As with every other React input, the onIonChange should only be triggered when the value was change from the element itself.

**Steps t

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
LanetheGreat
LanetheGreat commented Jan 17, 2020

Versions Affected:

All versions after PR #2082 when flags were added to Request. (>1.4.0)

Response.follow() method not consistent with Request.init(). Missing flags.

No sure how this got missed since PR #2082 was merged, but looking at the parameters for Request.__init__ and Response.follow it appears flags wasn't added to Response.follow to keep it in line with ho

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

chefjuanpi
chefjuanpi commented Jan 11, 2020

What problem does this feature solve?

I trying to figure how deploy for production a Universal app if it contains buildModules. I think deploy a universal app for prod can be a little confuse and need more explications in the guide.

I'm a little confuse between:

Production environment:
if I use:

yarn install --prod

I can't build because the buildModules are not in place

Dev environm

symfony
steevanb
steevanb commented Sep 27, 2019

Description
When we want to configure an option in OptionsResolver, we have a code like this one:

$optionsResolver
    ->setDefined('foo')
    ->setAllowedTypes('foo', ['string'])
    ->setAllowedValues('foo', ['bar', 'baz'])
    ->setRequired('foo');

We have to duplicate option name and call 4 or 5 methods for each option to configure.

With only one option, it's reada

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.

ianstormtaylor
ianstormtaylor commented Dec 13, 2019

Do you want to request a feature or report a bug?

Improvement.

What's the expected behavior?

Since we're already using the docblock comments to power IntelliSense documentation for VS Code (or anything else that supports it), it would be nice to have the API reference automatically generated from these comments.

I experimented with typedoc a while ago, but the project i

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
bologer
bologer commented Apr 3, 2019

I suggest to give brief intro to docs (somewhere here) about how to convert default ActiveController behaviour of "just models" into something like this:

{
  "items": [],
  "_links": {
    "self": {
      "href": "http://localhost/v1/test/index?page=1"
    }
  },
  "_meta": {
    "totalCount": 10,
Wikipedia
Wikipedia
You can’t perform that action at this time.