repo
string
commit
string
message
string
diff
string
sirprize/xdoctrine
c4fa4247fead2dca6f60f84a175ca111ae8a05c3
remove require\s
diff --git a/lib/Xdoctrine/Common/Cache/ZendCache.php b/lib/Xdoctrine/Common/Cache/ZendCache.php index 8c71657..440888d 100644 --- a/lib/Xdoctrine/Common/Cache/ZendCache.php +++ b/lib/Xdoctrine/Common/Cache/ZendCache.php @@ -1,93 +1,93 @@ <?php /** * Xdoctrine - Sirprize's Doctrine2 Extensions * * LICENSE *...
sirprize/xdoctrine
221430b10d581fa7dc157a14954454269218ef8b
rollout changes of doctrine upgrade to doctrine 2.0.0BETA4
diff --git a/lib/Xdoctrine/DBAL/Logging/ZendSQLLogger.php b/lib/Xdoctrine/DBAL/Logging/ZendSQLLogger.php index a8b9dde..295f0ea 100644 --- a/lib/Xdoctrine/DBAL/Logging/ZendSQLLogger.php +++ b/lib/Xdoctrine/DBAL/Logging/ZendSQLLogger.php @@ -1,67 +1,72 @@ <?php /** * Xdoctrine - Sirprize's Doctrine2 Extensions *...
sirprize/xdoctrine
d16226a3ebda3d54de54ae28074e9631df7b36d1
rolling forward
diff --git a/lib/Xdoctrine/ORM/Event/Listener/Abstrakt.php b/lib/Xdoctrine/ORM/Event/Listener/Abstrakt.php index 2bec875..9bbec9b 100644 --- a/lib/Xdoctrine/ORM/Event/Listener/Abstrakt.php +++ b/lib/Xdoctrine/ORM/Event/Listener/Abstrakt.php @@ -1,154 +1,121 @@ <?php /** * Xdoctrine - Sirprize's Doctrine2 Extensio...
sirprize/xdoctrine
c5361816db9deffa71563b9b85a5781e0c655d18
initial import
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/lib/Xdoctrine/Common/Cache/ZendCache.php b/lib/Xdoctrine/Common/Cache/ZendCache.php new file mode 100644 index 0000000..8c71657 --- /dev/null ...
elchingon/yii-dbmigrations
d13ea3341b6859e2ef4eefb5bf34dee396f2328b
Added a lot of information to the readme file.
diff --git a/README.textile b/README.textile index 7d50ad0..b277989 100644 --- a/README.textile +++ b/README.textile @@ -1,222 +1,346 @@ h1. Yii DB Migrations A database migrations engine for the "Yii framework":http://www.yiiframework.com. It comes in the form of an extension which can be dropped into any existin...
elchingon/yii-dbmigrations
96189e33cb50d4d78a06f2dfc03f9b3e3b7f98ad
Rewrote the sample migrations to use the new syntax to create tables.
diff --git a/samples/m20090611153243_CreateTables.php b/samples/m20090611153243_CreateTables.php index 708af1a..1e6c0d4 100644 --- a/samples/m20090611153243_CreateTables.php +++ b/samples/m20090611153243_CreateTables.php @@ -1,26 +1,26 @@ <?php class m20090611153243_CreateTables extends CDbMigration { + //...
elchingon/yii-dbmigrations
9e981328934de0979e5967b4ce18826cbaab8183
Added the CDbMigrationTable class and made it available in CDbMigration.
diff --git a/CDbMigration.php b/CDbMigration.php index d16e64c..2d202c5 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,269 +1,301 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
c60057baa5f263e0ec2463da39ac6f1690fbecb9
Replaced the deprecated split function with the explode function to make sure it works fine with PHP 5.3 (reported by junqed).
diff --git a/CDbMigration.php b/CDbMigration.php index f93eafd..d16e64c 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,269 +1,269 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
6c1c9a5c56202aea33639792665744aa4c39fc0f
Fixed a bug that was found when using Yii Framework version 1.0.10.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 0be45d4..2781edc 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,496 +1,494 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
7fe045d5f853e057bea3b9ab7c2cc99e18fa6ad0
Change wording because it is possible to migrate down. Also clarify which file to put the command map into.
diff --git a/README.textile b/README.textile index ae84c3c..7d50ad0 100644 --- a/README.textile +++ b/README.textile @@ -1,224 +1,222 @@ h1. Yii DB Migrations A database migrations engine for the "Yii framework":http://www.yiiframework.com. It comes in the form of an extension which can be dropped into any existin...
elchingon/yii-dbmigrations
7ba69a970c97f81dfd5c490f3dc452cc2dc4b1d2
When performing a redo on a migration, the migrations directory is now only shown once.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index b05098a..0be45d4 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,496 +1,496 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
0d51e48873271c5eba96d159e16306fb97eafd2c
Fixed the message emitted when changing a table column
diff --git a/CDbMigration.php b/CDbMigration.php index 52e85aa..f93eafd 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,269 +1,269 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
e4951da0902efb971206eb2ffc08737c82efadbb
The migration engine now show the directory in which the migrations are created.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index f420eb9..b05098a 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,492 +1,496 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
b9f13a4c5362edefcb8f2bed1fbc1a1c37bea508
When running migrations, a constant called YII_MIGRATING is now defined.
diff --git a/CDbMigrationCommand.php b/CDbMigrationCommand.php index acf2905..ff209ac 100644 --- a/CDbMigrationCommand.php +++ b/CDbMigrationCommand.php @@ -1,98 +1,110 @@ <?php /** * CDbMigrationCommand class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhou...
elchingon/yii-dbmigrations
a5a90e1a7c64582f49fbb0540de260fd667e1e68
The output from the migrations is now a little more compact.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index ee38e10..f420eb9 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,498 +1,492 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
5ee9f5c9d109b180840b25f899d7f929c5a4e2cb
Added the redo command so that the last migration can be re-applied easily.
diff --git a/CDbMigrationCommand.php b/CDbMigrationCommand.php index 9d9d965..acf2905 100644 --- a/CDbMigrationCommand.php +++ b/CDbMigrationCommand.php @@ -1,93 +1,98 @@ <?php /** * CDbMigrationCommand class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout...
elchingon/yii-dbmigrations
540bb1bd969a63bb18e3735dc1bc2a73e9348e43
Removed the code that closes and re-opens the database connection as this doesn't refresh the database metadata anyway.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 58beab3..4c04d1a 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,496 +1,492 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
c4d3cad39fac2b220b7b79f6b4b7a62c5ed13c95
Added support for passing on parameters in the execute method of a migration.
diff --git a/CDbMigrationAdapter.php b/CDbMigrationAdapter.php index caf076e..da22130 100644 --- a/CDbMigrationAdapter.php +++ b/CDbMigrationAdapter.php @@ -1,221 +1,229 @@ <?php /** * CDbMigrationAdapter class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerho...
elchingon/yii-dbmigrations
6a282d52a60131001f3005d76e520c130daefddf
Cleaned out the output of the list command.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 7ad42cd..58beab3 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,493 +1,496 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
60d31574e5235046cfc56a3489f9fda9981450ea
Beautified the output from the migrate command.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index f4e9f13..7ad42cd 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,491 +1,493 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
50e5b540ac1639666c38eeadbb305099120ece2b
Added the migrate create command.
diff --git a/CDbMigrationCommand.php b/CDbMigrationCommand.php index 75b6696..9d9d965 100644 --- a/CDbMigrationCommand.php +++ b/CDbMigrationCommand.php @@ -1,85 +1,93 @@ <?php /** * CDbMigrationCommand class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout...
elchingon/yii-dbmigrations
6e348a1fe0b115191fcaaf890ffd71eea73550d7
Code cleanup.
diff --git a/CDbMigration.php b/CDbMigration.php index 00941e3..52e85aa 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,270 +1,269 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
02cbab27337363b2a63f5eba3ca6c16d6f6d3f05
Improved the error handling even more.
diff --git a/CDbMigration.php b/CDbMigration.php index 519c020..00941e3 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,269 +1,270 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
e680494eb9f5e297e2c18f359e45dbff8bdbd3f1
Removed the options when altering a database column.
diff --git a/CDbMigrationAdapter.php b/CDbMigrationAdapter.php index 1a0b057..caf076e 100644 --- a/CDbMigrationAdapter.php +++ b/CDbMigrationAdapter.php @@ -1,224 +1,221 @@ <?php /** * CDbMigrationAdapter class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerho...
elchingon/yii-dbmigrations
29088f6b805f21aae3bcdc34d36c0e02bdcba725
Fixed the removeIndex function for SQLite.
diff --git a/adapters/CDbMigrationAdapterSqlite.php b/adapters/CDbMigrationAdapterSqlite.php index 42b3dab..740ee00 100644 --- a/adapters/CDbMigrationAdapterSqlite.php +++ b/adapters/CDbMigrationAdapterSqlite.php @@ -1,100 +1,111 @@ <?php /** * CDbMigrationAdapterSqlite class file. * * @author Pieter Claerhou...
elchingon/yii-dbmigrations
d6668402a106c82c8d510be332e6b0009b6338e8
Added better error handling.
diff --git a/CDbMigration.php b/CDbMigration.php index 9c8d5be..519c020 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,268 +1,269 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
fc1f903373dbc16b92ff522b7eb080085b06945c
Implemented the help for the migrate command.
diff --git a/CDbMigrationCommand.php b/CDbMigrationCommand.php index 31932d5..72e4c0c 100644 --- a/CDbMigrationCommand.php +++ b/CDbMigrationCommand.php @@ -1,42 +1,81 @@ <?php /** * CDbMigrationCommand class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout...
elchingon/yii-dbmigrations
df6dc57d29ba5608300b40ef9c9fe26b0e8ebf0d
Removed the documentation about migrations and modules as we first need to look on what the best way is to work with these.
diff --git a/README.textile b/README.textile index 11408c4..ae84c3c 100644 --- a/README.textile +++ b/README.textile @@ -1,232 +1,224 @@ h1. Yii DB Migrations A database migrations engine for the "Yii framework":http://www.yiiframework.com. It comes in the form of an extension which can be dropped into any existin...
elchingon/yii-dbmigrations
11d267edfa5627b598e33249bd9f5c67a3b6b126
Made it possible to migrate in different directions: - Up - Down - All migrations that are not applied yet - List all migrations and their status - Migrate to a specific version
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 35ea78e..c21df82 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,399 +1,453 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
0cffffd601c3027dbb8d2542e0729752f5783fc0
Implemented the yiic migrate up command.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 30b0623..35ea78e 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,396 +1,399 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
30ee8d0fa9500adf1c189c21a562c34175e47f33
Implemented the yiic migrate down functionality.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 1ff2420..30b0623 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,325 +1,396 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
12cfc75c96bbd3eb3dfebb2e1df56d6dc8582949
Added more checks to see if a migration file actually contains a migration.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 6dac97a..1ff2420 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,301 +1,325 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
2ab1964d92258fc753776e8a175404ed030264c8
Implemented the columnInfo function for MySQL.
diff --git a/CDbMigration.php b/CDbMigration.php index a83c092..9c8d5be 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,268 +1,268 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
26d07c68c3dfcbb191439b403035d69bf8816ff2
Added all the docstrings.
diff --git a/CDbMigration.php b/CDbMigration.php index f726fee..a83c092 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,247 +1,268 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
803936997e8be018cd49ec19e1baa15fb6e15f9d
Started adding more docstrings.
diff --git a/CDbMigration.php b/CDbMigration.php index 8845063..f726fee 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,143 +1,247 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
e79ed295af43c268b360f2bd1c9400739c1ca920
Fixed the links in the readme file.
diff --git a/README.textile b/README.textile index d66a88d..11408c4 100644 --- a/README.textile +++ b/README.textile @@ -1,232 +1,232 @@ h1. Yii DB Migrations -A database migrations engine for the Yii framework. It comes in the form of an extension which can be dropped into any existing Yii framework application. +...
elchingon/yii-dbmigrations
12a50afb3bdcf55057733a718e2f6cea8caf4d4e
The migrations are now performed transactional.
diff --git a/CDbMigration.php b/CDbMigration.php index 2f2593a..8845063 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,121 +1,143 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
a2480e89444b5a8faf7c1ba8114edf5406b41268
Fixed the newlines in the readme file.
diff --git a/README.textile b/README.textile index 41b63d6..d66a88d 100644 --- a/README.textile +++ b/README.textile @@ -1,274 +1,232 @@ h1. Yii DB Migrations -A database migrations engine for the Yii framework. It comes in the form of an -extension which can be dropped into any existing Yii framework application. +...
elchingon/yii-dbmigrations
9f13384dbbd13e6ebdd697933202b26adee29d7f
Added a lot more information to the readme file.
diff --git a/CDbMigrationAdapter.php b/CDbMigrationAdapter.php index 2e1e730..495da37 100644 --- a/CDbMigrationAdapter.php +++ b/CDbMigrationAdapter.php @@ -1,143 +1,146 @@ <?php /** * CDbMigrationAdapter class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerho...
elchingon/yii-dbmigrations
8ba95d4a8486b21189239a1e0161f59f9ac3e82e
Added a note about migrations in modules. Updated the screendumps of the yiic migrate output.
diff --git a/README.textile b/README.textile index 2a81357..058d06d 100644 --- a/README.textile +++ b/README.textile @@ -1,191 +1,210 @@ h1. Yii DB Migrations A database migrations engine for the Yii framework. It comes in the form of an extension which can be dropped into any existing Yii framework application. ...
elchingon/yii-dbmigrations
fb824dd9c9234e1d7519f5d111718b2752aa05b0
An error is no longer thrown if the migrations directory doesn't exist.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 0808eda..155d83d 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,236 +1,242 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
6ebe241eb9ce40e01fa9de0641027dbf3a00567c
The migrations are now also loaded from the modules that are enabled.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 5a04346..0808eda 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,181 +1,236 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
8302948ae4058cbc1b25ef6c9df887e0ceb1e4c9
Removed some unneeded comments from the code.
diff --git a/CDbMigrationAdapter.php b/CDbMigrationAdapter.php index bae07f6..2e1e730 100644 --- a/CDbMigrationAdapter.php +++ b/CDbMigrationAdapter.php @@ -1,145 +1,143 @@ <?php /** * CDbMigrationAdapter class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerho...
elchingon/yii-dbmigrations
d1cd622b5b1221bc7509f047e26214172cbb291f
Replaced the log function with echo statements.
diff --git a/CDbMigration.php b/CDbMigration.php index bf36c5d..2f2593a 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,126 +1,121 @@ <?php /** * CDbMigration class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yii-dbmigrations/ * @copyright...
elchingon/yii-dbmigrations
ea74fb64c5fe1be40587e034dd4faab3aad5e1e9
Removed the timestamps from the logs.
diff --git a/CDbMigrationEngine.php b/CDbMigrationEngine.php index 6157be6..e6575be 100644 --- a/CDbMigrationEngine.php +++ b/CDbMigrationEngine.php @@ -1,186 +1,186 @@ <?php /** * CDbMigrationEngine class file. * * @author Pieter Claerhout <pieter@yellowduck.be> * @link http://github.com/pieterclaerhout/yi...
elchingon/yii-dbmigrations
5c130a057fb84d96726ffddf3badead7b3378e90
Started adding docstrings. Added the CDbMigration class. Moved the adapters to a subdirectory.
diff --git a/CDbMigration.php b/CDbMigration.php index f1bad11..1bf555b 100644 --- a/CDbMigration.php +++ b/CDbMigration.php @@ -1,113 +1,122 @@ <?php +/** + * CDbMigration class file. + * + * @author Pieter Claerhout <pieter@yellowduck.be> + * @link http://github.com/pieterclaerhout/yii-dbmigrations/ + * @copyright...
elchingon/yii-dbmigrations
61846ef298c2730e098c09e2a2336bc954506e03
Added a link to the github page.
diff --git a/README.textile b/README.textile index b68ebe9..acb3d86 100644 --- a/README.textile +++ b/README.textile @@ -1,191 +1,191 @@ h1. Yii DB Migrations A database migrations engine for the Yii framework. It comes in the form of an extension which can be dropped into any existing Yii framework application. ...
elchingon/yii-dbmigrations
e0a3267195a0d90ef1132dacf23d5ab9573ad560
Added demo files. Updated the readme file.
diff --git a/CDbMigrationCommand.php b/CDbMigrationCommand.php index 6e44544..e5feee0 100644 --- a/CDbMigrationCommand.php +++ b/CDbMigrationCommand.php @@ -1,169 +1,169 @@ <?php // Import the main classes -Yii::import('application.extensions.DbMigrations.*'); +Yii::import('application.extensions.yii-dbmigrations.*...
elchingon/yii-dbmigrations
334f8836f49a54709a37a489593972392b8b6e33
Added the source files
diff --git a/CDbMigration.php b/CDbMigration.php new file mode 100644 index 0000000..f1bad11 --- /dev/null +++ b/CDbMigration.php @@ -0,0 +1,113 @@ +<?php + +class CDbMigrationException extends Exception {} + +// Class implementing a migration +abstract class CDbMigration { + + // The adapter to use + private...
elchingon/yii-dbmigrations
0448a45d473d958e81a146df17eaded71300c0e4
Added a readme file
diff --git a/README b/README new file mode 100644 index 0000000..4b48a8e --- /dev/null +++ b/README @@ -0,0 +1,3 @@ +Yii DB Migrations + +A database migrations engine for the Yii framework. \ No newline at end of file
tatewake/dokuwiki-plugin-googleanalytics
d3d40d986b151a94538764257547b48ad50c4999
DPG-21 - Added support for optionally using "Global Site Tag ID" / `gtag.js` * In `action.php`, we now look for `GTAGID` and pass it through to `$JSINFO['ga']` * In `script.js`, introduced a code path for using `gtag.js` and making it the default if `GTAGID` is set * In `default.php`, `metadata.php`, and `settings.p...
diff --git a/CHANGELOG.md b/CHANGELOG.md index 29802e6..d834b69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,42 +1,50 @@ # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres ...
tatewake/dokuwiki-plugin-googleanalytics
a871ce47ba843d5236fad374c0e0df476543d6df
DPG-20 - Bumped version number and updated changelog
diff --git a/CHANGELOG.md b/CHANGELOG.md index fca8d18..29802e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,34 +1,42 @@ # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres ...
tatewake/dokuwiki-plugin-googleanalytics
3a995d387497c29a2b33c49d6b9191c67baa7e4f
DPG-20 - Added admin page, icon, and menu text for DokuWiki's administration page
diff --git a/action.php b/action.php index 58355fc..b9d722e 100644 --- a/action.php +++ b/action.php @@ -1,123 +1,127 @@ <?php if (!defined('DOKU_INC')) { die(); } if (!defined('DOKU_PLUGIN')) { define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); } /** - * Class action_plugin_googleanalytics + * Google ...
tatewake/dokuwiki-plugin-googleanalytics
81f269bdfba8f378318f08b44b2414285c7054bb
DPG-19 - Added CHANGELOG.md file
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..fca8d18 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project ...
tatewake/dokuwiki-plugin-googleanalytics
f2f4559d80971e5e448d5eb6f80df784a5796acc
DPG-19 - In `plugin.info.txt`, bumped release date and added version number to plugin name
diff --git a/plugin.info.txt b/plugin.info.txt index 435f8e9..4993115 100644 --- a/plugin.info.txt +++ b/plugin.info.txt @@ -1,7 +1,7 @@ base googleanalytics author Terence J. Grant email tjgrant@tatewake.com -date 2019-05-21 -name Google Analytics Plugin +date 2020-06-25 +name Google Analytics Plu...
tatewake/dokuwiki-plugin-googleanalytics
48732fdba8a09f45f2d2267146edfc859ead83ad
DPG-19 - Rewrote README.md
diff --git a/README b/README deleted file mode 100644 index 03bbc47..0000000 --- a/README +++ /dev/null @@ -1,28 +0,0 @@ -googleanalytics Plugin for DokuWiki - -Plugin to embed your Google Analytics code for your site, which -allows you to track your visitors. - -All documentation for this plugin can be found at -https...
tatewake/dokuwiki-plugin-googleanalytics
dc61ac0d1f4d9168155113fc7bed0c67f221a8e3
DPG-19 - Added LICENSE file
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA...
tatewake/dokuwiki-plugin-googleanalytics
3632672059796fe1628d1cba05c7bfe73eaf5b67
DPG-17 - Ran `js-beautify -r` against `script.js`
diff --git a/script.js b/script.js index afeb6af..76ebb8d 100644 --- a/script.js +++ b/script.js @@ -1,71 +1,71 @@ /** * Set up Google analytics * * All configuration is done in the JSINFO.ga object initialized in * action.php */ if (JSINFO.ga) { /* default google tracking initialization */ - (funct...
tatewake/dokuwiki-plugin-googleanalytics
62cfa419d46a8272ac8adbb5617bd4492fe87920
DPG-17 - Ran `php-cs-fixer fix . ` to auto-format PHP files to match coding standards, and added `.php_cs.cache` to the `.gitignore`
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d0b430 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.php_cs.cache diff --git a/action.php b/action.php index 0966d14..58355fc 100644 --- a/action.php +++ b/action.php @@ -1,98 +1,123 @@ <?php -if(!defined('DOKU_INC')) die(); -if(!defined('DOKU_...
tatewake/dokuwiki-plugin-googleanalytics
39ba546f8a266ba735031f8eea1c414e35df8596
DPG-17 - Moved `test.html` -> `test/index.html` and ran `js-beautify -r` against it
diff --git a/test.html b/test.html deleted file mode 100644 index 60e5a40..0000000 --- a/test.html +++ /dev/null @@ -1,68 +0,0 @@ -<html lang="ën"> -<head> - <title>Test page</title> - <script> - let JSINFO = {}; - JSINFO.ga = {}; - JSINFO.ga.trackingId = 'UA-XXXXXXX-1'; - JSINFO.ga.t...
tatewake/dokuwiki-plugin-googleanalytics
9f686c8661f8765baa28b16745651841e1e43998
Remove `$lang['debug']` as it's not needed locally
diff --git a/lang/en/settings.php b/lang/en/settings.php index 1746d46..ac0480a 100644 --- a/lang/en/settings.php +++ b/lang/en/settings.php @@ -1,10 +1,8 @@ <?php $lang['GAID'] = 'Your Google Analytics ID (UA-XXXXXX-XX)'; $lang['dont_count_admin'] = 'Don\'t count admin/superuser'; $lang['dont_count_users'] = 'Don\...
tatewake/dokuwiki-plugin-googleanalytics
0321452a5908aeb308de7ec72db85c84e4ef9d0d
Replaced debug by $conf['allowdebug']
diff --git a/action.php b/action.php index a5d4622..0966d14 100644 --- a/action.php +++ b/action.php @@ -1,97 +1,98 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); /** * Class action_plugin_googleanalytics */ class action_plugin_googleana...
tatewake/dokuwiki-plugin-googleanalytics
2b86c1a8f4d8e28a1ae42e40da69cc4f44434195
Added a debug mode that prints the hit payload Enhanced the test page with check steps Deleted the callback on outbound as it's not needed
diff --git a/action.php b/action.php index f255dc5..a5d4622 100644 --- a/action.php +++ b/action.php @@ -1,96 +1,97 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); /** * Class action_plugin_googleanalytics */ class action_plugin_googleana...
tatewake/dokuwiki-plugin-googleanalytics
0cc3641d9c21998b2eb3af2465e6707a4849eba8
Target blank was not respectged when clicking on a new link
diff --git a/script.js b/script.js index 69714bc..9078631 100644 --- a/script.js +++ b/script.js @@ -1,53 +1,53 @@ /** * Set up Google analytics * * All configuration is done in the JSINFO.ga object initialized in * action.php */ if (JSINFO.ga) { /* default google tracking initialization */ (funct...
tatewake/dokuwiki-plugin-googleanalytics
5b460905b50c89c84f441c7f19882fbdc0df5d63
fix-track-link - Updated `plugin.info.txt` to reflect a new release date (for DW's plugin manager)
diff --git a/plugin.info.txt b/plugin.info.txt index ab22a9d..435f8e9 100644 --- a/plugin.info.txt +++ b/plugin.info.txt @@ -1,7 +1,7 @@ base googleanalytics author Terence J. Grant email tjgrant@tatewake.com -date 2017-02-07 +date 2019-05-21 name Google Analytics Plugin desc Plugin to embed your...
tatewake/dokuwiki-plugin-googleanalytics
63befc3674f8b92cf31c1808ed93623bd1dbdbb3
Check ga existence before tracking links
diff --git a/script.js b/script.js index 0c82406..69714bc 100644 --- a/script.js +++ b/script.js @@ -1,52 +1,53 @@ /** * Set up Google analytics * * All configuration is done in the JSINFO.ga object initialized in * action.php */ if (JSINFO.ga) { /* default google tracking initialization */ (funct...
tatewake/dokuwiki-plugin-googleanalytics
99eac117481ab13c627725603378ec3302f056b1
added readme
diff --git a/README b/README new file mode 100644 index 0000000..03bbc47 --- /dev/null +++ b/README @@ -0,0 +1,28 @@ +googleanalytics Plugin for DokuWiki + +Plugin to embed your Google Analytics code for your site, which +allows you to track your visitors. + +All documentation for this plugin can be found at +https://w...
tatewake/dokuwiki-plugin-googleanalytics
8ea4e30b5d09861f9af6449da671420519573128
clarified setting descriptions
diff --git a/lang/en/settings.php b/lang/en/settings.php index 0a1b1ec..198ab30 100644 --- a/lang/en/settings.php +++ b/lang/en/settings.php @@ -1,9 +1,9 @@ <?php -$lang['GAID'] = 'Your Google Analytics ID (UA-XXXXX)'; +$lang['GAID'] = 'Your Google Analytics ID (UA-XXXXXX-XX)'; $lang['dont_count_admin'] = 'Don\'t cou...
tatewake/dokuwiki-plugin-googleanalytics
354d3118fa2d088e1cb71bdef2d7a2c771fd55c8
log action and id as dimensions
diff --git a/script.js b/script.js index 3765f3a..0c82406 100644 --- a/script.js +++ b/script.js @@ -1,50 +1,52 @@ /** * Set up Google analytics * * All configuration is done in the JSINFO.ga object initialized in * action.php */ if (JSINFO.ga) { /* default google tracking initialization */ (funct...
tatewake/dokuwiki-plugin-googleanalytics
8d83c8a07d0d00b0acf3a4ffb74b141d78ac2379
keep the query string (after some cleanup)
diff --git a/action.php b/action.php index 12e0394..f255dc5 100644 --- a/action.php +++ b/action.php @@ -1,71 +1,96 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); /** * Class action_plugin_googleanalytics */ class action_plugin_googleana...
tatewake/dokuwiki-plugin-googleanalytics
d77839759731649e25fdb719eaa9d512caddee2b
normalize page views
diff --git a/action.php b/action.php index a0c243f..12e0394 100644 --- a/action.php +++ b/action.php @@ -1,55 +1,71 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); /** * Class action_plugin_googleanalytics */ class action_plugin_googleana...
tatewake/dokuwiki-plugin-googleanalytics
02cda0187b791e5ddb7f9dd6aeabf66530255ad5
rewrite of most of the tracking code
diff --git a/action.php b/action.php index 528dd98..a0c243f 100644 --- a/action.php +++ b/action.php @@ -1,92 +1,55 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); /** * Class action_plugin_googleanalytics */ class action_plugin_googleana...
tatewake/dokuwiki-plugin-googleanalytics
fd0d2f7d9f30e21a194af5b8eb8d89e28ff97d1c
some cleanup for the action.php file
diff --git a/action.php b/action.php index 294e714..528dd98 100644 --- a/action.php +++ b/action.php @@ -1,69 +1,92 @@ <?php if(!defined('DOKU_INC')) die(); -if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); -require_once(DOKU_PLUGIN.'action.php'); +if(!defined('DOKU_PLUGIN')) define('DOKU_PL...
tatewake/dokuwiki-plugin-googleanalytics
094530f2c15954bfab93a9dbce120d5089680a37
create plugin.info.txt
diff --git a/plugin.info.txt b/plugin.info.txt new file mode 100644 index 0000000..9d24a67 --- /dev/null +++ b/plugin.info.txt @@ -0,0 +1,7 @@ +base googleanalytics +author Terence J. Grant +email tjgrant@tatewake.com +date 2016-02-02 +name Google Analytics for DokuWiki +desc This tool allows you to set a code for use...
tatewake/dokuwiki-plugin-googleanalytics
280cad8278b6c83a24f59560ce13f69da06abe55
Adjust method signatures to match parent
diff --git a/action.php b/action.php index 0f54f66..57dd305 100644 --- a/action.php +++ b/action.php @@ -1,41 +1,41 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exte...
tatewake/dokuwiki-plugin-googleanalytics
b0048f016599783b177ea79a775cb6dee646cbbe
API Update
diff --git a/action.php b/action.php index f64174f..97071a3 100644 --- a/action.php +++ b/action.php @@ -1,69 +1,69 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exten...
tatewake/dokuwiki-plugin-googleanalytics
f699e419b82e5e4da2eec080b8a3ddcde7051eee
Added Polish and Swedish translations
diff --git a/lang/pl/settings.php b/lang/pl/settings.php new file mode 100644 index 0000000..d1211bd --- /dev/null +++ b/lang/pl/settings.php @@ -0,0 +1,4 @@ +<?php +$lang['GAID'] = 'Google Analitycs ID'; +$lang['dont_count_admin'] = 'Nie zliczaj: admin/superuser'; +$lang['dont_count_users'] = 'Nie zliczaj zalogownych ...
tatewake/dokuwiki-plugin-googleanalytics
ada724698e681b77050a335fdc6afbb355bf347d
Added support for Universal Analytics
diff --git a/action.php b/action.php index 93695dc..0f54f66 100644 --- a/action.php +++ b/action.php @@ -1,45 +1,41 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exte...
tatewake/dokuwiki-plugin-googleanalytics
98a5b990b0f2689f26d110f95e49ab18ab914b75
Added event for popupviewer to track its links
diff --git a/action.php b/action.php index b897c6d..f64174f 100644 --- a/action.php +++ b/action.php @@ -1,55 +1,69 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exten...
tatewake/dokuwiki-plugin-googleanalytics
da25265cfbfe582207651407510bf88e10bdc50e
Improve structure
diff --git a/script.js b/script.js index 8300fe9..aac9538 100644 --- a/script.js +++ b/script.js @@ -1,42 +1,43 @@ /** * * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * @author Gerry Weißbach <gweissbach@inetsoftware.de> + * @author Gerry Weißbach <gweissbach@inetsoftware.de> */ ...
tatewake/dokuwiki-plugin-googleanalytics
cc9f5943498ef17e0f0d6cfebb9c4a6ba58cf624
Only add Script if we don't run via AJAX.
diff --git a/action.php b/action.php index b7fe9fb..b897c6d 100644 --- a/action.php +++ b/action.php @@ -1,46 +1,55 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exten...
tatewake/dokuwiki-plugin-googleanalytics
9b44ac7fe8eca5f903f39b11cf98369f72d6d4bd
Added empty line at end
diff --git a/conf/default.php b/conf/default.php index b932e9e..17c95a1 100644 --- a/conf/default.php +++ b/conf/default.php @@ -1,3 +1,3 @@ <?php -$conf['anonymize'] = 1; \ No newline at end of file +$conf['anonymize'] = 1;
tatewake/dokuwiki-plugin-googleanalytics
2f3b40ee58d43024ec102b07c7d5e4c8d422add7
Added more options (domainName and anonymize)
diff --git a/action.php b/action.php index 116d906..368370f 100644 --- a/action.php +++ b/action.php @@ -1,45 +1,46 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exte...
tatewake/dokuwiki-plugin-googleanalytics
c0801f7b6046297ad41a2eef50ab254611e1e716
Added plugin.info.txt
diff --git a/plugin.info.txt b/plugin.info.txt new file mode 100644 index 0000000..6a60785 --- /dev/null +++ b/plugin.info.txt @@ -0,0 +1,8 @@ +base googleanalytics +author Terence J. Grant +email tjgrant@tatewake.com +date 2013-02-23 +name Google Analytics Plugin +desc Plugin to embed your google analyt...
tatewake/dokuwiki-plugin-googleanalytics
384936d8a8635adaa25304045e3666aeb364ec90
Added a Script to track external links.
diff --git a/script.js b/script.js new file mode 100644 index 0000000..8300fe9 --- /dev/null +++ b/script.js @@ -0,0 +1,42 @@ +/** + * + * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) + * @author Gerry Weißbach <gweissbach@inetsoftware.de> + */ + +var googleanalytics_trackLink = function(link, pr...
tatewake/dokuwiki-plugin-googleanalytics
46926853afe73e0db3a452ff2ce5173f4b0adde2
Add plugin info file
diff --git a/plugin.info.txt b/plugin.info.txt new file mode 100644 index 0000000..b9f7069 --- /dev/null +++ b/plugin.info.txt @@ -0,0 +1,8 @@ +base googleanalytics +author Terence J. Grant, +email tjgrant@tatewake.com, +date 2013-02-23, +name Google Analytics Plugin, +desc Plugin to embed your google an...
tatewake/dokuwiki-plugin-googleanalytics
ee77cee0267595441d78a7f793512a89c903e589
removed php close tag
diff --git a/action.php b/action.php index 3628165..5e50c5f 100644 --- a/action.php +++ b/action.php @@ -1,48 +1,47 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exten...
tatewake/dokuwiki-plugin-googleanalytics
77ddf0166211237bf1ce754a3dbd1d43efb47982
Add ga scripts on page bottom.
diff --git a/action.php b/action.php index 116d906..3628165 100644 --- a/action.php +++ b/action.php @@ -1,45 +1,48 @@ -<?php +<?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalyti...
tatewake/dokuwiki-plugin-googleanalytics
f76af2aa4ece096363bb2b1035f72aaba4ba22df
Added Japanese translation file.
diff --git a/lang/ja/settings.php b/lang/ja/settings.php new file mode 100644 index 0000000..e9e29fd --- /dev/null +++ b/lang/ja/settings.php @@ -0,0 +1,4 @@ +<?php +$lang['GAID'] = 'Google Analitycs ID'; +$lang['dont_count_admin'] = '管理者を解析対象外にする'; +$lang['dont_count_users'] = 'ログインユã...
tatewake/dokuwiki-plugin-googleanalytics
6d406df07fb840c05b556ee1f576045eed211b88
Added Chinese Simplified translate file.
diff --git a/lang/zh/settings.php b/lang/zh/settings.php new file mode 100644 index 0000000..24586bc --- /dev/null +++ b/lang/zh/settings.php @@ -0,0 +1,4 @@ +<?php +$lang['GAID'] = 'Google Analitycs 跟踪 ID'; +$lang['dont_count_admin'] = '不统计管理员和超级管理员'; +$lang['dont_count_users'] = '不统计...
tatewake/dokuwiki-plugin-googleanalytics
34988946ab1ab1e7c0c4b38e73770d93a586ab0c
Changed the tracking code to the async one.
diff --git a/action.php b/action.php index be1c6fa..116d906 100644 --- a/action.php +++ b/action.php @@ -1,51 +1,45 @@ <?php if(!defined('DOKU_INC')) die(); if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(DOKU_PLUGIN.'action.php'); class action_plugin_googleanalytics exte...
alediaferia/webpagewatcher
96def4deac1078d59c0f842b7d4dcf0a2aff8cca
ui improvements
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ac1d65..2578087 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,37 +1,38 @@ cmake_minimum_required(VERSION 2.6) CONFIGURE_FILE( "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ON...
alediaferia/webpagewatcher
c862a7ce4b8710c52a45b303183c9649192e7d90
improving ui
diff --git a/previewwidget.ui b/previewwidget.ui new file mode 100644 index 0000000..6f020a2 --- /dev/null +++ b/previewwidget.ui @@ -0,0 +1,44 @@ +<ui version="4.0" > + <class>PreviewWidget</class> + <widget class="QWidget" name="PreviewWidget" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + ...
solidsnack/shuffle
aec8d3671a9548767d9df2acb2fb996b43391304
Including samples and a style file.
diff --git a/sample-run/README b/sample-run/README new file mode 100644 index 0000000..1b504e9 --- /dev/null +++ b/sample-run/README @@ -0,0 +1,7 @@ + + Generated with: + + :; ../dist/build/shuffle-bingo-html/shuffle-bingo-html 10 < list | tar x + + The image and style files have already been placed in the output dir...
solidsnack/shuffle
99548e202839edec0d5032fc1e1857d5f2cd7b3f
Works okay.
diff --git a/ShuffleBingoHTML.hs b/ShuffleBingoHTML.hs index d9e05ca..1676f23 100755 --- a/ShuffleBingoHTML.hs +++ b/ShuffleBingoHTML.hs @@ -1,126 +1,128 @@ #!/usr/bin/env runhaskell import Data.Word import qualified Data.List as List import qualified Data.Set as Set import qualified Data.ByteString.Lazy as By...
solidsnack/shuffle
b6cef1e64c8c2f2ac4405ffb4079ed26cdf46d59
Not quite right but probably the most HTML I will use.
diff --git a/ShuffleBingoHTML.hs b/ShuffleBingoHTML.hs index 456c4d0..d9e05ca 100755 --- a/ShuffleBingoHTML.hs +++ b/ShuffleBingoHTML.hs @@ -1,114 +1,126 @@ #!/usr/bin/env runhaskell import Data.Word import qualified Data.List as List import qualified Data.Set as Set import qualified Data.ByteString.Lazy as By...
solidsnack/shuffle
3c1c2b11a2ee7afd734ab3c252ee760d36a31cbb
Too many table cells :(
diff --git a/ShuffleBingoHTML.hs b/ShuffleBingoHTML.hs index 017ab54..456c4d0 100755 --- a/ShuffleBingoHTML.hs +++ b/ShuffleBingoHTML.hs @@ -1,114 +1,114 @@ #!/usr/bin/env runhaskell import Data.Word import qualified Data.List as List import qualified Data.Set as Set import qualified Data.ByteString.Lazy as By...
solidsnack/shuffle
4179ad27db4f71f21ce63ead0078fb3397b3e14f
Now with random, unique lines in each board (instead of a combination or permutation).
diff --git a/ShuffleBingoHTML.hs b/ShuffleBingoHTML.hs index 52b1cac..017ab54 100755 --- a/ShuffleBingoHTML.hs +++ b/ShuffleBingoHTML.hs @@ -1,112 +1,114 @@ #!/usr/bin/env runhaskell import Data.Word import qualified Data.List as List import qualified Data.Set as Set import qualified Data.ByteString.Lazy as By...
solidsnack/shuffle
3111361b6175bb27252be792cdbc71376235f9b3
Missing word in docs.
diff --git a/ShuffleBingoHTML.hs b/ShuffleBingoHTML.hs index 28f7cbf..52b1cac 100755 --- a/ShuffleBingoHTML.hs +++ b/ShuffleBingoHTML.hs @@ -1,112 +1,112 @@ #!/usr/bin/env runhaskell import Data.Word import qualified Data.List as List import qualified Data.Set as Set import qualified Data.ByteString.Lazy as By...
solidsnack/shuffle
58258ccbb9f45d0626c0c8fb2eaf8984112aaaeb
Added help and correct time stamps.
diff --git a/ShuffleBingoHTML.hs b/ShuffleBingoHTML.hs index 1234d9c..28f7cbf 100755 --- a/ShuffleBingoHTML.hs +++ b/ShuffleBingoHTML.hs @@ -1,108 +1,112 @@ #!/usr/bin/env runhaskell import Data.Word import qualified Data.List as List import qualified Data.Set as Set import qualified Data.ByteString.Lazy as By...