• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account Log out
  • Favorite
  • Project
  • Recent History
Loading...
  • Log in
  • Sign up
kadrians / Testing_for_YONA star
  • Project homeH
  • CodeC
  • IssueI 1
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB 2
  • Files
  • Commit
  • Branches
Testing_for_YONAsourceappviewsgitcreate.scala.html
Download as .zip file
File name
Commit message
Commit date
bin
Yona 1.16.0 Upload
02-04
lib
Yona 1.16.0 Upload
02-04
share/doc/api
Yona 1.16.0 Upload
02-04
source
Source Code Upload
02-04
README.md
Yona 1.16.0 Upload
02-04
File name
Commit message
Commit date
app
Source Code Upload
02-04
conf
Source Code Upload
02-04
docs
Source Code Upload
02-04
lib
Source Code Upload
02-04
project
Source Code Upload
02-04
public
Source Code Upload
02-04
support-script
Source Code Upload
02-04
test
Source Code Upload
02-04
.gitignore
Source Code Upload
02-04
.mailmap
Source Code Upload
02-04
.travis.yml
Source Code Upload
02-04
AUTHORS
Source Code Upload
02-04
LICENSE
Source Code Upload
02-04
NOTICE
Source Code Upload
02-04
README.md
Source Code Upload
02-04
build.sbt
Source Code Upload
02-04
dev.sh
Source Code Upload
02-04
dist.sh
Source Code Upload
02-04
is-alive-bot.sh
Source Code Upload
02-04
minify-js.sh
Source Code Upload
02-04
restart.sh
Source Code Upload
02-04
File name
Commit message
Commit date
actions
Source Code Upload
02-04
actors
Source Code Upload
02-04
assets/stylesheets
Source Code Upload
02-04
controllers
Source Code Upload
02-04
data
Source Code Upload
02-04
errors
Source Code Upload
02-04
mailbox
Source Code Upload
02-04
models
Source Code Upload
02-04
notification
Source Code Upload
02-04
playRepository
Source Code Upload
02-04
service
Source Code Upload
02-04
utils
Source Code Upload
02-04
validation
Source Code Upload
02-04
views
Source Code Upload
02-04
Global.java
Source Code Upload
02-04
File name
Commit message
Commit date
board
Source Code Upload
02-04
code
Source Code Upload
02-04
common
Source Code Upload
02-04
error
Source Code Upload
02-04
git
Source Code Upload
02-04
help
Source Code Upload
02-04
index
Source Code Upload
02-04
issue
Source Code Upload
02-04
migration
Source Code Upload
02-04
milestone
Source Code Upload
02-04
organization
Source Code Upload
02-04
project
Source Code Upload
02-04
reviewthread
Source Code Upload
02-04
search
Source Code Upload
02-04
site
Source Code Upload
02-04
user
Source Code Upload
02-04
welcome
Source Code Upload
02-04
layout.scala.html
Source Code Upload
02-04
layout_framed.scala.html
Source Code Upload
02-04
organizationLayout.scala.html
Source Code Upload
02-04
partial_comment_form_on_thread.scala.html
Source Code Upload
02-04
partial_comment_thread.scala.html
Source Code Upload
02-04
partial_diff.scala.html
Source Code Upload
02-04
partial_diff_comment_on_line.scala.html
Source Code Upload
02-04
partial_diff_line.scala.html
Source Code Upload
02-04
partial_filediff.scala.html
Source Code Upload
02-04
partial_update_notification.scala.html
Source Code Upload
02-04
projectLayout.scala.html
Source Code Upload
02-04
projectMenu.scala.html
Source Code Upload
02-04
restricted.scala.html
Source Code Upload
02-04
sidebar.scala.html
Source Code Upload
02-04
siteLayout.scala.html
Source Code Upload
02-04
siteLayout_framed.scala.html
Source Code Upload
02-04
File name
Commit message
Commit date
clone.scala.html
Source Code Upload
02-04
create.scala.html
Source Code Upload
02-04
edit.scala.html
Source Code Upload
02-04
fork.scala.html
Source Code Upload
02-04
list.scala.html
Source Code Upload
02-04
partial_branch.scala.html
Source Code Upload
02-04
partial_forklist.scala.html
Source Code Upload
02-04
partial_info.scala.html
Source Code Upload
02-04
partial_list.scala.html
Source Code Upload
02-04
partial_merge_result.scala.html
Source Code Upload
02-04
partial_pull_request_event.scala.html
Source Code Upload
02-04
partial_recently_pushed_branches.scala.html
Source Code Upload
02-04
partial_reviewlist.scala.html
Source Code Upload
02-04
partial_search.scala.html
Source Code Upload
02-04
partial_state.scala.html
Source Code Upload
02-04
view.scala.html
Source Code Upload
02-04
viewChanges.scala.html
Source Code Upload
02-04
Nell 02-04 2600fe6 Source Code Upload UNIX
Raw Open in browser Change history
@** * Yobi, Project Hosting SW * * Copyright 2013 NAVER Corp. * http://yobi.io * * @author Keesun Baik * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. **@ @(title:String, form: play.data.Form[PullRequest], project:Project, projects:List[Project], fromProject:Project, toProject:Project, fromBranches:List[playRepository.GitBranch], toBranches:List[playRepository.GitBranch], pullRequest:models.PullRequest) @import scala.collection.Map @import utils.TemplateHelper._ @import utils.TemplateHelper.Branches._ @implicitField = @{ helper.FieldConstructor(simpleForm) } @projectLayout(title, project, utils.MenuType.PULL_REQUEST) { @projectMenu(project, utils.MenuType.PULL_REQUEST, "main-menu-only") <div class="page-wrap-outer"> <div class="project-page-wrap"> <div class="content-wrap frm-wrap"> @helper.form(action=routes.PullRequestApp.newPullRequest(project.owner, project.name), 'enctype -> "multipart/form-data", 'class->"nm"){ <div class="pull-request-wrap"> <!-- from --> <div class="pull-left"> <label for="fromProjectId" class="field-title">@Messages("pullRequest.from")</label> <select id="fromProjectId" name="fromProjectId" data-toggle="select2" class="mr5"> <option></option> @for(repo <- projects if ProjectUser.isMember(UserApp.currentUser().id, repo.id)) { <option value="@repo.id" @if(repo.id == fromProject.id){ selected }> @repo.owner / @repo.name </option> } </select> <select id="fromBranch" name="fromBranch" data-toggle="select2" data-format="branch" data-dropdown-css-class="branches" data-placeholder="@Messages("pullRequest.select.branch")"> <option></option> @for(branch <- fromBranches) { <option value="@branch.getName" @if(branch.getName == pullRequest.fromBranch){ selected }>@branch.getName</option> } </select> </div> <!-- // --> <div class="arrow"> <i class="yobicon-right-2"></i> </div> <!-- to --> <div class="pull-right"> <label for="toProjectId" class="field-title">@Messages("pullRequest.to")</label> <select id="toProjectId" name="toProjectId" data-toggle="select2" class="mr5"> <option></option> @for(repo <- projects){ <option value="@repo.id" @if(repo.id == toProject.id){ selected }> @repo.owner / @repo.name </option> } </select> <select id="toBranch" name="toBranch" data-toggle="select2" data-format="branch" data-dropdown-css-class="branches" data-placeholder="@Messages("pullRequest.select.branch")"> <option></option> @for(branch <- toBranches) { <option value="@branch.getName" @if(branch.getName == pullRequest.toBranch){ selected }>@branch.getName</option> } </select> </div> <!-- // --> </div> <span id="pullRequestState" data-value="@pullRequest.state"></span> <div id="status" class="alert mt20 mb20"> @Messages("pullRequest.is.merging") </div> <div> <input type="text" id="title" name="title" maxlength="255" class="text" placeholder="@Messages("title")"> <div style="position: relative;"> @common.editor("body", pullRequest.body, "", "content-body") </div> @common.fileUploader(ResourceType.PULL_REQUEST, null) @common.markdown(project) <div class="actions"> <button type="submit" class="ybtn ybtn-success">@Messages("pullRequest.send")</button> <a href="javascript:history.back();" class="ybtn">@Messages("button.cancel")</a> </div> </div> <ul class="nav nav-tabs mt20"> <li class="active"> <a href="#__commits" data-toggle="tab"> <span class="vmiddle-inline">@Messages("pullRequest.menu.commit")</span> <span id="numOfCommits" class="num-badge vmiddle-inline"></span> </a> </li> </ul> <div class="tab-content"> <div id="__commits" class="code-browse-wrap tab-pane active"> @** this area will be replaced with asynchronously by yobi.git.Write.js after load this page. **@ </div> </div> } </div> </div> </div> @common.select2() <link rel="stylesheet" type="text/css" media="screen" href="@routes.Assets.at("javascripts/lib/atjs/jquery.atwho.css")"> <script type="text/javascript" src="@routes.Assets.at("javascripts/lib/atjs/jquery.caret.min.js")"></script> <script type="text/javascript" src="@routes.Assets.at("javascripts/lib/atjs/jquery.atwho.js")"></script> <script type="text/javascript"> $(function(){ $yobi.loadModule("git.Write", { "mergeResultURL": "@routes.PullRequestApp.mergeResult(project.owner, project.name)", "fromProject" : $("#fromProjectId"), "toProject" : $("#toProjectId"), "fromBranch" : $("#fromBranch"), "toBranch" : $("#toBranch"), "state" : $("#pullRequestState").data("value") }); // yobi.Mention yobi.Mention({ "target": "textarea[id^=editor-]", "url" : "@routes.ProjectApp.mentionList(project.owner, project.name)" }); }); </script> }

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
login with Google Sign in with Google
Reset password | Sign up