repo string | commit string | message string | diff string |
|---|---|---|---|
TiagoJustino/graph_mst | a359b28996dc2081dda7b2432d81015c9325e9b2 | cli degree constrained kruskal dprim (must be fixed). | diff --git a/graph.cpp b/graph.cpp
index acab9f9..d1b7ede 100644
--- a/graph.cpp
+++ b/graph.cpp
@@ -1,168 +1,163 @@
-#include <QtCore>
#include <gmpxx.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include "graph.h"
#ifdef __cplusplus
extern "C"
{
#endif
#include "triangle.h"
#ifdef __cplus... |
TiagoJustino/graph_mst | 615fe7e6e1dfecadcfd1d3f77ff9f9653729b560 | makefile. | diff --git a/report/Makefile b/report/Makefile
index 1619da5..bd46560 100644
--- a/report/Makefile
+++ b/report/Makefile
@@ -1,45 +1,46 @@
# Makefile from textemplate
TARGET=mst
# Includes
include imagerules.mk
# Implicit rules
%.pdf: %.tex
pdflatex -draftmode $<
grep -q '^\\bibliography{.*}$$' $<... |
TiagoJustino/graph_mst | eeea7608147d873bbc9e678a5431e170845df179 | boruvka results added to report. | diff --git a/report/mst.tex b/report/mst.tex
index 28b755f..924edb7 100644
--- a/report/mst.tex
+++ b/report/mst.tex
@@ -1,297 +1,330 @@
% LaTeX document template.
% Author: Rudy Matela
% e-mail: rudy.matela@gmail.com
% date: 2008-11-08 23:20
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
... |
TiagoJustino/graph_mst | 75d8eb14dd64d657944e14a7d7e1119fae2158a8 | workaround for boruvka. | diff --git a/boruvka.cpp b/boruvka.cpp
index 2e1773a..2ffef70 100644
--- a/boruvka.cpp
+++ b/boruvka.cpp
@@ -1,108 +1,109 @@
#include <iostream>
#include <vector>
#include <list>
#include <set>
#include "disjoint_sets.h"
#include "boruvka.h"
using namespace std;
class edge_t {
public:
int v1, v2;
... |
TiagoJustino/graph_mst | dcf2d21cb3b9004fb2978a418a784d67aad5125f | boruvka | diff --git a/boruvka.cpp b/boruvka.cpp
index 4949b14..2e1773a 100644
--- a/boruvka.cpp
+++ b/boruvka.cpp
@@ -1,86 +1,108 @@
+#include <iostream>
#include <vector>
#include <list>
#include <set>
#include "disjoint_sets.h"
#include "boruvka.h"
using namespace std;
+class edge_t {
+public:
+ int v1, v2;
+ ... |
TiagoJustino/graph_mst | 258424cfbcdd788578a6c31880cff1826f6cfc41 | edge color. | diff --git a/report/fig/kruskal_02_DONI22009_mst.dot b/report/fig/kruskal_02_DONI22009_mst.dot
index f8fe5c5..0ab2299 100644
--- a/report/fig/kruskal_02_DONI22009_mst.dot
+++ b/report/fig/kruskal_02_DONI22009_mst.dot
@@ -1,73 +1,136 @@
graph {
"0" [pos="549.417000,9585.760000"]
"1" [pos="549.261000,9587.280000"]
"2... |
TiagoJustino/graph_mst | 114c6699b9dd14a07cf3ad0a9fbd9dba3234a9f7 | Graph name stored. | diff --git a/graph.cpp b/graph.cpp
index aaff0bd..82a6b5c 100644
--- a/graph.cpp
+++ b/graph.cpp
@@ -1,156 +1,163 @@
#include <QtCore>
#include <gmpxx.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include "graph.h"
#ifdef __cplusplus
extern "C"
{
#endif
#include "triangle.h"
#ifdef __cplus... |
TiagoJustino/graph_mst | f33a98929f09e54c0ec5ea25f81fdbbb701bcb5b | boruvka (with bugs) | diff --git a/boruvka.cpp b/boruvka.cpp
new file mode 100644
index 0000000..4949b14
--- /dev/null
+++ b/boruvka.cpp
@@ -0,0 +1,86 @@
+#include <vector>
+#include <list>
+#include <set>
+#include "disjoint_sets.h"
+#include "boruvka.h"
+
+using namespace std;
+
+static list<int> listSets(const DisjointSets &ds)
+{
+ l... |
TiagoJustino/graph_mst | b0d52e0f25ee9129828a42e983a59a5866e1b60e | change in the graph name. | diff --git a/input/06_DONI12009.txt b/input/06_DONI12009.txt
index 1a21f86..4f94535 100644
--- a/input/06_DONI12009.txt
+++ b/input/06_DONI12009.txt
@@ -1,513 +1,513 @@
-DONI12009
+DONIX2009
1000 0 0
5.49417000000000E+0002 9.58576000000000E+0003
5.39180000000000E+0002 9.56607000000000E+0003
5.49261000000000E+0... |
TiagoJustino/graph_mst | 2ca6e6af7a1dd5335c7b6f43d77bc57460c6b773 | one more test added. | diff --git a/graph_mst_test.cpp b/graph_mst_test.cpp
index 2f72027..fb40a45 100644
--- a/graph_mst_test.cpp
+++ b/graph_mst_test.cpp
@@ -1,83 +1,84 @@
#include <cppunit/extensions/HelperMacros.h>
#include <QtCore>
#include <gmpxx.h>
#include "graph.h"
#include "kruskal.h"
#include "prim.h"
#include "edge.h"
#in... |
TiagoJustino/graph_mst | d792346e291b6f80e3f81edf4df8b395eb196dec | precision error fixed on tests. | diff --git a/graph_mst_test.cpp b/graph_mst_test.cpp
index 6e93772..2f72027 100644
--- a/graph_mst_test.cpp
+++ b/graph_mst_test.cpp
@@ -1,76 +1,83 @@
#include <cppunit/extensions/HelperMacros.h>
#include <QtCore>
#include <gmpxx.h>
#include "graph.h"
#include "kruskal.h"
#include "prim.h"
#include "edge.h"
#in... |
TiagoJustino/graph_mst | 9ff625b33abf9921bb87a4ad5ad91763ae55546b | Neighbors fixed to eunclidean graphs. | diff --git a/graph.cpp b/graph.cpp
index 14b26aa..aaff0bd 100644
--- a/graph.cpp
+++ b/graph.cpp
@@ -1,156 +1,156 @@
#include <QtCore>
#include <gmpxx.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include "graph.h"
#ifdef __cplusplus
extern "C"
{
#endif
#include "triangle.h"
#ifdef __cplus... |
TiagoJustino/graph_mst | 9554a8318fbe6ee269224de024c0a5a528c65a7f | emst finished. | diff --git a/graph.cpp b/graph.cpp
index ead5bac..14b26aa 100644
--- a/graph.cpp
+++ b/graph.cpp
@@ -1,153 +1,156 @@
#include <QtCore>
#include <gmpxx.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include "graph.h"
#ifdef __cplusplus
extern "C"
{
#endif
#include "triangle.h"
#ifdef __cplus... |
TiagoJustino/graph_mst | 1f3e1253e8d1f2eefb29c4240c6a9efda912e171 | Prim finished and ok. | diff --git a/binary_heap.h b/binary_heap.h
index f144ae7..cfa6b5d 100644
--- a/binary_heap.h
+++ b/binary_heap.h
@@ -1,105 +1,105 @@
#ifndef BINARY_HEAP_H
#define BINARY_HEAP_H
#include <functional>
#include <vector>
using std::vector;
template <class T>
class BinaryHeap;
template <class T>
class Binar... |
TiagoJustino/graph_mst | 8978cf1368f23235a277c2d25b93b091f190b8dd | qmake debug. | diff --git a/graph_mst.pro b/graph_mst.pro
index 06098cc..e059c7f 100644
--- a/graph_mst.pro
+++ b/graph_mst.pro
@@ -1,19 +1,20 @@
######################################################################
# Automatically generated by qmake (2.01a) Fri Aug 20 11:39:24 2010
###############################################... |
TiagoJustino/graph_mst | 257beb4d720481c400f61d8257f2c71d51513b10 | Generic test for all MST algorithms. | diff --git a/graph_mst.pro b/graph_mst.pro
index f137b0c..ed4bec4 100644
--- a/graph_mst.pro
+++ b/graph_mst.pro
@@ -1,19 +1,19 @@
######################################################################
# Automatically generated by qmake (2.01a) Fri Aug 20 11:39:24 2010
###############################################... |
TiagoJustino/graph_mst | e58e13ab47e9e9743df5b760ae0936123891d22b | little fix. | diff --git a/binary_heap.h b/binary_heap.h
index fcda167..f144ae7 100644
--- a/binary_heap.h
+++ b/binary_heap.h
@@ -1,104 +1,105 @@
#ifndef BINARY_HEAP_H
#define BINARY_HEAP_H
#include <functional>
#include <vector>
using std::vector;
template <class T>
class BinaryHeap;
template <class T>
class Binar... |
TiagoJustino/graph_mst | a3e5d7aee35ab316369743c6e3a29274dae4b5ee | BinaryHeap finished. Tests for prim. TODO: Fix prim. | diff --git a/binary_heap.h b/binary_heap.h
index f741a99..fcda167 100644
--- a/binary_heap.h
+++ b/binary_heap.h
@@ -1,70 +1,104 @@
#ifndef BINARY_HEAP_H
#define BINARY_HEAP_H
+#include <functional>
#include <vector>
using std::vector;
template <class T>
class BinaryHeap;
template <class T>
class Binary... |
TiagoJustino/graph_mst | 0e70c56dde60911bd1a67e08942a9633b3355e41 | little changes in binary heap. | diff --git a/binary_heap.h b/binary_heap.h
index fdfb4cf..f741a99 100644
--- a/binary_heap.h
+++ b/binary_heap.h
@@ -1,49 +1,70 @@
#ifndef BINARY_HEAP_H
#define BINARY_HEAP_H
+#include <vector>
+
+using std::vector;
+
template <class T>
-struct BinaryHeapNode {
- T& el;
- BinaryHeapNode *p, *l, *r;
+class Bi... |
TiagoJustino/graph_mst | b1942fed46365cee6ff9eb14713f7b9494fb69dd | implementation of prim using imcomplete binary heap. TODO: implement binary heap. | diff --git a/binary_heap.h b/binary_heap.h
new file mode 100644
index 0000000..64a4b9a
--- /dev/null
+++ b/binary_heap.h
@@ -0,0 +1,37 @@
+#ifndef BINARY_HEAP_H
+#define BINARY_HEAP_H
+
+template <class T>
+struct BinaryHeapNode {
+ T& el;
+ BinaryHeapNode *p, *l, *r;
+};
+
+template <class T>
+class BinaryHeap {... |
TiagoJustino/graph_mst | 2040f316010ff00868088d12709d6c932b1b3500 | disjoiont set added. | diff --git a/disjoint_sets.cpp b/disjoint_sets.cpp
new file mode 100644
index 0000000..71b7f56
--- /dev/null
+++ b/disjoint_sets.cpp
@@ -0,0 +1,131 @@
+// Disjoint Set Data Structure
+// Author: Emil Stefanov
+// Date: 03/28/06
+// Implementaton is as described in http://en.wikipedia.org/wiki/Disjoint-set_data_struc... |
TiagoJustino/graph_mst | 4258bd1b986fe07bb35b8544792b190e8c071fe0 | kruskal ok for inputs 01_quadrado2009.txt 03_serrinha2009.txt | diff --git a/graph.cpp b/graph.cpp
index 6a517f1..53867ef 100644
--- a/graph.cpp
+++ b/graph.cpp
@@ -1,97 +1,90 @@
#include <QtCore>
#include <gmpxx.h>
#include "graph.h"
#include <iostream>
#define STR_NUM_LEN 64
Graph::Graph()
{
/*
this->vertices = new QSet<Vertex>();
this->edges = new QSe... |
TiagoJustino/graph_mst | 776c49da7d24ac666a8765e67b07eb572a234bf6 | disjoint set fixed. TODO: fix Edge::getCost(). | diff --git a/edge.cpp b/edge.cpp
index 1672468..419d0d3 100644
--- a/edge.cpp
+++ b/edge.cpp
@@ -1,31 +1,31 @@
#include "edge.h"
Edge::Edge(Vertex v1, Vertex v2, mpf_class cost) :
v1(v1), v2(v2), cost(cost)
{
}
Edge::Edge(const Edge& e) :
- v1(Vertex(e.v1)), v2(Vertex(e.v2)), cost(e.cost)
+ v1... |
TiagoJustino/graph_mst | dc722ab015fa0e58f45b0e762da81478c8e219e0 | trying to add test for input/03_serrinha2009.txt | diff --git a/edge.cpp b/edge.cpp
index 05cad32..1672468 100644
--- a/edge.cpp
+++ b/edge.cpp
@@ -1,26 +1,31 @@
#include "edge.h"
-Edge::Edge(Vertex v1, Vertex v2, mpz_class cost) :
- v1(v1), v2(v2), cost(cost)
+Edge::Edge(Vertex v1, Vertex v2, mpf_class cost) :
+ v1(v1), v2(v2), cost(cost)
{
}
-Verte... |
TiagoJustino/graph_mst | dced1e0a6d731022355ce804431befb602f985c0 | some improvements. | diff --git a/kruskal_test.cpp b/kruskal_test.cpp
index 06f0ca5..b26d7ea 100644
--- a/kruskal_test.cpp
+++ b/kruskal_test.cpp
@@ -1,42 +1,50 @@
#include <cppunit/extensions/HelperMacros.h>
#include <QtCore>
#include <gmpxx.h>
+#include <vector>
#include "graph.h"
#include "kruskal.h"
#include "edge.h"
#include "v... |
TiagoJustino/graph_mst | a4305a4f9e2c65f0a6ea61aa8a0b38efaf2ba3d7 | disjoint set fixed. | diff --git a/main.cpp b/main.cpp
index 16c2842..100d5f7 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,11 +1,11 @@
#include <QtCore>
#include "graph.h"
#include "kruskal.h"
int main()
{
QFile *f = new QFile("input/01_quadrado2009.txt");
Graph g = Graph(f);
- //kruskal(g);
+ kruskal(g);
return 0;
}
diff -... |
TiagoJustino/graph_mst | b5b235c63e935b0c24ddddf4b86ea79160906a20 | TODO: fix Vertex::disjointSet | diff --git a/graph_mst.pro b/graph_mst.pro
index e534180..21e15dd 100644
--- a/graph_mst.pro
+++ b/graph_mst.pro
@@ -1,14 +1,14 @@
######################################################################
# Automatically generated by qmake (2.01a) Thu Aug 19 12:38:53 2010
###############################################... |
TiagoJustino/graph_mst | c0bd470343b6f4e4e1463b9f1c2f98ff5c7bd097 | disnoint set added to vertex. | diff --git a/edge.cpp b/edge.cpp
index eebc378..05cad32 100644
--- a/edge.cpp
+++ b/edge.cpp
@@ -1,27 +1,26 @@
#include "edge.h"
Edge::Edge(Vertex v1, Vertex v2, mpz_class cost) :
v1(v1), v2(v2), cost(cost)
{
}
Vertex Edge::getV1()
{
return this->v1;
}
Vertex Edge::getV2()
{
return thi... |
TiagoJustino/graph_mst | 0fdc1169c905ac75661240b0fb8a58c8bd51b3c2 | Change id from mpz to int. | diff --git a/edge.cpp b/edge.cpp
index 2fdfcc1..eebc378 100644
--- a/edge.cpp
+++ b/edge.cpp
@@ -1,21 +1,27 @@
#include "edge.h"
Edge::Edge(Vertex v1, Vertex v2, mpz_class cost) :
v1(v1), v2(v2), cost(cost)
{
}
Vertex Edge::getV1()
{
return this->v1;
}
Vertex Edge::getV2()
{
return thi... |
TiagoJustino/graph_mst | 30899b559d26e75031209bdfff9937ccb35c15ce | Addition of kruskal file. | diff --git a/kruskal.cpp b/kruskal.cpp
new file mode 100644
index 0000000..871bf3f
--- /dev/null
+++ b/kruskal.cpp
@@ -0,0 +1,15 @@
+#include "kruskal.h"
+#include "graph.h"
+#include "edge.h"
+#include <vector>
+#include <algorithm>
+
+using std::vector;
+
+Graph kruskal(Graph& g)
+{
+ vector<Edge> e = g.getEdges()... |
TiagoJustino/graph_mst | 43118a8c6de6d70965b4f297464089c4439ee01f | Literature review. | diff --git a/report/Makefile b/report/Makefile
new file mode 100644
index 0000000..a9a4313
--- /dev/null
+++ b/report/Makefile
@@ -0,0 +1,44 @@
+# Makefile from textemplate
+
+
+# Includes
+
+include imagerules.mk
+
+
+# Implicit rules
+
+%.pdf: %.tex
+ pdflatex -draftmode $<
+ grep -q '^\\bibliography{.*}$$' $< && \
+... |
TiagoJustino/graph_mst | 0c945fdb3efd78c0602f43bdad0705814602c432 | Initial graph classes and input files. | diff --git a/edge.cpp b/edge.cpp
new file mode 100644
index 0000000..2fdfcc1
--- /dev/null
+++ b/edge.cpp
@@ -0,0 +1,21 @@
+#include "edge.h"
+
+Edge::Edge(Vertex v1, Vertex v2, mpz_class cost) :
+ v1(v1), v2(v2), cost(cost)
+{
+}
+
+Vertex Edge::getV1()
+{
+ return this->v1;
+}
+
+Vertex Edge::getV2()
+{
+ ... |
edavis10/redmine_sso_client | 1d650b184331d9bf59ec737c67b4726ec6d58554 | Added docs about installing rest-client | diff --git a/README.rdoc b/README.rdoc
index 7759792..9f31460 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,32 +1,33 @@
= Redmine SSO Client
SSO Client implements a basic Single Sign On system for Redmine using the {Redmine SSO Server}[http://github.com/edavis10/redmine_sso_server]
== Features
* Integrates... |
edavis10/redmine_sso_client | 7b59341ec0323bbd3bff6b101703052cf0e0db4b | Added setup docs. | diff --git a/README.rdoc b/README.rdoc
index 8320c3b..7759792 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,32 +1,32 @@
= Redmine SSO Client
SSO Client implements a basic Single Sign On system for Redmine using the {Redmine SSO Server}[http://github.com/edavis10/redmine_sso_server]
== Features
-TODO
+* Inte... |
edavis10/redmine_sso_client | 12ba549cc04447f217519b8da8fbb79602082275 | Remove define_method, amc works sanely with ?'d method names. | diff --git a/lib/redmine_sso_client/patches/user_patch.rb b/lib/redmine_sso_client/patches/user_patch.rb
index ef79939..ed85944 100644
--- a/lib/redmine_sso_client/patches/user_patch.rb
+++ b/lib/redmine_sso_client/patches/user_patch.rb
@@ -1,39 +1,39 @@
module RedmineSsoClient
module Patches
module UserPatch
... |
edavis10/redmine_sso_client | ee0c54052fd8bf04e042669a343ff561783144be | [#3858] Send password changes to the SSO Server. | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index 11317bf..dc918a6 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,56 +1,64 @@
class AuthSourceSso < AuthSource
unloadable
include SsoClient
def auth_method_name
"SSO"
end
def... |
edavis10/redmine_sso_client | 22380df87a0d478f87c524afbf39a4ad44cbab4a | [#3913] Don't update the SSO Server when last_login_on changes. | diff --git a/lib/redmine_sso_client/patches/user_patch.rb b/lib/redmine_sso_client/patches/user_patch.rb
index 20c6d0c..2126607 100644
--- a/lib/redmine_sso_client/patches/user_patch.rb
+++ b/lib/redmine_sso_client/patches/user_patch.rb
@@ -1,22 +1,23 @@
module RedmineSsoClient
module Patches
module UserPatch
... |
edavis10/redmine_sso_client | 5bd53667d09df7f6ed36943fa37665932318b6ea | [#3913] Update the client based on testing against a live server: | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index dbfcbae..11317bf 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,34 +1,56 @@
class AuthSourceSso < AuthSource
unloadable
include SsoClient
def auth_method_name
"SSO"
end
def... |
edavis10/redmine_sso_client | 6a7fa8ca8a1d25db59ef5e4980a18bb27396593c | [#3857] Proxy all User#save requets to the SSO server for saving first. | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index 0cf6217..dbfcbae 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,21 +1,34 @@
class AuthSourceSso < AuthSource
unloadable
include SsoClient
def auth_method_name
"SSO"
end
def... |
edavis10/redmine_sso_client | b22440848c57d0257c7b46b335f226c108654bda | [#3857] Refactor SsoClient method names. | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index 954203c..0cf6217 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,21 +1,21 @@
class AuthSourceSso < AuthSource
unloadable
include SsoClient
def auth_method_name
"SSO"
end
def... |
edavis10/redmine_sso_client | 06f71a733ea46034fdbc84bcfbd0864b4bb9ddf8 | [#3857] Refactor the SSO client to a module so it can be reused. | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index 2f58ede..954203c 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,67 +1,21 @@
class AuthSourceSso < AuthSource
unloadable
+
+ include SsoClient
def auth_method_name
"SSO"
end
def... |
edavis10/redmine_sso_client | e8b063e5d8b84f3f039fddf94c484959317bb036 | [#3857] Pull the Hashed password down from the SSO server | diff --git a/test/test_helper.rb b/test/test_helper.rb
index 70630eb..c065ff2 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,37 +1,39 @@
# Load the normal Rails helper
require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper')
# Ensure that we are using the temporary fixtu... |
edavis10/redmine_sso_client | 0fcbe8e75de87a9e216a1c41f0e1e4b8bf16ba28 | Typo in API call | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index 20d2cec..2f58ede 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,67 +1,67 @@
class AuthSourceSso < AuthSource
unloadable
def auth_method_name
"SSO"
end
def authenticate(login, pass... |
edavis10/redmine_sso_client | 5c920c1c14e3e30b6728263a0a6a0f8f47bb80a6 | Rename test method. | diff --git a/test/test_helper.rb b/test/test_helper.rb
index 0104e1b..70630eb 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,37 +1,37 @@
# Load the normal Rails helper
require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper')
# Ensure that we are using the temporary fixtu... |
edavis10/redmine_sso_client | 84040dcccd26bdb83573924becd7ee49ace3ffc8 | [#3859] Hook up the AuthSourceSso to create new users on the fly. | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index 4856bd2..20d2cec 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,54 +1,67 @@
class AuthSourceSso < AuthSource
unloadable
def auth_method_name
"SSO"
end
def authenticate(login, pass... |
edavis10/redmine_sso_client | 0b5d3444b4a97876594319f60793781ceb363519 | [#3859] Handle failed authentication for existing users. | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index 78a07d9..4856bd2 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,54 +1,54 @@
class AuthSourceSso < AuthSource
unloadable
def auth_method_name
"SSO"
end
def authenticate(login, pass... |
edavis10/redmine_sso_client | d1722b44b3a6140ce2e680d68b44cf33abefbf07 | [#3859] Handle the existing user found case for authenticate. | diff --git a/app/models/auth_source_sso.rb b/app/models/auth_source_sso.rb
index aad89f7..78a07d9 100644
--- a/app/models/auth_source_sso.rb
+++ b/app/models/auth_source_sso.rb
@@ -1,7 +1,54 @@
class AuthSourceSso < AuthSource
unloadable
def auth_method_name
"SSO"
end
+
+ def authenticate(login, passw... |
edavis10/redmine_sso_client | a930818e8aac810345b7520634343896a9b36c72 | [#3859] Added a link to the SSO Auth Sources controller. | diff --git a/config/locales/en.yml b/config/locales/en.yml
new file mode 100644
index 0000000..16986ea
--- /dev/null
+++ b/config/locales/en.yml
@@ -0,0 +1,2 @@
+en:
+ label_auth_source_sso: SSO authentication
diff --git a/init.rb b/init.rb
new file mode 100644
index 0000000..704d983
--- /dev/null
+++ b/init.rb
@@ -0,... |
edavis10/redmine_sso_client | a236e16f0c11a7089f146137429211dc38045607 | [#3855] Hooked up the views to create new AuthSourceSso objects. | diff --git a/app/controllers/sso_auth_sources_controller.rb b/app/controllers/sso_auth_sources_controller.rb
index 801ceab..db9c862 100644
--- a/app/controllers/sso_auth_sources_controller.rb
+++ b/app/controllers/sso_auth_sources_controller.rb
@@ -1,10 +1,10 @@
class SsoAuthSourcesController < AuthSourcesController
... |
edavis10/redmine_sso_client | d6dd2974c1dc1767375803ad8641010fa88c5492 | [#3859] Added a basic AuthSourceSso class. | diff --git a/app/controllers/sso_auth_sources_controller.rb b/app/controllers/sso_auth_sources_controller.rb
index 95256e2..801ceab 100644
--- a/app/controllers/sso_auth_sources_controller.rb
+++ b/app/controllers/sso_auth_sources_controller.rb
@@ -1,3 +1,10 @@
class SsoAuthSourcesController < AuthSourcesController
... |
edavis10/redmine_sso_client | 30339ed172fd09a15badd1a38fba9e5dc35a0bca | [#3855] Add a basic controller for the SSO Auth Source. | diff --git a/app/controllers/sso_auth_sources_controller.rb b/app/controllers/sso_auth_sources_controller.rb
new file mode 100644
index 0000000..95256e2
--- /dev/null
+++ b/app/controllers/sso_auth_sources_controller.rb
@@ -0,0 +1,3 @@
+class SsoAuthSourcesController < AuthSourcesController
+ unloadable
+end
diff --gi... |
edavis10/redmine_sso_client | 12378f6e70bfeec36f0b096fb78c22885ec7fdd8 | Adding plugin documentation. | diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt
new file mode 100644
index 0000000..a957639
--- /dev/null
+++ b/COPYRIGHT.txt
@@ -0,0 +1,18 @@
+SSO Client implements a basic Single Sign On system for Redmine using
+the Redmine SSO Server
+
+Copyright (C) 2010 Eric Davis, Little Stream Software
+
+This program is free softwa... |
eviltrout/kawaii | cb35980be33abf84e95d3faf1d21172d8948c1a7 | In production mode, rails couldn't find the new active record base extension module. | diff --git a/templates/lib/too_cute/active_record_base_extension.rb b/templates/lib/too_cute/active_record_base_extension.rb
index 67e947c..db5d428 100644
--- a/templates/lib/too_cute/active_record_base_extension.rb
+++ b/templates/lib/too_cute/active_record_base_extension.rb
@@ -1,11 +1,13 @@
-module ActiveRecordBaseE... |
eviltrout/kawaii | 51d3ad9101c51734b0d9a4a7bf1d2d2d1a3c863e | Kawaii can display the active record association proxies nicely now. Fixes google issue 7. | diff --git a/kawaii_generator.rb b/kawaii_generator.rb
index 49ea7af..740e993 100644
--- a/kawaii_generator.rb
+++ b/kawaii_generator.rb
@@ -1,80 +1,81 @@
class KawaiiGenerator < Rails::Generator::Base
attr_accessor :access_key_id, :secret_access_key, :bucket_name
def manifest
record do |m|
#... |
eviltrout/kawaii | 4e94b17563d59de7791f5d6c78bf2d189c700535 | Kawaii now escapes HTML when it's displayed in a grid. Fixes Issue 7 in the google issue tracker. | diff --git a/templates/javascripts/kawaii/kawaii.js b/templates/javascripts/kawaii/kawaii.js
old mode 100644
new mode 100755
index 0500ab7..2b26133
--- a/templates/javascripts/kawaii/kawaii.js
+++ b/templates/javascripts/kawaii/kawaii.js
@@ -1,233 +1,240 @@
Kawaii = {
// Two spaces for tabs is good!
tab_format... |
eviltrout/kawaii | 39f2442deb0754f2791a0076f2cbaa7e891d4dd5 | Added in support for Rails' CSRF. | diff --git a/templates/controllers/kawaii_controller.rb b/templates/controllers/kawaii_controller.rb
index 4033727..b5d94c7 100644
--- a/templates/controllers/kawaii_controller.rb
+++ b/templates/controllers/kawaii_controller.rb
@@ -1,123 +1,125 @@
class KawaiiController < ApplicationController
include KawaiiAuthen... |
eviltrout/kawaii | 46227df207e06a7ad8de1cc31306663a3f17ddb8 | Small change to readme. | diff --git a/README b/README
index a66ebaa..47789d1 100644
--- a/README
+++ b/README
@@ -1,188 +1,196 @@
== What is Kawaii? ==
Kawaii (Japanese for cute) is a web based console for Ruby on Rails
applications.
It is designed for people who spend all day with a script/console window
open, typing in pieces of co... |
eviltrout/kawaii | d7066e442a65c07eee7c2795d2f759deb0a935b9 | Missed some files... | diff --git a/CHANGELOG b/CHANGELOG
index 5bc63cf..3874781 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,28 +1,32 @@
What's new in Kawaii?
+November 7, 2008:
+- Fixed: bug that prevented the 'Save Snippet' button from appearing on the initial tab
+- Added ability to store snippets locally in an ActiveRecord model (Kaw... |
eviltrout/kawaii | c00911fcf8a474d0a2958cb6950b56720299caba | Added local storage for snippets Fixed 'Save Snippet' button not appearing on initial tab | diff --git a/templates/lib/kawaii_snippets.rb b/templates/lib/kawaii_snippets.rb
new file mode 100644
index 0000000..17510b3
--- /dev/null
+++ b/templates/lib/kawaii_snippets.rb
@@ -0,0 +1,11 @@
+class KawaiiSnippets
+
+ def objects
+ KawaiiSnippet.find(:all)
+ end
+
+ def [](key)
+ KawaiiSnippet.find_by_k... |
eviltrout/kawaii | 9c27f2cc7c953bbd6f0d78dcba39e0ef229aecb2 | Added in some safety checks for the mysql specific code. | diff --git a/templates/lib/too_cute/sql_select.rb b/templates/lib/too_cute/sql_select.rb
index b87ac3b..cc026d4 100644
--- a/templates/lib/too_cute/sql_select.rb
+++ b/templates/lib/too_cute/sql_select.rb
@@ -1,38 +1,45 @@
# By default we just want to do a select_all to get back a result set as an array of hashes.
# ... |
eviltrout/kawaii | 09b5faa81ef4bc060542f77fc978320feee48dee | Small change to the regexp to allow multiple line select statements. | diff --git a/templates/controllers/kawaii_controller.rb b/templates/controllers/kawaii_controller.rb
index 8ab06e1..b2f9be5 100644
--- a/templates/controllers/kawaii_controller.rb
+++ b/templates/controllers/kawaii_controller.rb
@@ -1,107 +1,107 @@
class KawaiiController < ApplicationController
include KawaiiAuthen... |
eviltrout/kawaii | 386d8d7609517c7e0d686dbc0a6e45911c21841b | Client-side pagination for the datatable, Ctrl-Enter to execute a query, strings are formatted better, fixed: mysql defined prematurely | diff --git a/CHANGELOG b/CHANGELOG
index 0c6a832..5bc63cf 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,21 +1,28 @@
What's new in Kawaii?
+August 11, 2008:
+
+- Client-side pagination is in place for the datatable, so you can return many results.
+- Keyboard Shortcut: Ctrl-Enter to execute a query
+- Strings are form... |
eviltrout/kawaii | 13d76eff54c8a99991ed0568fe0e13730770051e | Require mysql first to prevent defining the original class prematurely | diff --git a/templates/lib/too_cute/sql_select.rb b/templates/lib/too_cute/sql_select.rb
index 7514d87..1a8fe3b 100644
--- a/templates/lib/too_cute/sql_select.rb
+++ b/templates/lib/too_cute/sql_select.rb
@@ -1,40 +1,41 @@
# By default we just want to do a select_all to get back a result set as an array of hashes.
# ... |
eviltrout/kawaii | 3144ef10a55e769f237d0f64f90f10ff52b33376 | - Fixed bug with proxy queries not being rendered correctly e.g: User.find_by_name('robin').addresses didn't work before - Added support for rendering Arrays of Hashes - Added support for typing in SELECT SQL queries directly in the console and getting nice formatting! e.g: select * from users where name = 'robin... | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e43b0f9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.DS_Store
diff --git a/CHANGELOG b/CHANGELOG
index 7161b6f..0c6a832 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,10 +1,21 @@
What's new in Kawaii?
+August 5, 2008:
+
+- Fixed bug with proxy ... |
eviltrout/kawaii | 0ea6bad3f64980cd8da918869d2d37a1b1f769f5 | Added CHANGELOG so people can keep on top of what's new | diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..7161b6f
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,10 @@
+What's new in Kawaii?
+
+July 29, 2008:
+
+- Moved around all sorts of files so that you can update Kawaii easier in the future. See README for upgrading instructions.
+- Configuration is now i... |
eviltrout/kawaii | 0836cb09c11085e373721a2256f60abd4038ed7a | Added authentication examples, updated README. | diff --git a/README b/README
index 6c43032..66c5e6e 100644
--- a/README
+++ b/README
@@ -1,196 +1,196 @@
== What is Kawaii? ==
Kawaii (Japanese for cute) is a web based console for Ruby on Rails
applications.
It is designed for people who spend all day with a script/console window
open, typing in pieces of co... |
eviltrout/kawaii | db7d5a5803694b5f059f085f4b834396ce8d6dd5 | Hash displaying, also array fix. | diff --git a/kawaii_generator.rb b/kawaii_generator.rb
index 4bedc9f..f5254de 100644
--- a/kawaii_generator.rb
+++ b/kawaii_generator.rb
@@ -1,73 +1,74 @@
class KawaiiGenerator < Rails::Generator::Base
attr_accessor :access_key_id, :secret_access_key, :bucket_name
def manifest
record do |m|
#... |
eviltrout/kawaii | a41ce4f5423be7a3259e48d518ed8b9c04f032e2 | Upgrading instructions | diff --git a/README b/README
index d5e08c1..218f35e 100644
--- a/README
+++ b/README
@@ -1,158 +1,183 @@
== What is Kawaii? ==
Kawaii (Japanese for cute) is a web based console for Ruby on Rails
applications.
It is designed for people who spend all day with a script/console window
open, typing in pieces of co... |
eviltrout/kawaii | fccd8f86352baf80b5036a3eb08ea467fa4c98c5 | Large refactoring to make it easier to update safely. | diff --git a/kawaii_generator.rb b/kawaii_generator.rb
index 5679a9a..4bedc9f 100644
--- a/kawaii_generator.rb
+++ b/kawaii_generator.rb
@@ -1,57 +1,73 @@
class KawaiiGenerator < Rails::Generator::Base
attr_accessor :access_key_id, :secret_access_key, :bucket_name
def manifest
record do |m|
#... |
eviltrout/kawaii | 3a8c6437d59562a39342101ff528059d78072986 | nicer result when there is no (active)records found | diff --git a/templates/initializers/kawaii.rb b/templates/initializers/kawaii.rb
index 5607ee0..e56f68d 100644
--- a/templates/initializers/kawaii.rb
+++ b/templates/initializers/kawaii.rb
@@ -1,86 +1,86 @@
begin
require 'aws/s3'
AWS::S3::Base.establish_connection!(
:access_key_id => 'FILL_ME_IN',
... |
glenux/dokuwiki-eventlister | 48bef4f680c246d22e7a2cd7421b66d90a8b93d6 | syntax: Added even more shit. | diff --git a/syntax.php b/syntax.php
index adb2404..420f5f7 100644
--- a/syntax.php
+++ b/syntax.php
@@ -1,83 +1,85 @@
<?php
/**
* Embed an image gallery
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Glenn Y. Rolland <glenux@glenux.net>
*/
if(!defined('DOKU_INC')) define('DOK... |
glenux/dokuwiki-eventlister | 52c10a2843ea0511d9ad3194cb0b9675b2f8e229 | syntax: * Removed plugin.info.js. * Added syntax parsing. | diff --git a/plugin.info.js b/plugin.info.js
deleted file mode 100644
index e69de29..0000000
diff --git a/plugin.info.txt b/plugin.info.txt
index 49e0512..eef6eb5 100644
--- a/plugin.info.txt
+++ b/plugin.info.txt
@@ -1,7 +1,7 @@
-base dokuwiki-eventlister
+base eventlister
author Glenn Y. Rolland
email glenux@g... |
glenux/dokuwiki-eventlister | 3834b664758d195e4ef695ee0a99d913faf28cac | * Added untracked syntax.php. * Removed plugin.info.js . | diff --git a/syntax.php b/syntax.php
new file mode 100644
index 0000000..7ff8ac4
--- /dev/null
+++ b/syntax.php
@@ -0,0 +1,82 @@
+<?php
+/**
+ * Embed an image gallery
+ *
+ * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
+ * @author Glenn Y. Rolland <glenux@glenux.net>
+ */
+
+if(!defined('DOKU_INC')) d... |
glenux/dokuwiki-eventlister | dfb4e5280c970744038df62fe7379f4db9f1b4a1 | Added plugin skeleton. | diff --git a/plugin.info.js b/plugin.info.js
new file mode 100644
index 0000000..e69de29
diff --git a/plugin.info.txt b/plugin.info.txt
new file mode 100644
index 0000000..49e0512
--- /dev/null
+++ b/plugin.info.txt
@@ -0,0 +1,7 @@
+base dokuwiki-eventlister
+author Glenn Y. Rolland
+email glenux@glenux.net
+date ... |
antw/polymer | 445625aa2a6f7a4d3ef2b8cabe8abc5a6f9cb4ab | missing exclamation mark? | diff --git a/lib/polymer/sprite.rb b/lib/polymer/sprite.rb
index 18898a2..79b7ced 100644
--- a/lib/polymer/sprite.rb
+++ b/lib/polymer/sprite.rb
@@ -1,142 +1,142 @@
module Polymer
# Represents a collection of images which will be used to make a sprite.
#
class Sprite
attr_reader :name, :url, :padding, ... |
antw/polymer | 0aa8b3b386407fdcf543ccb55c097b4bb61f0492 | forgot to change documentation of Polymer::Optimisation#optimise_file | diff --git a/lib/polymer/optimisation.rb b/lib/polymer/optimisation.rb
index b4cb450..10d9178 100644
--- a/lib/polymer/optimisation.rb
+++ b/lib/polymer/optimisation.rb
@@ -1,130 +1,129 @@
module Polymer
# Contains support for PNGOUT, OptiPNG, and PNGCrush.
module Optimisation
# Returns an array of optimi... |
antw/polymer | 00b56cd4f2005a760d7dc8bf84bb48b1481cd743 | Sprite#save should actually really return false if no sources are present | diff --git a/lib/polymer/sprite.rb b/lib/polymer/sprite.rb
index 461bc9c..18898a2 100644
--- a/lib/polymer/sprite.rb
+++ b/lib/polymer/sprite.rb
@@ -1,140 +1,142 @@
module Polymer
# Represents a collection of images which will be used to make a sprite.
#
class Sprite
attr_reader :name, :url, :padding, ... |
antw/polymer | f297117f3dd7f218a93bd37cf13a782ccf7ba68f | Polymer::Optimisation.optimise_file should always return integer | diff --git a/lib/polymer/optimisation.rb b/lib/polymer/optimisation.rb
index 9f96821..b4cb450 100644
--- a/lib/polymer/optimisation.rb
+++ b/lib/polymer/optimisation.rb
@@ -1,130 +1,130 @@
module Polymer
# Contains support for PNGOUT, OptiPNG, and PNGCrush.
module Optimisation
# Returns an array of optimi... |
antw/polymer | 7ff21afacadbc562c99211ba7eb2b2440504e4f8 | Documentation fix. | diff --git a/lib/polymer/dsl.rb b/lib/polymer/dsl.rb
index 5ba7cb2..68e0d28 100644
--- a/lib/polymer/dsl.rb
+++ b/lib/polymer/dsl.rb
@@ -1,293 +1,293 @@
module Polymer
# Provides the DSL used in .polymer files.
#
# In order to account for situations where global configuration may
# appear after some sprite... |
antw/polymer | 64de17107464732a60bce6cf1d8b8c3c16b41ae5 | Apparently Cucumber now requires support/* automatically | diff --git a/features/support/env.rb b/features/support/env.rb
index 5f50284..873adf2 100644
--- a/features/support/env.rb
+++ b/features/support/env.rb
@@ -1,129 +1,126 @@
require 'forwardable'
# Add spec/ to the load path.
$LOAD_PATH.unshift File.expand_path('../../../spec', __FILE__)
# Loading the spec helpe... |
antw/polymer | 888bbbc2e11b196ef2cfc24c8299ca2880397c9e | Remove Ronn as a development dependency. | diff --git a/Gemfile b/Gemfile
index b16924a..936a7d8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,8 +1,14 @@
source 'http://rubygems.org'
gemspec
+group(:release) do
+ # Gems needed in order to release Polymer.
+ gem 'ronn', '>= 0.7.3'
+end
+
group(:quality) do
+ # Various niceties which aren't mandatory.
... |
antw/polymer | db38cedf8fca464981c0c49f71491d0f75cc7205 | Release 1.0.0.beta.7 | diff --git a/Rakefile b/Rakefile
index 2c6f3e7..05af560 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,186 +1,186 @@
require 'rake'
require 'rake/clean'
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'polymer/version'
CLOBBER.include %w( pkg *.gem documentation coverage
measur... |
antw/polymer | 2f658e9e95ae9ba4995a84449eafe66f00f24ef1 | Version bump to 1.0.0.beta.7 | diff --git a/lib/polymer/version.rb b/lib/polymer/version.rb
index 08a63c9..142273c 100644
--- a/lib/polymer/version.rb
+++ b/lib/polymer/version.rb
@@ -1,4 +1,4 @@
module Polymer
# The current version of the Polymer library.
- VERSION = '1.0.0.beta.6'.freeze
+ VERSION = '1.0.0.beta.7'.freeze
end
diff --git a/po... |
antw/polymer | 84fc64c3fe3ee5fbc9349db667483d9da8e0e93f | Use oily_png where available. | diff --git a/lib/polymer.rb b/lib/polymer.rb
index ea56de2..4b4089f 100644
--- a/lib/polymer.rb
+++ b/lib/polymer.rb
@@ -1,58 +1,63 @@
require 'digest/sha2'
require 'erb'
require 'pathname'
require 'yaml'
# Gems.
-require 'chunky_png'
+
+begin
+ require 'oily_png' # Load the C version of ChunkyPNG when availabl... |
antw/polymer | 1efc72f7b404aaa939438d1f49e5529ec243be6c | Finalise removal of RMagick. | diff --git a/README.md b/README.md
index 430cbd2..50e3642 100644
--- a/README.md
+++ b/README.md
@@ -1,236 +1,231 @@
POLYMER
=======
DESCRIPTION
-----------
Polymer is a tool for creating sprite images which combine many smaller
sources into a single larger image. Spriting allows you to reduce the
number of ... |
antw/polymer | 78915682f7f3b68de219a5632b30d7fcde8661d8 | Remove RMagick from library code. | diff --git a/lib/polymer/deviant_finder.rb b/lib/polymer/deviant_finder.rb
index acfa454..ef10d2e 100644
--- a/lib/polymer/deviant_finder.rb
+++ b/lib/polymer/deviant_finder.rb
@@ -1,76 +1,76 @@
module Polymer
# Given a Sprite, DeviantFinder checks to see if the sprite has any sources
# which are significantly w... |
antw/polymer | 3934bfb16e0ca587e921ee967917af2caea6b456 | Use ChunkyPNG in specs and features. | diff --git a/features/support/command_runner.rb b/features/support/command_runner.rb
index cadca7b..868ac4f 100644
--- a/features/support/command_runner.rb
+++ b/features/support/command_runner.rb
@@ -1,95 +1,94 @@
require 'rbconfig'
require 'tempfile'
module Polymer
module Spec
# Runs polymer commands in ... |
antw/polymer | 52b8f38b5a7ead532aedc808e96ec1cf4086fbf0 | Adjust @return documentation. | diff --git a/lib/polymer/optimisation.rb b/lib/polymer/optimisation.rb
index 1808abf..9f96821 100644
--- a/lib/polymer/optimisation.rb
+++ b/lib/polymer/optimisation.rb
@@ -1,130 +1,130 @@
module Polymer
# Contains support for PNGOUT, OptiPNG, and PNGCrush.
module Optimisation
# Returns an array of optimi... |
antw/polymer | 34d1681868782d7879c373099d363a16a6ccfae5 | Padding may be set to false (sets padding to 0px). | diff --git a/lib/polymer/dsl.rb b/lib/polymer/dsl.rb
index efc9e89..5ba7cb2 100644
--- a/lib/polymer/dsl.rb
+++ b/lib/polymer/dsl.rb
@@ -1,293 +1,293 @@
module Polymer
# Provides the DSL used in .polymer files.
#
# In order to account for situations where global configuration may
# appear after some sprite... |
antw/polymer | a6e6675ed6c0dbf824aaf50e4a325a2d364f42f4 | Normalise Sass path in Project rather than SassGenerator. | diff --git a/lib/polymer/project.rb b/lib/polymer/project.rb
index 4113278..e19f6b7 100644
--- a/lib/polymer/project.rb
+++ b/lib/polymer/project.rb
@@ -1,197 +1,201 @@
module Polymer
# Represents a directory in which it is expected that there be a
# configuration file, and source images.
#
# The Project c... |
antw/polymer | e2e54dff08468b562835013cd8262851411a8445 | Remove String extensions. | diff --git a/lib/polymer.rb b/lib/polymer.rb
index fec60f6..13a8caa 100644
--- a/lib/polymer.rb
+++ b/lib/polymer.rb
@@ -1,49 +1,58 @@
require 'digest/sha2'
require 'erb'
require 'pathname'
require 'yaml'
# Gems.
require 'rmagick'
# On with the library...
require 'polymer/cache'
-require 'polymer/core_ext'
... |
antw/polymer | 27e62b5d59548ae5b7434afbf19a2ebf8024b85b | Clean up temporary directories. | diff --git a/lib/polymer/cli.rb b/lib/polymer/cli.rb
index eef3a83..015e4a0 100644
--- a/lib/polymer/cli.rb
+++ b/lib/polymer/cli.rb
@@ -1,376 +1,381 @@
require 'fileutils'
require 'thor'
module Polymer
class CLI < Thor
include Thor::Actions
class_option 'no-color', :type => :boolean, :default => ... |
antw/polymer | 1a9b4e556531c8636ef0a74c387f54f46b781971 | Version bump to 1.0.0.beta.6 | diff --git a/lib/polymer/version.rb b/lib/polymer/version.rb
index 6f46970..08a63c9 100644
--- a/lib/polymer/version.rb
+++ b/lib/polymer/version.rb
@@ -1,4 +1,4 @@
module Polymer
# The current version of the Polymer library.
- VERSION = '1.0.0.beta.5'.freeze
+ VERSION = '1.0.0.beta.6'.freeze
end
diff --git a/po... |
antw/polymer | 0472975fbcbaae4fc7de305f77bc2452c8b44686 | Don't regenerate unchanged data URI sprites. | diff --git a/features/data_uri.feature b/features/data_uri.feature
index 32fb83c..8f063b7 100644
--- a/features/data_uri.feature
+++ b/features/data_uri.feature
@@ -1,31 +1,33 @@
@polymer-bond
Feature: Using Data URIs instead of a file
In order to further decrease the number of requests
It should be possible ... |
antw/polymer | 00a75d2970f0979c6b11bce581d28a4d23f921c0 | Simplify cache by supplying a Project when initialized. | diff --git a/lib/polymer/cache.rb b/lib/polymer/cache.rb
index 0a35df0..973fd18 100644
--- a/lib/polymer/cache.rb
+++ b/lib/polymer/cache.rb
@@ -1,166 +1,167 @@
module Polymer
# Represents a cache file. Keeps track of the contents of each sprite and
# provides an easy means of determining if the sprite has been ... |
antw/polymer | dbab3f50b734e7332b46920920f09e437cbc0f7e | Missed a Flexo. | diff --git a/lib/polymer/cache.rb b/lib/polymer/cache.rb
index b005307..0a35df0 100644
--- a/lib/polymer/cache.rb
+++ b/lib/polymer/cache.rb
@@ -1,166 +1,166 @@
module Polymer
# Represents a cache file. Keeps track of the contents of each sprite and
# provides an easy means of determining if the sprite has been ... |
antw/polymer | 8a35f4b3cfdba1e96a1055673d45d28b8a34c0e7 | Don't cache files which aren't in a sub-directory. | diff --git a/lib/polymer/cache.rb b/lib/polymer/cache.rb
index 30db8d4..b005307 100644
--- a/lib/polymer/cache.rb
+++ b/lib/polymer/cache.rb
@@ -1,160 +1,166 @@
module Polymer
# Represents a cache file. Keeps track of the contents of each sprite and
# provides an easy means of determining if the sprite has been ... |
antw/polymer | 0081d7953eb0ef7d0042480a41052be186cf67d3 | No newlines in base64-encoded strings, kthx. | diff --git a/lib/polymer/sass_generator.rb b/lib/polymer/sass_generator.rb
index 8fc67e1..f4dcb74 100644
--- a/lib/polymer/sass_generator.rb
+++ b/lib/polymer/sass_generator.rb
@@ -1,44 +1,49 @@
module Polymer
class SassGenerator
TEMPLATE = Pathname.new(__FILE__).dirname + 'templates/sass_mixins.erb'
... |
antw/polymer | 4d12ca967f6b873258250476bc36eaa9c71055fe | Version bump to 1.0.0.beta.5 | diff --git a/lib/polymer/version.rb b/lib/polymer/version.rb
index 21b6c37..6f46970 100644
--- a/lib/polymer/version.rb
+++ b/lib/polymer/version.rb
@@ -1,4 +1,4 @@
module Polymer
# The current version of the Polymer library.
- VERSION = '1.0.0.beta.4'.freeze
+ VERSION = '1.0.0.beta.5'.freeze
end
diff --git a/po... |
antw/polymer | 697dcec898f91deb06c58bed9fd092d4de3ff2a6 | Document the :data_uri option. | diff --git a/History.md b/History.md
index 30493a1..f52377f 100644
--- a/History.md
+++ b/History.md
@@ -1,133 +1,144 @@
v1.0.0 / HEAD (Unreleased)
--------------------------
* Montage has been renamed to Polymer and is now released under the BSD
three-clause license.
* The Polymer configuration must now be ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.