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

Doxygen with Awesome CSS #1

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
3a1ba91
Added FIles from P4C
AdarshRawat1 Mar 26, 2024
44b1a94
Ignored Doxygen output files
AdarshRawat1 Mar 26, 2024
31c878f
Bump Doxyfile 1.8.6 -> 1.10.0
AdarshRawat1 Mar 26, 2024
7486b75
Ignore log files for Doxygen
AdarshRawat1 Mar 26, 2024
69ab217
[fix] [Temp] source Path fix
AdarshRawat1 Mar 26, 2024
df8cdb6
[fix] [Temp] source Path fix
AdarshRawat1 Mar 26, 2024
b54693a
Create Doxymain.md
AdarshRawat1 Mar 26, 2024
4128599
Merge branch 'Dev-Doxygen-Spinex' of https://github.com/AdarshRawat1/…
AdarshRawat1 Mar 26, 2024
c1c4303
Update doxygen.cfg.bak
AdarshRawat1 Mar 26, 2024
4eec60f
[Dev] Required Configuration for Doxyphinx settings
AdarshRawat1 Apr 12, 2024
1fea565
Shift Spinex in Doxygen Dir and update the path
AdarshRawat1 Apr 12, 2024
988ec99
Commented depreciated tags
AdarshRawat1 Apr 12, 2024
7af988e
Added Command
AdarshRawat1 Apr 12, 2024
990f596
Added Recommended Settings
AdarshRawat1 Apr 12, 2024
ce27c02
Added recommended theme
AdarshRawat1 Apr 12, 2024
2594eb3
Added custom header
AdarshRawat1 Apr 12, 2024
a4e74f4
New Sphinx Configuration
AdarshRawat1 Apr 12, 2024
4ea1f0f
Final Bug Fix
AdarshRawat1 Apr 12, 2024
6dce7d0
Revert "New Sphinx Configuration"
AdarshRawat1 Apr 12, 2024
05046da
Added command
AdarshRawat1 Apr 13, 2024
1c36df0
Fix spinex path
AdarshRawat1 Apr 13, 2024
ae1aced
Update Command.md
AdarshRawat1 Apr 13, 2024
522ddea
ignoring files
AdarshRawat1 Apr 13, 2024
b7ac368
CSS shift
AdarshRawat1 Apr 13, 2024
c66b7b6
Added output to index
AdarshRawat1 Apr 14, 2024
9d28ff6
fixed : styling bug
AdarshRawat1 Apr 14, 2024
7ebcf26
Configuress for AwsomeCSS
AdarshRawat1 Apr 14, 2024
c88b7ed
Remove Spinex
AdarshRawat1 Apr 14, 2024
aeed82a
remove spinex
AdarshRawat1 Apr 14, 2024
373ce42
Cofig awsomee CSS
AdarshRawat1 Apr 14, 2024
ae2b846
create Landing index page
AdarshRawat1 Apr 14, 2024
e7bae64
Modify logo
AdarshRawat1 Apr 14, 2024
1224461
remove logo from footer
AdarshRawat1 Apr 14, 2024
d3d25c0
Format warning
AdarshRawat1 Apr 14, 2024
a553a00
Added recommended configuration for UX
AdarshRawat1 May 10, 2024
d4c3d0a
Added Custom P4 CSS
AdarshRawat1 May 10, 2024
2b4efed
Fix : Path to CSS
AdarshRawat1 May 10, 2024
869fc2f
Manual Webpage push for testing
AdarshRawat1 May 10, 2024
98a2b93
Revert "Manual Webpage push for testing"
AdarshRawat1 May 10, 2024
64f662e
Shift Docs into source directory
AdarshRawat1 May 10, 2024
f6aeb9b
Update doxygen.cfg
AdarshRawat1 May 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
5 changes: 5 additions & 0 deletions .bazelignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Exclude bazel sub-projects so `bazel build //...` works.
control-plane/p4runtime
test/frameworks/gtest
bazel/example
build
1 change: 1 addition & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build --action_env=BAZEL_CXXOPTS="-std=c++17"
1 change: 1 addition & 0 deletions .bazelversion
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.4.0
37 changes: 37 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# SPDX-License-Identifier: GPL-2.0
#
# clang-format configuration file. Intended for clang-format >= 4.
#
# For more information, see:
#
# Documentation/process/clang-format.rst
# https://clang.llvm.org/docs/ClangFormat.html
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
#
---
BasedOnStyle: Google
IndentWidth: 4
FixNamespaceComments: true
ColumnLimit: 100
SpacesBeforeTrailingComments: 2
AccessModifierOffset: -3

IncludeBlocks: Regroup
# Force pointers to the type for C++.
DerivePointerAlignment: false
PointerAlignment: Right
Standard: c++17
IncludeCategories:
# Matches common headers first and sorts them before project includes
- Regex: '^<.+/.*\.h>'
Priority: 2000
- Regex: '^<.+/.*>'
Priority: 4000
- Regex: '^<.*\.h>'
Priority: 1000
- Regex: '^<.*>'
Priority: 3000
- Regex: 'testgen/.*'
Priority: 6000
- Regex: '.*'
Priority: 5000
36 changes: 36 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
Checks:
'clang-diagnostic-*,
clang-analyzer-*,
modernize-*,
performance-*,
readability-*,
bugprone-*,
cppcoreguidelines-*,
boost-*,
hicpp-*,
misc-*,
llvm-*,
google-*,
-modernize-use-trailing-return-type,
-readability-identifier-length,
-cppcoreguidelines-owning-memory,
-bugprone-easily-swappable-parameters,
-llvm-header-guard,
-misc-no-recursion'
FormatStyle: file
WarningsAsErrors: ''
HeaderFilterRegex: ''
UseColor: true
CheckOptions:
- { key: misc-const-correctness.AnalyzeValues, value: false }
- { key: readability-identifier-naming.NamespaceCase, value: CamelCase }
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
- { key: readability-identifier-naming.VariableCase, value: camelBack }
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }
- { key: readability-identifier-naming.StaticConstantCase, value: UPPER_CASE }
- { key: readability-identifier-naming.StaticVariableCase, value: UPPER_CASE }
- { key: cppcoreguidelines-avoid-do-while.IgnoreMacros, value: true }
...
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
**/.git
**/.gitmodules
**/.travis.yml
**/Dockerfile
**/*.md

build
docs
Loading
Loading