├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CODING ├── ChangeLog ├── LICENSE ├── Packaging.cmake ├── README.md ├── TODO ├── cmake └── modules │ ├── FindGpgme.cmake │ └── MacroEnsureVersion.cmake ├── data ├── test2 │ └── c │ │ ├── 0.env │ │ ├── 0.list │ │ ├── 0.sheet │ │ ├── 1.env │ │ ├── 1.list │ │ ├── 1.list.diff │ │ ├── 1.sheet │ │ ├── 2.env │ │ ├── 2.list │ │ ├── 2.list.diff │ │ ├── 2.sheet │ │ ├── 3.env │ │ ├── 3.list │ │ ├── 3.list.diff │ │ ├── 3.sheet │ │ └── cset.status ├── unitest │ ├── c │ │ ├── 0.env │ │ ├── 0.list │ │ ├── 0.sheet │ │ ├── 1.env │ │ ├── 1.list │ │ ├── 1.list.diff │ │ ├── 1.sheet │ │ ├── 2.env │ │ ├── 2.list │ │ ├── 2.list.diff │ │ ├── 2.sheet │ │ ├── 3.env │ │ ├── 3.list │ │ ├── 3.list.diff │ │ ├── 3.sheet │ │ └── cset.status │ └── k │ │ └── 1B0C7D91A7A1A833C32D4E156AEEFE2C96193F28 │ │ └── c.0.gpg ├── unitest2 │ └── c │ │ ├── 1.env │ │ └── 1.list └── unitest3 │ └── c │ ├── 1.env │ └── 1.list ├── distclean ├── docs ├── Makefile ├── RGC │ ├── DC_DL_RGC_2.pdf │ └── RGC_2010.txt ├── RGC_DOM │ ├── DC_DL_RGC_2.pdf │ └── RGC_DOM_2010.txt ├── RGC_arrondissements │ └── arr_paris ├── client_chart.dia ├── geolist_BEL.txt.asc ├── geolist_DEU.txt.asc ├── geolist_FRA.txt.asc ├── geolist_GBR.txt.asc ├── geolist_ITA.txt.asc ├── geolist_UKR.txt.asc ├── ludd_peer_procedures.txt ├── node_chart.dia ├── node_chart.png ├── node_chart.svg ├── pdf │ ├── FooterImg.png │ ├── HeaderImg.png │ ├── Makefile │ ├── OpenUDC_logo.png │ ├── OpenUDCtemplate.latex │ └── bitcoin_blockchain_size.png ├── rfc │ ├── HTTP_OpenPGP_Authentication.draft.txt │ ├── OpenUDC_Authentication_Mechanisms.draft.txt │ ├── OpenUDC_exchange_formats.draft.txt │ ├── draft-shaw-openpgp-hkp-00.txt │ ├── rfc2046.txt │ ├── rfc2388.txt │ ├── rfc3156.txt │ ├── rfc4880.txt │ └── rfc4880_suggestions.diff └── src │ ├── HowItBegan.plantuml │ ├── Presentation.fr.md │ ├── bitcoin_blockchain_size.png │ ├── first_overview_2012.plantuml.txt │ └── graphviz.py ├── extras ├── 10000_5-1-2=0 ├── 6AEEFE2C96193F28@0.c.1 ├── 6AEEFE2C96193F28@0.l.0 ├── 6AEEFE2C96193F28@0.t.0 ├── 6AEEFE2C96193F28@0.t.0.gpg ├── DUtest.sh ├── adressbook ├── cyphertests │ └── testecurves.sh ├── firstbill ├── firstbill.gpg └── gpg.messages ├── obsolete ├── docs │ ├── monetary system_4.odg │ ├── monetary system_4.pdf │ ├── money_description.draft.txt │ └── network_implementation.draft.txt ├── html │ ├── OpenUDC_inscription.html │ └── salon_open-udc.html └── include │ └── udc_unit.h ├── openudc-conf.cmake ├── package_deb ├── package_nsis.bat ├── package_rpm ├── scripts ├── fluxp1.env ├── gen_coordinates_frmetropole.sh ├── generate_geolist.sh ├── irclogger.sh ├── rewind.c ├── tpost.cgi ├── uirc_bot.env └── verify_msigned_url.sh ├── test ├── CMakeLists.txt ├── GpgmeFixMe.cmake ├── gpgme++.cpp ├── gpgme.cpp └── printkeys.py └── unikboard ├── .gitignore ├── Jimfile ├── MEMORY ├── README.md ├── config.js ├── css ├── ie.css ├── print.css ├── screen.css └── unikboard.css ├── db ├── validate_doc_update.js └── views │ └── by_type │ └── map.js ├── haml └── index.haml ├── hooks └── before_build.rb ├── images ├── background_matrix.jpg └── grid.png ├── index.html ├── js ├── app.coffee ├── app.js ├── default.js └── vendor │ ├── jquery-1.4.2.js │ ├── jquery.couch-0.11.js │ ├── sammy-0.6.3.js │ ├── sammy.couch-0.1.0.js │ └── sha1.js ├── proxy ├── couch-gpg.js └── couchdb_unikboard.ini ├── rewrites.js └── sass ├── ie.sass ├── partials └── _base.sass ├── print.sass ├── screen.sass └── unikboard.sass /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/CODING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/LICENSE -------------------------------------------------------------------------------- /Packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/Packaging.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/TODO -------------------------------------------------------------------------------- /cmake/modules/FindGpgme.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/cmake/modules/FindGpgme.cmake -------------------------------------------------------------------------------- /cmake/modules/MacroEnsureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/cmake/modules/MacroEnsureVersion.cmake -------------------------------------------------------------------------------- /data/test2/c/0.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/0.env -------------------------------------------------------------------------------- /data/test2/c/0.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/0.list -------------------------------------------------------------------------------- /data/test2/c/0.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/0.sheet -------------------------------------------------------------------------------- /data/test2/c/1.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/1.env -------------------------------------------------------------------------------- /data/test2/c/1.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/1.list -------------------------------------------------------------------------------- /data/test2/c/1.list.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/1.list.diff -------------------------------------------------------------------------------- /data/test2/c/1.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/1.sheet -------------------------------------------------------------------------------- /data/test2/c/2.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/2.env -------------------------------------------------------------------------------- /data/test2/c/2.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/2.list -------------------------------------------------------------------------------- /data/test2/c/2.list.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/2.list.diff -------------------------------------------------------------------------------- /data/test2/c/2.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/2.sheet -------------------------------------------------------------------------------- /data/test2/c/3.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/3.env -------------------------------------------------------------------------------- /data/test2/c/3.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/3.list -------------------------------------------------------------------------------- /data/test2/c/3.list.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/3.list.diff -------------------------------------------------------------------------------- /data/test2/c/3.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/3.sheet -------------------------------------------------------------------------------- /data/test2/c/cset.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/test2/c/cset.status -------------------------------------------------------------------------------- /data/unitest/c/0.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/0.env -------------------------------------------------------------------------------- /data/unitest/c/0.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/0.list -------------------------------------------------------------------------------- /data/unitest/c/0.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/0.sheet -------------------------------------------------------------------------------- /data/unitest/c/1.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/1.env -------------------------------------------------------------------------------- /data/unitest/c/1.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/1.list -------------------------------------------------------------------------------- /data/unitest/c/1.list.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/1.list.diff -------------------------------------------------------------------------------- /data/unitest/c/1.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/1.sheet -------------------------------------------------------------------------------- /data/unitest/c/2.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/2.env -------------------------------------------------------------------------------- /data/unitest/c/2.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/2.list -------------------------------------------------------------------------------- /data/unitest/c/2.list.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/2.list.diff -------------------------------------------------------------------------------- /data/unitest/c/2.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/2.sheet -------------------------------------------------------------------------------- /data/unitest/c/3.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/3.env -------------------------------------------------------------------------------- /data/unitest/c/3.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/3.list -------------------------------------------------------------------------------- /data/unitest/c/3.list.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/3.list.diff -------------------------------------------------------------------------------- /data/unitest/c/3.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/3.sheet -------------------------------------------------------------------------------- /data/unitest/c/cset.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/c/cset.status -------------------------------------------------------------------------------- /data/unitest/k/1B0C7D91A7A1A833C32D4E156AEEFE2C96193F28/c.0.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest/k/1B0C7D91A7A1A833C32D4E156AEEFE2C96193F28/c.0.gpg -------------------------------------------------------------------------------- /data/unitest2/c/1.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest2/c/1.env -------------------------------------------------------------------------------- /data/unitest2/c/1.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest2/c/1.list -------------------------------------------------------------------------------- /data/unitest3/c/1.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest3/c/1.env -------------------------------------------------------------------------------- /data/unitest3/c/1.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/data/unitest3/c/1.list -------------------------------------------------------------------------------- /distclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/distclean -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/RGC/DC_DL_RGC_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/RGC/DC_DL_RGC_2.pdf -------------------------------------------------------------------------------- /docs/RGC/RGC_2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/RGC/RGC_2010.txt -------------------------------------------------------------------------------- /docs/RGC_DOM/DC_DL_RGC_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/RGC_DOM/DC_DL_RGC_2.pdf -------------------------------------------------------------------------------- /docs/RGC_DOM/RGC_DOM_2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/RGC_DOM/RGC_DOM_2010.txt -------------------------------------------------------------------------------- /docs/RGC_arrondissements/arr_paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/RGC_arrondissements/arr_paris -------------------------------------------------------------------------------- /docs/client_chart.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/client_chart.dia -------------------------------------------------------------------------------- /docs/geolist_BEL.txt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/geolist_BEL.txt.asc -------------------------------------------------------------------------------- /docs/geolist_DEU.txt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/geolist_DEU.txt.asc -------------------------------------------------------------------------------- /docs/geolist_FRA.txt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/geolist_FRA.txt.asc -------------------------------------------------------------------------------- /docs/geolist_GBR.txt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/geolist_GBR.txt.asc -------------------------------------------------------------------------------- /docs/geolist_ITA.txt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/geolist_ITA.txt.asc -------------------------------------------------------------------------------- /docs/geolist_UKR.txt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/geolist_UKR.txt.asc -------------------------------------------------------------------------------- /docs/ludd_peer_procedures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/ludd_peer_procedures.txt -------------------------------------------------------------------------------- /docs/node_chart.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/node_chart.dia -------------------------------------------------------------------------------- /docs/node_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/node_chart.png -------------------------------------------------------------------------------- /docs/node_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/node_chart.svg -------------------------------------------------------------------------------- /docs/pdf/FooterImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/pdf/FooterImg.png -------------------------------------------------------------------------------- /docs/pdf/HeaderImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/pdf/HeaderImg.png -------------------------------------------------------------------------------- /docs/pdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/pdf/Makefile -------------------------------------------------------------------------------- /docs/pdf/OpenUDC_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/pdf/OpenUDC_logo.png -------------------------------------------------------------------------------- /docs/pdf/OpenUDCtemplate.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/pdf/OpenUDCtemplate.latex -------------------------------------------------------------------------------- /docs/pdf/bitcoin_blockchain_size.png: -------------------------------------------------------------------------------- 1 | ../src/bitcoin_blockchain_size.png -------------------------------------------------------------------------------- /docs/rfc/HTTP_OpenPGP_Authentication.draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/HTTP_OpenPGP_Authentication.draft.txt -------------------------------------------------------------------------------- /docs/rfc/OpenUDC_Authentication_Mechanisms.draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/OpenUDC_Authentication_Mechanisms.draft.txt -------------------------------------------------------------------------------- /docs/rfc/OpenUDC_exchange_formats.draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/OpenUDC_exchange_formats.draft.txt -------------------------------------------------------------------------------- /docs/rfc/draft-shaw-openpgp-hkp-00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/draft-shaw-openpgp-hkp-00.txt -------------------------------------------------------------------------------- /docs/rfc/rfc2046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/rfc2046.txt -------------------------------------------------------------------------------- /docs/rfc/rfc2388.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/rfc2388.txt -------------------------------------------------------------------------------- /docs/rfc/rfc3156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/rfc3156.txt -------------------------------------------------------------------------------- /docs/rfc/rfc4880.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/rfc4880.txt -------------------------------------------------------------------------------- /docs/rfc/rfc4880_suggestions.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/rfc/rfc4880_suggestions.diff -------------------------------------------------------------------------------- /docs/src/HowItBegan.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/src/HowItBegan.plantuml -------------------------------------------------------------------------------- /docs/src/Presentation.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/src/Presentation.fr.md -------------------------------------------------------------------------------- /docs/src/bitcoin_blockchain_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/src/bitcoin_blockchain_size.png -------------------------------------------------------------------------------- /docs/src/first_overview_2012.plantuml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/src/first_overview_2012.plantuml.txt -------------------------------------------------------------------------------- /docs/src/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/docs/src/graphviz.py -------------------------------------------------------------------------------- /extras/10000_5-1-2=0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/10000_5-1-2=0 -------------------------------------------------------------------------------- /extras/6AEEFE2C96193F28@0.c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/6AEEFE2C96193F28@0.c.1 -------------------------------------------------------------------------------- /extras/6AEEFE2C96193F28@0.l.0: -------------------------------------------------------------------------------- 1 | d=t2l 2 | c=uni 3 | b=( 4 | 500-1-1.1 5 | ) 6 | f=@1 7 | t="БХ 6282996" 8 | i=... # scan du billet 9 | -------------------------------------------------------------------------------- /extras/6AEEFE2C96193F28@0.t.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/6AEEFE2C96193F28@0.t.0 -------------------------------------------------------------------------------- /extras/6AEEFE2C96193F28@0.t.0.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/6AEEFE2C96193F28@0.t.0.gpg -------------------------------------------------------------------------------- /extras/DUtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/DUtest.sh -------------------------------------------------------------------------------- /extras/adressbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/adressbook -------------------------------------------------------------------------------- /extras/cyphertests/testecurves.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/cyphertests/testecurves.sh -------------------------------------------------------------------------------- /extras/firstbill: -------------------------------------------------------------------------------- 1 | 50_0_0 -------------------------------------------------------------------------------- /extras/firstbill.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/firstbill.gpg -------------------------------------------------------------------------------- /extras/gpg.messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/extras/gpg.messages -------------------------------------------------------------------------------- /obsolete/docs/monetary system_4.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/obsolete/docs/monetary system_4.odg -------------------------------------------------------------------------------- /obsolete/docs/monetary system_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/obsolete/docs/monetary system_4.pdf -------------------------------------------------------------------------------- /obsolete/docs/money_description.draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/obsolete/docs/money_description.draft.txt -------------------------------------------------------------------------------- /obsolete/docs/network_implementation.draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/obsolete/docs/network_implementation.draft.txt -------------------------------------------------------------------------------- /obsolete/html/OpenUDC_inscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/obsolete/html/OpenUDC_inscription.html -------------------------------------------------------------------------------- /obsolete/html/salon_open-udc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/obsolete/html/salon_open-udc.html -------------------------------------------------------------------------------- /obsolete/include/udc_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/obsolete/include/udc_unit.h -------------------------------------------------------------------------------- /openudc-conf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/openudc-conf.cmake -------------------------------------------------------------------------------- /package_deb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | cd release 4 | cpack -G DEB 5 | cd .. 6 | -------------------------------------------------------------------------------- /package_nsis.bat: -------------------------------------------------------------------------------- 1 | cd release 2 | cpack -G NSIS 3 | cd .. 4 | pause 5 | -------------------------------------------------------------------------------- /package_rpm: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | cd release 4 | cpack -G RPM 5 | cd .. 6 | -------------------------------------------------------------------------------- /scripts/fluxp1.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/fluxp1.env -------------------------------------------------------------------------------- /scripts/gen_coordinates_frmetropole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/gen_coordinates_frmetropole.sh -------------------------------------------------------------------------------- /scripts/generate_geolist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/generate_geolist.sh -------------------------------------------------------------------------------- /scripts/irclogger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/irclogger.sh -------------------------------------------------------------------------------- /scripts/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/rewind.c -------------------------------------------------------------------------------- /scripts/tpost.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/tpost.cgi -------------------------------------------------------------------------------- /scripts/uirc_bot.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/uirc_bot.env -------------------------------------------------------------------------------- /scripts/verify_msigned_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/scripts/verify_msigned_url.sh -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/GpgmeFixMe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/test/GpgmeFixMe.cmake -------------------------------------------------------------------------------- /test/gpgme++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/test/gpgme++.cpp -------------------------------------------------------------------------------- /test/gpgme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/test/gpgme.cpp -------------------------------------------------------------------------------- /test/printkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/test/printkeys.py -------------------------------------------------------------------------------- /unikboard/.gitignore: -------------------------------------------------------------------------------- 1 | .couchapprc 2 | .sass-cache 3 | -------------------------------------------------------------------------------- /unikboard/Jimfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/Jimfile -------------------------------------------------------------------------------- /unikboard/MEMORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/MEMORY -------------------------------------------------------------------------------- /unikboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/README.md -------------------------------------------------------------------------------- /unikboard/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/config.js -------------------------------------------------------------------------------- /unikboard/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/css/ie.css -------------------------------------------------------------------------------- /unikboard/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/css/print.css -------------------------------------------------------------------------------- /unikboard/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/css/screen.css -------------------------------------------------------------------------------- /unikboard/css/unikboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/css/unikboard.css -------------------------------------------------------------------------------- /unikboard/db/validate_doc_update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/db/validate_doc_update.js -------------------------------------------------------------------------------- /unikboard/db/views/by_type/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/db/views/by_type/map.js -------------------------------------------------------------------------------- /unikboard/haml/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/haml/index.haml -------------------------------------------------------------------------------- /unikboard/hooks/before_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/hooks/before_build.rb -------------------------------------------------------------------------------- /unikboard/images/background_matrix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/images/background_matrix.jpg -------------------------------------------------------------------------------- /unikboard/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/images/grid.png -------------------------------------------------------------------------------- /unikboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/index.html -------------------------------------------------------------------------------- /unikboard/js/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/app.coffee -------------------------------------------------------------------------------- /unikboard/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/app.js -------------------------------------------------------------------------------- /unikboard/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/default.js -------------------------------------------------------------------------------- /unikboard/js/vendor/jquery-1.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/vendor/jquery-1.4.2.js -------------------------------------------------------------------------------- /unikboard/js/vendor/jquery.couch-0.11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/vendor/jquery.couch-0.11.js -------------------------------------------------------------------------------- /unikboard/js/vendor/sammy-0.6.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/vendor/sammy-0.6.3.js -------------------------------------------------------------------------------- /unikboard/js/vendor/sammy.couch-0.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/vendor/sammy.couch-0.1.0.js -------------------------------------------------------------------------------- /unikboard/js/vendor/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/js/vendor/sha1.js -------------------------------------------------------------------------------- /unikboard/proxy/couch-gpg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/proxy/couch-gpg.js -------------------------------------------------------------------------------- /unikboard/proxy/couchdb_unikboard.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/proxy/couchdb_unikboard.ini -------------------------------------------------------------------------------- /unikboard/rewrites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/rewrites.js -------------------------------------------------------------------------------- /unikboard/sass/ie.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/sass/ie.sass -------------------------------------------------------------------------------- /unikboard/sass/partials/_base.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/sass/partials/_base.sass -------------------------------------------------------------------------------- /unikboard/sass/print.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/sass/print.sass -------------------------------------------------------------------------------- /unikboard/sass/screen.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/sass/screen.sass -------------------------------------------------------------------------------- /unikboard/sass/unikboard.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-UDC/open-udc/HEAD/unikboard/sass/unikboard.sass --------------------------------------------------------------------------------