Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc fixes #78

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1190,8 +1190,7 @@ String _getEventName(ast.EventAst event) =>

/// Visitor which filters elements that are not supported in angular templates.
class _ElementFilter extends ast.RecursiveTemplateAstVisitor<void> {
static const _securityUrl =
'https://webdev.dartlang.org/angular/guide/security';
static const _securityUrl = 'https://angulardart.xyz/guide/security';

@override
ast.ElementAst? visitElement(ast.ElementAst astNode, [_]) {
Expand Down
6 changes: 3 additions & 3 deletions ngdart/lib/angular.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
/// * [AngularDart guide][]
/// * [AngularDart cheat sheet][cheatsheet]
///
/// [AngularDart]: https://webdev.dartlang.org/angular
/// [AngularDart guide]: https://webdev.dartlang.org/angular/guide
/// [cheatsheet]: https://webdev.dartlang.org/angular/cheatsheet
/// [AngularDart]: https://angulardart.xyz
/// [AngularDart guide]: https://angulardart.xyz/guide
/// [cheatsheet]: https://angulardart.xyz/cheatsheet

library;

Expand Down
4 changes: 2 additions & 2 deletions ngdart/lib/src/common/directives/ng_class.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ import 'package:ngdart/src/utilities.dart';
/// For details, see the [`ngClass` discussion in the Template Syntax][guide]
/// page.
///
/// [ex]: https://angulardart.dev/examples/template-syntax#ngClass
/// [guide]: https://webdev.dartlang.org/angular/guide/template-syntax.html#ngClass
/// [ex]: https://angulardart.xyz/examples/template-syntax#ngClass
/// [guide]: https://angulardart.xyz/guide/template-syntax.html#ngClass
@Directive(
selector: '[ngClass]',
)
Expand Down
2 changes: 1 addition & 1 deletion ngdart/lib/src/common/directives/ng_for.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ import '../../core/linker.dart';
/// For details, see the [`ngFor` discussion in the Template Syntax][guide]
/// page.
///
/// [guide]: https://webdev.dartlang.org/angular/guide/template-syntax.html#ngFor
/// [guide]: https://angulardart.xyz/guide/template-syntax.html#ngFor
@Directive(
selector: '[ngFor][ngForOf]',
)
Expand Down
2 changes: 1 addition & 1 deletion ngdart/lib/src/common/directives/ng_if.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import 'package:ngdart/src/runtime/check_binding.dart';
/// </template>
/// ```
///
/// [guide]: https://webdev.dartlang.org/angular/guide/template-syntax.html#ngIf
/// [guide]: https://angulardart.xyz/guide/template-syntax.html#ngIf
@Directive(
selector: '[ngIf]',
)
Expand Down
4 changes: 2 additions & 2 deletions ngdart/lib/src/common/directives/ng_style.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ import '../../core/change_detection/differs/default_keyvalue_differ.dart';
/// A better practice, however, is to bind to a component field or method, as
/// in the binding to `setStyle()` above.
///
/// [guide]: https://webdev.dartlang.org/angular/guide/template-syntax.html#ngStyle
/// [ex]: https://angulardart.dev/examples/template-syntax#ngStyle
/// [guide]: https://angulardart.xyz/guide/template-syntax.html#ngStyle
/// [ex]: https://angulardart.xyz/examples/template-syntax#ngStyle
@Directive(
selector: '[ngStyle]',
)
Expand Down
4 changes: 2 additions & 2 deletions ngdart/lib/src/common/directives/ng_switch.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ class SwitchView {
/// Try the [live example][ex].
/// For details, see the [Structural Directives section on `ngSwitch`][guide].
///
/// [ex]: https://angulardart.dev/examples/template-syntax#ngSwitch
/// [guide]: https://webdev.dartlang.org/angular/guide/structural-directives.html#ngSwitch
/// [ex]: https://angulardart.xyz/examples/template-syntax#ngSwitch
/// [guide]: https://angulardart.xyz/guide/structural-directives.html#ngSwitch
///
@Directive(
selector: '[ngSwitch]',
Expand Down
4 changes: 2 additions & 2 deletions ngdart/lib/src/meta/directives.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ import 'visibility.dart';
///
/// See also:
///
/// * [Attribute Directives](https://webdev.dartlang.org/angular/guide/attribute-directives)
/// * [Lifecycle Hooks](https://webdev.dartlang.org/angular/guide/lifecycle-hooks)
/// * [Attribute Directives](https://angulardart.xyz/guide/attribute-directives)
/// * [Lifecycle Hooks](https://angulardart.xyz/guide/lifecycle-hooks)
///
@Target({TargetKind.classType})
class Directive {
Expand Down
16 changes: 8 additions & 8 deletions ngdart/lib/src/meta/lifecycle_hooks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ abstract class DoCheck {
/// }
/// ```
///
/// [docs]: https://webdev.dartlang.org/angular/guide/lifecycle-hooks.html#aftercontent
/// [ex]: https://webdev.dartlang.org/examples/lifecycle-hooks#after-content
/// [docs]: https://angulardart.xyz/guide/lifecycle-hooks.html#aftercontent
/// [ex]: https://angulardart.xyz/examples/lifecycle-hooks#after-content
abstract class AfterContentInit {
void ngAfterContentInit();
}
Expand Down Expand Up @@ -238,8 +238,8 @@ abstract class AfterContentInit {
/// }
/// ```
///
/// [docs]: https://webdev.dartlang.org/angular/guide/lifecycle-hooks.html#aftercontent
/// [ex]: https://webdev.dartlang.org/examples/lifecycle-hooks#after-content
/// [docs]: https://angulardart.xyz/guide/lifecycle-hooks.html#aftercontent
/// [ex]: https://angulardart.xyz/examples/lifecycle-hooks#after-content
abstract class AfterContentChecked {
void ngAfterContentChecked();
}
Expand Down Expand Up @@ -291,8 +291,8 @@ abstract class AfterContentChecked {
/// }
/// ```
///
/// [docs]: https://webdev.dartlang.org/angular/guide/lifecycle-hooks.html#afterview
/// [ex]: https://webdev.dartlang.org/examples/lifecycle-hooks#after-view
/// [docs]: https://angulardart.xyz/guide/lifecycle-hooks.html#afterview
/// [ex]: https://angulardart.xyz/examples/lifecycle-hooks#after-view
abstract class AfterViewInit {
void ngAfterViewInit();
}
Expand Down Expand Up @@ -344,8 +344,8 @@ abstract class AfterViewInit {
/// }
/// ```
///
/// [docs]: https://webdev.dartlang.org/angular/guide/lifecycle-hooks.html#afterview
/// [ex]: https://webdev.dartlang.org/examples/lifecycle-hooks#after-view
/// [docs]: https://angulardart.xyz/guide/lifecycle-hooks.html#afterview
/// [ex]: https://angulardart.xyz/examples/lifecycle-hooks#after-view
abstract class AfterViewChecked {
void ngAfterViewChecked();
}
6 changes: 3 additions & 3 deletions ngforms/lib/src/directives/ng_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import 'shared.dart' show setUpControl;
///
/// Learn more about `ngModel` in the [Forms][] and [Template Syntax][TS] pages.
///
/// [Forms]: https://angulardart.dev/angular/guide/forms#ngModel
/// [TS]: https://angulardart.dev/angular/guide/template-syntax#ngModel
/// [Forms]: https://angulardart.xyz/angular/guide/forms#ngModel
/// [TS]: https://angulardart.xyz/angular/guide/template-syntax#ngModel
///
/// ### Examples
///
Expand All @@ -46,7 +46,7 @@ import 'shared.dart' show setUpControl;
///
/// Try the [live example][ex].
///
/// [ex]: https://angulardart.dev/examples/template-syntax/#ngModel
/// [ex]: https://angulardart.xyz/examples/template-syntax/#ngModel
@Directive(
selector: '[ngModel]:not([ngControl]):not([ngFormControl])',
providers: [
Expand Down