Lines Matching +full:commit +full:- +full:message
20 $this->helper =& plugin_load('helper', 'git');
21 if(!$this->helper) msg('Loading the git helper in the git_localstatus class failed.', -1);
64 $this->Lexer->addSpecialPattern('~~GITLocalStatus~~',$mode,'plugin_git_localstatus');
72 $match = substr($match,11,-2); //strip ~~REVISIONS: from start and ~~ from end
73 // Wolfgang 2007-08-29 suggests commenting out the next line
95 … $renderer->doc .= "<br/><br/>You need to be logged in to view this page. Please login.";
100 $this->getConf('');
104 $repo->git_path = $git_exe_path;
107 $waiting_to_commit = $repo->get_status();
110 $renderer->doc .= '<h3>These are the files that have changed:</h3>';
111 …$renderer->doc .= '<p>They have not yet been commited. In order to see all changes to the workspac…
113 …// Add a semaphore commit, telling the rendering engine that this isn't a real commit, rather we w…
115 if(!empty($commit)) unset($commit);
116 $commit['hash'] = 'new';
117 $commits[] = $commit;
120 … $this->helper->render_changed_files_table($renderer, $commits, $repo);
121 … $this->helper->renderChangesMade($renderer, $repo, 'Commit local');
122 $this->renderCommitMessage($renderer, $repo);
128 if ($repo->LocalCommitsExist())
130 if($this->helper->haveChangesBeenSubmitted() === true)
132 … $renderer->doc .= '<h3>There are commits awaiting to the be pushed to Live!</h3>';
134 $this->helper->resetGitStatusCache('upstream');
135 $upsptreamUpdatesAvailable = $this->helper->CheckForUpstreamUpdates();
138 …$renderer->doc .= '<p>Other initiatives are approved while this has been waiting for approval. Tho…
142 …$renderer->doc .= '<p>One or more commits have been made to this workspace that are ready to be pr…
143 …$renderer->doc .= 'These can include merges with changes made in other workspaces and approved by …
144 $this->helper->renderAdminApproval($renderer);
147 …$renderer->doc .= '<br/><br/><p>To investigate the changes made in this workspace please select a …
151 …$renderer->doc .= '<h3>Commits have been made to this workspace that are ready for submission to t…
152 $renderer->doc .= '<p>TODO: add more information here</p>';
154 $this->renderSubmitMessage($renderer, $repo);
158 $log = $repo->get_log('origin/master..HEAD');
159 $commits = $repo->get_commits($log);
161 // Add the "Everything" semaphore commit
162 if(!empty($commit)) unset($commit);
163 $commit['hash'] = 'all';
164 $commit['message'] = 'All changes to this workspace';
165 array_push($commits, $commit);
167 // Render combo-box
168 $renderer->doc .= '<br/><h3>Commits:</h3>';
169 $this->helper->render_commit_selector($renderer, $commits, true);
171 $this->helper->render_changed_files_table($renderer, $commits, $repo);
172 $this->helper->renderChangesMade($renderer, $repo, 'Approve Local');
178 $renderer->doc .= "No changes made in this workspace";
182 $renderer->doc .= 'Exception happened:<br/>';
183 $renderer->doc .= $e->getMessage();
195 $renderer->doc .= "<h3>Please enter a short summary of these intermediate changes</h3>";
196 …$renderer->doc .= '<p>This short message will only be used within this workspace and is only inten…
197 $renderer->doc .= '<form method="post">';
198 …$renderer->doc .= ' <textarea name="CommitMessage" style="width: 800px; height: 80px;" ></textare…
199 …$renderer->doc .= ' <input type="submit" name="cmd[commit_current]" value="Commit Current Change…
200 $renderer->doc .= '</form><br/>';
205 …$renderer->doc .= "<h3>Please provide a detailed description of ALL the changes to be submitted.</…
206 …$renderer->doc .= '<p>Before submitting, please consider the following: Has the content been revie…
207 $renderer->doc .= '<ol>';
208 …$renderer->doc .= '<li>For the IP: Have all the deliverables been implemented? Please refer to the…
209 …$renderer->doc .= '<li>For the IP: Have you planned how the adoption of these changes is ensured? …
210 … $renderer->doc .= '<li>For each page: Is revision frequency specified?</li>';
211 $renderer->doc .= '<li>For each page: Is SEO metadata specified?</li>';
212 …$renderer->doc .= '<li>For each page: Are all images implemented as Imagemaps?</li>'; …
213 $renderer->doc .= '</ol>';
215 …$renderer->doc .= '<br/><p>And finally: Please note that submitting the changes for approval will …
216 $renderer->doc .= '<form method="post">';
217 …$renderer->doc .= ' <textarea name="CommitMessage" style="width: 800px; height: 80px;" ></textare…
218 …$renderer->doc .= ' <input type="submit" name="cmd[commit_submit]" value="Submit for approval" /…
219 $renderer->doc .= '</form><br/>';
227 //Setup VIM: ex: et ts=4 enc=utf-8 :