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
'use strict'; | |
import m from 'mithril'; | |
import infinite from 'mithril-infinite'; | |
const item = (data) => { | |
return m('.item', | |
{ | |
style: { | |
background: '#eee', |
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
/* | |
This code uses a regular expression to make the json safer. | |
An potentially safer alternative is https://github.com/joewalnes/filtrex (untested) at the cost of 130Kb. | |
Can be used for example with this JSON structure: | |
{ | |
"_meta_po_header": "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);", | |
"COLLECTION_CONTENTS[0]": "Kolekcja zawiera %@ przepis.", | |
"COLLECTION_CONTENTS[1]": "Kolekcja zawiera %@ przepisy.", | |
"COLLECTION_CONTENTS[2]": "Kolekcja zawiera %@ przepisów." |
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
var router = function(component, name) { | |
return { | |
controller: function() { | |
// Do something generic like calling Google Analytics from here | |
console.log("router", name); | |
return new component.controller(); | |
}, | |
view: component.view | |
}; | |
}; |
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
-module(m_omdb). | |
-behaviour(gen_model). | |
-export([ | |
m_find_value/3, | |
m_to_list/2, | |
m_value/2 | |
]). | |
-include_lib("zotonic.hrl"). |
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
%% @doc | |
%% Filter module for Zotonic | |
%% 'foldl' filter, applies foldl to a list | |
%% | |
%% Usage: | |
%% {{ [1,2,3]|foldl:["*", 1] }} | |
%% {{ [1,2,3]|foldl:["+", 0] }} | |
%% {{ ["a", "b", "c"]|foldl:["++", ""] }} | |
%% | |
%% Pass an attribute to fetch for each item: |
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
{- | |
Sphinx setup: | |
--- | |
Download the latest version from http://sphinxsearch.com/downloads/release/ | |
--- | |
Backup the original conf file at /etc/sphinxsearch/sphinx.conf and create a new one with: | |
source searcher_src { | |
type = xmlpipe2 | |
xmlpipe_command = curl http://localhost:3000/search/xmlpipe |
NewerOlder