Changeset 233
- Timestamp:
- 09/15/09 17:50:28 (11 years ago)
- Location:
- branches/design/server/www/app
- Files:
-
- 7 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/design/server/www/app/views/pages/about.ctp
r150 r233 1 <h2>Officeshots.org</h2>2 1 <h3>Creates transparency in the Office market.</h3> 3 2 4 <p><em>An online service where end users and professionals can compare the output of different office suites - for their own 5 documents!</em></p> 3 <div class="column-right"> 4 5 <div class="polaroid"> 6 <div id="mailinglist"> 7 <h3>Register for the mailing list</h3> 8 <p>If you are interested in this project, why don't you register for the mailing list available for the Officeshots.org project? 9 Provide input to the developers, ask for features - that's what its for.</p> 10 <p style="text-align:center;"> » <a href="http://lists.opendocsociety.org/mailman/listinfo/officeshots">register</a></p> 11 </div> 12 </div> 13 14 <div id="thanks"> 15 <h3>An initiative of</h3> 16 <img src="/img/noiv.png" alt="Nederland in open verbinging logo" /><br /> 17 <img src="/img/opendoc.png" alt="OpenDoc Society logo" /><br /> 18 <img src="/img/nlnet.png" alt="NLNet Foundation logo" /><br /> 19 </div> 20 </div> 21 22 <p><em>An online service where end users and professionals can compare the output of different office suites - for their own 23 documents!</em></p> 6 24 7 25 <p>A thousand flowers are blossoming in the world of productivity tools, thanks to the rise of open standards like the <A href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office">Open Document Format</A> (ISO 26300:2006) for storing and sharing content. Innovation is taking place where it was once thought impossible. With diversity comes choice, but also the need to make sure you are working with the best-of-breed solutions - wether they are open source, freeware, software-as-a-service or paid solutions. </p> 8 9 <div style="float:right; width:40%; margin-left:10px; margin-right:10px; padding:5px; margin-top:0px; border: 1px gray dashed;"><h3>Register for the mailing list</h3><P>If you are interested in this project, why don't you register for the mailing list available for the Officeshots.org project? Provide input to the developers, ask for features - that's what its for.</P><p style="text-align:center;"> >> <A href="http://lists.opendocsociety.org/mailman/listinfo/officeshots">register</A></p></div>10 26 11 27 <p>A document may look nice on your screen while you are working on it in its native application, but that is just the outside. If the exchange formats are not implemented correctly, it might look like a sloppy mess to the person receiving the business proposal, invoice or report you worked so hard on. Officeshots.org was inspired by an open source project from the web standards world called <A href="http://www.browsershots.org">browsershots.org</A>. … … 16 32 <p>After submitting a document to officeshots.org, the site will deliver the print, screen and code output as produced by a variety of different productivity applications - in different versions and across operating system platforms. Anyone can upload ODF-documents, at no cost. This is because officeshots.org actually divides the work among rendering servers hosted by vendors and the community. That could be you (if you're interested, <A href="mailto:info@opendocsociety.org">contact us</A> or look here to see the <a href="http://docs.officeshots.org">technical documentation</a>).</p> 17 33 18 <h3>When can I try it</h3> 19 <p><strong>Currently we are running a closed beta, exclusively available to members and sponsors of OpenDoc Society (<A href="http://www.opendocsociety.org">join</A> or even beter, <A href="http://www.opendocsociety.org">become a sponsor</a>!). A public beta and additional service will be available in June 2009. Officeshots.org is an initiative by <a href="http://www.opendocsociety.org">OpenDoc Society</a> and the <a href="http://www.noiv.nl">Netherlands in Open Connection</a>-program from the Netherlands government. Officeshots.org is sponsored by NLnet foundation, and is developed as an open source (Affero GPLv3-licenced) project in a team lead by Sander Marechal from <a href="http://www.jejik.com">Lone Wolves</a>. </strong></p> 20 21 <br /><br /><img src="/img/thanks.png" id="sponsors" /> 34 <p>Officeshots.org is an initiative by <a href="http://www.opendocsociety.org">OpenDoc Society</a> and the <a href="http://www.noiv.nl">Netherlands in Open Connection</a>-program from the Netherlands government. Officeshots.org is sponsored by NLnet foundation, and is developed as an open source (Affero GPLv3-licenced) project in a team lead by Sander Marechal from <a href="http://www.jejik.com">Lone Wolves</a>.</p> -
branches/design/server/www/app/views/requests/add.ctp
r232 r233 92 92 echo $form->button(__('Upload', true), array('type' => 'submit', 'id' => 'RequestFileSubmit')); 93 93 } else { 94 __('Officeshots is in closed beta. You need to <a href="/users/login">login</a> or <a href="/users/register">register</a> before you can upload documents.');94 echo '<p>' . __('Officeshots is in closed beta. You need to <a href="/users/login">login</a> or <a href="/users/register">register</a> before you can upload documents.', true) . '</p>'; 95 95 echo $form->file('Request.FileUpload', array('disabled' => true)); 96 96 echo $form->button(__('Upload', true), array('type' => 'submit', 'disabled' => true, 'id' => 'RequestFileSubmit')); -
branches/design/server/www/app/webroot/css/cake.override.css
r232 r233 78 78 } 79 79 80 /* Generic right column */ 81 .column-right { 82 display: block; 83 float: right; 84 width: 20em; 85 margin-left: 2em; 86 } 87 88 /* Generic polaroid border wrapper */ 89 .polaroid { 90 display: block; 91 padding: 4px; 92 border: 1px solid #bbb; 93 -moz-border-radius: 5px; 94 } 95 80 96 /* Upload request */ 81 97 #upload { … … 114 130 width: auto; 115 131 display: inline; 132 margin-top: 0.5em; 116 133 margin-bottom: 0.5em; 117 134 } … … 126 143 margin: 0 3em; 127 144 padding: 4px; 128 border: 1px double#bbb;145 border: 1px solid #bbb; 129 146 -moz-border-radius: 5px; 130 147 color: #eee; … … 178 195 border: none; 179 196 color: #eee; 197 text-align: left; 180 198 } 181 199 182 200 #applications tr td { font-size: 9pt; } 183 201 184 #applications input { margin: 0 4px 0 0; } 202 #applications input { margin: 0 6px 0 0; } 203 204 /* Mailinglist registration callout */ 205 #mailinglist { 206 border: 1px solid #aaa; 207 padding: 1em; 208 background: #333 url(/img/sand-swirl.jpg) no-repeat scroll 45% 55%; 209 color: #fff; 210 } 211 212 #mailinglist h3 { 213 padding-top: 52px; 214 background: transparent url(/img/mailinglist.png) no-repeat scroll top right; 215 color: #adceff; 216 font-size: large; 217 } 218 219 #mailinglist a { 220 color: #adceff; 221 } 222 223 /* Sponsor icons */ 224 #thanks { text-align: center; } 225 226 #thanks img { margin-top: 1em; } 185 227 186 228 /* Generic overrides */ 187 229 form { width: 100%; } 188 230 ul, ol { margin: 1em 0 0 4em; } 231 a { color: #17509d; text-decoration: none; } 232 a:hover { color: #17509d; text-decoration: underline; } 233 h1, h2, h3, h4 { color: #006bbe; }
Note: See TracChangeset
for help on using the changeset viewer.