forked from mingrammer/diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add programming languages and frameworks (mingrammer#112)
* Add programming languages and frameworks. * Remove accidentally committed .swp file. * Added periods to the end of sentences.
- Loading branch information
1 parent
6a778fd
commit cf0141a
Showing
40 changed files
with
220 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
Programming provides a set of programming languages and frameworks. | ||
""" | ||
|
||
from diagrams import Node | ||
|
||
|
||
class _Programming(Node): | ||
_provider = "programming" | ||
_icon_dir = "resources/programming" | ||
|
||
fontcolor = "#ffffff" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _Programming | ||
|
||
|
||
class _Framework(_Programming): | ||
_type = "language" | ||
_icon_dir = "resources/programming/framework" | ||
|
||
|
||
class Angular(_Framework): | ||
_icon = "angular.png" | ||
|
||
|
||
class Backbone(_Framework): | ||
_icon = "backbone.png" | ||
|
||
|
||
class Django(_Framework): | ||
_icon = "django.png" | ||
|
||
|
||
class Ember(_Framework): | ||
_icon = "ember.png" | ||
|
||
|
||
class Flask(_Framework): | ||
_icon = "flask.png" | ||
|
||
|
||
class Flutter(_Framework): | ||
_icon = "flutter.png" | ||
|
||
|
||
class Laravel(_Framework): | ||
_icon = "laravel.png" | ||
|
||
|
||
class Rails(_Framework): | ||
_icon = "rails.png" | ||
|
||
|
||
class React(_Framework): | ||
_icon = "react.png" | ||
|
||
|
||
class Spring(_Framework): | ||
_icon = "spring.png" | ||
|
||
|
||
class Vue(_Framework): | ||
_icon = "vue.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _Programming | ||
|
||
|
||
class _Language(_Programming): | ||
_type = "language" | ||
_icon_dir = "resources/programming/language" | ||
|
||
|
||
class Bash(_Language): | ||
_icon = "bash.png" | ||
|
||
|
||
class C(_Language): | ||
_icon = "c.png" | ||
|
||
|
||
class Csharp(_Language): | ||
_icon = "csharp.png" | ||
|
||
|
||
class Cpp(_Language): | ||
_icon = "cpp.png" | ||
|
||
|
||
class Dart(_Language): | ||
_icon = "dart.png" | ||
|
||
|
||
class Go(_Language): | ||
_icon = "go.png" | ||
|
||
|
||
class Java(_Language): | ||
_icon = "java.png" | ||
|
||
|
||
class Javascript(_Language): | ||
_icon = "javascript.png" | ||
|
||
|
||
class Kotlin(_Language): | ||
_icon = "kotlin.png" | ||
|
||
|
||
class Matlab(_Language): | ||
_icon = "matlab.png" | ||
|
||
|
||
class Nodejs(_Language): | ||
_icon = "nodejs.png" | ||
|
||
|
||
class PHP(_Language): | ||
_icon = "php.png" | ||
|
||
|
||
class Python(_Language): | ||
_icon = "python.png" | ||
|
||
|
||
class R(_Language): | ||
_icon = "r.png" | ||
|
||
|
||
class Ruby(_Language): | ||
_icon = "ruby.png" | ||
|
||
|
||
class Swift(_Language): | ||
_icon = "swift.png" | ||
|
||
|
||
class Typescript(_Language): | ||
_icon = "typescript.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
id: programming | ||
title: Programming | ||
--- | ||
|
||
Node classes list of programming languages, runtimes and frameworks | ||
|
||
## programming.language | ||
|
||
- **diagrams.programming.language.Bash** | ||
- **diagrams.programming.language.C** | ||
- **diagrams.programming.language.Csharp** | ||
- **diagrams.programming.language.Cpp** | ||
- **diagrams.programming.language.Dart** | ||
- **diagrams.programming.language.Go** | ||
- **diagrams.programming.language.Java** | ||
- **diagrams.programming.language.Javascript** | ||
- **diagrams.programming.language.Kotlin** | ||
- **diagrams.programming.language.Matlab** | ||
- **diagrams.programming.language.Nodejs** | ||
- **diagrams.programming.language.PHP** | ||
- **diagrams.programming.language.Python** | ||
- **diagrams.programming.language.R** | ||
- **diagrams.programming.language.Ruby** | ||
- **diagrams.programming.language.Swift** | ||
- **diagrams.programming.language.Typescript** | ||
|
||
## programming.framework | ||
|
||
- **diagrams.programming.framework.Angular** | ||
- **diagrams.programming.framework.Backbone** | ||
- **diagrams.programming.framework.Django** | ||
- **diagrams.programming.framework.Ember** | ||
- **diagrams.programming.framework.Flask** | ||
- **diagrams.programming.framework.Flutter** | ||
- **diagrams.programming.framework.Laravel** | ||
- **diagrams.programming.framework.Rails** | ||
- **diagrams.programming.framework.React** | ||
- **diagrams.programming.framework.Spring** | ||
- **diagrams.programming.framework.Vue** |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,8 @@ | |
"nodes/gcp", | ||
"nodes/k8s", | ||
"nodes/alibabacloud", | ||
"nodes/oci" | ||
"nodes/oci", | ||
"nodes/programming" | ||
] | ||
} | ||
} |