Skip to content

Commit

Permalink
remove Adobe Kuler integration
Browse files Browse the repository at this point in the history
In prep for moving servers. It appears the integration has not worked
for at least a year, given that the API now redirects to HTTPS and
the server did not have recent-enough root certs to validate it.

Beyond that, Adobe Kuler has been shutdown (a placeholder response
appears to be hardcoded for graceful degredation), after a deprecation
phase in which it rebranded as Adobe Color.
  • Loading branch information
Krinkle committed Jul 21, 2023
1 parent 23287b9 commit 279197a
Show file tree
Hide file tree
Showing 21 changed files with 2 additions and 542 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
##README
## README

This is the new repo for the jQuery Mobile ThemeRoller tool.

Expand Down
13 changes: 0 additions & 13 deletions css/tr.layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -216,19 +216,6 @@ h2{
margin-left: 10px;
}

#quickswatch #kuler-activation{
color: #29ABE2;
font-weight: normal;
margin-left: 5px;
cursor: pointer;
}

#quickswatch h2 #kuler-activation img{
position: relative;
top: -1px;
margin-left: 4px;
}

#quickswatch .colors{
padding: 10px;
margin-top: -10px;
Expand Down
9 changes: 0 additions & 9 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
$style = urldecode($_POST['style']);
}
$JQUERY_VERSION = $ALL_JQUERY_VERSIONS[ $JQM_VERSION ] ? $ALL_JQUERY_VERSIONS[ $JQM_VERSION ] : "1.6.4";

$kuler_markup = rtrim( preg_replace( "/\n/", "\n\t\t\t\t\t", file_get_contents( "kuler/kuler.html" ) ) ) . "\n";
?>
<!DOCTYPE html>
<html>
Expand All @@ -27,7 +25,6 @@
<link rel="stylesheet" type="text/css" href="css/jquery.ui.css" />
<link rel="stylesheet" type="text/css" href="css/farbtastic.css" />
<link rel="stylesheet" type="text/css" href="css/tr.panel.css" />
<link rel="stylesheet" type="text/css" href="kuler/kuler.css" />

<script type="text/javascript" src="js/lib/jquery.js"></script>
<script type="text/javascript" src="js/lib/jquery.ui.js"></script>
Expand All @@ -39,7 +36,6 @@
<script type="text/javascript" src="js/panel.js"></script>
<script type="text/javascript" src="js/ui.js"></script>
<script type="text/javascript" src="js/version.js"></script>
<script type="text/javascript" src="kuler/kuler.js"></script>
<?php
if( file_exists( "jqm/" . $JQM_VERSION . "/panel.js" ) ) {
echo '<script type="text/javascript" src="jqm/' . $JQM_VERSION . '/panel.js"></script>';
Expand Down Expand Up @@ -333,11 +329,6 @@
<span>SATURATION</span><div id="saturation_slider"></div>
</div>
</div>
<?php
if( isset($kuler_markup) ) {
echo $kuler_markup;
}
?>
<div id="most-recent-colors">
<div class="picker">
<h2>Recent Colors</h2>
Expand Down
2 changes: 1 addition & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ TR.initDraggableColors = function() {
if( el_class.indexOf(".ui-bar") != -1 ) {
swatch = element.attr( "data-swatch" );
}
var color = $( ".color-drag.ui-draggable-dragging" ).css( "background-color" ) || $( ".kuler-color.ui-draggable-dragging" ).css( "background-color" );
var color = $( ".color-drag.ui-draggable-dragging" ).css( "background-color" );
if( color != "transparent" ) {
color = TR.rgbtohex( color );
}
Expand Down
25 changes: 0 additions & 25 deletions kuler.php

This file was deleted.

Binary file removed kuler/images/arrow-blue.png
Binary file not shown.
Binary file removed kuler/images/arrow-l-light.png
Binary file not shown.
Binary file removed kuler/images/arrow-l.png
Binary file not shown.
Binary file removed kuler/images/arrow-r-light.png
Binary file not shown.
Binary file removed kuler/images/arrow-r.png
Binary file not shown.
Binary file removed kuler/images/arrow-reroute.png
Binary file not shown.
Binary file removed kuler/images/close.png
Binary file not shown.
Binary file removed kuler/images/detail-bg.png
Binary file not shown.
Binary file removed kuler/images/kuler-logo-large.png
Binary file not shown.
Binary file removed kuler/images/kuler-logo-small.png
Binary file not shown.
Binary file removed kuler/images/search.png
Binary file not shown.
Binary file removed kuler/images/star-dark.png
Binary file not shown.
Binary file removed kuler/images/star.png
Binary file not shown.
189 changes: 0 additions & 189 deletions kuler/kuler.css

This file was deleted.

38 changes: 0 additions & 38 deletions kuler/kuler.html

This file was deleted.

Loading

0 comments on commit 279197a

Please sign in to comment.