Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
crea7or committed Apr 24, 2017
1 parent 62b45a6 commit 6ffc1d0
Show file tree
Hide file tree
Showing 15 changed files with 752 additions and 0 deletions.
6 changes: 6 additions & 0 deletions compile_c.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
php "%__CD__%make_xhtmls.php" c
powershell "%__CD__%compile_c_zip.ps1"
makecab.exe %__CD__%creference.mshc %__CD__%creference.cab
DEL %__CD__%creference.mshc
signtool.exe sign /a /r verisign /fd sha1 /t http://timestamp.verisign.com/scripts/timstamp.dll /v %__CD__%creference.cab
signtool.exe sign /a /r verisign /as /fd sha256 /tr http://sha256timestamp.ws.symantec.com/sha256/timestamp /v %__CD__%creference.cab
8 changes: 8 additions & 0 deletions compile_c_zip.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$pathfolder = Split-Path -Path $MyInvocation.MyCommand.Path
$pathmshc = Join-Path $pathfolder '\creference.mshc'
$pathcab = Join-Path $pathfolder '\creference.cab'
$pathfolder = Join-Path $pathfolder '\chelp'
Remove-Item $pathmshc
Remove-Item $pathcab
Add-Type -A System.IO.Compression.FileSystem
[IO.Compression.ZipFile]::CreateFromDirectory( $pathfolder , $pathmshc )
6 changes: 6 additions & 0 deletions compile_cpp.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
php "%__CD__%make_xhtmls.php" cpp
powershell "%__CD__%compile_cpp_zip.ps1"
makecab.exe %__CD__%cppreference.mshc %__CD__%cppreference.cab
DEL %__CD__%cppreference.mshc
signtool.exe sign /a /r verisign /fd sha1 /t http://timestamp.verisign.com/scripts/timstamp.dll /v %__CD__%cppreference.cab
signtool.exe sign /a /r verisign /as /fd sha256 /tr http://sha256timestamp.ws.symantec.com/sha256/timestamp /v %__CD__%cppreference.cab
8 changes: 8 additions & 0 deletions compile_cpp_zip.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$pathfolder = Split-Path -Path $MyInvocation.MyCommand.Path
$pathmshc = Join-Path $pathfolder '\cppreference.mshc'
$pathcab = Join-Path $pathfolder '\cppreference.cab'
$pathfolder = Join-Path $pathfolder '\cpphelp'
Remove-Item $pathmshc
Remove-Item $pathcab
Add-Type -A System.IO.Compression.FileSystem
[IO.Compression.ZipFile]::CreateFromDirectory( $pathfolder , $pathmshc )
36 changes: 36 additions & 0 deletions config.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
indent: no
indent-spaces: 2
wrap: 0
markup: yes
output-xml: no
output-xhtml: yes
fix-backslash: yes
input-xml: no
doctype: auto
show-warnings: yes
numeric-entities: yes
quote-marks: yes
quote-nbsp: yes
quote-ampersand: no
break-before-br: no
uppercase-tags: no
uppercase-attributes: no
char-encoding: utf8
drop-empty-elements: no
new-inline-tags: cfif, cfelse, math, mroot,
mrow, mi, mn, mo, msqrt, mfrac, msubsup, munderover,
munder, mover, mmultiscripts, msup, msub, mtext,
mprescripts, mtable, mtr, mtd, mth
new-blocklevel-tags: cfoutput, cfquery
new-empty-tags: cfelse
escape-scripts: yes
merge-divs: no
merge-spans: no
clean: no
join-classes: yes
join-styles: yes
write-back: no
escape-cdata: yes
hide-comments: yes
tidy-mark: no
error-file: tidy-errors.txt
23 changes: 23 additions & 0 deletions cppreference.msha
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head />
<body class="vendor-book">
<div class="details">
<span class="vendor">CEZEO software Ltd.</span>
<span class="locale">en-us</span>
<span class="id">CPPREFERENCE</span>
<span class="product">С/С++ documentation from cppreference.com</span>
<span class="name">С++ documentation</span>
</div>
<div class="package-list">
<div class="package">
<span class="name">cppreference</span>
<span class="deployed">False</span>
<span class="last-modified">2017-04-24T00:00:01.000Z</span>
<span class="package-etag">7f8c90b0-bbae-42d7-9c3e-135d10c458ba</span>
<a class="current-link" href="cppreference.cab">cppreference.cab</a>
</div>
</div>
</body>
</html>


23 changes: 23 additions & 0 deletions creference.msha
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head />
<body class="vendor-book">
<div class="details">
<span class="vendor">CEZEO software Ltd.</span>
<span class="locale">en-us</span>
<span class="id">CREFERENCE</span>
<span class="product">С/С++ documentation from cppreference.com</span>
<span class="name">С documentation</span>
</div>
<div class="package-list">
<div class="package">
<span class="name">creference</span>
<span class="deployed">False</span>
<span class="last-modified">2017-04-24T00:00:00.000Z</span>
<span class="package-etag">b753bb03-e1eb-4eb3-9491-7e588df14ebe</span>
<a class="current-link" href="creference.cab">creference.cab</a>
</div>
</div>
</body>
</html>


1 change: 1 addition & 0 deletions css/ext.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/site_modules.css

Large diffs are not rendered by default.

Binary file added folders.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6ffc1d0

Please sign in to comment.