Merge branch 'master' into openstreetbugs
Conflicts: Gemfile.lock app/views/browse/_map.html.erb app/views/user/view.html.erb config/locales/en.yml config/openlayers.cfg db/structure.sql vendor/assets/openlayers/OpenLayers.js
This commit is contained in:
commit
0d3a9ed9cb
762 changed files with 18663 additions and 13000 deletions
61
vendor/assets/jquery/jquery.autogrowtextarea.js
vendored
Normal file
61
vendor/assets/jquery/jquery.autogrowtextarea.js
vendored
Normal file
|
@ -0,0 +1,61 @@
|
|||
/*!
|
||||
* Autogrow Textarea Plugin Version v2.0
|
||||
* http://www.technoreply.com/autogrow-textarea-plugin-version-2-0
|
||||
*
|
||||
* Copyright 2011, Jevin O. Sewaruth
|
||||
*
|
||||
* Date: March 13, 2011
|
||||
*/
|
||||
jQuery.fn.autoGrow = function(){
|
||||
return this.each(function(){
|
||||
// Variables
|
||||
var colsDefault = this.cols;
|
||||
var rowsDefault = this.rows;
|
||||
|
||||
//Functions
|
||||
var grow = function() {
|
||||
growByRef(this);
|
||||
}
|
||||
|
||||
var growByRef = function(obj) {
|
||||
var linesCount = 0;
|
||||
var lines = obj.value.split('\n');
|
||||
|
||||
for (var i=lines.length-1; i>=0; --i)
|
||||
{
|
||||
linesCount += Math.floor((lines[i].length / colsDefault) + 1);
|
||||
}
|
||||
|
||||
if (linesCount >= rowsDefault)
|
||||
obj.rows = linesCount + 1;
|
||||
else
|
||||
obj.rows = rowsDefault;
|
||||
}
|
||||
|
||||
var characterWidth = function (obj){
|
||||
var characterWidth = 0;
|
||||
var temp1 = 0;
|
||||
var temp2 = 0;
|
||||
var tempCols = obj.cols;
|
||||
|
||||
obj.cols = 1;
|
||||
temp1 = obj.offsetWidth;
|
||||
obj.cols = 2;
|
||||
temp2 = obj.offsetWidth;
|
||||
characterWidth = temp2 - temp1;
|
||||
obj.cols = tempCols;
|
||||
|
||||
return characterWidth;
|
||||
}
|
||||
|
||||
// Manipulations
|
||||
this.style.width = "auto";
|
||||
this.style.height = "auto";
|
||||
this.style.overflow = "hidden";
|
||||
this.style.width = ((characterWidth(this) * this.cols) + 6) + "px";
|
||||
this.onkeyup = grow;
|
||||
this.onfocus = grow;
|
||||
this.onblur = grow;
|
||||
growByRef(this);
|
||||
});
|
||||
};
|
138
vendor/assets/jquery/jquery.timers.js
vendored
Normal file
138
vendor/assets/jquery/jquery.timers.js
vendored
Normal file
|
@ -0,0 +1,138 @@
|
|||
/**
|
||||
* jQuery.timers - Timer abstractions for jQuery
|
||||
* Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
|
||||
* Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
|
||||
* Date: 2009/10/16
|
||||
*
|
||||
* @author Blair Mitchelmore
|
||||
* @version 1.2
|
||||
*
|
||||
**/
|
||||
|
||||
jQuery.fn.extend({
|
||||
everyTime: function(interval, label, fn, times) {
|
||||
return this.each(function() {
|
||||
jQuery.timer.add(this, interval, label, fn, times);
|
||||
});
|
||||
},
|
||||
oneTime: function(interval, label, fn) {
|
||||
return this.each(function() {
|
||||
jQuery.timer.add(this, interval, label, fn, 1);
|
||||
});
|
||||
},
|
||||
stopTime: function(label, fn) {
|
||||
return this.each(function() {
|
||||
jQuery.timer.remove(this, label, fn);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
jQuery.extend({
|
||||
timer: {
|
||||
global: [],
|
||||
guid: 1,
|
||||
dataKey: "jQuery.timer",
|
||||
regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
|
||||
powers: {
|
||||
// Yeah this is major overkill...
|
||||
'ms': 1,
|
||||
'cs': 10,
|
||||
'ds': 100,
|
||||
's': 1000,
|
||||
'das': 10000,
|
||||
'hs': 100000,
|
||||
'ks': 1000000
|
||||
},
|
||||
timeParse: function(value) {
|
||||
if (value == undefined || value == null)
|
||||
return null;
|
||||
var result = this.regex.exec(jQuery.trim(value.toString()));
|
||||
if (result[2]) {
|
||||
var num = parseFloat(result[1]);
|
||||
var mult = this.powers[result[2]] || 1;
|
||||
return num * mult;
|
||||
} else {
|
||||
return value;
|
||||
}
|
||||
},
|
||||
add: function(element, interval, label, fn, times) {
|
||||
var counter = 0;
|
||||
|
||||
if (jQuery.isFunction(label)) {
|
||||
if (!times)
|
||||
times = fn;
|
||||
fn = label;
|
||||
label = interval;
|
||||
}
|
||||
|
||||
interval = jQuery.timer.timeParse(interval);
|
||||
|
||||
if (typeof interval != 'number' || isNaN(interval) || interval < 0)
|
||||
return;
|
||||
|
||||
if (typeof times != 'number' || isNaN(times) || times < 0)
|
||||
times = 0;
|
||||
|
||||
times = times || 0;
|
||||
|
||||
var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});
|
||||
|
||||
if (!timers[label])
|
||||
timers[label] = {};
|
||||
|
||||
fn.timerID = fn.timerID || this.guid++;
|
||||
|
||||
var handler = function() {
|
||||
if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
|
||||
jQuery.timer.remove(element, label, fn);
|
||||
};
|
||||
|
||||
handler.timerID = fn.timerID;
|
||||
|
||||
if (!timers[label][fn.timerID])
|
||||
timers[label][fn.timerID] = window.setInterval(handler,interval);
|
||||
|
||||
this.global.push( element );
|
||||
|
||||
},
|
||||
remove: function(element, label, fn) {
|
||||
var timers = jQuery.data(element, this.dataKey), ret;
|
||||
|
||||
if ( timers ) {
|
||||
|
||||
if (!label) {
|
||||
for ( label in timers )
|
||||
this.remove(element, label, fn);
|
||||
} else if ( timers[label] ) {
|
||||
if ( fn ) {
|
||||
if ( fn.timerID ) {
|
||||
window.clearInterval(timers[label][fn.timerID]);
|
||||
delete timers[label][fn.timerID];
|
||||
}
|
||||
} else {
|
||||
for ( var fn in timers[label] ) {
|
||||
window.clearInterval(timers[label][fn]);
|
||||
delete timers[label][fn];
|
||||
}
|
||||
}
|
||||
|
||||
for ( ret in timers[label] ) break;
|
||||
if ( !ret ) {
|
||||
ret = null;
|
||||
delete timers[label];
|
||||
}
|
||||
}
|
||||
|
||||
for ( ret in timers ) break;
|
||||
if ( !ret )
|
||||
jQuery.removeData(element, this.dataKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
jQuery(window).bind("unload", function() {
|
||||
jQuery.each(jQuery.timer.global, function(index, item) {
|
||||
jQuery.timer.remove(item);
|
||||
});
|
||||
});
|
1410
vendor/assets/openlayers/OpenLayers.js
vendored
1410
vendor/assets/openlayers/OpenLayers.js
vendored
File diff suppressed because one or more lines are too long
62
vendor/assets/openlayers/OpenStreetMap.js
vendored
62
vendor/assets/openlayers/OpenStreetMap.js
vendored
|
@ -1,33 +1,3 @@
|
|||
/**
|
||||
* Namespace: Util.OSM
|
||||
*/
|
||||
OpenLayers.Util.OSM = {};
|
||||
|
||||
/**
|
||||
* Constant: MISSING_TILE_URL
|
||||
* {String} URL of image to display for missing tiles
|
||||
*/
|
||||
OpenLayers.Util.OSM.MISSING_TILE_URL = OpenLayers.Util.getImagesLocation() + "404.png";
|
||||
|
||||
/**
|
||||
* Property: originalOnImageLoadError
|
||||
* {Function} Original onImageLoadError function.
|
||||
*/
|
||||
OpenLayers.Util.OSM.originalOnImageLoadError = OpenLayers.Util.onImageLoadError;
|
||||
|
||||
/**
|
||||
* Function: onImageLoadError
|
||||
*/
|
||||
OpenLayers.Util.onImageLoadError = function() {
|
||||
if (this.src.match(/^http:\/\/[abc]\.[a-z]+\.openstreetmap\.org\//)) {
|
||||
this.src = OpenLayers.Util.OSM.MISSING_TILE_URL;
|
||||
} else if (this.src.match(/^http:\/\/[def]\.tah\.openstreetmap\.org\//)) {
|
||||
// do nothing - this layer is transparent
|
||||
} else {
|
||||
OpenLayers.Util.OSM.originalOnImageLoadError;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Class: OpenLayers.Layer.OSM.Mapnik
|
||||
*
|
||||
|
@ -60,38 +30,6 @@ OpenLayers.Layer.OSM.Mapnik = OpenLayers.Class(OpenLayers.Layer.OSM, {
|
|||
CLASS_NAME: "OpenLayers.Layer.OSM.Mapnik"
|
||||
});
|
||||
|
||||
/**
|
||||
* Class: OpenLayers.Layer.OSM.Osmarender
|
||||
*
|
||||
* Inherits from:
|
||||
* - <OpenLayers.Layer.OSM>
|
||||
*/
|
||||
OpenLayers.Layer.OSM.Osmarender = OpenLayers.Class(OpenLayers.Layer.OSM, {
|
||||
/**
|
||||
* Constructor: OpenLayers.Layer.OSM.Osmarender
|
||||
*
|
||||
* Parameters:
|
||||
* name - {String}
|
||||
* options - {Object} Hashtable of extra options to tag onto the layer
|
||||
*/
|
||||
initialize: function(name, options) {
|
||||
var url = [
|
||||
"http://a.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png",
|
||||
"http://b.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png",
|
||||
"http://c.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png"
|
||||
];
|
||||
options = OpenLayers.Util.extend({
|
||||
numZoomLevels: 18,
|
||||
buffer: 0,
|
||||
transitionEffect: "resize"
|
||||
}, options);
|
||||
var newArguments = [name, url, options];
|
||||
OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments);
|
||||
},
|
||||
|
||||
CLASS_NAME: "OpenLayers.Layer.OSM.Osmarender"
|
||||
});
|
||||
|
||||
/**
|
||||
* Class: OpenLayers.Layer.OSM.CycleMap
|
||||
*
|
||||
|
|
BIN
vendor/assets/openlayers/img/404.png
vendored
BIN
vendor/assets/openlayers/img/404.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 14 KiB |
|
@ -1 +0,0 @@
|
|||
.olLayerGoogleCopyright{right:3px;bottom:2px;left:auto;}.olLayerGoogleV3.olLayerGoogleCopyright{bottom:0;right:0!important;}.olLayerGooglePoweredBy{left:2px;bottom:2px;}.olLayerGoogleV3.olLayerGooglePoweredBy{bottom:0!important;}
|
|
@ -1 +0,0 @@
|
|||
.olControlZoomPanel div{background-image:url(img/zoom-panel-NOALPHA.png);}.olControlPanPanel div{background-image:url(img/pan-panel-NOALPHA.png);}.olControlEditingToolbar{width:200px;}
|
107
vendor/assets/openlayers/theme/default/style.css
vendored
107
vendor/assets/openlayers/theme/default/style.css
vendored
|
@ -23,16 +23,16 @@ div.olLayerDiv {
|
|||
}
|
||||
.olLayerGooglePoweredBy {
|
||||
left: 2px;
|
||||
bottom: 15px;
|
||||
bottom: 15px;
|
||||
}
|
||||
.olLayerGoogleV3.olLayerGooglePoweredBy {
|
||||
bottom: 15px !important;
|
||||
}
|
||||
.olControlAttribution {
|
||||
font-size: smaller;
|
||||
right: 3px;
|
||||
bottom: 4.5em;
|
||||
position: absolute;
|
||||
font-size: smaller;
|
||||
right: 3px;
|
||||
bottom: 4.5em;
|
||||
position: absolute;
|
||||
display: block;
|
||||
}
|
||||
.olControlScale {
|
||||
|
@ -67,10 +67,10 @@ div.olLayerDiv {
|
|||
display: block;
|
||||
position: absolute;
|
||||
font-size: smaller;
|
||||
}
|
||||
}
|
||||
|
||||
div.olControlMousePosition {
|
||||
bottom: 0em;
|
||||
bottom: 0;
|
||||
right: 3px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
|
@ -90,13 +90,10 @@ div.olControlMousePosition {
|
|||
-moz-border-radius: 1em 0 0 0;
|
||||
}
|
||||
|
||||
.olControlOverviewMapMinimizeButton {
|
||||
right: 0;
|
||||
bottom: 80px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.olControlOverviewMapMinimizeButton,
|
||||
.olControlOverviewMapMaximizeButton {
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
right: 0;
|
||||
bottom: 80px;
|
||||
cursor: pointer;
|
||||
|
@ -136,7 +133,7 @@ div.olControlMousePosition {
|
|||
.olPopupContent {
|
||||
padding:5px;
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.olControlNavigationHistory {
|
||||
background-image: url("img/navigation_history.png");
|
||||
|
@ -145,25 +142,25 @@ div.olControlMousePosition {
|
|||
height: 24px;
|
||||
|
||||
}
|
||||
.olControlNavigationHistoryPreviousItemActive {
|
||||
.olControlNavigationHistoryPreviousItemActive {
|
||||
background-position: 0 0;
|
||||
}
|
||||
.olControlNavigationHistoryPreviousItemInactive {
|
||||
.olControlNavigationHistoryPreviousItemInactive {
|
||||
background-position: 0 -24px;
|
||||
}
|
||||
.olControlNavigationHistoryNextItemActive {
|
||||
.olControlNavigationHistoryNextItemActive {
|
||||
background-position: -24px 0;
|
||||
}
|
||||
.olControlNavigationHistoryNextItemInactive {
|
||||
.olControlNavigationHistoryNextItemInactive {
|
||||
background-position: -24px -24px;
|
||||
}
|
||||
|
||||
div.olControlSaveFeaturesItemActive {
|
||||
div.olControlSaveFeaturesItemActive {
|
||||
background-image: url(img/save_features_on.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 1px;
|
||||
}
|
||||
div.olControlSaveFeaturesItemInactive {
|
||||
div.olControlSaveFeaturesItemInactive {
|
||||
background-image: url(img/save_features_off.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 1px;
|
||||
|
@ -184,12 +181,12 @@ div.olControlSaveFeaturesItemInactive {
|
|||
opacity: 0.50;
|
||||
font-size: 1px;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
}
|
||||
|
||||
.olControlPanPanel {
|
||||
top: 10px;
|
||||
left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.olControlPanPanel div {
|
||||
background-image: url(img/pan-panel.png);
|
||||
|
@ -224,7 +221,7 @@ div.olControlSaveFeaturesItemInactive {
|
|||
.olControlZoomPanel {
|
||||
top: 71px;
|
||||
left: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
.olControlZoomPanel div {
|
||||
background-image: url(img/zoom-panel.png);
|
||||
|
@ -252,9 +249,9 @@ div.olControlSaveFeaturesItemInactive {
|
|||
background-position: 0 18px;
|
||||
}
|
||||
|
||||
/*
|
||||
/*
|
||||
* When a potential text is bigger than the image it move the image
|
||||
* with some headers (closes #3154)
|
||||
* with some headers (closes #3154)
|
||||
*/
|
||||
.olControlPanZoomBar div {
|
||||
font-size: 1px;
|
||||
|
@ -323,10 +320,8 @@ div.olControlSaveFeaturesItemInactive {
|
|||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
padding-bottom: 5px;
|
||||
padding-right: 75px;
|
||||
padding-right: 10px;
|
||||
background-color: darkblue;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.olControlLayerSwitcher .layersDiv .baseLbl,
|
||||
|
@ -343,6 +338,8 @@ div.olControlSaveFeaturesItemInactive {
|
|||
|
||||
.olControlLayerSwitcher .maximizeDiv,
|
||||
.olControlLayerSwitcher .minimizeDiv {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
top: 5px;
|
||||
right: 0;
|
||||
cursor: pointer;
|
||||
|
@ -431,3 +428,57 @@ span.olGoogleAttribution.hybrid a, span.olGoogleAttribution.satellite a {
|
|||
.olControlEditingToolbar .olControlDrawFeaturePolygonItemActive {
|
||||
background-position: -26px -24px;
|
||||
}
|
||||
|
||||
div.olControlZoom {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 8px;
|
||||
background: rgba(255,255,255,0.4);
|
||||
border-radius: 4px;
|
||||
padding: 2px;
|
||||
}
|
||||
div.olControlZoom a {
|
||||
display: block;
|
||||
margin: 1px;
|
||||
padding: 0;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
font-family: 'Lucida Grande', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
height: 22px;
|
||||
width:22px;
|
||||
line-height: 19px;
|
||||
background: #130085; /* fallback for IE - IE6 requires background shorthand*/
|
||||
background: rgba(0, 60, 136, 0.5);
|
||||
filter: alpha(opacity=80);
|
||||
}
|
||||
div.olControlZoom a:hover {
|
||||
background: #130085; /* fallback for IE */
|
||||
background: rgba(0, 60, 136, 0.7);
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
@media only screen and (max-width: 600px) {
|
||||
div.olControlZoom a:hover {
|
||||
background: rgba(0, 60, 136, 0.5);
|
||||
}
|
||||
}
|
||||
a.olControlZoomIn {
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
a.olControlZoomOut {
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Animations
|
||||
*/
|
||||
|
||||
.olLayerGrid .olTileImage {
|
||||
-webkit-transition: opacity 0.2s linear;
|
||||
-moz-transition: opacity 0.2s linear;
|
||||
-o-transition: opacity 0.2s linear;
|
||||
transition: opacity 0.2s linear;
|
||||
}
|
||||
|
|
63
vendor/assets/openlayers/theme/default/style.mobile.css
vendored
Normal file
63
vendor/assets/openlayers/theme/default/style.mobile.css
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
div.olControlZoom {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 8px;
|
||||
background: rgba(255,255,255,0.4);
|
||||
border-radius: 4px;
|
||||
padding: 2px;
|
||||
}
|
||||
* {
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
div.olControlZoom a {
|
||||
display: block;
|
||||
margin: 1px;
|
||||
padding: 0;
|
||||
color: white;
|
||||
font-size: 28px;
|
||||
font-family: sans-serif;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
line-height: 28px;
|
||||
text-shadow: 0 0 3px rgba(0,0,0,0.8);
|
||||
background: #130085; /* fallback for IE - IE6 requires background shorthand*/
|
||||
background: rgba(0, 60, 136, 0.5);
|
||||
filter: alpha(opacity=80);
|
||||
}
|
||||
a.olControlZoomIn {
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
a.olControlZoomOut {
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
div.olControlZoom a:hover {
|
||||
background: #130085; /* fallback for IE */
|
||||
background: rgba(0, 60, 136, 0.7);
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
@media only screen and (max-width: 600px) {
|
||||
div.olControlZoom a:hover {
|
||||
background: rgba(0, 60, 136, 0.5);
|
||||
}
|
||||
}
|
||||
.olLayerGrid .olTileImage {
|
||||
-webkit-transition: opacity 0.2s linear;
|
||||
-moz-transition: opacity 0.2s linear;
|
||||
-o-transition: opacity 0.2s linear;
|
||||
transition: opacity 0.2s linear;
|
||||
}
|
||||
/* Enable 3d acceleration when operating on tiles, this is
|
||||
known to yield better performance on IOS Safari.
|
||||
http://osgeo-org.1803224.n2.nabble.com/Harware-accelerated-CSS3-animations-for-iOS-td6255560.html
|
||||
|
||||
It also prevents tile blinking effects in iOS 5.
|
||||
See https://github.com/openlayers/openlayers/issues/511
|
||||
*/
|
||||
@media (-webkit-transform-3d) {
|
||||
img.olTileImage {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
BIN
vendor/assets/potlatch2/help/introduction.jpg
vendored
Normal file
BIN
vendor/assets/potlatch2/help/introduction.jpg
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
vendor/assets/potlatch2/help/introduction.mp4
vendored
Normal file
BIN
vendor/assets/potlatch2/help/introduction.mp4
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/FontLibrary.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/FontLibrary.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/assets.zip
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/assets.zip
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ar.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ar.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ast.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ast.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/be-tarask.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/be-tarask.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/br.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/br.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ca.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ca.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/cs_CZ.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/cs_CZ.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/da.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/da.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/de_DE.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/de_DE.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/diq.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/diq.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/dsb.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/dsb.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/el.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/el.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/en_GB.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/en_GB.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/en_US.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/en_US.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/es_ES.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/es_ES.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/et.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/et.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/fa.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/fa.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/fi.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/fi.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/fr_FR.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/fr_FR.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ga.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ga.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/gl.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/gl.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/he.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/he.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/hsb.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/hsb.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/hu.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/hu.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ia.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ia.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/it_IT.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/it_IT.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ja_JP.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ja_JP.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ka.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ka.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ko.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ko.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/lb.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/lb.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/lt.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/lt.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/lv.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/lv.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/mk.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/mk.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ms.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ms.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/nb_NO.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/nb_NO.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/nl_NL.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/nl_NL.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/nn_NO.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/nn_NO.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/pl_PL.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/pl_PL.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/pt_BR.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/pt_BR.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/pt_PT.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/pt_PT.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ru.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ru.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/rue.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/rue.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/sk.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/sk.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/sl.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/sl.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/sq.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/sq.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/sr-ec.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/sr-ec.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/sr-el.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/sr-el.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/sv_SE.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/sv_SE.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/ta.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/ta.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/tl.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/tl.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/tr.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/tr.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/uk.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/uk.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/vi_VN.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/vi_VN.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/potlatch2/potlatch2/locales/zh_CN.swf
vendored
Normal file
BIN
vendor/assets/potlatch2/potlatch2/locales/zh_CN.swf
vendored
Normal file
Binary file not shown.
BIN
vendor/assets/swfobject/expressInstall.swf
vendored
Normal file
BIN
vendor/assets/swfobject/expressInstall.swf
vendored
Normal file
Binary file not shown.
4
vendor/assets/swfobject/swfobject.js
vendored
Normal file
4
vendor/assets/swfobject/swfobject.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue