From 033fba2504b11f14313920ac9f4673f751feecc5 Mon Sep 17 00:00:00 2001 From: Saivann Date: Sat, 20 Apr 2013 01:10:38 -0400 Subject: [PATCH] Add a disclaimer for interviewees (thanks Trace Mayer) This fix allows journalists to better understand the open-source nature of Bitcoin --- _less/screen.less | 45 ++++++++++++++++++++++++++------------- en/bitcoin-for-press.html | 10 ++++++++- js/main.js | 14 ++++++++++++ 3 files changed, 53 insertions(+), 16 deletions(-) diff --git a/_less/screen.less b/_less/screen.less index 34d0d3f9..c5f3165c 100644 --- a/_less/screen.less +++ b/_less/screen.less @@ -594,14 +594,7 @@ li{ -moz-border-radius: 8px; border-radius: 8px; } -.press-volunteer>p{ - margin-top:0px; - margin-bottom:30px; -} -.press-volunteer>p>img{ - vertical-align:bottom; -} -.press-volunteer>div{ +.press-volunteer>div>div{ width:400px; height:150px; display:inline-block; @@ -610,24 +603,46 @@ li{ margin-bottom:30px; vertical-align:top; } -.press-volunteer>div>img{ +.press-volunteer>div>div>img{ float:left; margin-right:30px; } -.press-volunteer>div>img:first-child+p{ +.press-volunteer>div>div>img:first-child+p{ font-weight:bold; color:#0d579b; margin:0px; } -.press-volunteer>div>img:first-child+p+p{ +.press-volunteer>div>div>img:first-child+p+p{ margin:0px; } -.press-volunteer>div>img:first-child+p+p+p{ +.press-volunteer>div>div>img:first-child+p+p+p{ font-size:80%; } -.press-volunteer>div>img:first-child+p+p+p+p{ +.press-volunteer>div>div>img:first-child+p+p+p+p{ margin:0px; } +.press-volunteer>p>img{ + vertical-align:bottom; +} +.press-volunteer>div:first-child+p{ + margin-top:0px; + margin-bottom:10px; +} +.press-volunteer>div:first-child+p+p{ + margin-top:0px; + margin-bottom:10px; +} +.press-volunteer>div:first-child+p+p+p{ + height:0px; + overflow:hidden; + margin-top:0px; + margin-bottom:20px; + font-size:85%; + text-align:justify; + transition:height 400ms ease-out; + -moz-transition:height 400ms ease-out; + -webkit-transition:height 400ms ease-out; +} .press-faq{ text-align:left; @@ -846,11 +861,11 @@ li{ padding-left:0px; margin:auto; } - .press-volunteer>div{ + .press-volunteer>div>div{ width:200px; height:auto; } - .press-volunteer>div>img{ + .press-volunteer>div>div>img{ float:none; margin-right:0px; margin-bottom:20px; diff --git a/en/bitcoin-for-press.html b/en/bitcoin-for-press.html index 665471b7..6771522b 100644 --- a/en/bitcoin-for-press.html +++ b/en/bitcoin-for-press.html @@ -12,6 +12,8 @@ mode: wide
+
+
Tony Gallippi

Tony Gallippi

@@ -71,8 +73,14 @@ mode: wide

media@howtovanish.com

+
+

You can contact the press mailing list : mailing list

+

Bitcoin has neither an official organization, individuals with authority nor spokespeople. Read more

+ +

The Bitcoin project is open-source and likewise noone can speak with authority for Bitcoin. The Bitcoin community has individuals who hold a wide spectrum of business experience or involvement, political ideas, personal opinions, technical competency and style. This list of potential interviewees has been curated by Bitcoin community members with an intent to include individuals possessing a wide spectrum of experience, ideas and geography. Individuals listed have been involved in the Bitcoin community for a significant period with tangible contributions, demonstrated competence and professionalism when discussing Bitcoin, are flexible and willing to assist members of the press in both objective and persuasive ways and are generally respected by other members of the Bitcoin community. However, an individual's appearance here should not be misconstrued to be a general endorsement by either the Bitcoin community or any particular individuals with regards to potential interviewees and any business the may operate, political or personal ideas they may expound, prognostications about Bitcoin or the price or any other topic.

+

Facts, FAQs and Myths

@@ -145,7 +153,7 @@ mode: wide
Is Bitcoin secure?
-

The Bitcoin technology - the protocol and the cryptography - has a strong security track record. Bitcoin’s vulnerability is in user error. Bitcoin wallet files that store the necessary private keys can be accidentally deleted, lost, stolen or compromised. Consequently, users need to employ security practices to protect their money or use service providers that offer good levels of security and insurance. As Bitcoin has grown in adoption, more service providers have appeared to make it easier, safer, and more convenient to use and safely secure bitcoins. Bitcoins are not covered by insurance schemes or depositor insurance like the FDIC, but could be with a service provider that offered that service.

+

The Bitcoin technology - the protocol and the cryptography - has a strong security track record. Bitcoin’s vulnerability is in user error. Bitcoin wallet files that store the necessary private keys can be accidentally deleted, lost, stolen or compromised. Consequently, users need to employ security practices to protect their money or use service providers that offer good levels of security and insurance. As Bitcoin has grown in adoption, more service providers have appeared to make it easier, safer, and more convenient to use and safely secure bitcoins. Bitcoins are not covered by insurance schemes or depositor insurance like the FDIC, but could be with a service provider that offered that service.

diff --git a/js/main.js b/js/main.js index 4b8c3acf..e1f230fb 100644 --- a/js/main.js +++ b/js/main.js @@ -117,3 +117,17 @@ else p.style.height=nhe+'px'; t.style.display='none'; cancelEvent(e); } + + +function disclaimershow(e){ +var p=t=getEventTarget(e); +while(p.nodeType!=1||p.nodeName!='P')p=p.parentNode; +p=p.nextSibling; +while(p.nodeType!=1||p.nodeName!='P')p=p.nextSibling; +p.style.height='auto'; +var nhe=getHeight(p); +p.style.height='0px'; +p.style.height=nhe+'px'; +t.parentNode.removeChild(t); +cancelEvent(e); +}