Version 76.1 by Alex Cotiugă on 2018/03/16 16:05

Show last authors
1 {{velocity output="false"}}
2 #set ($gsocYear = "${datetool.year}")
3 #set ($sql = ", BaseObject obj, StringProperty year where obj.name=doc.fullName and obj.className='GoogleSummerOfCode.ProjectClass' and doc.name<>'ProjectClassTemplate' and year.id.id = obj.id and year.id.name = 'year' and year.value = '${gsocYear}' order by doc.creationDate")
4 #set ($projects= $xwiki.searchDocuments($sql))
5
6 #set ($selectedProjectDocuments = [])
7 #set ($selectedStudents = [])
8 #foreach ($item in $projects)
9 #set ($projectDocument = $xwiki.getDocument($item))
10 #set ($projectObject = $projectDocument.getObject('GoogleSummerOfCode.ProjectClass'))
11 #set ($projectStatusValue = $projectObject.getProperty('status').value)
12 #if ("$!projectStatusValue" != '' && $projectStatusValue != 'proposed')
13 #set ($projectStudent = $projectObject.getProperty('assignee').value)
14 #set ($discard = $selectedProjectDocuments.add($projectDocument))
15 #set ($discard = $selectedStudents.add($projectStudent))
16 #end
17 #end
18
19 #macro (displayProject $project $item $student)
20 #set ($discard = $project.use('GoogleSummerOfCode.ProjectClass'))
21 (% style="border: 1px dotted #CCC; margin: 0 auto 10px; padding: 0 8px 4px;" %)(((
22 (% style="margin-top: 0; padding-top: 22px" %)
23 == [[$project.displayTitle>>$item]] #if ("$!student" != '')by ${xwiki.getUserName($student, false)}#end ==
24 (% class="projectdesc" %)(((
25 $project.details
26 (% class="clearfloats" %)((()))
27 )))
28 (% style="font-size: 80%; color: #888;" %)(((
29 #if ("$!project.getValue('leader')" != '')
30 //Coordinated by// $project.display('leader', 'view')
31 #end
32 #if ("$!project.getValue('assignee')" != '')
33 //Student// $project.display('assignee', 'view')
34 #end
35 #if ("$!project.getValue('workload')" != "")
36 //Estimated workload//: **$project.display('workload', 'view')**.
37 #end
38 [[Read more...>>$item]]
39 )))
40 )))
41 #end
42 {{/velocity}}
43
44 {{box cssClass="floatinginfobox" title="**Contents**"}}
45 {{toc/}}
46 {{/box}}
47
48 This page hosts information and project ideas for the open source project [[XWiki>>http://www.xwiki.org]] related to the {{velocity}}[[Google Summer of Code ${gsocYear}>>https://summerofcode.withgoogle.com/]]{{/velocity}} mentorship program.
49
50 XWiki has also been [[participating to Google Code-In>>dev:GoogleCodeIn.WebHome]] since 2017.
51
52 = About GSoC =
53
54 You can learn a lot about the program by reading the {{velocity}}[[GSoC FAQ>>https://developers.google.com/open-source/gsoc/faq]]{{/velocity}}. The timeline of this year's edition is given {{velocity}}[[here>>https://developers.google.com/open-source/gsoc/timeline]]{{/velocity}}.
55
56 = XWiki Guidelines =
57
58 Being part of the XWiki community means knowing [[our rules and practices>>GoogleSummerOfCode.Guidelines]]. As a GSOC student you need to make sure you read and apply our guidelines.
59
60 = Student Application template =
61
62 When applying for one of our projects, please provide [[this information about yourself and the project you choose>>GoogleSummerOfCode.student application form]] in the application which you submit to Google.
63
64 {{comment}}
65 The velocity code below (for displaying selected projects) should be commented on next year's GSoC and un-commented only after the projects selection period finishes.
66 {{/comment}}
67
68 {{velocity}}
69 = Selected Projects for GSoC ${gsocYear} ($selectedProjectDocuments.size()) =
70
71 The projects below, out of all the proposed projects, have been selected to participate in GSoC ${gsocYear}.
72
73 #foreach ($selectedProjectDocument in $selectedProjectDocuments)
74 #set ($studentIndex = $mathtool.sub($foreach.count, 1))
75 #displayProject($selectedProjectDocument $selectedProjectDocument.fullName "$!selectedStudents.get($studentIndex)")
76 #end
77 {{/velocity}}
78
79 (((
80 = Proposed Projects ({{velocity}}$projects.size(){{/velocity}}) =
81
82 Students can come up with their own ideas, but the ideas need to be proposed and discussed on the [[mailing list>>Community.MailingLists]].
83
84 {{comment}}
85 The message bellow should be uncommented next year, before the students are selected and re-commented after that.
86
87 {{info}}
88 We are currently gathering project ideas. We encourage would-be mentors to propose ideas or even to revive old ideas from the previous years, but, if you do, make sure to **assign yourselves as mentors** for the proposed project. Proposals without mentors will be discarded, as we have learned from previous years that they are counter-productive.
89
90 Students are also encouraged to propose projects, but make sure you first run your idea through the community (see the [[Contact Us>>||anchor="HContactus"]] section below) and that you **find a mentor** interested in the idea that you can assign to the project proposal.
91
92 We also recommend students interested in joining XWiki for GSoC {{velocity}}${gsocYear}{{/velocity}} to **manifest themselves as early as possible** so that we can start working with them on this project list.
93 {{/info}}
94
95 {{/comment}}
96
97 {{velocity}}
98 #foreach ($item in $projects)
99 #set($project = $xwiki.getDocument($item))
100 * {{html}}<a href="#H$util.encodeURI("${project.displayTitle.replaceAll('[^a-zA-Z0-9\.]', '')}")">$project.displayTitle</a>{{/html}}
101 #end
102 #if($hasEdit)
103
104 {{html}}
105 <form action="$xwiki.getDocument("${doc.space}.CreateProject").getURL()" id="newproject">
106 <div>
107 <input type='hidden' name='parent' value="$doc.fullName" />
108 <input type='hidden' name='classname' value='GoogleSummerOfCode.ProjectClass' />
109 <input type='hidden' name='template' value='GoogleSummerOfCode.ProjectClassTemplate' />
110 <input type='hidden' name='space' value="$doc.space"/>
111 <input type='hidden' name='xaction' value='create'/>
112 <input type='text' name='page' value='' size='30'/>
113 <input type='hidden' name='year' value="${gsocYear}" size='30'/>
114 <span class='buttonwrapper'><input class='button' type='submit' value='Add this Project'/></span>
115 </div>
116 </form>
117 {{/html}}
118
119 #end
120
121 #foreach ($item in $projects)
122 #set($project = $xwiki.getDocument($item))
123 #displayProject($project $item '')
124 #end
125 {{/velocity}}
126
127 = Contact us =
128
129 You can ask for more information about each project proposal and interact with the community and mentors through the usual communication channels: [[mailing list>>Community.MailingLists]] ([[devs AT xwiki.org>>http://lists.xwiki.org/mailman/listinfo/devs]]) or the [[IRC channel>>Community.IRC]].
130
131 = What's next after GSOC? =
132
133 First and foremost: Thank you for having participated to XWiki!
134
135 We want to keep you in the community for as long as possible. We understand that you may have school projects to carry on and won't have the time to continue participating much immediately after GSOC. However, we're really keen to see you coming back to this community when things settle a bit more and you get some time again.
136
137 Here's some visibility and ideas of what's next after you've completed a GSOC project and opportunities you may have:
138
139 * You could be voted as [[Committer>>doc:Community.Committership]]
140 * You could get hired by one of the [[companies doing some business on top of the XWiki project>>doc:xwiki:Main.Supporters.SponsoringCompanies.WebHome]]
141 * Become a [[Google Code-In mentor>>doc:GoogleCodeIn.WebHome]]
142 * You could propose a school project, PhD, etc about XWiki to your teachers!
143 * You'll be able to add a nice line to your CV about having participated to an open source project :)
144 * You can ask for recommendations on LinkedIn, Facebook, etc about your work as a GSOC student
145 * (Future, doesn't exist ATM) Your name on the [[Hall of Fame>>doc:Community.HallOfFame]]
146 * (Future, doesn't exist ATM) Receive an XWiki GSOC t-shirt
147 * (Future, doesn't exist ATM) Be sponsored to take about XWiki at conferences
148 * (Future, doesn't exist ATM) Be able to implement some bounties for XWiki and get paid for it
149 * (Future, doesn't exist ATM) Be invited to physically participate to an XWiki conference
150
151 = Previous GSoC editions =
152
153 * [[The XWiki GSoC 2017 page>>GoogleSummerOfCode2017]]
154 * [[The XWiki GSoC 2016 page>>GoogleSummerOfCode2016]]
155 * [[The page prepared for GSoC 2015>>GoogleSummerOfCode2015]] (XWiki was not selected for GSoC 2015)
156 * [[The page prepared for GSoC 2014>>GoogleSummerOfCode2014]] (XWiki was not selected for GSoC 2014)
157 * [[The XWiki GSoC 2013 page>>GoogleSummerOfCode2013]]
158 * [[The XWiki GSoC 2012 page>>GoogleSummerOfCode2012]]
159 * [[The XWiki GSoC 2011 page>>GoogleSummerOfCode2011]]
160 * [[The page prepared for GSoC 2010>>GoogleSummerOfCode2010]] (XWiki was not selected for GSoC 2010)
161 * [[The XWiki GSoC 2009 page>>GoogleSummerOfCode2009]]
162 * [[The XWiki GSoC 2008 page>>GoogleSummerOfCode2008]]
163 * [[The XWiki GSoC 2007 page>>GoogleSummerOfCode2007]]
164 )))

Get Connected