mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-06 05:27:24 +01:00
refactor to one page
This commit is contained in:
parent
45e3fa7a6e
commit
47550c4860
17
.gitignore
vendored
17
.gitignore
vendored
@ -1,16 +1 @@
|
||||
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
||||
#
|
||||
# If you find yourself ignoring temporary files generated by your text editor
|
||||
# or operating system, you probably want to add a global ignore instead:
|
||||
# git config --global core.excludesfile '~/.gitignore_global'
|
||||
|
||||
# Ignore bundler config.
|
||||
/.bundle
|
||||
|
||||
# Ignore the default SQLite database.
|
||||
/db/*.sqlite3
|
||||
/db/*.sqlite3-journal
|
||||
|
||||
# Ignore all logfiles and tempfiles.
|
||||
/log/*.log
|
||||
/tmp
|
||||
.DS_Store
|
@ -1,16 +0,0 @@
|
||||
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
||||
// listed below.
|
||||
//
|
||||
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
||||
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
||||
//
|
||||
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
||||
// compiled file.
|
||||
//
|
||||
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
|
||||
// about supported directives.
|
||||
//
|
||||
//= require jquery
|
||||
//= require jquery_ujs
|
||||
//= require turbolinks
|
||||
//= require_tree .
|
15
css/application.css
Normal file
15
css/application.css
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
||||
* listed below.
|
||||
*
|
||||
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
||||
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
||||
*
|
||||
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
||||
* compiled file so the styles you add here take precedence over styles defined in any styles
|
||||
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
||||
* file per style scope.
|
||||
*
|
||||
*= require_tree .
|
||||
*= require_self
|
||||
*/
|
7
css/bootstrap.min.css
vendored
Normal file
7
css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
db/development.sqlite3
Normal file
BIN
db/development.sqlite3
Normal file
Binary file not shown.
351
index.html
351
index.html
@ -0,0 +1,351 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>ffmprovisr</title>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
<link href="css/jquery.steps.css" rel="stylesheet" >
|
||||
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<script src="js/forms.js"></script>
|
||||
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="text-center">
|
||||
<h1>➺ ffmprovisr ❥</h1>
|
||||
<br/>
|
||||
</div>
|
||||
|
||||
<!-- form begins -->
|
||||
<div class="row">
|
||||
|
||||
<div class="well col-md-4 col-md-offset-1">
|
||||
<fieldset>
|
||||
<legend>What do you want to do?</legend>
|
||||
<h4>Select from the following.</h4>
|
||||
<br />
|
||||
<ul>
|
||||
<li>
|
||||
<div id="show_display_info"><button type="button" class="btn btn-default">Display Info</button></div><br/>
|
||||
</li>
|
||||
<li>
|
||||
<div id="show_add_subtitles"><button type="button" class="btn btn-default">Add subtitles track</button></div><br/>
|
||||
</li>
|
||||
<li>
|
||||
<div id="show_remove_audio_track"><button type="button" class="btn btn-default">Remove audio track</button></div><br/>
|
||||
</li>
|
||||
<li>
|
||||
<div id="show_add_audio_track"><button type="button" class="btn btn-default">Add audio track (replace)</button></div><br/>
|
||||
</li>
|
||||
<li>
|
||||
<div id="show_webm_for_web"><button type="button" class="btn btn-default">Export to webm for web</button></div><br/>
|
||||
</li>
|
||||
<li>
|
||||
<div id="show_h264_for_web"><button type="button" class="btn btn-default">Export to h264 for web</button></div><br/>
|
||||
</li>
|
||||
</ul>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="well col-md-6 col-md-offset-1">
|
||||
|
||||
<h3>Making ffmpeg easier</h3>
|
||||
<p>FFmpeg is a pretty powerful framework for audio-visual materials. Unfortunately, it also has a steep learning curve. This app helps users through the bash command generation process so that more people can reap the benefits of the ffmpeg library. </p>
|
||||
<p>This project is very much a work in progress. Each button displays a form to help fulfill a popular user request. To use, click on the button and fill out the form. After clicking the Generate button, a command line will appear in the box below. That line can be copied and pasted into a Terminal, with the assumption that the video file is located in the same directory that the user currently is in.</p>
|
||||
<p>For FFmpeg basics, check out their <a href="https://www.ffmpeg.org/">official website.</a></p>
|
||||
<p>For bash and command line basics, try the <a href="http://cli.learncodethehardway.org/book/">Command Line Crash Course</a></p>
|
||||
</div>
|
||||
|
||||
</div> <!-- row -->
|
||||
<div id="formloader">
|
||||
<div class="display_info" style="display:none;">
|
||||
<div id="file_names">
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="input_name" id="input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
<input type="button" class="btn btn-large btn-primary" name="display_generate" id="display_generate" value="Generate" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Your command line:</legend>
|
||||
<textarea name="display_command_line" id="display_command_line" rows="1" cols="100"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<div class="web" style="display:none;">
|
||||
<div id="file_names">
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input and Output</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="input_name" id="input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="output_name">Output</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="output_name" id="output_name" placeholder="output" />
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
<input type="button" class="btn btn-large btn-primary" name="generate" id="web_generate" value="Generate" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Your command line:</legend>
|
||||
<textarea name="command_line" id="command_line" rows="3" cols="100"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<div class="add_subtitles" style="display:none;">
|
||||
<div id="file_names">
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="subtitles_input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="subtitles_input_name" id="subtitles_input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Subtitles file (.srt)</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="subtitles_name">Subtitles</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="subtitles_name" id="subtitles_name" placeholder="subtitles" />
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Output</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="subtitles_output_name">Output</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="subtitles_output_name" id="subtitles_output_name" placeholder="output" />
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<br/>
|
||||
<fieldset>
|
||||
<input type="button" class="btn btn-large btn-primary" name="add_subtitles_generate" id="add_subtitles_generate" value="Generate" />
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Your command line:</legend>
|
||||
<textarea name="subtitles_command_line" id="subtitles_command_line" rows="3" cols="100"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<div class="remove_audio_track" style="display:none;">
|
||||
<div id="file_names">
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="r_audio_input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="r_audio_input_name" id="r_audio_input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Audio track</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="r_audio_track_name">Audio track</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="r_audio_track_name" id="r_audio_track_name" placeholder="subtitles" />
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Output</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="r_audio_output_name">Output</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="r_audio_output_name" id="r_audio_output_name" placeholder="output" />
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<br/>
|
||||
<fieldset>
|
||||
<input type="button" class="btn btn-large btn-primary" name="remove_subtitles_generate" id="remove_audio_track_generate" value="Generate" />
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Your command line:</legend>
|
||||
<textarea name="remove_audio_track_command_line" id="remove_audio_track_command_line" rows="3" cols="100"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<div class="webm_for_web" style="display:none;">
|
||||
<div id="file_names">
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input and Output</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="webm_input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="webm_input_name" id="webm_input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="webm_output_name">Output</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="webm_output_name" id="webm_output_name" placeholder="output" />
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
<input type="button" class="btn btn-large btn-primary" name="generate" id="webm_for_web_generate" value="Generate" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Your command line:</legend>
|
||||
<textarea name="webm_for_web_command_line" id="webm_for_web_command_line" rows="3" cols="100"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<div class="h264_for_web" style="display:none;">
|
||||
<div id="file_names">
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input and Output</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="h264_input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="h264_input_name" id="h264_input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="h264_output_name">Output</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="h264_output_name" id="h264_output_name" placeholder="output" />
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
<input type="button" class="btn btn-large btn-primary" name="generate" id="h264_for_web_generate" value="Generate" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Your command line:</legend>
|
||||
<textarea name="h264_for_web_command_line" id="h264_for_web_command_line" rows="3" cols="100"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<div class="add_audio_track" style="display:none;">
|
||||
<div id="file_names">
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="audio_input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="audio_input_name" id="audio_input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Audio track</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="audio_track_name">Audio track</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="audio_track_name" id="audio_track_name" placeholder="audio.mp3" />
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Output</legend>
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="audio_output_name">Output</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="audio_output_name" id="audio_output_name" placeholder="output" />
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<br/>
|
||||
<fieldset>
|
||||
<input type="button" class="btn btn-large btn-primary" name="add_subtitles_generate" id="add_audio_track_generate" value="Generate" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Your command line:</legend>
|
||||
<textarea name="add_audio_track_command_line" id="add_audio_track_command_line" rows="3" cols="100"></textarea>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
</div> <!-- container -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<div class="reload">
|
||||
<p><button type="button" class="btn btn-default">Start over!</button></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div> <!-- container -->
|
||||
|
||||
|
||||
<div class="footer">
|
||||
<p>Made with ♥ by <a href="http://www.ashleyblewer.com">Ashley Blewer</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,3 +1,13 @@
|
||||
function showMore(){
|
||||
document.getElementById('more').style.display = 'none';
|
||||
document.getElementById('less').style.display = 'block';
|
||||
}
|
||||
|
||||
function showLess(){
|
||||
document.getElementById('more').style.display = 'block';
|
||||
document.getElementById('less').style.display = 'none';
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
$( ".reload" ).click(function() {
|
15319
log/development.log
Normal file
15319
log/development.log
Normal file
File diff suppressed because it is too large
Load Diff
BIN
tmp/cache/assets/development/sass/58b3ffdf646116eea53a44a267ebd32742fc8115/forms.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/58b3ffdf646116eea53a44a267ebd32742fc8115/forms.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sass/58b3ffdf646116eea53a44a267ebd32742fc8115/scaffolds.css.scssc
vendored
Normal file
BIN
tmp/cache/assets/development/sass/58b3ffdf646116eea53a44a267ebd32742fc8115/scaffolds.css.scssc
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/090db105fed4f95e0235405c4557da4b
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/090db105fed4f95e0235405c4557da4b
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0ae098ff4945214db6ab478c758a9a6a
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0ae098ff4945214db6ab478c758a9a6a
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/0e663ee827a424e6611916a24131ed84
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/0e663ee827a424e6611916a24131ed84
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/10fcfbe6ebae11a40c8eac41939a1b9a
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/10fcfbe6ebae11a40c8eac41939a1b9a
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/126461ac33350683e817a942efad6158
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/126461ac33350683e817a942efad6158
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/1df75613451cc4f014bc865c9b72f8de
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/1df75613451cc4f014bc865c9b72f8de
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/225d4a29ba4a50a598aeefa06e91a41d
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/225d4a29ba4a50a598aeefa06e91a41d
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/32e215a7765f33ee0ba7e791f616238a
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/32e215a7765f33ee0ba7e791f616238a
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/35aa885ec67329ee98f704c7d6b1e4fb
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/35aa885ec67329ee98f704c7d6b1e4fb
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/3a32a45a475c25096e2444dbeeb10a83
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/3a32a45a475c25096e2444dbeeb10a83
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/459f070cf6726fea7dc3c3661a7c1692
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/459f070cf6726fea7dc3c3661a7c1692
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/49a7d7ae44a3e8b229880ef520a56c7e
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/49a7d7ae44a3e8b229880ef520a56c7e
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/4a01f212257e3dd040ff384825199c3a
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/4a01f212257e3dd040ff384825199c3a
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/4a87c3d7e140a60b9968ca551d45feaf
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/4a87c3d7e140a60b9968ca551d45feaf
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/4ea33e825e6e38bd22dccab488a0255b
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/4ea33e825e6e38bd22dccab488a0255b
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/510284c984a633e6ee0aa7b7d7dc8a24
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/510284c984a633e6ee0aa7b7d7dc8a24
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/5131c185cd53a2de2889a7700c916411
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/5131c185cd53a2de2889a7700c916411
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/68674d9459488a0aa1617473eec383cb
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/68674d9459488a0aa1617473eec383cb
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/73cfa62367321d33fec05a689e3f525f
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/73cfa62367321d33fec05a689e3f525f
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/7405690089a957f80e7b12f193f6f0ce
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/7405690089a957f80e7b12f193f6f0ce
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/7688dc40bba5399df3fbe172c57cd93f
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/7688dc40bba5399df3fbe172c57cd93f
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/7be9086c960bb4384c9d23a52e489f29
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/7be9086c960bb4384c9d23a52e489f29
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/8f8936f164170e095c5ca2d0c2ae6127
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/8f8936f164170e095c5ca2d0c2ae6127
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/afb0f9cc894c0c8e4e489fd253f4f2f8
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/afb0f9cc894c0c8e4e489fd253f4f2f8
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/b391b80fa1151915b2892b3d38ea7ef8
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/b391b80fa1151915b2892b3d38ea7ef8
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/bd3936370d0f952ada5774e2230046ed
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/bd3936370d0f952ada5774e2230046ed
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/d4163d46596e847e353a08cf606ac53c
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/d4163d46596e847e353a08cf606ac53c
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/dcd2e5975e4f6f7f50fd45caef1c16c2
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/dcd2e5975e4f6f7f50fd45caef1c16c2
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/e04080816d927cb56e4504cdb3aba91a
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/e04080816d927cb56e4504cdb3aba91a
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/e459168835a5f27b832ace20874f7c10
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/e459168835a5f27b832ace20874f7c10
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/f62b1e92c8c73856ae5a5d7ce140f293
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/f62b1e92c8c73856ae5a5d7ce140f293
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
vendored
Normal file
Binary file not shown.
BIN
tmp/cache/assets/development/sprockets/fd8eb0e1ef2aeea851d6a8015a9b16d1
vendored
Normal file
BIN
tmp/cache/assets/development/sprockets/fd8eb0e1ef2aeea851d6a8015a9b16d1
vendored
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user