- Open Keychain Access
- Navigate to "Login" in the left menu
- Cmd+N (New Password item)
- Fill in these details:
- Keychain Item Name: anyconnect
- Account name: Your username (firstname.lastname)
- Password
Are you getting the error "Unrecognized archive format" while trying to install php on asdf?
asdf install php 7.4 develop ⬆ ✖ ✱ ◼
Determining configuration options...
Downloading source code...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 120 100 120 0 0 272 0 --:--:-- --:--:-- --:--:-- 272
100 14 100 14 0 0 18 0 --:--:-- --:--:-- --:--:-- 18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Polyfills | |
if (typeof window !== 'undefined') { | |
require("ie11-custom-properties"); | |
} | |
function MyApp({ Component, pageProps, err }) { | |
return <Component {...pageProps} err={err} />; | |
} | |
export default MyApp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Document, { Html, Head, Main, NextScript } from 'next/document'; | |
class CustomDocument extends Document { | |
static async getInitialProps(ctx) { | |
let pageProps = null; | |
const originalRenderPage = ctx.renderPage; | |
ctx.renderPage = () => | |
originalRenderPage({ | |
enhanceApp: (App) => (props) => { |
First, what is the primary purpose with using a DAM (Digital Asset Management) solution? There are several, but these are the features:
- Having a centralized digital asset management (keep your pictures in one place)
- Keeping your assets in sync and making sure licenses are up to date (when does image X expire, are author information correct?)
- Keep track on where your digital assets usage (my bird image are used on site X, Y and Z)
So, how would we go about integrating a DAM in Wagtail? These are the steps me (me and others) took in a real-world project.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from wagtail.contrib.modeladmin.helpers.permission import PermissionHelper | |
from wagtail.contrib.modeladmin.options import ( | |
ModelAdmin, | |
modeladmin_register | |
) | |
class MyModelPermissionHelper(PermissionHelper): | |
def user_can_create(self, _user): | |
return False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends 'wagtailadmin/reports/base_report.html' %} | |
{% load i18n wagtailadmin_tags %} | |
{% block results %} | |
{% if object_list %} | |
<table class="listing"> | |
<thead> | |
<tr> | |
<th class="title"> | |
{% trans 'Name' %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.forms import widgets | |
from wagtail.admin.edit_handlers import FieldPanel | |
class ColorInputWidget(widgets.Input): | |
input_type = 'color' | |
class ColorPanel(FieldPanel): | |
def widget_overrides(self): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.utils.translation import ugettext_lazy as _ | |
from rest_framework import exceptions | |
from rest_framework.authentication import TokenAuthentication | |
from tastypie.models import ApiKey | |
class ApiKeyAuthentication(TokenAuthentication): | |
model = ApiKey | |
keyword = 'ApiKey' |