Skip to content

Commit

Permalink
added help, updated coveralls api key.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsider committed May 2, 2019
1 parent 1b9f532 commit d31660f
Show file tree
Hide file tree
Showing 46 changed files with 4,404 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# See http://www.appveyor.com/docs/appveyor-yml for many more options

environment:
#Coveralls_Key:
#secure: mOSiObC2c5LUU57K47frbcUotaYZC6ni0j/YxBHMrSMNxgsYzStPXxhwgXW6VJQy
Coveralls_Key:
secure: Nj5Q1oaWWjLSEzJP9kGHgS1pblyQPhVBR4O690HQ0/y+jGOMzDVSWoI4yf6Sq9w8
NugetApiKey:
secure: iR4vlP9ilby8LTXXncpzN5bwnE7pMBD5pHDDSfA7qnU+/N6RY1GSxMgb78gV104x

Expand Down
88 changes: 88 additions & 0 deletions docs/Add-Branding.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
---
external help file: ClarityPS-help.xml
Module Name: ClarityPS
online version:
schema: 2.0.0
---

# Add-Branding

## SYNOPSIS

## SYNTAX

```
Add-Branding [[-Title] <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Adds Branding Element

## EXAMPLES

### EXAMPLE 1
```
Add-Branding -Title MyCard
```

## PARAMETERS

### -Title
Title, used for comment

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -WhatIf
Shows what would happen if the cmdlet runs.
The cmdlet is not run.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Confirm
Prompts you for confirmation before running the cmdlet.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

### System.String
### System.Boolean
## NOTES
No notes at this time.

## RELATED LINKS
104 changes: 104 additions & 0 deletions docs/Add-BrandingTitle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
---
external help file: ClarityPS-help.xml
Module Name: ClarityPS
online version:
schema: 2.0.0
---

# Add-BrandingTitle

## SYNOPSIS

## SYNTAX

```
Add-BrandingTitle [-Title] <String> [[-URL] <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Adds Page title with link.

## EXAMPLES

### EXAMPLE 1
```
Add-BrandingTitle -Title MyCard -URL "index.html"
```

## PARAMETERS

### -Title
Title, used for comment

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -URL
URL, to provide a link.
Defaults to 'index.html'

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: Index.html
Accept pipeline input: False
Accept wildcard characters: False
```

### -WhatIf
Shows what would happen if the cmdlet runs.
The cmdlet is not run.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Confirm
Prompts you for confirmation before running the cmdlet.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

### System.String
### System.Boolean
## NOTES
No notes at this time.

## RELATED LINKS
179 changes: 179 additions & 0 deletions docs/Add-Button.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
---
external help file: ClarityPS-help.xml
Module Name: ClarityPS
online version:
schema: 2.0.0
---

# Add-Button

## SYNOPSIS

## SYNTAX

```
Add-Button [[-Title] <String>] [-Class] <String> [-ButtonText] <String> [-ButtonValue] <String> [-ID] <String>
[-Name] <String> [[-OnClick] <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Adds Button Element

## EXAMPLES

### EXAMPLE 1
```
Add-Button -Title MyCard -Class btn-success -OnClick '' -ButtonText MyButton -ButtonValue 'Button01' -ID 'thisButton' -Name 'Button001'
```

## PARAMETERS

### -Title
Title, used for comment

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Class
class to determine color

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ButtonText
Text of the Button

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ButtonValue
Value to identify the button

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ID
ID for Button Action

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Name
Reference name for button Action

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -OnClick
Description of action to perform when pressed.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 7
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -WhatIf
Shows what would happen if the cmdlet runs.
The cmdlet is not run.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Confirm
Prompts you for confirmation before running the cmdlet.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

### System.String
### System.Boolean
## NOTES
No notes at this time.

## RELATED LINKS

0 comments on commit d31660f

Please sign in to comment.