repo string | commit string | message string | diff string |
|---|---|---|---|
coleifer/django-generic-aggregation | ff14769d3ea24f9445bea55c368416e4d7edee03 | Pushing fix to the README | diff --git a/README.rst b/README.rst
index 8da2e8a..81faba4 100644
--- a/README.rst
+++ b/README.rst
@@ -1,48 +1,48 @@
==========================
django-generic-aggregation
==========================
annotate() and aggregate() for generically-related data.
Examples
--------
You want the most commented on b... |
coleifer/django-generic-aggregation | b41d9bead583df20af347b328a5f6fdf3f678944 | Added support for aggregating and annotating over a subset of GFK'd items (i.e. today's most commented on blog entries) | diff --git a/generic_aggregation/tests/models.py b/generic_aggregation/tests/models.py
index e79bd49..1121736 100644
--- a/generic_aggregation/tests/models.py
+++ b/generic_aggregation/tests/models.py
@@ -1,20 +1,22 @@
+import datetime
+
from django.contrib.contenttypes.generic import GenericForeignKey
from django.co... |
dzamkov/Alunite-old | 158d3dc1031eeb82119495fc3d76dac02cec69ef | Refactoring, starting on dynamics | diff --git a/Alunite/Simulation/Dynamics/Progression.cs b/Alunite/Simulation/Dynamics/Progression.cs
new file mode 100644
index 0000000..d7c3aeb
--- /dev/null
+++ b/Alunite/Simulation/Dynamics/Progression.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+
+namespace Alunite
+{
+ /// <summary>... |
dzamkov/Alunite-old | baacdc5f18fd8782e738106a94ad8ecbfbe7c6fc | Can't remeber what I did | diff --git a/Alunite/Simulation/Entities/Link.cs b/Alunite/Simulation/Entities/Link.cs
index 6a14ee7..16a887b 100644
--- a/Alunite/Simulation/Entities/Link.cs
+++ b/Alunite/Simulation/Entities/Link.cs
@@ -1,83 +1,84 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
- ... |
dzamkov/Alunite-old | 2e01e9d67c7eb4f5281c2e630ce64de66d3e8d0c | Mutable, signal updates | diff --git a/Alunite/Data/Mutable.cs b/Alunite/Data/Mutable.cs
index 1df1812..7feeb16 100644
--- a/Alunite/Data/Mutable.cs
+++ b/Alunite/Data/Mutable.cs
@@ -1,22 +1,61 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
- /// A mutable object that informs subscribers wh... |
dzamkov/Alunite-old | 2b9f8f25e570bd821d9604ad9c5c0a7bca076f3c | Maybe signal | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index e934c2d..722ef5b 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,82 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 67c0b1bde6f1b1fcf5fd2e7d992d77da97342e11 | Minirefactor | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 18a49ab..e934c2d 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,81 +1,82 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | e97b6de569a03d372f55836a6aac9eda9fa3967a | Slight refactor | diff --git a/Alunite/Simulation/Entities/Compound.cs b/Alunite/Simulation/Entities/Compound.cs
index ddc279d..6dc942d 100644
--- a/Alunite/Simulation/Entities/Compound.cs
+++ b/Alunite/Simulation/Entities/Compound.cs
@@ -1,61 +1,76 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
///... |
dzamkov/Alunite-old | 3be60dbdbfd8e192ba0041230930bb70c1848677 | Some refactoring | diff --git a/Alunite/Program.cs b/Alunite/Program.cs
index 9242b11..b81081c 100644
--- a/Alunite/Program.cs
+++ b/Alunite/Program.cs
@@ -1,34 +1,34 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTKGUI;
namespace Alunite
{
/// <summary>
/// Program main class.
/// ... |
dzamkov/Alunite-old | 64c951f737bb741350818b0094ccb4b7ac4ec829 | New entity and simulation system | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index abae4d9..fca113c 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,79 +1,79 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 3dda9dd5db684ba47308d47715b4470444efbe56 | More curve stuff | diff --git a/Alunite/Math/Arithmetic.cs b/Alunite/Math/Arithmetic.cs
index b0684b2..c7ab397 100644
--- a/Alunite/Math/Arithmetic.cs
+++ b/Alunite/Math/Arithmetic.cs
@@ -1,42 +1,53 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
/// Represents an object that can ha... |
dzamkov/Alunite-old | 62e2475f5661f4dbb8aff26ae067987d66282f2e | Bezier curve multiplication | diff --git a/Alunite/Math/Curve.cs b/Alunite/Math/Curve.cs
index 5e653c8..dfb91b6 100644
--- a/Alunite/Math/Curve.cs
+++ b/Alunite/Math/Curve.cs
@@ -1,314 +1,352 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
/// A continous function with a domain of reals bounde... |
dzamkov/Alunite-old | c01e4daf9ba73596ecdde78faf96e0d8e039e8cd | Curve elevation and arithmetic | diff --git a/Alunite/Math/Curve.cs b/Alunite/Math/Curve.cs
index 75074fb..5e653c8 100644
--- a/Alunite/Math/Curve.cs
+++ b/Alunite/Math/Curve.cs
@@ -1,225 +1,314 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
/// A continous function with a domain of reals bounde... |
dzamkov/Alunite-old | 83516d55538f1891cd1656b20d421c5abadcc64f | Derivative | diff --git a/Alunite/Math/Arithmetic.cs b/Alunite/Math/Arithmetic.cs
index abbca48..b0684b2 100644
--- a/Alunite/Math/Arithmetic.cs
+++ b/Alunite/Math/Arithmetic.cs
@@ -1,41 +1,42 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
- /// Represents an object that can ha... |
dzamkov/Alunite-old | 36deb9d554df4e98165cbdac789812615b36a419 | Curve integrals | diff --git a/Alunite/Math/Curve.cs b/Alunite/Math/Curve.cs
index e4d36de..1bc7519 100644
--- a/Alunite/Math/Curve.cs
+++ b/Alunite/Math/Curve.cs
@@ -1,127 +1,190 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
/// A continous function with a domain of reals bounde... |
dzamkov/Alunite-old | e42a1f25f85210936778388f58b63edcf5182a46 | Bezier curve | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index d44fa0e..abae4d9 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,76 +1,79 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 83b89608cf03b2c17972c325ce829686b7e687f1 | Organization | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index af1cf29..d44fa0e 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,77 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 1699cbbef720290462a69d2260678752e72206e9 | Sets, sinks and filter. Probably won't be all too useful | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index e402bd9..af1cf29 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,74 +1,77 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 541ee92bae7882717876a8f9f89febf2ebee72e1 | Restored original speed | diff --git a/Alunite/Fast/BinaryMatter.cs b/Alunite/Fast/BinaryMatter.cs
index 1d0fbd1..6a8b76d 100644
--- a/Alunite/Fast/BinaryMatter.cs
+++ b/Alunite/Fast/BinaryMatter.cs
@@ -1,111 +1,154 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite.Fast
{
/// <summary>
/... |
dzamkov/Alunite-old | 825fda266df2b872e496549443a512a727093f9a | Better organization | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index d71445f..e402bd9 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,71 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 07526d54677c2319887e38f6cdac2aca6ffc7bce | Faster, more accurate gravity | diff --git a/Alunite/FastPhysicsMatter.cs b/Alunite/FastPhysicsMatter.cs
index 9513c90..c8992c0 100644
--- a/Alunite/FastPhysicsMatter.cs
+++ b/Alunite/FastPhysicsMatter.cs
@@ -1,367 +1,366 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// Ma... |
dzamkov/Alunite-old | 0e57ca47ef4af7dfec4f3554f23da691e1d09418 | Cleaning up, Gravity | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index de5492a..d71445f 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,69 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 501442b86f7602bfcc4f6d2bdfb0c01c3de798f1 | Actual movement | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index ed55492..de5492a 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,66 +1,69 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 911e836a86c55f8f5c6071dbfbfedf1647c6eec2 | "Updating" | diff --git a/Alunite/FastPhysics.cs b/Alunite/FastPhysics.cs
index 7f635c2..67ea23d 100644
--- a/Alunite/FastPhysics.cs
+++ b/Alunite/FastPhysics.cs
@@ -1,330 +1,397 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// A physics system where int... |
dzamkov/Alunite-old | ecbf1e0e4ec7cd5bd74500cb44883ed1e2e47851 | Sensical alternative to bounding spheres | diff --git a/Alunite/FastPhysics.cs b/Alunite/FastPhysics.cs
index 0b6476e..7f635c2 100644
--- a/Alunite/FastPhysics.cs
+++ b/Alunite/FastPhysics.cs
@@ -1,327 +1,330 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// A physics system where int... |
dzamkov/Alunite-old | 045dd2c8a98b59bd7fba8a221b93721709769d95 | Removed the current atrocity of combining matter, something else will have to be done | diff --git a/Alunite/FastPhysics.cs b/Alunite/FastPhysics.cs
index 0bd0a25..0b6476e 100644
--- a/Alunite/FastPhysics.cs
+++ b/Alunite/FastPhysics.cs
@@ -1,498 +1,327 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// A physics system where int... |
dzamkov/Alunite-old | 00e27bd5c334296461dae436b277e645c1f785da | Extremely memory-efficent lattice | diff --git a/Alunite/FastPhysics.cs b/Alunite/FastPhysics.cs
index ad2658f..0bd0a25 100644
--- a/Alunite/FastPhysics.cs
+++ b/Alunite/FastPhysics.cs
@@ -1,450 +1,498 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// A physics system where int... |
dzamkov/Alunite-old | 03c1046e71960994e3744529baaec84d5992fc80 | Put transform in its own file | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 113235e..ed55492 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,65 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 4d2075503e74c9cb238a918f5df16710c7e3b7fc | Rotational symmetry detected for binary compounds of two points | diff --git a/Alunite/FastPhysics.cs b/Alunite/FastPhysics.cs
index 7c67d57..ce13b8d 100644
--- a/Alunite/FastPhysics.cs
+++ b/Alunite/FastPhysics.cs
@@ -1,377 +1,450 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// A physics system where int... |
dzamkov/Alunite-old | ec04d6fb024c5348fc9a812f2ddd57b13b55bf11 | Matter disparity and match matrix | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index c4e19e0..113235e 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,65 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | eafe2f5ba06409966ef33a3a94e1b5ec36acecf5 | More quaternion maths | diff --git a/Alunite/Matter.cs b/Alunite/Matter.cs
index 7646ab9..c5fb3f3 100644
--- a/Alunite/Matter.cs
+++ b/Alunite/Matter.cs
@@ -1,130 +1,130 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// Represents a set of physical laws that allow t... |
dzamkov/Alunite-old | 376a5411579bd371eec5e5158499bfa90a454287 | "Instancing" of matter | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 9c22405..c4e19e0 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,66 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 5f1ba1d76598ace625a9c3607e160842ee9ccadf | Matter has sucsessfully been created, however none of the originally planned optimizations (which are the main reason I started this project) are in yet. | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 89a69c7..9c22405 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,65 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | fcbe3926e3690905f906e7f528e4001224b89e11 | UsageSet | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 612ce5a..89a69c7 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,64 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | f663c141f488ff1bea5eed755a5ad004db3a2bbe | Starting to implement things | diff --git a/Alunite/FastPhysics.cs b/Alunite/FastPhysics.cs
index 0cf24f7..650cb03 100644
--- a/Alunite/FastPhysics.cs
+++ b/Alunite/FastPhysics.cs
@@ -1,62 +1,141 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// A physics system where inte... |
dzamkov/Alunite-old | ea93c34aea7701b42021743f44656316316d41ed | More organizing as I prepare to strike (write meaningful code) | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 0101703..612ce5a 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,63 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | c9109df96a013959dd3036e9e59da69f57ba4dd2 | Better "OSP" | diff --git a/Alunite/Program.cs b/Alunite/Program.cs
index c96806d..c5765eb 100644
--- a/Alunite/Program.cs
+++ b/Alunite/Program.cs
@@ -1,28 +1,47 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTKGUI;
namespace Alunite
{
/// <summary>
/// Program main class.
/// ... |
dzamkov/Alunite-old | 656dc50de5941fd3572477b4a61734e21759abc3 | Shameful reorganizing and reworking | diff --git a/Alunite/Adminium.cs b/Alunite/Adminium.cs
deleted file mode 100644
index 8578e0c..0000000
--- a/Alunite/Adminium.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-
-using OpenTKGUI;
-
-namespace Alunite
-{
- /// <summary>
- /// A simple substa... |
dzamkov/Alunite-old | a854c66c6d72e979948c97ab43d5afcd21f7bdda | Better OSP (also discovered that my OSP algorithim isn't actually optimal, just really good) | diff --git a/Alunite/OSP.cs b/Alunite/OSP.cs
index dbd6465..af5b8f9 100644
--- a/Alunite/OSP.cs
+++ b/Alunite/OSP.cs
@@ -1,132 +1,126 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Alunite
{
/// <summary>
/// Contains functions for finding the optimal sphere partioni... |
dzamkov/Alunite-old | 48c28d4a73066c969745f0e4b7659835fec86a9e | Optimal sphere partioning, to be used for pattern finding | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 455c42c..78d6612 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,65 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | c1dd36f8ca7be52cef29158875d27c57ef247816 | BinaryMatter, a more efficent composite matter | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index ef8773e..455c42c 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,64 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 28b9e8b1479225241c04264eb31a9f6d326c437f | BlobMatter to slightly speed up particles | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 6ad91fb..ef8773e 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,63 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 69ba4d5f28e476794f9295abd54109ec0b59f550 | Slow, accurate, gravity | diff --git a/Alunite/Adminium.cs b/Alunite/Adminium.cs
new file mode 100644
index 0000000..8578e0c
--- /dev/null
+++ b/Alunite/Adminium.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+using OpenTKGUI;
+
+namespace Alunite
+{
+ /// <summary>
+ /// A simple substances... |
dzamkov/Alunite-old | 00e206819192341cb9ba80a4d6a78a2b7e7fd98c | Particle simulation using Matter | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 25ed15f..3f78a18 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,60 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 58cf837f80deb93e8be2698c3beeb5c2a724a32b | Visualizer now does what it was originally intended to, expanded on particles | diff --git a/Alunite/Matter.cs b/Alunite/Matter.cs
index d5fda91..53753b6 100644
--- a/Alunite/Matter.cs
+++ b/Alunite/Matter.cs
@@ -1,140 +1,219 @@
using System;
using System.Collections.Generic;
+using System.Linq;
namespace Alunite
{
/// <summary>
/// Represents an untransformed object that can pa... |
dzamkov/Alunite-old | 260ac536692be4624ca714119645a2de7dc6f9cb | Some more unimplemented interfaces | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 2d1cb23..25ed15f 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,59 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 02dd1e83cbed71ce2029559d515f5acd8ed982e2 | Some visualization | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 4fcecf9..2d1cb23 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,54 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 404a5dd3832f30ca3ead1bd9ac4f44bbbf8c8dcc | Transforms | diff --git a/Alunite/Matter.cs b/Alunite/Matter.cs
index ae5a6c2..1909591 100644
--- a/Alunite/Matter.cs
+++ b/Alunite/Matter.cs
@@ -1,39 +1,82 @@
using System;
using System.Collections.Generic;
namespace Alunite
{
/// <summary>
/// Represents an untransformed object that can participate in physical ... |
dzamkov/Alunite-old | 9df72d0292c7e59e9e9dfdebabb87d148c9f8598 | Basic maths | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 841b555..4fcecf9 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,41 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | db5f1815f3d888d1888206a89b31e713f837f945 | If you squint really hard, it might look somewhat like a planet | diff --git a/Alunite/Window.cs b/Alunite/Window.cs
index 5ad66b4..47afafb 100644
--- a/Alunite/Window.cs
+++ b/Alunite/Window.cs
@@ -1,181 +1,179 @@
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
using OpenTK.Input;
using System;
using System.Collections.Generic;
using System.Windows.F... |
dzamkov/Alunite-old | 84603a4928b9db32005dc67c1cba6c9ef7e7363f | A reference image? | diff --git a/Alunite/Planet.cs b/Alunite/Planet.cs
index 8203a75..99fd93b 100644
--- a/Alunite/Planet.cs
+++ b/Alunite/Planet.cs
@@ -1,139 +1,183 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/// <summary>
... |
dzamkov/Alunite-old | 554bc780d584ee21ba77a78f1b3cc10359a0ae52 | Coordinate space fixfix | diff --git a/Alunite/Shader.cs b/Alunite/Shader.cs
index 511982c..e62f3ac 100644
--- a/Alunite/Shader.cs
+++ b/Alunite/Shader.cs
@@ -1,415 +1,415 @@
using System.Collections.Generic;
using System;
using System.IO;
using System.Text;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
names... |
dzamkov/Alunite-old | 272a5c5c78ea37bfab04dc73427abc291a1610fb | Another bugfix (although it certainly doesn't look like it) | diff --git a/Alunite/Atmosphere.cs b/Alunite/Atmosphere.cs
index fed2ac6..460fd66 100644
--- a/Alunite/Atmosphere.cs
+++ b/Alunite/Atmosphere.cs
@@ -1,348 +1,348 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/... |
dzamkov/Alunite-old | a23e386fae97384161901ff287139ca295aec8ef | A couple bugfixes | diff --git a/Alunite/Atmosphere.cs b/Alunite/Atmosphere.cs
index b48b6db..fed2ac6 100644
--- a/Alunite/Atmosphere.cs
+++ b/Alunite/Atmosphere.cs
@@ -1,341 +1,348 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/... |
dzamkov/Alunite-old | 0ac81ed4a5fa91cc377b0450165c85b537a60361 | Cubemap generation | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index d36a2fe..6026705 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,80 +1,82 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | a36d9d34f863994b1bae67df8e2bfee9975bb21d | Cleaned up atmosphere codes so they look nicer and are reusable | diff --git a/Alunite/Alunite.csproj b/Alunite/Alunite.csproj
index 2e915d8..d36a2fe 100644
--- a/Alunite/Alunite.csproj
+++ b/Alunite/Alunite.csproj
@@ -1,79 +1,80 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003... |
dzamkov/Alunite-old | 62e9c88932c44d4aac1ebbd852c6de928d498a75 | I daresey atmosphere is done | diff --git a/Alunite/Planet.cs b/Alunite/Planet.cs
index 687406a..19a2d53 100644
--- a/Alunite/Planet.cs
+++ b/Alunite/Planet.cs
@@ -1,342 +1,389 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/// <summary>
... |
dzamkov/Alunite-old | 9f3337a7700e471d26232e77b4a64142ed4c8abe | Created PointScatter, rearranged inscatter and delta inscatter so delta inscatter has combined rayleigh and mie parts, provided a demonstration of what would have happened if I used a texture with rayleigh and mie parts seperated | diff --git a/Alunite/Planet.cs b/Alunite/Planet.cs
index 18aa198..687406a 100644
--- a/Alunite/Planet.cs
+++ b/Alunite/Planet.cs
@@ -1,340 +1,342 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/// <summary>
... |
dzamkov/Alunite-old | 35d778b28262fb207740dab38fc10817a87835ef | Annoying bug fixed, PointScatter started | diff --git a/Alunite/Planet.cs b/Alunite/Planet.cs
index f1c9c75..18aa198 100644
--- a/Alunite/Planet.cs
+++ b/Alunite/Planet.cs
@@ -1,320 +1,340 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/// <summary>
... |
dzamkov/Alunite-old | 2e12d71561662219e1ee018ed44ef35bced3ddf8 | Splitting up textures as I should have earlier | diff --git a/Alunite/Planet.cs b/Alunite/Planet.cs
index 662ac4c..f1c9c75 100644
--- a/Alunite/Planet.cs
+++ b/Alunite/Planet.cs
@@ -1,302 +1,320 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/// <summary>
... |
dzamkov/Alunite-old | 0521dedc1b5ca0c365fb3300d7603f5e6847d1a8 | Ground-level degeneracy fixed | diff --git a/Resources/Shaders/Atmosphere/Precompute/Inscatter.glsl b/Resources/Shaders/Atmosphere/Precompute/Inscatter.glsl
index c59864d..c79dbe8 100644
--- a/Resources/Shaders/Atmosphere/Precompute/Inscatter.glsl
+++ b/Resources/Shaders/Atmosphere/Precompute/Inscatter.glsl
@@ -1,102 +1,108 @@
#ifdef _VERTEX_
void ... |
dzamkov/Alunite-old | e54157d4ee45c47f14303bdacbaf4acf2d81042a | Horizon fixed and lesson learned, Eric Bruneton probably knew what he was doing and deviating from his suggestions is a bad idea | diff --git a/Alunite/Window.cs b/Alunite/Window.cs
index c465bb8..1744edf 100644
--- a/Alunite/Window.cs
+++ b/Alunite/Window.cs
@@ -1,109 +1,110 @@
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
using OpenTK.Input;
using System;
using System.Collections.Generic;
using System.Windows.F... |
dzamkov/Alunite-old | 8c1dcc53c7825123d2f0fcd62a5bee6029b0c74f | An acceptable increase in resolution | diff --git a/Alunite/Planet.cs b/Alunite/Planet.cs
index 38ad415..662ac4c 100644
--- a/Alunite/Planet.cs
+++ b/Alunite/Planet.cs
@@ -1,302 +1,302 @@
using System;
using System.Collections.Generic;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace Alunite
{
/// <summary>
... |
sartak/autobox-Closure-Attributes | db1831e883bf1e20fcbc859b1464206afef1d495 | META and MYMETA in gitignore | diff --git a/.gitignore b/.gitignore
index 1a4f021..4f09e25 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,11 +1,12 @@
*.swp
MANIFEST
MANIFEST.bak
-META.yml
+META.*
+MYMETA.*
Makefile
Makefile.old
SIGNATURE
blib/
inc/
pm_to_blib
autobox-Closure-Attributes-*
|
sartak/autobox-Closure-Attributes | 9cf65c476597ae6597264a861d419d526cdd8d76 | 0.05 releng | diff --git a/Changes b/Changes
index b64f4ca..2183a2a 100644
--- a/Changes
+++ b/Changes
@@ -1,19 +1,21 @@
Revision history for autobox-Closure-Attributes
-0.05
+0.05 2016-04-22
+ Make the synopsis more easily digestible
+ Minor other documentation and packaging improvements
0.04 Sun Jun 14 15... |
sartak/autobox-Closure-Attributes | 7af3b4188062bc9598878de004c2cd394d1ef69e | Better headings | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index 3ceca85..65cfba8 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,168 +1,168 @@
package autobox::Closure::Attributes;
use strict;
use warnings;
use base 'autobox';
our $VERSION = '0.... |
sartak/autobox-Closure-Attributes | 0bf788ea28ceee6fdeddf4a1b4b95d83932834e2 | Make the synopsis more easily digestible | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index 56b0743..3ceca85 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,166 +1,168 @@
package autobox::Closure::Attributes;
use strict;
use warnings;
use base 'autobox';
our $VERSION = '0.... |
sartak/autobox-Closure-Attributes | c3388ad42faeeee686ba1e0ffdc9ece327cfb86a | Bump to 0.05 | diff --git a/Changes b/Changes
index 1f89e6b..b64f4ca 100644
--- a/Changes
+++ b/Changes
@@ -1,17 +1,19 @@
Revision history for autobox-Closure-Attributes
+0.05
+
0.04 Sun Jun 14 15:16:06 2009
Modernize the dist
0.03 Fri May 16 11:57:00 2008
Thanks chocolateboy, for adding $code->$name!
... |
sartak/autobox-Closure-Attributes | 2d02c5a0e7a9bb3495ebc2b6de5bcb0303bf35aa | Changes | diff --git a/Changes b/Changes
index 04dafb8..1f89e6b 100644
--- a/Changes
+++ b/Changes
@@ -1,16 +1,17 @@
Revision history for autobox-Closure-Attributes
-0.04
+0.04 Sun Jun 14 15:16:06 2009
+ Modernize the dist
0.03 Fri May 16 11:57:00 2008
Thanks chocolateboy, for adding $code->$name!
... |
sartak/autobox-Closure-Attributes | 60c324cdfd930428cecf0009ba77b5cb96fb9ba4 | author tweak | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index bfcb2f7..99d71af 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,166 +1,166 @@
package autobox::Closure::Attributes;
use strict;
use warnings;
use base 'autobox';
our $VERSION = '0.... |
sartak/autobox-Closure-Attributes | e69bc4305fe199969ff6c92fbdf1ea39478f18f9 | Remove POD boilerplate | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index c74cd33..bfcb2f7 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,170 +1,166 @@
package autobox::Closure::Attributes;
use strict;
use warnings;
use base 'autobox';
our $VERSION = '0.... |
sartak/autobox-Closure-Attributes | 5498d0455e1317e7f9868b73f7fc178cd995370a | shebang | diff --git a/t/000-load.t b/t/000-load.t
index b674286..c512e84 100644
--- a/t/000-load.t
+++ b/t/000-load.t
@@ -1,7 +1,6 @@
-#!perl -T
use strict;
use warnings;
use Test::More tests => 1;
use_ok 'autobox::Closure::Attributes';
|
sartak/autobox-Closure-Attributes | 15b33adad8edfffd5380abf841b68b047c3662be | Remove version from POD | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index 3a9775f..c74cd33 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,174 +1,170 @@
package autobox::Closure::Attributes;
use strict;
use warnings;
use base 'autobox';
our $VERSION = '0.... |
sartak/autobox-Closure-Attributes | da0658b95e93dc1ef09eb29bb1babb0beaceba16 | copyright | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index b24670a..3a9775f 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,174 +1,174 @@
package autobox::Closure::Attributes;
use strict;
use warnings;
use base 'autobox';
our $VERSION = '0.... |
sartak/autobox-Closure-Attributes | 8b44d84418fc88abfb130b62cc21ccdc56440002 | No shebang | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index a688386..b24670a 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,175 +1,174 @@
-#!perl
package autobox::Closure::Attributes;
use strict;
use warnings;
use base 'autobox';
our $VERSI... |
sartak/autobox-Closure-Attributes | 1fe42adf66f4449c01db3926e24eaee249b69082 | Don't use parent | diff --git a/Makefile.PL b/Makefile.PL
index 727024a..f457f5d 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,16 +1,15 @@
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;
# Define metadata
name 'autobox-Closure-Attributes';
all_from 'lib/autobox/Closure/Attributes.pm';
git... |
sartak/autobox-Closure-Attributes | d0fcae69fab60caadcde7238073e9018e656a293 | gitignore | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1a4f021
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,11 @@
+*.swp
+MANIFEST
+MANIFEST.bak
+META.yml
+Makefile
+Makefile.old
+SIGNATURE
+blib/
+inc/
+pm_to_blib
+autobox-Closure-Attributes-*
|
sartak/autobox-Closure-Attributes | ec3ccb94ecd848bf0ebeccab3b2612be17a63de8 | Don't depend on core modules | diff --git a/Makefile.PL b/Makefile.PL
index 782ee11..727024a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,17 +1,16 @@
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;
# Define metadata
name 'autobox-Closure-Attributes';
all_from 'lib/autobox/Closure/Attributes.pm';
git... |
sartak/autobox-Closure-Attributes | 806bd3091b297055c52da18b4c54dc87988d1acf | githubmeta | diff --git a/Makefile.PL b/Makefile.PL
index 07fec7d..782ee11 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,16 +1,17 @@
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;
# Define metadata
name 'autobox-Closure-Attributes';
all_from 'lib/autobox/Closure/Attributes.pm';
+git... |
sartak/autobox-Closure-Attributes | 8f46280d596728e4e00018c3001c74439aee54ab | Bump to 0.04 | diff --git a/Changes b/Changes
index 40a268a..04dafb8 100644
--- a/Changes
+++ b/Changes
@@ -1,14 +1,16 @@
Revision history for autobox-Closure-Attributes
+0.04
+
0.03 Fri May 16 11:57:00 2008
Thanks chocolateboy, for adding $code->$name!
Add support for $code->$at_array and $code->$percent_has... |
sartak/autobox-Closure-Attributes | 11a4d8a002e465ecd227ad7dc18d4d1395c25a90 | Changes | diff --git a/Changes b/Changes
index acb1371..40a268a 100644
--- a/Changes
+++ b/Changes
@@ -1,12 +1,14 @@
Revision history for autobox-Closure-Attributes
-0.03
+0.03 Fri May 16 11:57:00 2008
+ Thanks chocolateboy, for adding $code->$name!
+ Add support for $code->$at_array and $code->$percent_hash
... |
sartak/autobox-Closure-Attributes | 116af5d221b4898341b6392dce990394bdf308f3 | Doc updates | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index f88ec6d..2bb3cdf 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,168 +1,175 @@
#!perl
package autobox::Closure::Attributes;
use strict;
use warnings;
use parent 'autobox';
+our $VER... |
sartak/autobox-Closure-Attributes | 069ff6a086ac6aac6c40c8a761153dc95e73c078 | Add support for $code->$at_array and $code->$percent_hash | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index 051ba08..f88ec6d 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,159 +1,168 @@
#!perl
package autobox::Closure::Attributes;
use strict;
use warnings;
use parent 'autobox';
sub im... |
sartak/autobox-Closure-Attributes | 0ccc8dd8bd4cb36631d8d7a9874504b5716993a7 | Remove cargo-culted autoinstall | diff --git a/Makefile.PL b/Makefile.PL
index b2f9f41..07fec7d 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,17 +1,16 @@
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;
# Define metadata
name 'autobox-Closure-Attributes';
all_from 'lib/autobox/Closure/Attributes.pm';
r... |
sartak/autobox-Closure-Attributes | f382f893320361cbe39ec1c44f42a4d98a6daffa | Depend on autobox 2.40 | diff --git a/Makefile.PL b/Makefile.PL
index 7c2432f..b2f9f41 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,17 +1,17 @@
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;
# Define metadata
name 'autobox-Closure-Attributes';
all_from 'lib/autobox/Closure/Attributes.pm';
r... |
sartak/autobox-Closure-Attributes | db2cdd8f1b174192d51ea972bbac0703e349a2ec | Link to the AUTOLOAD manpage | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index c3c33cf..051ba08 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,158 +1,159 @@
#!perl
package autobox::Closure::Attributes;
use strict;
use warnings;
use parent 'autobox';
sub im... |
sartak/autobox-Closure-Attributes | a9abc02ed8bf3b7f72c982c3300fe6a62caa4024 | Acknowledgements that $c->'@foo' is.. hard | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index 8c7cb78..c3c33cf 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,159 +1,158 @@
#!perl
package autobox::Closure::Attributes;
use strict;
use warnings;
use parent 'autobox';
sub im... |
sartak/autobox-Closure-Attributes | 72391fe54d1f56979a1db904e7585ae6ca11c7c0 | Bump to 0.03 | diff --git a/Changes b/Changes
index a008e53..acb1371 100644
--- a/Changes
+++ b/Changes
@@ -1,10 +1,12 @@
Revision history for autobox-Closure-Attributes
+0.03
+
0.02 Thu Feb 21 03:09:40 2008
Mistakenly put the AUTOLOAD in a non-namespace package.
Fix SYNOPSIS.
Tried to make $c->'@pri... |
sartak/autobox-Closure-Attributes | 295938708d1ea824e9d18e7fc45225d5eb2fab11 | Prepare for 0.02 release | diff --git a/Changes b/Changes
index 917b07f..a008e53 100644
--- a/Changes
+++ b/Changes
@@ -1,10 +1,10 @@
Revision history for autobox-Closure-Attributes
-0.02
+0.02 Thu Feb 21 03:09:40 2008
Mistakenly put the AUTOLOAD in a non-namespace package.
Fix SYNOPSIS.
Tried to make $c->'@prime... |
sartak/autobox-Closure-Attributes | 5c3204ff1aec97b67ff4f066b81f183357c7d48d | Ugh, Module::Install is all "I WANT NEW" | diff --git a/inc/Module/Install.pm b/inc/Module/Install.pm
index 9d13686..89a8653 100644
--- a/inc/Module/Install.pm
+++ b/inc/Module/Install.pm
@@ -1,281 +1,281 @@
#line 1
package Module::Install;
# For any maintainers:
# The load order for Module::Install is a bit magic.
# It goes something like this...
#
# ... |
sartak/autobox-Closure-Attributes | 599b68c0abf662ae292262133a61e18aff0b1d1c | Doc fixups | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index 0afad3b..3608878 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,159 +1,159 @@
#!perl
package autobox::Closure::Attributes;
use strict;
use warnings;
use parent 'autobox';
sub im... |
sartak/autobox-Closure-Attributes | 5989037e8f6e61614b7aa22860df8ac4c89ad669 | Ensure that we can't add new variables to the pad (why would you?) | diff --git a/t/004-new-capture.t b/t/004-new-capture.t
new file mode 100644
index 0000000..3b0e34a
--- /dev/null
+++ b/t/004-new-capture.t
@@ -0,0 +1,20 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 3;
+use Test::Exception;
+use autobox::Closure::Attributes;
+
+sub accgen {
+ my $n = s... |
sartak/autobox-Closure-Attributes | 50beedbe0a9b60d8d5f7525302b936d1178f4077 | Document my failure to make $code->'@primes' work | diff --git a/Changes b/Changes
index 52f6d4d..917b07f 100644
--- a/Changes
+++ b/Changes
@@ -1,9 +1,10 @@
Revision history for autobox-Closure-Attributes
0.02
Mistakenly put the AUTOLOAD in a non-namespace package.
Fix SYNOPSIS.
+ Tried to make $c->'@primes' work, but no dice.
0.01 Tu... |
sartak/autobox-Closure-Attributes | e722104d66550928c74cf66878ed342f3528ce98 | Reword | diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/Closure/Attributes.pm
index ce699b8..d05de57 100644
--- a/lib/autobox/Closure/Attributes.pm
+++ b/lib/autobox/Closure/Attributes.pm
@@ -1,141 +1,141 @@
#!perl
package autobox::Closure::Attributes;
use strict;
use warnings;
use parent 'autobox';
sub im... |
sartak/autobox-Closure-Attributes | 97d40f544f8ea353564db1856d72d96edad6497a | Fix SYNOPSIS | diff --git a/Changes b/Changes
index 6e3e3ff..52f6d4d 100644
--- a/Changes
+++ b/Changes
@@ -1,8 +1,9 @@
Revision history for autobox-Closure-Attributes
0.02
Mistakenly put the AUTOLOAD in a non-namespace package.
+ Fix SYNOPSIS.
0.01 Tue Feb 19 01:30:41 2008
First version, released o... |
sartak/autobox-Closure-Attributes | 55703b06fbbcb40d360c9109715480ed69af69ad | Mistakenly put the AUTOLOAD in a non-namespace package | diff --git a/Changes b/Changes
index dca8d63..6e3e3ff 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,8 @@
Revision history for autobox-Closure-Attributes
0.02
+ Mistakenly put the AUTOLOAD in a non-namespace package.
0.01 Tue Feb 19 01:30:41 2008
First version, released on an unsuspecting world... |
sartak/autobox-Closure-Attributes | eedacbecde157ec090ecc0cf0620c283075450fd | Bump to 0.02 | diff --git a/Changes b/Changes
index 033566b..dca8d63 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
Revision history for autobox-Closure-Attributes
+0.02
+
0.01 Tue Feb 19 01:30:41 2008
First version, released on an unsuspecting world.
diff --git a/lib/autobox/Closure/Attributes.pm b/lib/autobox/... |
sartak/autobox-Closure-Attributes | 6484138608b863900752ebb426d56f748d322b77 | Oops, this is a TODO test, so we want it to fail.. | diff --git a/t/900-bugs.t b/t/900-bugs.t
index 235715b..754e389 100644
--- a/t/900-bugs.t
+++ b/t/900-bugs.t
@@ -1,19 +1,19 @@
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 2;
use Test::Exception;
use autobox::Closure::Attributes;
my $code = do {
my ($x, $y) = (10, 20);
sub { ... |
sartak/autobox-Closure-Attributes | e8d39763f80f7eed129dd20684a13f1b03dd025d | Implementation and tests (oops, I didn't commit) | diff --git a/Makefile.PL b/Makefile.PL
index 5527e38..7c2432f 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,14 +1,17 @@
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;
# Define metadata
name 'autobox-Closure-Attributes';
all_from 'lib/autobox/Closure/Attributes.pm';
-r... |
sartak/autobox-Closure-Attributes | e1719cf2cc6918d3639857a9fb0a6af1beefbb01 | Initial import of autobox::Closure::Attributes | diff --git a/Changes b/Changes
new file mode 100644
index 0000000..033566b
--- /dev/null
+++ b/Changes
@@ -0,0 +1,5 @@
+Revision history for autobox-Closure-Attributes
+
+0.01 Tue Feb 19 01:30:41 2008
+ First version, released on an unsuspecting world.
+
diff --git a/Makefile.PL b/Makefile.PL
new file mode 10... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.