Deployed c0a4fd5
to 0.111 with MkDocs 1.6.1 and mike 2.1.3
1
0.111/404.html
Normal file
135
0.111/CHANGELOG/index.html
Normal file
1
0.111/SUMMARY/index.html
Normal file
0
0.111/__init__.py
Normal file
50
0.111/assets/_markdown_exec_pyodide.css
Normal file
|
@ -0,0 +1,50 @@
|
|||
html[data-theme="light"] {
|
||||
@import "https://cdn.jsdelivr.net/npm/highlightjs-themes@1.0.0/tomorrow.css"
|
||||
}
|
||||
|
||||
html[data-theme="dark"] {
|
||||
@import "https://cdn.jsdelivr.net/npm/highlightjs-themes@1.0.0/tomorrow-night-blue.min.css"
|
||||
}
|
||||
|
||||
|
||||
.ace_gutter {
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.pyodide-editor {
|
||||
width: 100%;
|
||||
min-height: 200px;
|
||||
max-height: 400px;
|
||||
font-size: .85em;
|
||||
}
|
||||
|
||||
.pyodide-editor-bar {
|
||||
color: var(--md-primary-bg-color);
|
||||
background-color: var(--md-primary-fg-color);
|
||||
width: 100%;
|
||||
font: monospace;
|
||||
font-size: 0.75em;
|
||||
padding: 2px 0 2px;
|
||||
}
|
||||
|
||||
.pyodide-bar-item {
|
||||
padding: 0 18px 0;
|
||||
display: inline-block;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.pyodide pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.pyodide-output {
|
||||
width: 100%;
|
||||
margin-bottom: -15px;
|
||||
min-height: 46px;
|
||||
max-height: 400px
|
||||
}
|
||||
|
||||
.pyodide-clickable {
|
||||
cursor: pointer;
|
||||
text-align: right;
|
||||
}
|
109
0.111/assets/_markdown_exec_pyodide.js
Normal file
|
@ -0,0 +1,109 @@
|
|||
var _sessions = {};
|
||||
|
||||
function getSession(name, pyodide) {
|
||||
if (!(name in _sessions)) {
|
||||
_sessions[name] = pyodide.globals.get("dict")();
|
||||
}
|
||||
return _sessions[name];
|
||||
}
|
||||
|
||||
function writeOutput(element, string) {
|
||||
element.innerHTML += string + '\n';
|
||||
}
|
||||
|
||||
function clearOutput(element) {
|
||||
element.innerHTML = '';
|
||||
}
|
||||
|
||||
async function evaluatePython(pyodide, editor, output, session) {
|
||||
pyodide.setStdout({ batched: (string) => { writeOutput(output, string); } });
|
||||
let result, code = editor.getValue();
|
||||
clearOutput(output);
|
||||
try {
|
||||
result = await pyodide.runPythonAsync(code, { globals: getSession(session, pyodide) });
|
||||
} catch (error) {
|
||||
writeOutput(output, error);
|
||||
}
|
||||
if (result) writeOutput(output, result);
|
||||
hljs.highlightElement(output);
|
||||
}
|
||||
|
||||
async function initPyodide() {
|
||||
try {
|
||||
let pyodide = await loadPyodide();
|
||||
await pyodide.loadPackage("micropip");
|
||||
return pyodide;
|
||||
} catch(error) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
function getTheme() {
|
||||
return document.body.getAttribute('data-md-color-scheme');
|
||||
}
|
||||
|
||||
function setTheme(editor, currentTheme, light, dark) {
|
||||
// https://gist.github.com/RyanNutt/cb8d60997d97905f0b2aea6c3b5c8ee0
|
||||
if (currentTheme === "default") {
|
||||
editor.setTheme("ace/theme/" + light);
|
||||
document.querySelector(`link[title="light"]`).removeAttribute("disabled");
|
||||
document.querySelector(`link[title="dark"]`).setAttribute("disabled", "disabled");
|
||||
} else if (currentTheme === "slate") {
|
||||
editor.setTheme("ace/theme/" + dark);
|
||||
document.querySelector(`link[title="dark"]`).removeAttribute("disabled");
|
||||
document.querySelector(`link[title="light"]`).setAttribute("disabled", "disabled");
|
||||
}
|
||||
}
|
||||
|
||||
function updateTheme(editor, light, dark) {
|
||||
// Create a new MutationObserver instance
|
||||
const observer = new MutationObserver((mutations) => {
|
||||
// Loop through the mutations that occurred
|
||||
mutations.forEach((mutation) => {
|
||||
// Check if the mutation was a change to the data-md-color-scheme attribute
|
||||
if (mutation.attributeName === 'data-md-color-scheme') {
|
||||
// Get the new value of the attribute
|
||||
const newColorScheme = mutation.target.getAttribute('data-md-color-scheme');
|
||||
// Update the editor theme
|
||||
setTheme(editor, newColorScheme, light, dark);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// Configure the observer to watch for changes to the data-md-color-scheme attribute
|
||||
observer.observe(document.body, {
|
||||
attributes: true,
|
||||
attributeFilter: ['data-md-color-scheme'],
|
||||
});
|
||||
}
|
||||
|
||||
async function setupPyodide(idPrefix, install = null, themeLight = 'tomorrow', themeDark = 'tomorrow_night', session = null) {
|
||||
const editor = ace.edit(idPrefix + "editor");
|
||||
const run = document.getElementById(idPrefix + "run");
|
||||
const clear = document.getElementById(idPrefix + "clear");
|
||||
const output = document.getElementById(idPrefix + "output");
|
||||
|
||||
updateTheme(editor, themeLight, themeDark);
|
||||
|
||||
editor.session.setMode("ace/mode/python");
|
||||
setTheme(editor, getTheme(), themeLight, themeDark);
|
||||
|
||||
writeOutput(output, "Initializing...");
|
||||
let pyodide = await pyodidePromise;
|
||||
if (install && install.length) {
|
||||
micropip = pyodide.pyimport("micropip");
|
||||
for (const package of install)
|
||||
await micropip.install(package);
|
||||
}
|
||||
clearOutput(output);
|
||||
run.onclick = () => evaluatePython(pyodide, editor, output, session);
|
||||
clear.onclick = () => clearOutput(output);
|
||||
output.parentElement.parentElement.addEventListener("keydown", (event) => {
|
||||
if (event.ctrlKey && event.key.toLowerCase() === 'enter') {
|
||||
event.preventDefault();
|
||||
run.click();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
var pyodidePromise = initPyodide();
|
143
0.111/assets/_mkdocstrings.css
Normal file
|
@ -0,0 +1,143 @@
|
|||
|
||||
/* Avoid breaking parameter names, etc. in table cells. */
|
||||
.doc-contents td code {
|
||||
word-break: normal !important;
|
||||
}
|
||||
|
||||
/* No line break before first paragraph of descriptions. */
|
||||
.doc-md-description,
|
||||
.doc-md-description>p:first-child {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* Max width for docstring sections tables. */
|
||||
.doc .md-typeset__table,
|
||||
.doc .md-typeset__table table {
|
||||
display: table !important;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.doc .md-typeset__table tr {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
/* Defaults in Spacy table style. */
|
||||
.doc-param-default {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Parameter headings must be inline, not blocks. */
|
||||
.doc-heading-parameter {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* Prefer space on the right, not the left of parameter permalinks. */
|
||||
.doc-heading-parameter .headerlink {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0.2rem;
|
||||
}
|
||||
|
||||
/* Backward-compatibility: docstring section titles in bold. */
|
||||
.doc-section-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Symbols in Navigation and ToC. */
|
||||
:root, :host,
|
||||
[data-md-color-scheme="default"] {
|
||||
--doc-symbol-parameter-fg-color: #df50af;
|
||||
--doc-symbol-attribute-fg-color: #953800;
|
||||
--doc-symbol-function-fg-color: #8250df;
|
||||
--doc-symbol-method-fg-color: #8250df;
|
||||
--doc-symbol-class-fg-color: #0550ae;
|
||||
--doc-symbol-module-fg-color: #5cad0f;
|
||||
|
||||
--doc-symbol-parameter-bg-color: #df50af1a;
|
||||
--doc-symbol-attribute-bg-color: #9538001a;
|
||||
--doc-symbol-function-bg-color: #8250df1a;
|
||||
--doc-symbol-method-bg-color: #8250df1a;
|
||||
--doc-symbol-class-bg-color: #0550ae1a;
|
||||
--doc-symbol-module-bg-color: #5cad0f1a;
|
||||
}
|
||||
|
||||
[data-md-color-scheme="slate"] {
|
||||
--doc-symbol-parameter-fg-color: #ffa8cc;
|
||||
--doc-symbol-attribute-fg-color: #ffa657;
|
||||
--doc-symbol-function-fg-color: #d2a8ff;
|
||||
--doc-symbol-method-fg-color: #d2a8ff;
|
||||
--doc-symbol-class-fg-color: #79c0ff;
|
||||
--doc-symbol-module-fg-color: #baff79;
|
||||
|
||||
--doc-symbol-parameter-bg-color: #ffa8cc1a;
|
||||
--doc-symbol-attribute-bg-color: #ffa6571a;
|
||||
--doc-symbol-function-bg-color: #d2a8ff1a;
|
||||
--doc-symbol-method-bg-color: #d2a8ff1a;
|
||||
--doc-symbol-class-bg-color: #79c0ff1a;
|
||||
--doc-symbol-module-bg-color: #baff791a;
|
||||
}
|
||||
|
||||
code.doc-symbol {
|
||||
border-radius: .1rem;
|
||||
font-size: .85em;
|
||||
padding: 0 .3em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
code.doc-symbol-parameter {
|
||||
color: var(--doc-symbol-parameter-fg-color);
|
||||
background-color: var(--doc-symbol-parameter-bg-color);
|
||||
}
|
||||
|
||||
code.doc-symbol-parameter::after {
|
||||
content: "param";
|
||||
}
|
||||
|
||||
code.doc-symbol-attribute {
|
||||
color: var(--doc-symbol-attribute-fg-color);
|
||||
background-color: var(--doc-symbol-attribute-bg-color);
|
||||
}
|
||||
|
||||
code.doc-symbol-attribute::after {
|
||||
content: "attr";
|
||||
}
|
||||
|
||||
code.doc-symbol-function {
|
||||
color: var(--doc-symbol-function-fg-color);
|
||||
background-color: var(--doc-symbol-function-bg-color);
|
||||
}
|
||||
|
||||
code.doc-symbol-function::after {
|
||||
content: "func";
|
||||
}
|
||||
|
||||
code.doc-symbol-method {
|
||||
color: var(--doc-symbol-method-fg-color);
|
||||
background-color: var(--doc-symbol-method-bg-color);
|
||||
}
|
||||
|
||||
code.doc-symbol-method::after {
|
||||
content: "meth";
|
||||
}
|
||||
|
||||
code.doc-symbol-class {
|
||||
color: var(--doc-symbol-class-fg-color);
|
||||
background-color: var(--doc-symbol-class-bg-color);
|
||||
}
|
||||
|
||||
code.doc-symbol-class::after {
|
||||
content: "class";
|
||||
}
|
||||
|
||||
code.doc-symbol-module {
|
||||
color: var(--doc-symbol-module-fg-color);
|
||||
background-color: var(--doc-symbol-module-bg-color);
|
||||
}
|
||||
|
||||
code.doc-symbol-module::after {
|
||||
content: "mod";
|
||||
}
|
||||
|
||||
.doc-signature .autorefs {
|
||||
color: inherit;
|
||||
border-bottom: 1px dotted currentcolor;
|
||||
}
|
BIN
0.111/assets/images/favicon.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
0.111/assets/images/social/CHANGELOG.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
0.111/assets/images/social/SUMMARY.png
Normal file
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 40 KiB |
BIN
0.111/assets/images/social/concepts/advanced/hooks.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
0.111/assets/images/social/concepts/advanced/provide_inject.png
Normal file
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 36 KiB |
BIN
0.111/assets/images/social/concepts/advanced/tag_formatter.png
Normal file
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 40 KiB |
BIN
0.111/assets/images/social/concepts/fundamentals/slots.png
Normal file
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 42 KiB |
BIN
0.111/assets/images/social/devguides/dependency_mgmt.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
0.111/assets/images/social/devguides/slot_rendering.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
0.111/assets/images/social/devguides/slots_and_blocks.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
0.111/assets/images/social/guides/setup/dev_server_setup.png
Normal file
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 38 KiB |
BIN
0.111/assets/images/social/guides/setup/syntax_highlight.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
0.111/assets/images/social/migrating_from_safer_staticfiles.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
0.111/assets/images/social/overview/code_of_conduct.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
0.111/assets/images/social/overview/community.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
0.111/assets/images/social/overview/compatibility.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
0.111/assets/images/social/overview/development.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
0.111/assets/images/social/overview/installation.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
0.111/assets/images/social/overview/license.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
0.111/assets/images/social/overview/security_notes.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
0.111/assets/images/social/overview/welcome.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
0.111/assets/images/social/reference/SUMMARY.png
Normal file
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 29 KiB |
BIN
0.111/assets/images/social/reference/django_components/index.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 26 KiB |
BIN
0.111/assets/images/social/reference/django_components/util/cache/index.png
vendored
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 26 KiB |
BIN
0.111/assets/images/social/reference/docs/index.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
0.111/assets/images/social/reference/docs/scripts/index.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 28 KiB |
16
0.111/assets/javascripts/bundle.83f73b43.min.js
vendored
Normal file
7
0.111/assets/javascripts/bundle.83f73b43.min.js.map
Normal file
1
0.111/assets/javascripts/lunr/min/lunr.ar.min.js
vendored
Normal file
18
0.111/assets/javascripts/lunr/min/lunr.da.min.js
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*!
|
||||
* Lunr languages, `Danish` language
|
||||
* https://github.com/MihaiValentin/lunr-languages
|
||||
*
|
||||
* Copyright 2014, Mihai Valentin
|
||||
* http://www.mozilla.org/MPL/
|
||||
*/
|
||||
/*!
|
||||
* based on
|
||||
* Snowball JavaScript Library v0.3
|
||||
* http://code.google.com/p/urim/
|
||||
* http://snowball.tartarus.org/
|
||||
*
|
||||
* Copyright 2010, Oleg Mazko
|
||||
* http://www.mozilla.org/MPL/
|
||||
*/
|
||||
|
||||
!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.da=function(){this.pipeline.reset(),this.pipeline.add(e.da.trimmer,e.da.stopWordFilter,e.da.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.da.stemmer))},e.da.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.da.trimmer=e.trimmerSupport.generateTrimmer(e.da.wordCharacters),e.Pipeline.registerFunction(e.da.trimmer,"trimmer-da"),e.da.stemmer=function(){var r=e.stemmerSupport.Among,i=e.stemmerSupport.SnowballProgram,n=new function(){function e(){var e,r=f.cursor+3;if(d=f.limit,0<=r&&r<=f.limit){for(a=r;;){if(e=f.cursor,f.in_grouping(w,97,248)){f.cursor=e;break}if(f.cursor=e,e>=f.limit)return;f.cursor++}for(;!f.out_grouping(w,97,248);){if(f.cursor>=f.limit)return;f.cursor++}d=f.cursor,d<a&&(d=a)}}function n(){var e,r;if(f.cursor>=d&&(r=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,e=f.find_among_b(c,32),f.limit_backward=r,e))switch(f.bra=f.cursor,e){case 1:f.slice_del();break;case 2:f.in_grouping_b(p,97,229)&&f.slice_del()}}function t(){var e,r=f.limit-f.cursor;f.cursor>=d&&(e=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,f.find_among_b(l,4)?(f.bra=f.cursor,f.limit_backward=e,f.cursor=f.limit-r,f.cursor>f.limit_backward&&(f.cursor--,f.bra=f.cursor,f.slice_del())):f.limit_backward=e)}function s(){var e,r,i,n=f.limit-f.cursor;if(f.ket=f.cursor,f.eq_s_b(2,"st")&&(f.bra=f.cursor,f.eq_s_b(2,"ig")&&f.slice_del()),f.cursor=f.limit-n,f.cursor>=d&&(r=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,e=f.find_among_b(m,5),f.limit_backward=r,e))switch(f.bra=f.cursor,e){case 1:f.slice_del(),i=f.limit-f.cursor,t(),f.cursor=f.limit-i;break;case 2:f.slice_from("løs")}}function o(){var e;f.cursor>=d&&(e=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,f.out_grouping_b(w,97,248)?(f.bra=f.cursor,u=f.slice_to(u),f.limit_backward=e,f.eq_v_b(u)&&f.slice_del()):f.limit_backward=e)}var a,d,u,c=[new r("hed",-1,1),new r("ethed",0,1),new r("ered",-1,1),new r("e",-1,1),new r("erede",3,1),new r("ende",3,1),new r("erende",5,1),new r("ene",3,1),new r("erne",3,1),new r("ere",3,1),new r("en",-1,1),new r("heden",10,1),new r("eren",10,1),new r("er",-1,1),new r("heder",13,1),new r("erer",13,1),new r("s",-1,2),new r("heds",16,1),new r("es",16,1),new r("endes",18,1),new r("erendes",19,1),new r("enes",18,1),new r("ernes",18,1),new r("eres",18,1),new r("ens",16,1),new r("hedens",24,1),new r("erens",24,1),new r("ers",16,1),new r("ets",16,1),new r("erets",28,1),new r("et",-1,1),new r("eret",30,1)],l=[new r("gd",-1,-1),new r("dt",-1,-1),new r("gt",-1,-1),new r("kt",-1,-1)],m=[new r("ig",-1,1),new r("lig",0,1),new r("elig",1,1),new r("els",-1,1),new r("løst",-1,2)],w=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,128],p=[239,254,42,3,0,0,0,0,0,0,0,0,0,0,0,0,16],f=new i;this.setCurrent=function(e){f.setCurrent(e)},this.getCurrent=function(){return f.getCurrent()},this.stem=function(){var r=f.cursor;return e(),f.limit_backward=r,f.cursor=f.limit,n(),f.cursor=f.limit,t(),f.cursor=f.limit,s(),f.cursor=f.limit,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.da.stemmer,"stemmer-da"),e.da.stopWordFilter=e.generateStopWordFilter("ad af alle alt anden at blev blive bliver da de dem den denne der deres det dette dig din disse dog du efter eller en end er et for fra ham han hans har havde have hende hendes her hos hun hvad hvis hvor i ikke ind jeg jer jo kunne man mange med meget men mig min mine mit mod ned noget nogle nu når og også om op os over på selv sig sin sine sit skal skulle som sådan thi til ud under var vi vil ville vor være været".split(" ")),e.Pipeline.registerFunction(e.da.stopWordFilter,"stopWordFilter-da")}});
|