forked from callForPapers/callForPapers.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addCfp.html
61 lines (59 loc) · 2.81 KB
/
addCfp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<html>
<head>
<title>How to add CFP</title>
<link rel="stylesheet" href="http://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" href="http://ajax.aspnetcdn.com/ajax/bootstrap/3.3.5/css/bootstrap-theme.min.css" />
</head>
<body>
<div class="container">
<header>
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">CFP</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="/">CFP list</a></li>
<li class="active"><a href="addCfp.html">Add new CFP</a></li>
</ul>
</div>
</div>
</header>
<h1>How to add new CFP</h1>
<div class="row">
<ol>
<li>Go to <a href="https://github.com/callForPapers/callForPapers.github.io">https://github.com/callForPapers/callForPapers.github.io</a></li>
<li>Fork the repository to your local machine</li>
<li>Open the `_data/conferences` directory</li>
<li>Add a new *.json file. Replace * with the name of the conference</li>
<li>
Edit the following json to meet your needs:
<pre><code>{
"name" : "ACCU",
"conferenceStart" : "2016-04-19",
"conferenceEnd" : "2016-04-23",
"callForPapersEnd" : "2015-11-13",
"url": "http://accu.org/index.php/conferences/accu_conference_2016/accu2016_call_for_sessions",
"lang": "en",
"location": "Bristol, United Kingdom",
"tags": "programmin, testing, architecture and design, development process, analysis, patterns, project management"
}</code></pre>
</li>
<li>Save the file</li>
<li>Commit your changes</li>
<li>Push the changes to your repository</li>
<li>Create a pull request either through the GUI, GitHub directory or tool of your choice</li>
<li>Pat yourself on the back for a job well done</li>
<li>Congratulations - you are now and Open Source contributor</li>
</ol>
If any of this is unclear, give us a shout and we'll be more than happy to help you out.
</div>
</div>
</body>
</html>