-
Notifications
You must be signed in to change notification settings - Fork 306
commit #169
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
Open
didarie
wants to merge
1
commit into
mate-academy:master
Choose a base branch
from
didarie:develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
commit #169
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,8 +1,136 @@ | ||
| 'use strict'; | ||
|
|
||
| const formidable = require('formidable'); | ||
| const { createReadStream, createWriteStream, unlink } = require('node:fs'); | ||
| const { Server } = require('node:http'); | ||
| const path = require('node:path'); | ||
| const { pipeline } = require('node:stream'); | ||
| const zlib = require('node:zlib'); | ||
|
|
||
| function createServer() { | ||
| /* Write your code here */ | ||
| // Return instance of http.Server class | ||
| const server = new Server(); | ||
|
|
||
| server.on('request', async (req, res) => { | ||
| const { pathname } = new URL( | ||
| req.url || '', | ||
| `http://${req.headers.host || 'localhost'}`, | ||
| ); | ||
|
|
||
| if (pathname === '/' || pathname === '/index.html') { | ||
| res.writeHead(200, { 'content-type': 'text/html' }); | ||
|
|
||
| const readStream = createReadStream( | ||
| path.join(__dirname, 'public', 'index.html'), | ||
| ); | ||
|
|
||
| pipeline(readStream, res, (err) => { | ||
| if (err) { | ||
| sendResponse(res, 500, 'Error reading index.html'); | ||
| } | ||
| }); | ||
|
|
||
| return; | ||
| } | ||
|
|
||
| if (pathname === '/compress') { | ||
| if (req.method === 'GET') { | ||
| return sendResponse( | ||
| res, | ||
| 400, | ||
| 'GET requests are not allowed on /compress', | ||
| ); | ||
| } | ||
|
|
||
| await handleFileCompression(req, res); | ||
|
|
||
| return; | ||
| } | ||
|
|
||
| sendResponse(res, 404, 'Not Found'); | ||
| }); | ||
|
|
||
| return server; | ||
| } | ||
|
|
||
| function sendResponse(res, statusCode, message) { | ||
| res.writeHead(statusCode, { 'content-type': 'text/plain' }); | ||
| res.end(message); | ||
| } | ||
|
|
||
| async function handleFileCompression(req, res) { | ||
| const form = new formidable.IncomingForm(); | ||
|
|
||
| form.parse(req, async (err, fields, files) => { | ||
| if (err || !fields.compressionType || !files.file) { | ||
| return sendResponse(res, 400, 'Invalid form submission'); | ||
| } | ||
|
|
||
| const compressionType = Array.isArray(fields.compressionType) | ||
| ? fields.compressionType[0] | ||
| : fields.compressionType; | ||
| const fileObj = Array.isArray(files.file) ? files.file[0] : files.file; | ||
| const filePath = fileObj.filepath; | ||
| const originalFileName = fileObj.originalFilename; | ||
|
|
||
| let compressedStream; | ||
| let extension; | ||
|
|
||
| switch (compressionType) { | ||
| case 'gzip': | ||
| compressedStream = zlib.createGzip(); | ||
| extension = '.gzip'; | ||
| break; | ||
| case 'deflate': | ||
| compressedStream = zlib.createDeflate(); | ||
| extension = '.deflate'; | ||
| break; | ||
| case 'br': | ||
| compressedStream = zlib.createBrotliCompress(); | ||
| extension = '.br'; | ||
| break; | ||
| default: | ||
| return sendResponse(res, 400, 'Unsupported compression type'); | ||
| } | ||
|
|
||
| const compressedFileName = originalFileName + extension; | ||
| const compressedFilePath = path.join( | ||
| __dirname, | ||
| 'public', | ||
| compressedFileName, | ||
| ); | ||
| const writeStream = createWriteStream(compressedFilePath); | ||
|
|
||
| try { | ||
| await new Promise((resolve, reject) => { | ||
| pipeline( | ||
| createReadStream(filePath), | ||
| compressedStream, | ||
| writeStream, | ||
| (errPromise) => (errPromise ? reject(errPromise) : resolve()), | ||
| ); | ||
| }); | ||
|
|
||
| res.writeHead(200, { | ||
| 'content-disposition': `attachment; filename=${compressedFileName}`, | ||
| }); | ||
|
|
||
| const readStream = createReadStream(compressedFilePath); | ||
|
|
||
| pipeline(readStream, res, (errSendFile) => { | ||
| unlink(compressedFilePath, (unlinkErr) => { | ||
| if (unlinkErr) { | ||
| return unlinkErr; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Returning |
||
| } | ||
| }); | ||
|
|
||
| if (errSendFile) { | ||
| return sendResponse(res, 500, 'Error sending compressed file'); | ||
| } | ||
| }); | ||
| } catch (error) { | ||
| sendResponse(res, 500, 'Error compressing file'); | ||
| } | ||
| }); | ||
| } | ||
|
|
||
| module.exports = { | ||
|
|
||
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 hidden or 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
Binary file not shown.
This file contains hidden or 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,4 @@ | ||
| "�n����ȧkFUm�ʲ�0w��j�d�?J&r�qKnOtB���鑓���F:e���c�9��e��zc�����A4Ou¶`s�P���j,��� | ||
| �w) �/�~|�+F�_;� | ||
| N�ڰ�Q���N\=B�'��K��i��w.� | ||
| #l\)�z(�~~B��>vJXe�M\�Z%Lz���?�� |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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,2 @@ | ||
| x�%PKn�@��u�!� "e�ٖi����A���ف(��Ø?g��X�����ia%7|U�I�?���3���)��y18�{�N0�։9�Ɔ/cA���a5��齛�t�&�r��s.່y�wU�c)���.K1\��b�n{Yw�����7���C�C�� ���^}�=�o��x�:$*����R�]�aS���G�n v3d�݆n�z�r)��Im�4v� v夂W5P4�ڴ��v��wk | ||
| �e���rÏƴ�Q�z���u���z�N�˸��� |
Empty file.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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,2 @@ | ||
| x�M�KnAD�9E�`� ���)��t7G�|��e/�c-��X=���IKHQ4��O���e��D'Xő>�q�N,}���.H���ѹ�t%hRX����>��o�W*�V. | ||
| Ӣ���fEO0-Kp�� �L*���M�'.+R\&�x���e��{*�k4����ث�ØJ��A��MDu��5�ӣ��[fO]B��Oc#��S�p�H��uUO��]���ߘ�9 L���/G=5�� �\��?~����V[�q����.�wsn�UJn��tWG��Eܣ'&=��Tl[�<��PG��cP��7.X�l��a�:�oT�" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 @@ | ||
| x�%�KNDAE罊����:u��)T�������7��K������+hT�ڗ�� ��јv�e�8�)��Z3��O/�f�j�J��2����Z.`�^l�v�~%�����RQM�)Si��!3ɵ���N�:�UC�6����������[n�ր˒�)�۽\�#A���\�S'7��m��|Րߪ�堵lN��āW������X�����9���ַ�<�y;�Mޞ,+�l$�.����h�\��.v�_�� |
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 @@ | ||
| x�E�InAE�>'�;X�6���T'HTQMA�Ǐp�%��q�Ў�֍Zj@5�F7h�F�ܳO#�g�q梓A�#������F/�e�gP��]nX2�r�r$(0v�xMeǑ9"���V���E<��o�i�38���`t��^M�ep�ё��0�*V*�A+R#�'�?�35/F�K.Zn�����m�e�p7���F��*!L�hGO-��Y-�i�*�?O����c�B����]a�;fџ+q)�e��� |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 hidden or 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 @@ | ||
| � �vLm�Y�@^5Eu��V�NQm�<� ��`����Nx<��eaq@��I���rSfwl���n����R�x.���u��9S?S\��$���f*�P_juB�E{��y�5����?�a(n:T�������Pf:�Ǵl��20����:DN��.))%V�bTe\6�,���v �ꑘ*����w'���ߞ���a�c�ʡ}lXI%���V�<�&e��w���]Ci�P���\&w��w�ZR�P�o�u{����;Տy�Ӫ�C�L�fYNJ |
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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,27 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <title>File Compression</title> | ||
| </head> | ||
| <body> | ||
| <h1>File Compression</h1> | ||
| <form action="/compress" method="POST" enctype="multipart/form-data"> | ||
| <label for="file">Select a file:</label> | ||
| <input type="file" name="file" id="file" required> | ||
| <br/> | ||
|
|
||
| <label for="compressionType">Choose a compression type:</label> | ||
| <select name="compressionType" id="compressionType" required> | ||
| <option value="gzip">gzip</option> | ||
| <option value="deflate">deflate</option> | ||
| <option value="br">br</option> | ||
| </select> | ||
| <br/> | ||
|
|
||
| <button type="submit">Compress</button> | ||
| </form> | ||
| </body> | ||
| </html> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 @@ | ||
| x�5��m1D�]�T�=I�Վ7$Q�c���"��`����_�,z�~���S}1�̽�24v�NGr2���X��5��ۇ�2����+`cj�_��� �n]!��2% �WeUB�G:�.�)��8��Ƭ�ŋ�rB.����o���t���P�"�d���ٵ�AǷ*�%���_(�n~ �F��@�R���%28��O�mh6o�-/�-�|t�o0XlM6�a��Z��RZ����N����� |
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 hidden or 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 @@ | ||
| x�U�Mj�`C�9�N�;��^ ��x<$���8����U��=�9�Kё>�EB}O�}sh���֎5�d.���*�G'$��2-_�#��Dvws�A��rZ�C��c�r���@�5j�|��/��fӯ��0��>�!{9kB&K��.��A�lv\��rsT�tL�{O���n�����r�ep�,.ė��I���Tn��:�Hy�vt~��^�����ϧ��8�u^�v�dt.�j� |
This file contains hidden or 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,2 @@ | ||
| x�5�;n#As�❠O�n��s�C�t�-~�_RUx$u������lJ��m)����2�]���1]�6����Oe�������� �n�9 L%F������,����)�uN�ξ6��.����?RI�G�.������ĔX��ͩ��;�sඕ{��0��[ʳ�~G�]�����Dw�$�*�Kb|�z-��Gϊ���em �R������D�����KO� | ||
| ~h �#d��o������N�u�(�������ݧ� |
Binary file not shown.
This file contains hidden or 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,2 @@ | ||
| ��n��}{�/A�:h� �?�|�"T���m!�`�i����XVOcc��T}���By�w��λxI��3�Q>=��s:����;�Sy�!¡��������)�@*_�Ԏ���[k)HsOk7���/�ԫƭ^<�S$����Lm������b��\�aj���I��N$m�3���=�ӟ�51A�:�S'B��G�����)��d?_�^Xs��n%�C%'0�o����]�u | ||
| 䃄-z���.�?j�'�չ�Ȑ+�I�}1�jAe� |
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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,4 @@ | ||
| x�E�;n1C���'��l�"�^A���lk�����)RR �'�5�@��ɉf|^�� ��[B���'�N6T^�����R9�Q���R<� | ||
| l6 | ||
| q��?�xy����Xa���udP���%S | ||
| >�z:BWg����T�!d���O6E�qS�I��^�>�TZ�T�D�&:�ꌦ�ٶ��@�c��-��4��o�!��i�����h�ӱy��-��q����*�brx��l���v��ջ$_��q�z�B�� |
Empty file.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 @@ | ||
| x�-�KN1C���'�; ��}MR�))�C}Z��ږ���dY`1�k��<�e?hrV ���;���%Y����+�&�A�����C&qr���M�x�|�������u�M��Ŕ�ƅ89�f��9��&��>���h\Qt�)^��[E��S:�P���nۢ����Eǩ�DWY݈(�J�KKB��,%|����eioJ��#9�e�e\EĶV�&�^?u:�ݗE�dx㲼�q�s�5�5�k��15� |
Binary file not shown.
This file contains hidden or 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 @@ | ||
| ���W��=�u�U�)Uպ�R�^��"M�,�ї�����4��8��&��!"�A�V`X~�"~�K|Ԙ�v70�,����|�-'����n�j�We��ͺ����hK��$xky����Iܾ�'o�E��ﴱ�8��G�ŭJ.݉�c�1��v5,���Jp���\�0ը������Z�Kew���q��b�鯃��ľ���d��.�sp�4l��C�Zj���КH|��C{�zd�br�[��� oP7-M�?||:�n���Uz�/��+a��h�'��0������� |
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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 hidden or 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 hidden or 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,3 @@ | ||
| x�-��m1D�b*P�sI�SZzC@�����yo��{;��h:���s�7E#klh��`E%ɞ��KlWr�S{����+u��� | ||
| )�OB��3�$�WJ�#~�Q�Cjn�� | ||
| Z��~�T��ڦ����^�EV dU¶%��UU��d*�'�!{oj���ե�"h�K��ol��s覘�n6�?{ϙ�z��{>͓?_�p��{=tx���gk|h��u�= |
Binary file not shown.
This file contains hidden or 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 hidden or 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 @@ | ||
| �`�vLm�Y�@^u��[.L�ꤧ�ow&�<���N�4�g�Y�-��#8��6���$� ��I����V��5�h�SP�4�4����eO���)��a��/����s�)��)��xsԲ������\K�@�{�<jC>ӑ�p���nU�HހN�ԓ{�?��)��XV�@B��,� p�9�I�y[�:�+慎�4����x-�R��*=���5�2���R�s��&O<m�Bɥy�8T1�=�شl��i�RU�n*� m�a��� |
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
This file contains hidden or 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,2 @@ | ||
| x���m1C�[+p�lAr���Y�e�3H���*���h�����Q��j��H��,G�%�0^Ҹ�yx���j�c)�$���� .�V�t�<�f'G�4p�I�/�ͦ���w�5�L5T��;�ZnU�}$�t��T���A.9@3� | ||
| ~�._%u��V�~��2IG�MAv��ǓOӸW7�|*h-2���`;w3j9���yN��`�������%^�b��)��=��7o�C�dI� /����� |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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,2 @@ | ||
| � �vLm�Y�@^QUU���Y�[T�=�� 3*>�MR | ||
| O�40M�*�� ~�ȉ.|�#]�`t��%Bb��]�!�tbR��b��Ou@q�c+�����}�:q��P:*L��;1e)sc����td?�6!yG�c���� �q/ג�F���ސi�:.#��IYB�^R�c��O/.zx�p\�0A��dK��}m&�?N���_�.yMFu�ۆ��R=��YL��+GFDZ�mKzhv����˼��C���o���GR�%�����OzOf�Z �� |
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
This file contains hidden or 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 @@ | ||
| ���W��=����ޒ�dˉʾP���q�m��J�4�.�I�}�*w��,l'�oG����bԢY���=] 9�M��/�+�%��N(< �w9�G�|w�N�= ��i��wB.�]+��xZ����%zwBf/)'��Wu�K��q���B�� �� Qe'�wv@�ߞ�3�_��xڐ\���s\Gx�!K._���Y\�H�v�����/*���v@��i˴:�u���<���t��� |
This file contains hidden or 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,3 @@ | ||
| x�-��mAD"��|4,�aSk��Y~p��௪��RB�t¤�\@��m�.a61�Z`�L}��[]�Ɓ���,��/q�8�!]YBWnɮ��Y�@�ғ!SYC.ۆ�g�O��`Mpi�ܕkv | ||
| s��ډ���u��8�~��IkQ��v�h���j��6;#M�m��NI�eC����n;/VZ��h?*����:�I.�>�����z5�u�ga�g����εn�j�%� �x' ���������^^�>$lځ���6G�^H=��J | ||
| �����φIq7?��>�, |
This file contains hidden or 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,5 @@ | ||
| x�M�K�$1D�} | ||
| � �Pwhj����m}���7�Z��/�?D���x����n5�-8�v�� | ||
| �Id99V5���cu�jF��F|fn*j=��JN%f]�/&)#���Y�q����U��&B�f_O�-�ΒF��GӢ�X�/s��{�¦�v�AQ���G���fW�i7�>��Gߘ�AY�4���(�9��]�Ɩ�Z�� | ||
| 2�p����๋<b�h��Qa %1�� | ||
| '��El���^ɻ*81&*z��6l-���J��.3oLjSP%%�2gj�R�ŮwT��F��*�\vGSs��R�j�>~&�ӎ |
Binary file not shown.
This file contains hidden or 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 @@ | ||
| x�%��m1D�b*�����w���E���>��B���y�WVssD�'���.�:���t������Fh��@�>����(��U)��Ԫ�bZ�h(&��sl��aR�5�h4%�/�O��m�{R��z�{J�j�%���.o�dH�o�6U;�;��Ow't��K�ۃ���C%s��bH��$e����D�G)*���ei�H��ܻ�$5r����E~ᚻ���!�{�Q��Ա�< |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When sending the compressed file, the response headers do not include a 'content-type'. This could cause issues for clients trying to interpret the file. Consider setting the appropriate 'content-type' header based on the compression type.