From d28c2841cc5a7b0cad30668469d1b77cdbef2175 Mon Sep 17 00:00:00 2001 From: Tomas Brada Date: Sun, 20 Jul 2014 18:47:39 +0200 Subject: [PATCH] Base files. --- .gitignore | 6 +++ assets/0.css | 0 assets/MsgDraftEdit.htm | 23 ++++++++++++ assets/MsgDraftIndex.htm | 20 ++++++++++ assets/MsgDraftRcptAB.htm | 13 +++++++ assets/MsgDraftSend.htm | 27 ++++++++++++++ assets/index.htm | 24 ++++++++++++ assets/neighbIndex.htm | 14 +++++++ assets/peersIndex.htm | 17 +++++++++ fpc.cfg | 95 +++++++++++++++++++++++++++++++++++++++++++++++ tmux | 2 + todo.txt | 1 + 12 files changed, 242 insertions(+) create mode 100644 .gitignore create mode 100644 assets/0.css create mode 100644 assets/MsgDraftEdit.htm create mode 100644 assets/MsgDraftIndex.htm create mode 100644 assets/MsgDraftRcptAB.htm create mode 100644 assets/MsgDraftSend.htm create mode 100644 assets/index.htm create mode 100644 assets/neighbIndex.htm create mode 100644 assets/peersIndex.htm create mode 100644 fpc.cfg create mode 100644 tmux create mode 100644 todo.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e735057 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*.o +*.ppu +lib*.a +[ad].htm +[ad].md +[ad].atom diff --git a/assets/0.css b/assets/0.css new file mode 100644 index 0000000..e69de29 diff --git a/assets/MsgDraftEdit.htm b/assets/MsgDraftEdit.htm new file mode 100644 index 0000000..af02a5b --- /dev/null +++ b/assets/MsgDraftEdit.htm @@ -0,0 +1,23 @@ + + +BrodNet Message editor +
+

BrodNet Message Editor

+ +
+ +

Name: (Not part of the message) +

+

+ + +

+ +
+ + diff --git a/assets/MsgDraftIndex.htm b/assets/MsgDraftIndex.htm new file mode 100644 index 0000000..b2e1005 --- /dev/null +++ b/assets/MsgDraftIndex.htm @@ -0,0 +1,20 @@ + + +BrodNet Message draftboard +
+

BrodNet Message Drafts

+ + + + + + +
TitleX
ZidanX
SufuskyX
+ +
+ +
+ + diff --git a/assets/MsgDraftRcptAB.htm b/assets/MsgDraftRcptAB.htm new file mode 100644 index 0000000..390e055 --- /dev/null +++ b/assets/MsgDraftRcptAB.htm @@ -0,0 +1,13 @@ + + + + + +0x1234ABCD Zidan Sufusky
+0x2234ABCD Zidan Sufusky
+0x3234ABCD Zidan Sufusky
+0x4234ABCD Zidan Sufusky
+0x5234ABCD Zidan Sufusky
+0x6234ABCD Zidan Sufusky
+ + diff --git a/assets/MsgDraftSend.htm b/assets/MsgDraftSend.htm new file mode 100644 index 0000000..eec35e0 --- /dev/null +++ b/assets/MsgDraftSend.htm @@ -0,0 +1,27 @@ + + +
+

Send Zidan

+ +

Recipients

+
+ + + +Preview +
+ + +
+
+ +

+ +

+ +
+ + diff --git a/assets/index.htm b/assets/index.htm new file mode 100644 index 0000000..0220351 --- /dev/null +++ b/assets/index.htm @@ -0,0 +1,24 @@ + + +BrodNet main screen turn on + +
+

BrodNet main screen turn on

+ +
+ + diff --git a/assets/neighbIndex.htm b/assets/neighbIndex.htm new file mode 100644 index 0000000..0865bf2 --- /dev/null +++ b/assets/neighbIndex.htm @@ -0,0 +1,14 @@ + + +BrodNet Neighbours +
+

BrodNet Neighbours

+ +

