1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 07:47:00 +02:00

Fix issue processwire/processwire-issues#133 updating a few links pointing to old GitHub repo to point to new one

This commit is contained in:
Ryan Cramer
2016-12-29 10:03:28 -05:00
parent 4402932ee6
commit 264c5b0b54
2 changed files with 9 additions and 5 deletions

View File

@@ -124,7 +124,7 @@ class Installer {
*/
protected function welcome() {
$this->h("Welcome. This tool will guide you through the installation process.");
$this->p("Thanks for choosing ProcessWire! If you downloaded this copy of ProcessWire from somewhere other than <a href='http://processwire.com/'>processwire.com</a> or <a href='https://github.com/ryancramerdesign/ProcessWire' target='_blank'>our GitHub page</a>, please download a fresh copy before installing. If you need help or have questions during installation, please stop by our <a href='http://processwire.com/talk/' target='_blank'>support board</a> and we'll be glad to help.");
$this->p("Thanks for choosing ProcessWire! If you downloaded this copy of ProcessWire from somewhere other than <a href='https://processwire.com/'>processwire.com</a> or <a href='https://github.com/processwire/processwire' target='_blank'>our GitHub page</a>, please download a fresh copy before installing. If you need help or have questions during installation, please stop by our <a href='https://processwire.com/talk/' target='_blank'>support board</a> and we'll be glad to help.");
$this->btn("Get Started", 0, 'sign-in');
}

View File

@@ -736,7 +736,7 @@ class InputfieldCKEditor extends InputfieldTextarea {
$pathNote = $this->_('Paths should be relative to your ProcessWire installation root (i.e. if site is running from a subdirectory, exclude that part).');
$descriptionCustomCss = $this->_('This option enables you to modify the way that text and other elements appear in your editor. This covers how they look in the administrative environment only, and has nothing to do with the front-end of your site.'); // contents.css description
$instructionsCustomCss = $this->_('Please see our [instructions](https://github.com/ryancramerdesign/ProcessWire/blob/dev/wire/modules/Inputfield/InputfieldCKEditor/README.md#custom-editor-css-file) on how to use this.'); // custom editor css instructions
$instructionsCustomCss = sprintf($this->_('Please see our [instructions](%s) on how to use this.'), 'https://github.com/processwire/processwire/blob/master/wire/modules/Inputfield/InputfieldCKEditor/README.md#custom-editor-css-file'); // custom editor css instructions
$f = $this->modules->get("InputfieldText");
$f->label = $this->_('Custom Editor CSS File (regular mode)');
@@ -764,7 +764,11 @@ class InputfieldCKEditor extends InputfieldTextarea {
$f->label = $this->_('Custom Editor JS Styles Set');
$f->description = $this->_('This option enables you to specify custom styles for selection in your editor. It requires that you have a "Styles" item in your toolbar settings above.'); // styles set description
$f->notes = $example . "mystyles:/site/modules/InputfieldCKEditor/mystyles.js";
$f->notes .= "\n" . $this->_('Please see our [instructions](https://github.com/ryancramerdesign/ProcessWire/blob/dev/wire/modules/Inputfield/InputfieldCKEditor/README.md#custom-editor-js-styles-set) on how to use this.') . " $pathNote"; // styles set notes
$f->notes .= "\n" .
sprintf(
$this->_('Please see our [instructions]() on how to use this.'), // styles set notes
'https://github.com/processwire/processwire/blob/master/wire/modules/Inputfield/InputfieldCKEditor/README.md#custom-editor-js-styles-set'
) . ' ' . $pathNote;
$f->attr('name', 'stylesSet');
$value = $this->get('stylesSet');
$f->collapsed = Inputfield::collapsedBlank;
@@ -788,9 +792,9 @@ class InputfieldCKEditor extends InputfieldTextarea {
$f->attr('value', $value ? $value : '');
$f->notes = $example . "uiColor: #438ef0\n" .
$this->_('If preferred, these settings can also be set in one of these files:') .
"\n[/site/modules/InputfieldCKEditor/config.js](https://github.com/ryancramerdesign/ProcessWire/blob/dev/site-default/modules/InputfieldCKEditor/config.js) - " .
"\n[/site/modules/InputfieldCKEditor/config.js](https://github.com/processwire/processwire/blob/master/site-default/modules/InputfieldCKEditor/config.js) - " .
$this->_('for all CKEditor fields') . " " .
"\n[/site/modules/InputfieldCKEditor/config-$this->name.js](https://github.com/ryancramerdesign/ProcessWire/blob/dev/site-default/modules/InputfieldCKEditor/config-body.js) - " .
"\n[/site/modules/InputfieldCKEditor/config-$this->name.js](https://github.com/processwire/processwire/blob/master/site-default/modules/InputfieldCKEditor/config-body.js) - " .
$this->_('only for this CKEditor field');
$wrapper->add($f);