adding license info to each file

ENGINE-135
Volker Birk 2016-12-27 21:13:41 +01:00
parent bc769d41d5
commit e4cfb490c6
117 changed files with 354 additions and 2 deletions

View File

@ -1,3 +1,6 @@
# this file is under GNU General Public License v3.0
# see LICENSE.txt
include Makefile.conf
# add it to the environment of all executed programs:

View File

@ -1,3 +1,5 @@
# this file is in the Public Domain
BUILD_ON=$(shell uname)
BUILD_FOR=$(BUILD_ON)
OPTIMIZE=-g -Wall -O0 -fPIC

View File

@ -1,3 +1,5 @@
# this file is under Creative Commons License 3.0 cc-by-sa
# Building for OS X/macOS
See also README.txt for general information.

View File

@ -1,3 +1,5 @@
# this file is under Creative Commons License 3.0 cc-by-sa
p≡p Engine
==========

View File

@ -1,3 +1,5 @@
# this file is in the Public Domain
- add required Debian packages to build pEp (or where to find non-debian-packaged software, like "libetpan/mailmime_encode.h"
- add build instructions and required "brew" packages for Mac OS X.
- describe, how to configure pEpEngine to use self-compiled libetpan (in $HOME/local/ or the like)

View File

@ -1,3 +1,6 @@
# This file is under GNU General Public License 3.0
# see LICENSE.txt
include ../Makefile.conf
ifeq ($(BUILD_ON),Linux)

View File

@ -1,3 +1,6 @@
/* This file is under GNU General Public License 3.0 */
/* see LICENSE.txt */
DEVICEGROUP
{ iso(1) org(3) dod(6) internet(1) private(4) enterprise(1) pEp (47878) sync(1) keysync(1) }

View File

@ -1,3 +1,6 @@
/* This file is under GNU General Public License 3.0 */
/* see LICENSE.txt */
PEP
{ iso(1) org(3) dod(6) internet(1) private(4) enterprise(1) pEp(47878) basic(0) }

View File

@ -1,3 +1,7 @@
# This file is in the Public Domain
# All other files in this directory are under GNU General Public License 3.0
# see LICENSE.txt
========================================================================
STATIC LIBRARY : pEpEngineASN1 Project Overview
========================================================================

View File

@ -1,3 +1,6 @@
/* This file is under GNU General Public License 3.0 */
/* see LICENSE.txt */
SYNC
DEFINITIONS AUTOMATIC TAGS EXTENSIBILITY IMPLIED ::=

3
build-android/build.sh Executable file → Normal file
View File

@ -1,5 +1,8 @@
#!/bin/sh
# This file is under GNU General Public License 3.0
# see LICENSE.txt
set -e
build_version=1

View File

@ -1,5 +1,8 @@
# Copyright (C) 2015 pEp
# Copyleft 2015 pEp foundation
#
# This file is under GNU General Public License 3.0
# see LICENSE.txt
LOCAL_PATH := $(call my-dir)
$(warning $(LOCAL_PATH))

View File

@ -1,3 +1,6 @@
# This file is under GNU General Public License 3.0
# see LICENSE.txt
#------------------------------------------------------------------------------#
# Makefile to build libEtpan GPGME, GnuPG and deps for use with pEpEngine
# based on pEpJNIAdapter/android/external/Makefile

3
build-mac/README.txt Normal file
View File

@ -0,0 +1,3 @@
# all files in this directory are under GNU General Public License 3.0
# see LICENSE.txt

View File

@ -1,5 +1,8 @@
#!/bin/bash
# This file is under GNU General Public License 3.0
# see LICENSE.txt
#
# Invoke with `sh build.sh`
#

View File

@ -1,5 +1,8 @@
#!/bin/bash
# This file is under GNU General Public License 3.0
# see LICENSE.txt
export DEVROOT=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DFT_DIST_DIR=../libcurl-ios-dist
DIST_DIR=${DIST_DIR:-$DFT_DIST_DIR}

3
build-windows/README.txt Normal file
View File

@ -0,0 +1,3 @@
# all files in this directory are under GNU General Public License 3.0
# see LICENSE.txt

View File

@ -1,3 +1,6 @@
# This file is under GNU General Public License 3.0
# see LICENSE.txt
include ../Makefile.conf
db: system.db

View File

@ -1,3 +1,6 @@
-- This file is under GNU General Public License 3.0
-- See LICENSE.txt
-- DDL
CREATE TABLE i18n_language (

View File

@ -1,5 +1,9 @@
#! /usr/bin/env python3
# This file is under GNU General Public License 3.0
# see LICENSE.txt
from argparse import ArgumentParser
from fileinput import FileInput, hook_encoded
import re, itertools, sys

4
db/dic2csv.py Executable file → Normal file
View File

@ -1,5 +1,9 @@
#! /usr/bin/env python3
# This file is under GNU General Public License 3.0
# see LICENSE.txt
from argparse import ArgumentParser
from fileinput import FileInput, hook_encoded
import re, itertools, sys

View File

@ -1,3 +1,4 @@
@rem this file is in the Public Domain
@echo off
if exist system.db del /f system.db

4
db/mkpass Executable file → Normal file
View File

@ -1,5 +1,9 @@
#!/bin/sh
# This file is under GNU General Public License 3.0
# see LICENSE.txt
if [ $1/ == / ] ; then
lang=en
else

View File

@ -1,5 +1,9 @@
#! /usr/bin/env python3
# This file is under GNU General Public License 3.0
# see LICENSE.txt
from argparse import ArgumentParser
from fileinput import FileInput, hook_encoded
import re, itertools, sys

4
db/trustwords.py Executable file → Normal file
View File

@ -1,5 +1,9 @@
#!/usr/bin/env python3
# This file is under GNU General Public License 3.0
# see LICENSE.txt
from sqlite3 import connect
from os import environ
from argparse import ArgumentParser

View File

@ -1,3 +1,5 @@
# this file is in the Public Domain
# Typical pure MacPorts environment
# Restrict to MacPorts

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "asn1_helper.h"
#include <assert.h>
#include <stdlib.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include <string.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "message_api.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "message.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "blacklist.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include <stdlib.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "dynamic_api.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#ifdef USE_GPG

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#ifdef WIN32

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "email.h"
PEP_STATUS email_sendto(PEP_SESSION session, const message *msg)

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "transport.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "etpan_mime.h"
#ifndef mailmime_param_new_with_data
#include <libetpan/mailprivacy_tools.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include <libetpan/libetpan.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include <stdlib.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "platform.h"
#include <string.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "map_asn1.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include <stdlib.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include <time.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "message_api.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "mime.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "message.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "dynamic_api.h"
#include "openpgp_compat.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// openpgp_compat.h
//
// These functions are the exposure of non-generic PGP-specific functionality (largely related to PGP

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "dynamic_api.h"
#include "cryptotech.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#ifdef __cplusplus

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#define PEP_ENGINE_VERSION "0.8.0"
// maximum attachment size to import as key 1MB, maximum of 20 attachments

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "platform.h"
#include "pEp_internal.h"
#include "pgp_gpg.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include <gpgme.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "pgp_netpgp.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include <curl/curl.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#ifdef __cplusplus

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#define _POSIX_C_SOURCE 200809L
#ifdef ANDROID

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#ifndef __APPLE__
#define _POSIX_C_SOURCE 200809L
#endif

View File

@ -1,4 +1,7 @@
// Windows platform specifica
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// Windows platform specification
#define WIN32_LEAN_AND_MEAN
#ifndef UNICODE

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
// Windows platform specifica

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by pEpEngine.rc

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
/*
** 2001 September 15
**

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include <stdlib.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "dynamic_api.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include <stdlib.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "dynamic_api.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include <memory.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
/*
====================================
Engine/adapter/app KeySync interface

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// Actions for DeviceState state machine
#include <assert.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "platform.h"
// it seems pEp_internal.h needs to be the first pEp include due to the

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "message.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "timestamp.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include <time.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "trans_auto.h"
PEP_STATUS auto_sendto(PEP_SESSION session, const message *msg)

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "transport.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include "pEp_internal.h"
#include "trans_auto.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "pEpEngine.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "platform.h"

View File

@ -1,3 +1,7 @@
# This file is under GNU General Public License 3.0
# see LICENSE.txt
include ../Makefile.conf
all: .codegen

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// DeviceGroup protocol for p≡p
// Copyleft (c) 2016, p≡p foundation

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// FSM Y language 1.0
// Copyleft (c) 2016, p≡p foundation

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// function library
def "func:distinctName" {

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// generate actions skeleton
// Copyleft (c) 2016, p≡p foundation

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
include yslt.yml2
tstylesheet {

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
// generate state machine code
// Copyleft (c) 2016, p≡p foundation

View File

@ -1,3 +1,7 @@
# This file is under GNU General Public License 3.0
# see LICENSE.txt
include ../Makefile.conf
export GNUPGHOME=.

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include <iostream>
#include <string>
#include <assert.h>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include <iostream>
#include <iostream>
#include <fstream>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include <iostream>
#include <iostream>
#include <fstream>

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include <stdlib.h>
#include <string.h>
#include "platform.h"

View File

@ -1,3 +1,6 @@
// This file is under GNU General Public License 3.0
// see LICENSE.txt
#include <iostream>
#include <string>
#include <assert.h>

Some files were not shown because too many files have changed in this diff Show More