Currently known nodes

+ + +
+ + diff --git a/assets/peersIndex.htm b/assets/peersIndex.htm new file mode 100644 index 0000000..dc439d9 --- /dev/null +++ b/assets/peersIndex.htm @@ -0,0 +1,17 @@ + + +BrodNet Peers +
+

BrodNet Peers

+ +

Add peer

+
+

Address: + +

+ +
+ + diff --git a/fpc.cfg b/fpc.cfg new file mode 100644 index 0000000..f462bbf --- /dev/null +++ b/fpc.cfg @@ -0,0 +1,95 @@ +#INCLUDE /etc/fpc.cfg + +-Mobjfpc +#IFDEF RELEASE + -O2 + -Xs + -vewnh + -CX + -XX +#ELSE + +# Semantic checking +# -S2 same as -Mobjfpc +# -Sc supports operators like C (*=,+=,/= and -=) +# -Sa include assertion code. +# -Sd same as -Mdelphi +# -Se error options. is a combination of the following: +# : compiler stops after errors (default is 1) +# w : compiler stops also after warnings +# n : compiler stops also after notes +# h : compiler stops also after hints +# -Sg allow LABEL and GOTO +# -Sh Use ansistrings +# -Si support C++ styled INLINE +# -Sk load fpcylix unit +# -SI set interface style to +# -SIcom COM compatible interface (default) +# -SIcorba CORBA compatible interface +# -Sm support macros like C (global) +# -So same as -Mtp +# -Sp same as -Mgpc +# -Ss constructor name must be init (destructor must be done) +# -Sx enable exception keywords (default in Delphi/ObjFPC modes) +# +# Allow goto, inline, C-operators, C-vars +-Scagix + + +# Uncomment the next line if you always want static/dynamic units by default +# (can be overruled with -CD, -CS at the commandline) +#-CS +#-CD + +# Set the default heapsize to 8Mb +#-Ch8000000 + +# Set default codegeneration checks (iocheck, overflow, range, stack) +-Ci +-Co +-Cr +-Ct + +# Optimizer switches +# -Os generate smaller code +# -Oa=N set alignment to N +# -O1 level 1 optimizations (quick optimizations, debuggable) +# -O2 level 2 optimizations (-O1 + optimizations which make debugging more difficult) +# -O3 level 3 optimizations (-O2 + optimizations which also may make the program slower rather than faster) +# -Oo switch on optimalization x. See fpc -i for possible values +# -OoNO switch off optimalization x. See fpc -i for possible values +# -Op set target cpu for optimizing, see fpc -i for possible values +-O1 + +# generate always debugging information for GDB (slows down the compiling +# process) +# -gc generate checks for pointers +# -gd use dbx +# -gg use gsym +# -gh use heap trace unit (for memory leak debugging) +# -gl use line info unit to show more info for backtraces +# -gv generates programs tracable with valgrind +# -gw generate dwarf debugging info +# +-gl +-gc + +# Write always a nice FPC logo ;) +# -l + +# Verbosity +# e : Show errors (default) d : Show debug info +# w : Show warnings u : Show unit info +# n : Show notes t : Show tried/used files +# h : Show hints s : Show time stamps +# i : Show general info q : Show message numbers +# l : Show linenumbers c : Show conditionals +# a : Show everything 0 : Show nothing (except errors) +# b : Write file names messages r : Rhide/GCC compatibility mode +# with full path x : Executable info (Win32 only) +# v : write fpcdebug.txt with p : Write tree.log with parse tree +# lots of debugging info +# +-vewn + +#ENDIF \ No newline at end of file diff --git a/tmux b/tmux new file mode 100644 index 0000000..e836c94 --- /dev/null +++ b/tmux @@ -0,0 +1,2 @@ +#!/bin/bash +session_name="brdnet" diff --git a/todo.txt b/todo.txt new file mode 100644 index 0000000..621d336 --- /dev/null +++ b/todo.txt @@ -0,0 +1 @@ +To-Do list -- 2.11.4.GIT