Browse Source

Begin copy writing for contributions

Former-commit-id: b63fdcc84c
Former-commit-id: 550d477962
pull/258/head
jlukic 11 years ago
parent
commit
9a9c4b9d0d
3 changed files with 85 additions and 1 deletions
  1. 74
      node/src/documents/project/contributing.html
  2. 2
      node/src/files/release/semantic.zip.REMOVED.git-id
  3. 10
      node/src/layouts/default.html.eco

74
node/src/documents/project/contributing.html

@ -0,0 +1,74 @@
---
layout : 'default'
css : 'contribute'
title : 'Contributing'
type : 'Semantic Project'
---
<script src="/javascript/intro.js"></script>
<div class="segment">
<div class="container">
<h1 class="ui header">Contributing
<div class="ui label">Draft</div>
</h1>
</div>
</div>
<div class="main container">
<div class="peek">
<div class="ui vertical pointing secondary menu">
<a class="item">Introduction</a>
<a class="item">Issues</a>
<a class="item">Pull Requests</a>
<a class="item">Components</a>
<a class="item">Community</a>
</div>
</div>
<h2 class="ui dividing header">Introduction</h2>
<h3 class="ui header">Core Contributions</h3>
<p>There are a variety of ways to contribute to the development of Semantic. We are a very new project and are looking for an enthusiastic and like-minded group of core contributors. We use the lovely free project management software <a href="https://trello.com/jack148/recommend">Trello</a> for keeping track of project issues and updates.</p>
<p>We're also currently working on "Dev kits" for creating and testing each type of UI definition, which should be available shortly, so hold tight.</p>
<p>Some boards are open publicly, others are limited to contributors. Anyone can share ideas for the direction of the project using our public boards.</p>
<h3 class="ui header">Style Guide</h3>
<p>Contributors should read over the coding guidelines for the project. Most importantly, the guide for language.</p>
<a class="ui secondary button" href="/guide/cssguide.html">CSS</a>
<a class="ui secondary button" href="/guide/javascript.html">Javascript</a>
<a class="ui secondary button" href="/guide/styleguide.html">Language</a>
<h2 class="ui dividing header">Bugs & Issues</h2>
<p>Please submit any bugs you encounter when using the library to our <a href="https://github.com/jlukic/Semantic-UI/issues?state=open">Github Issues Tracker</a>.</p>
<p>Pleaseinclude a set of steps to reproduce the issue and any related information, browser, OS. If we can't see the issue then it will make solving things much more difficult.</p>
<h2 class="ui dividing header">Pull Requests</h2>
<p>Anyone can jump on the issues board and grab off bugs to fix. Make sure however
<h2 class="ui dividing header">Expanding Core UI</h2>
<p>Semantic is looking for people to help contribute new UI components, and suggest extensions for our core library</p>
<p>If you have any suggestions for components missing from Semantic which you'd like to see in future versions please add suggestions to our public UI board. The current list of upcoming components, and there current development status can be seen on the contributor UI board.</p>
<a class="ui secondary button" href="https://trello.com/b/Q8uTLy2T/semantic-ui-ui-components">Public Board</a>
<a class="ui button" href="https://trello.com/b/dtmaAEmg/semantic-ui-components-contributors">Contributor Board</a>
<h2 class="ui diving header">Community Development</h2>
<p>We're looking currently for ideas on the best way to expand Semantic to include both core library and third party components. This requires creating a component specification which can be used by anyone to create components, and a package management system (website or command line) for distributing them.</p>
<a class="ui secondary button" href="https://trello.com/b/FZvMsVIM/semantic-ui-community">Public Board</a>
<a class="ui button" href="https://trello.com/b/dtmaAEmg/semantic-ui-components-contributors">Contributor Board</a>
<div class="ui divider"></div>
<a class="ui large right labeled teal icon button" href="/element.html">
Next: Roadmap
<i class="right arrow icon"></i>
</a>
</div>

2
node/src/files/release/semantic.zip.REMOVED.git-id

@ -1 +1 @@
3328cbd2a64d23b9a441294494b1e2b6ef211cd0
7b4df56d5e8319e91d40043e518f8909fc368f45

10
node/src/layouts/default.html.eco

@ -1,6 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<head> <head>
<% uiIntroduction = @getCollection("documents").findAllLive({type: $in: ['UI Introduction']},[{title: 1}]).toJSON() %> <% uiIntroduction = @getCollection("documents").findAllLive({type: $in: ['UI Introduction']},[{title: 1}]).toJSON() %>
<% uiProject = @getCollection("documents").findAllLive({type: $in: ['Semantic Project']},[{title: 1}]).toJSON() %>
<% uiGuide = @getCollection("documents").findAllLive({type: $in: ['UI Guide']},[{title: 1}]).toJSON() %> <% uiGuide = @getCollection("documents").findAllLive({type: $in: ['UI Guide']},[{title: 1}]).toJSON() %>
<% uiElements = @getCollection("documents").findAllLive({type: $in: ['UI Element']},[{title: 1}]).toJSON() %> <% uiElements = @getCollection("documents").findAllLive({type: $in: ['UI Element']},[{title: 1}]).toJSON() %>
<% uiCollections = @getCollection("documents").findAllLive({type: $in: ['UI Collection']},[{title: 1}]).toJSON() %> <% uiCollections = @getCollection("documents").findAllLive({type: $in: ['UI Collection']},[{title: 1}]).toJSON() %>
@ -104,6 +105,15 @@
<a class="item" href="/release/semantic.zip"> <a class="item" href="/release/semantic.zip">
<i class="inverted circular red upload icon"></i> <b>Download</b> <i class="inverted circular red upload icon"></i> <b>Download</b>
</a> </a>
<div class="item">
<b>Project</b>
</a>
<div class="menu">
<% for element in uiProject: %>
<a class="<%= if element.id is @document.id then 'active ' %>item" href="<%= element.url %>"><%= element.title %></a>
<% end %>
</div>
</div>
<div class="item"> <div class="item">
<a href="/introduction.html"> <a href="/introduction.html">
<b>Introduction</b> <b>Introduction</b>

Loading…
Cancel
Save