- Store documents
- Get the structure of plain text (title, chapter, paragraphe, sentence, line, word we want to turn in link) to a structured version (XML)
- Store structured documents in a NoSQL database (or git?)
- Attach annotation in document
| ## | |
| # TP1 | |
| # Simon Perdrisat & Amantin Baruti- 2016 | |
| # Replication table 4b p 494 of "ECONOMIC AND POLITICAL EXPLANATIONS OF HUMAN RIGHTS VIOLATIONS" by NEIL J. MITCHELL and JAMES M. McCORMICK | |
| # | |
| # Note: I'm using = instead of <- | |
| # http://blog.revolutionanalytics.com/2008/12/use-equals-or-arrow-for-assignment.html | |
| # | |
| ## |
| import datetime | |
| from django.db import models | |
| from django.utils import timezone | |
| from django.core.urlresolvers import reverse | |
| # Create your models here. | |
| class Asset(models.Model): | |
| title_text = models.CharField(max_length=200) |
| processor 6502 | |
| org $1000 | |
| init_screen | |
| lda #$00 | |
| sta $d020 | |
| sta $d021 | |
| lda #$20 ; #$20 is the spacebar Screen Code | |
| clear | |
| sta $0400,x ; fill four areas with 256 spacebar characters |
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAu/cwbvj7V5hC6ofinO3e44CfqAMB14T850PTxpSz756eJGv0klkpf+CpI54ZfowNoWrmkcFe0mLwuKTsn03zsCgmI/YtV+91aaCjoM5+/6yMUflc/u42pEtHk48svf337K70LaSfN84yJuqPBzECYvPFU3ev0UHXEhGgyrNNfTeQd4pHu0K8AFTTNE2sRjf07F3cCsx/zOR5LNVyOO3zSakeESCWc20chNfLs7XdMBpU3WoM6OWRbUxPy6BhxSeDY3t9rI+YyWEcqbSv6v5IJLkQsndb4tfYcZWPDbMRTAxChDUrboZrpeyGkYOG7Qe/IQdHrlcNEsWolWLIVfeRtQ== [email protected] |
| From 43c894588777fa219440dea797a5460bb8e7e95a Mon Sep 17 00:00:00 2001 | |
| From: gagarine <[email protected]> | |
| Date: Mon, 25 Feb 2013 15:25:32 +0100 | |
| Subject: [PATCH] make the export function works | |
| --- | |
| wp/wp-content/plugins/surveys/export.php | 19 ++++++++++--------- | |
| wp/wp-content/plugins/surveys/export_choose.php | 2 +- | |
| 2 files changed, 11 insertions(+), 10 deletions(-) |
| /** | |
| * theme_link for local block. | |
| * | |
| * Get language code as language switcher link (two chars) | |
| * | |
| * @param type $variables | |
| * @return type | |
| */ | |
| function THEME_links__locale_block($variables) { | |
| foreach ($variables['links'] as $key => $value) { |
| from __future__ import with_statement | |
| from fabric.api import * | |
| @task | |
| def prod(): | |
| env.hosts = ['100.100.100.100'] | |
| env.user = "" | |
| env.password = "" | |
| map $http_accept_language $lang { | |
| default de; | |
| ~*fr fr; | |
| ~*it it; | |
| } | |
| server { | |
| server_name _ site.com; | |
| root /var/www/site.com/drupal; | |
| client_max_body_size 10m; |