repo string | commit string | message string | diff string |
|---|---|---|---|
numpy/numpy.org | c313a1e715890bf69002ec88511b5f6cd5f46ae1 | Use new grid syntax (#733) | diff --git a/content/en/_index.md b/content/en/_index.md
index 55bbace..8f69427 100644
--- a/content/en/_index.md
+++ b/content/en/_index.md
@@ -1,49 +1,49 @@
---
title:
---
-{{< grid columns="1 2 2 3" >}}
+{{< grid1 columns="1 2 2 3" >}}
-{{< card >}}
+[[item]]
+type = 'card'
title = 'Powerful N-dimensional ar... |
rmiddle/shurly | 33142980bc25a0cd407c213d7822fc036b3e13e4 | Adding PHP output format to the README file | diff --git a/shurly_service/README.txt b/shurly_service/README.txt
index 70aeea2..8b19635 100644
--- a/shurly_service/README.txt
+++ b/shurly_service/README.txt
@@ -1,25 +1,28 @@
SHORTENING A URL:
-------------------------------
Default format is JSON:
http://lbt.me/shurly/api/shorten?longUrl=http://www.lullabot.co... |
rmiddle/shurly | 299034636abba03f5069f8928eea7c0849a98d10 | fixing problem (user error) with double "http://" | diff --git a/shurly.module b/shurly.module
index 578bb42..1fb91e8 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,804 +1,808 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | 435d67051149bfe20f6fdc0717b9020db069b179 | hacking ZeroClipboard to position the Flash correctly | diff --git a/shurly.module b/shurly.module
index 1170741..578bb42 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,709 +1,709 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | cd70f74b5b025f7c7fca2110a9765b125b2c4c18 | moving JS includes into theme function and adding conditional to ZeroClipboard call for better compatibility | diff --git a/shurly.js b/shurly.js
index 0311219..18fdf7f 100644
--- a/shurly.js
+++ b/shurly.js
@@ -1,15 +1,17 @@
Drupal.behaviors.shurly = function() {
$('#edit-result').focus(function(){
$(this).select();
});
//.data('origBG', $(this).css('backgroundColor'));
- var clip = new ZeroClipboard.Client();
... |
rmiddle/shurly | 4fa08b60dad1463bfde78e7c70d10e01ede21848 | correcting documentation | diff --git a/shurly_service/README.txt b/shurly_service/README.txt
index 9817a2a..70aeea2 100644
--- a/shurly_service/README.txt
+++ b/shurly_service/README.txt
@@ -1,25 +1,25 @@
SHORTENING A URL:
-------------------------------
Default format is JSON:
http://lbt.me/shurly/api/shorten?longUrl=http://www.lullabot.co... |
rmiddle/shurly | f6e8f86220148fc89ec71692d983b09e16eb0c8d | Return error for invalid API key | diff --git a/shurly_service/shurly_service.inc b/shurly_service/shurly_service.inc
index 123cdf6..6adbc2f 100644
--- a/shurly_service/shurly_service.inc
+++ b/shurly_service/shurly_service.inc
@@ -1,142 +1,156 @@
<?php
// $Id$
/**
* @file
* Link general search functionalities to services module.
*/
/**
*... |
rmiddle/shurly | f40cefed0f067293bffc8a12b647920e9c475142 | Improving API documentation (slightly) | diff --git a/shurly_service/README.txt b/shurly_service/README.txt
index 56a9b95..9817a2a 100644
--- a/shurly_service/README.txt
+++ b/shurly_service/README.txt
@@ -1,13 +1,25 @@
SHORTENING A URL:
-------------------------------
Default format is JSON:
http://lbt.me/shurly/api/shorten?longUrl=http://www.lullabot.co... |
rmiddle/shurly | 99a62a3cc25ae8a65e4bf3454206d07c6a379b5a | Adding API key support to shurly/expand | diff --git a/shurly_service/shurly_service.inc b/shurly_service/shurly_service.inc
index 2bb0d75..123cdf6 100644
--- a/shurly_service/shurly_service.inc
+++ b/shurly_service/shurly_service.inc
@@ -1,136 +1,142 @@
<?php
// $Id$
/**
* @file
* Link general search functionalities to services module.
*/
/**
*... |
rmiddle/shurly | 1c017040c0ccd8d5a20331d78ca39bd0dbb5fba5 | Working API key generation implemented as a block. Users can generate an API key, and use it to associate short URLs with their account when accessing through the API. | diff --git a/shurly_service/shurly_api_keys.inc b/shurly_service/shurly_api_keys.inc
new file mode 100644
index 0000000..2dc5202
--- /dev/null
+++ b/shurly_service/shurly_api_keys.inc
@@ -0,0 +1,26 @@
+<?php
+
+define('API_VERSION', 'A');
+
+/**
+ * Generate a new api key for this user and put it into the database
+ * ... |
rmiddle/shurly | 49fc9c67afb728bdb44d4f6e46f72ef84297484f | Better long URL validation includes prevention of links back to links on the site -- a.k.a. instant DOS attacks. Also fixing copy button in Chrome. | diff --git a/shurly.module b/shurly.module
index 0607f12..2e9e3f2 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,734 +1,806 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | a56d744341281151ef87a377b240e0c393ae032e | Fixing copy button in Chrome | diff --git a/shurly.css b/shurly.css
index 67bbfae..19aea5f 100644
--- a/shurly.css
+++ b/shurly.css
@@ -1,43 +1,44 @@
.shurly-choose {
color: #999;
}
.shurly-result {
border: 3px #999 solid;
padding: 5px;
margin: 5px 0;
}
.shurly-result .form-item {
margin: 0;
}
#shurly-copy-container {
... |
rmiddle/shurly | e2346864bd8c43547b0a685c4612f6ae4710084e | Adding theme function for the form | diff --git a/shurly.module b/shurly.module
index 9772ee9..0607f12 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,710 +1,734 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | 1b33bf3b141caa5f0fb65fe7033dd095449b8a94 | forgotten ; | diff --git a/shurly.module b/shurly.module
index 9144835..9772ee9 100644
--- a/shurly.module
+++ b/shurly.module
@@ -178,533 +178,533 @@ function shurly_create_form($form_state) {
if (isset($form_state['storage']['shurly']['final_url'])) {
$form['result'] = array(
'#type' => 'textfield',
'#siz... |
rmiddle/shurly | 9f5dc26d4384eb621e4f7a31e0ed1058b45ace78 | hook_shurly_redirect() got reverted accidentally... fixing | diff --git a/shurly.module b/shurly.module
index f6f06ad..9144835 100644
--- a/shurly.module
+++ b/shurly.module
@@ -174,533 +174,537 @@ function shurly_create_form($form_state) {
'#field_suffix' => ' <span class="shurly-choose"><--- ' . t('create custom URL') . '</span>',
'#default_value' => $short_defaul... |
rmiddle/shurly | 92e44891faa407f06741fe3171e0319a8a4f5452 | fixing default views glitch | diff --git a/shurly.module b/shurly.module
index da1597b..f6f06ad 100644
--- a/shurly.module
+++ b/shurly.module
@@ -174,538 +174,533 @@ function shurly_create_form($form_state) {
'#field_suffix' => ' <span class="shurly-choose"><--- ' . t('create custom URL') . '</span>',
'#default_value' => $short_defaul... |
rmiddle/shurly | db561bc45e245981302a5ee25d1e6c9638d96a8b | Updating admin default view to display as a tab | diff --git a/views/shurly.views_default.inc b/views/shurly.views_default.inc
index e8edbf1..620610a 100644
--- a/views/shurly.views_default.inc
+++ b/views/shurly.views_default.inc
@@ -1,876 +1,876 @@
<?php
// $Id$
/**
* Implementation of hook_views_default_views().
*/
function shurly_views_default_views() {
... |
rmiddle/shurly | 37d288da9571f80ef03f5afbe7792629fd874d7a | adding hook_shurly_redirect() capability | diff --git a/shurly.module b/shurly.module
index f6f06ad..da1597b 100644
--- a/shurly.module
+++ b/shurly.module
@@ -174,533 +174,538 @@ function shurly_create_form($form_state) {
'#field_suffix' => ' <span class="shurly-choose"><--- ' . t('create custom URL') . '</span>',
'#default_value' => $short_defaul... |
rmiddle/shurly | 1c1cee4827450ba56acf2512044db228a43acb94 | Fixing bug where existing URLs are saved back into the database... when submitted through the api | diff --git a/shurly.module b/shurly.module
index 98741d2..f6f06ad 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,698 +1,706 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | 277ee4d6defc9a8e7b9464ad3c2f9d6c3ac6311d | Adding flood control rate limiting. In D6, this requires an extra table -- adding table to schema and update function | diff --git a/shurly.install b/shurly.install
index a900582..9d0a608 100644
--- a/shurly.install
+++ b/shurly.install
@@ -1,91 +1,149 @@
<?php
// $Id$
/**
* @file Shurly install file
*/
/**
* Implement hook_schema().
*/
function shurly_schema() {
$schema['shurly'] = array(
'description' => t('UR... |
rmiddle/shurly | b91df8fe88fda42156fcda0aae0fd907921e7d9d | shurly/api/expand functionality | diff --git a/shurly.module b/shurly.module
index e5008ff..5ffe5f2 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,539 +1,560 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | 7fa626e5ab04f8f8850202bdab48045d87e7d2ae | fixing shortUrl returned by shorty_shorten() to be a complete absolute URL | diff --git a/shurly.module b/shurly.module
index 60bb86d..e5008ff 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,539 +1,539 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | a6f6d7b5a25169c526accef2c634c7f8e12b25ba | Working handrolled Shurly web service module | diff --git a/shurly.info b/shurly.info
index dae7ba3..be62239 100755
--- a/shurly.info
+++ b/shurly.info
@@ -1,5 +1,6 @@
; $Id$
name = ShURLy
+package = ShURLy
description = A complete short URL service.
dependencies[] = views
core = 6.x
\ No newline at end of file
diff --git a/shurly.module b/shurly.module
index ... |
rmiddle/shurly | 978a4760ab6b477693fb59c21c3cf652cd2b7fb1 | setting up hook_menu | diff --git a/shurly_service/shurly_service.module b/shurly_service/shurly_service.module
index 652f804..f6b7814 100644
--- a/shurly_service/shurly_service.module
+++ b/shurly_service/shurly_service.module
@@ -1,57 +1,33 @@
<?php
// $Id$
/**
* @file
* Link ShURLy functionalities to services module.
*/
/**
... |
rmiddle/shurly | 62e179fb3f0d9f9dd6dc13d00700fe55277e53d7 | ShURLy integration with Services module... questionable attempt... | diff --git a/shurly_service/shurly_service.inc b/shurly_service/shurly_service.inc
new file mode 100644
index 0000000..5042682
--- /dev/null
+++ b/shurly_service/shurly_service.inc
@@ -0,0 +1,144 @@
+<?php
+// $Id$
+/**
+ * @file
+ * Link general search functionalities to services module.
+ */
+
+/**
+ * Return search... |
rmiddle/shurly | 4ae44d3ab8144a6b2fbc7ebf269804c4240cf13a | Adding new shurly_shorten() api function to module for quick URL shortening via function call | diff --git a/shurly.module b/shurly.module
index 3bfd5d0..5055bba 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,480 +1,538 @@
<?php
// $Id$
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - fix zeroclipboard position in Chrome
... |
rmiddle/shurly | bf3599e67b9fb7ab68dff616f57f04f268cfe3e4 | Updating README and todos | diff --git a/README.txt b/README.txt
index 24c1515..ba5b320 100644
--- a/README.txt
+++ b/README.txt
@@ -1,48 +1,52 @@
// $Id$
ShURLy is a URL shortening service implemented as a module for Drupal. This module was written by Jeff Robbins for Lullabot's "lbt.me" shortening service at http://lbt.me
http://www.yout... |
rmiddle/shurly | 8fed061326e724cf1b358c68fba2eacd59143741 | newer/better admin view with exposed filters | diff --git a/views/shurly.views_default.inc b/views/shurly.views_default.inc
index 0abeaa1..e8edbf1 100644
--- a/views/shurly.views_default.inc
+++ b/views/shurly.views_default.inc
@@ -1,763 +1,876 @@
<?php
// $Id$
-/**
- * @file Shurly default views
- */
-
/**
* Implementation of hook_views_default_views().
*... |
rmiddle/shurly | bf7a2b2fb1dcee33f3919ef4e377e088117c90a3 | New default views. More/better views options for short URLs. | diff --git a/views/shurly.views.inc b/views/shurly.views.inc
index 8523f72..6f0a1a7 100644
--- a/views/shurly.views.inc
+++ b/views/shurly.views.inc
@@ -1,257 +1,257 @@
<?php
// $Id$
/**
* @file Shurly Views data include file
*/
function shurly_views_data() {
// Basic table information.
$data['shu... |
rmiddle/shurly | 0acd713abfa4e5ca18a5ffcf670a07af48ce80d6 | rearranging files | diff --git a/views/shurly.views.inc b/views/shurly.views.inc
new file mode 100644
index 0000000..8523f72
--- /dev/null
+++ b/views/shurly.views.inc
@@ -0,0 +1,257 @@
+<?php
+// $Id$
+
+/**
+ * @file Shurly Views data include file
+ */
+
+function shurly_views_data() {
+
+ // Basic table information.
+
+ $data['shurly... |
rmiddle/shurly | 75951edbe8af63abd1cbae2c19140e8c1eefca6b | rearranging files | diff --git a/README.txt b/README.txt
index 27f3b00..24c1515 100644
--- a/README.txt
+++ b/README.txt
@@ -1,46 +1,48 @@
+// $Id$
+
ShURLy is a URL shortening service implemented as a module for Drupal. This module was written by Jeff Robbins for Lullabot's "lbt.me" shortening service at http://lbt.me
http://www.yout... |
rmiddle/shurly | 28f41b3e8a8569a8c433169a07874d18b39fb08c | Fix for #1. Removed bootstrapping of path.inc... which had the effect GREATLY speeding up the redirect process. Improvements overall! | diff --git a/shurly.module b/shurly.module
index da9fd62..0535bba 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,476 +1,477 @@
<?php
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - create REST API
* - prevent endless loop links... |
rmiddle/shurly | 9ffd6f63a85621107adeef955a73fe9da65e2abc | Updating README to mention use of UTF8 characters | diff --git a/README.txt b/README.txt
index bfa922d..27f3b00 100644
--- a/README.txt
+++ b/README.txt
@@ -1,46 +1,46 @@
ShURLy is a URL shortening service implemented as a module for Drupal. This module was written by Jeff Robbins for Lullabot's "lbt.me" shortening service at http://lbt.me
http://www.youtube.com/wat... |
rmiddle/shurly | 38242fa2624937754e8464e21428145e303b4af3 | UTF8 URL's, baby! | diff --git a/shurly.module b/shurly.module
index 2094bf3..da9fd62 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,474 +1,476 @@
<?php
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - create REST API
* - prevent endless loop links... |
rmiddle/shurly | b6f0e9907e5f300723233234fcc0a5f4be05bcc4 | More enlightening description | diff --git a/README.txt b/README.txt
index 9e7fea6..bfa922d 100644
--- a/README.txt
+++ b/README.txt
@@ -1,44 +1,46 @@
ShURLy is a URL shortening service implemented as a module for Drupal. This module was written by Jeff Robbins for Lullabot's "lbt.me" shortening service at http://lbt.me
+http://www.youtube.com/wat... |
rmiddle/shurly | 3ae3fe7b591769be9f1edfa754e4ba5ff221d441 | I think there's an unnecessary join in the views definition. Commenting it out. | diff --git a/shurly.views.inc b/shurly.views.inc
index 3f248cb..8523f72 100644
--- a/shurly.views.inc
+++ b/shurly.views.inc
@@ -1,257 +1,257 @@
<?php
// $Id$
/**
* @file Shurly Views data include file
*/
function shurly_views_data() {
// Basic table information.
$data['shurly']['table']['group'] ... |
rmiddle/shurly | fd1e31f2732de5a6ee99573de6e22ac198f83a2b | Using 'delete own URLs' permission in delete link handler | diff --git a/shurly_handler_field_shurly_link_delete.inc b/shurly_handler_field_shurly_link_delete.inc
index 3e8a101..eef1832 100644
--- a/shurly_handler_field_shurly_link_delete.inc
+++ b/shurly_handler_field_shurly_link_delete.inc
@@ -1,47 +1,47 @@
<?php
// $Id$
/**
* @file Shurly Views handler for delete link... |
rmiddle/shurly | e05aef515d36c24f0808be9cfa80ccebda644b52 | Tweaking out default Views | diff --git a/shurly.views_default.inc b/shurly.views_default.inc
index 854d015..7409e70 100644
--- a/shurly.views_default.inc
+++ b/shurly.views_default.inc
@@ -1,645 +1,657 @@
<?php
// $Id$
/**
* @file Shurly default views
*/
/**
* Implementation of hook_views_default_views().
*/
function shurly_views... |
rmiddle/shurly | 9c159287a4923fd7d440c3681ff8a45be7e7383e | A LOT more content in the README file | diff --git a/README.txt b/README.txt
index 8203f53..9e7fea6 100644
--- a/README.txt
+++ b/README.txt
@@ -1,4 +1,44 @@
-ShURLy is a URL shortening service implemented as a module for Drupal.
+ShURLy is a URL shortening service implemented as a module for Drupal. This module was written by Jeff Robbins for Lullabot's "lb... |
rmiddle/shurly | 1afcb109b016150f6bd7e2e20fc91c03d7fed717 | added Views as a dependency | diff --git a/shurly.info b/shurly.info
index 63c2ada..dae7ba3 100755
--- a/shurly.info
+++ b/shurly.info
@@ -1,4 +1,5 @@
; $Id$
-name = Shurly
+name = ShURLy
description = A complete short URL service.
-core = 6.x
+dependencies[] = views
+core = 6.x
\ No newline at end of file
|
rmiddle/shurly | f2022cfba37299175bfae18672c043185e58eb69 | Add new permission for 'delete own URLs' | diff --git a/shurly.module b/shurly.module
index a7fcad6..2094bf3 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,470 +1,474 @@
<?php
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - click to copy link in views
* - create REST API
* - prevent endless loop links... |
rmiddle/shurly | e49b6c8523a3dd8e74303054ca0f2b4018f2f1d5 | Moved delete to shurly/delete. Created menu access callback function and rearranged the way that the delete form is called. | diff --git a/shurly.module b/shurly.module
index 0df9691..a7fcad6 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,464 +1,470 @@
<?php
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
- * - (option to) make short URL Views fields longer in listing
* - click to copy link i... |
rmiddle/shurly | bee26b96d2ed358e536512ed39aad738d6341cab | Cleaning up Views handler code and adding proper access checks before displaying delete links | diff --git a/shurly_handler_field_short_url.inc b/shurly_handler_field_short_url.inc
index dc90eba..fc70a2b 100644
--- a/shurly_handler_field_short_url.inc
+++ b/shurly_handler_field_short_url.inc
@@ -1,43 +1,43 @@
<?php
// $Id$
/**
- * @file Shurly Views handler for test link
+ * @file Shurly Views handler for sh... |
rmiddle/shurly | 60279db80492aa7768b35f1604ef2231fc9479e9 | delete callback | diff --git a/shurly.module b/shurly.module
index 92ebb6a..0df9691 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,428 +1,464 @@
<?php
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - (option to) make short URL Views fields longer in listing
* - click to copy link i... |
rmiddle/shurly | 14c61c1e07152ce64cff273993249af751e8e297 | short url field handler | diff --git a/shurly.views.inc b/shurly.views.inc
index 09b1a36..3f248cb 100644
--- a/shurly.views.inc
+++ b/shurly.views.inc
@@ -1,252 +1,257 @@
<?php
// $Id$
/**
* @file Shurly Views data include file
*/
function shurly_views_data() {
// Basic table information.
$data['shurly']['table']['group'] ... |
rmiddle/shurly | e8de930901a13b88d0da72764719228cda6bf2ce | short url field handler | diff --git a/shurly_handler_field_short_url.inc b/shurly_handler_field_short_url.inc
new file mode 100644
index 0000000..dc90eba
--- /dev/null
+++ b/shurly_handler_field_short_url.inc
@@ -0,0 +1,43 @@
+<?php
+// $Id$
+
+/**
+ * @file Shurly Views handler for test link
+ */
+
+/**
+ * Field handler to present a link to ... |
rmiddle/shurly | 6f2df34e9fad9b3a0ff36e39aa15bb47afc0a6e1 | Coder module cleanup | diff --git a/shurly.install b/shurly.install
index 900b363..a900582 100644
--- a/shurly.install
+++ b/shurly.install
@@ -1,86 +1,91 @@
<?php
+// $Id$
+
+/**
+ * @file Shurly install file
+ */
/**
* Implement hook_schema().
*/
function shurly_schema() {
$schema['shurly'] = array(
'description' => t('URL... |
rmiddle/shurly | d3f7f63e7283408256b1667e68b802587acb9e32 | Adding new permissions for 'Enter custom URLs', 'View own URL stats' | diff --git a/shurly.module b/shurly.module
index 078830a..c88abc1 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,422 +1,425 @@
<?php
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo
* - create REST API
* - prevent endless loop links (back to themselves or others on th... |
rmiddle/shurly | e9d6e0d49e87fbd6c923bfbdd70d325d64e60e02 | Adding new "My URLs" default view | diff --git a/shurly.views_default.inc b/shurly.views_default.inc
index 61c9cf9..450815d 100644
--- a/shurly.views_default.inc
+++ b/shurly.views_default.inc
@@ -1,335 +1,641 @@
<?php
/**
* Implementation of hook_views_default_views().
*/
function shurly_views_default_views() {
/*
* View 'shurly_admin'... |
rmiddle/shurly | 65fea10497d680c5250606e13fad9117c38a24c3 | Cleaning up and fixing some bugs | diff --git a/shurly.module b/shurly.module
index b45a9b5..078830a 100644
--- a/shurly.module
+++ b/shurly.module
@@ -1,440 +1,422 @@
<?php
-//include_once('shurly.views.inc');
-//include_once('views_handler_field_shurly_link.inc');
-
/**
* @file description http://www.youtube.com/watch?v=Qo7qoonzTCE
*
* @todo... |
rmiddle/shurly | c43028bd366fe2e94953000660e79120823cddb2 | Working Views handlers. Working default View. Good stuff! | diff --git a/shurly.views.inc b/shurly.views.inc
index e756234..691e635 100644
--- a/shurly.views.inc
+++ b/shurly.views.inc
@@ -1,220 +1,247 @@
<?php
function shurly_views_data() {
// Basic table information.
$data['shurly']['table']['group'] = t('Shurly');
// Advertise this table as a possible bas... |
rmiddle/shurly | 58810f7ed8d1b67b9c7e47a57bb27d9cea36ddb0 | ShURLy Module initial commit to GitHub. *Mostly* working, with the exception of the current inability to delete links, no built-in views, and a non-working Views field handler | diff --git a/README.txt b/README.txt
index e69de29..8203f53 100644
--- a/README.txt
+++ b/README.txt
@@ -0,0 +1,4 @@
+ShURLy is a URL shortening service implemented as a module for Drupal.
+
+It was originally written by Jeff Robbins for Lullabot's "lbt.me" shortening service at http://lbt.me
+
diff --git a/shurly.css ... |
orlandov/couchwiki | 3d41f23cac9c937bf9fb392c201cbd309e1c79dd | Refactor create_update into two functions | diff --git a/couchwiki/config/routing.py b/couchwiki/config/routing.py
index e55abfc..f4e7593 100644
--- a/couchwiki/config/routing.py
+++ b/couchwiki/config/routing.py
@@ -1,35 +1,35 @@
"""Routes configuration
The more specific and detailed routes should be defined first so they
may take precedent over the more g... |
orlandov/couchwiki | ba44342ae304301eef0bc8bae77f767601592a00 | Add the colour white | diff --git a/couchwiki/public/css/style.css b/couchwiki/public/css/style.css
index 959a3c2..0403930 100644
--- a/couchwiki/public/css/style.css
+++ b/couchwiki/public/css/style.css
@@ -1,40 +1,42 @@
.background-1 { background-color: #0086FF }
.background-2 { background-color: #406180 }
.background-3 { background-col... |
orlandov/couchwiki | 65115d41f783b37785d84ba28de52ef98b290dee | Use h.url_for instead of hardcoding paths | diff --git a/couchwiki/templates/edit_page.html b/couchwiki/templates/edit_page.html
index aea8ccb..00a85e5 100644
--- a/couchwiki/templates/edit_page.html
+++ b/couchwiki/templates/edit_page.html
@@ -1,27 +1,27 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dt... |
orlandov/couchwiki | bb16d1b046cf84da9a46ab7597bf9ad75d5d3147 | Refactor create_update into two functions | diff --git a/couchwiki/controllers/pages.py b/couchwiki/controllers/pages.py
index f0c3b9c..f0ce847 100644
--- a/couchwiki/controllers/pages.py
+++ b/couchwiki/controllers/pages.py
@@ -1,66 +1,79 @@
import logging
from pylons import request, response, session, tmpl_context as c
from pylons.controllers.util import ... |
orlandov/couchwiki | bce1ee6f66f6b4da4c099c77033d1e082cd64c36 | Change the application prefix to '/wiki' | diff --git a/couchwiki/config/middleware.py b/couchwiki/config/middleware.py
index 8a95a24..f61f3d4 100644
--- a/couchwiki/config/middleware.py
+++ b/couchwiki/config/middleware.py
@@ -1,69 +1,71 @@
"""Pylons middleware initialization"""
from beaker.middleware import CacheMiddleware, SessionMiddleware
from paste.cas... |
orlandov/couchwiki | 60f3ac7ed8f33c6d4cf77515c6e689089c2d3a57 | Allow us to use the SCGI forked server mode | diff --git a/couchwiki.egg-info/entry_points.txt b/couchwiki.egg-info/entry_points.txt
index 27dd18d..55e3373 100644
--- a/couchwiki.egg-info/entry_points.txt
+++ b/couchwiki.egg-info/entry_points.txt
@@ -1,7 +1,10 @@
[paste.app_factory]
main = couchwiki.config.middleware:make_app
[paste.app_install]... |
orlandov/couchwiki | 839b4a1b905dd88eaf746d862b823db62fc00903 | templates should now have a proper extension? | diff --git a/couchwiki/config/routing.py b/couchwiki/config/routing.py
index b149aea..e55abfc 100644
--- a/couchwiki/config/routing.py
+++ b/couchwiki/config/routing.py
@@ -1,43 +1,35 @@
"""Routes configuration
The more specific and detailed routes should be defined first so they
may take precedent over the more g... |
orlandov/couchwiki | 757ac0b34e57c5701d93dc17becda3bdc7254eb9 | port over more changes from old version | diff --git a/couchwiki/config/routing.py b/couchwiki/config/routing.py
index 3ff8e54..b149aea 100644
--- a/couchwiki/config/routing.py
+++ b/couchwiki/config/routing.py
@@ -1,26 +1,43 @@
"""Routes configuration
The more specific and detailed routes should be defined first so they
may take precedent over the more g... |
orlandov/couchwiki | 1f6a47367157c07b6fcdec00d918f60dc648a728 | copy over all the controllers and model and templates from the old version | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..159d548
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.py[co]
+.*.sw[a-z]
diff --git a/couchwiki/controllers/pages.py b/couchwiki/controllers/pages.py
new file mode 100644
index 0000000..14445a4
--- /dev/null
+++ b/couchwiki/controllers/pages.p... |
orlandov/couchwiki | 811140e71435d88786b7ae1c4f2dc4e2fe311f9f | initial add of couch wiki | diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..9ac6bec
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,3 @@
+include couchwiki/config/deployment.ini_tmpl
+recursive-include couchwiki/public *
+recursive-include couchwiki/templates *
diff --git a/README.txt b/README.txt
new file mode 100644
index ... |
mcherry/WinProwl | 5e1a3844cf2bc987675fdad7e323107d7e167447 | Fixed warning about variable being used before assigning a value | diff --git a/WinProwl/Module1.vb b/WinProwl/Module1.vb
index d749d00..0c82347 100644
--- a/WinProwl/Module1.vb
+++ b/WinProwl/Module1.vb
@@ -1,134 +1,134 @@
Module Module1
Sub Main(ByVal sArgs() As String)
Dim oWeb As New System.Net.WebClient
- Dim strResult As String
+ Dim strResult A... |
mcherry/WinProwl | 591c06a5bf4fd440471577e99c50fd1b9eb67154 | still figuring this out | diff --git a/WinProwl.suo b/WinProwl.suo
index 291db1c..7788e6b 100644
Binary files a/WinProwl.suo and b/WinProwl.suo differ
diff --git a/WinProwl/Module1.vb b/WinProwl/Module1.vb
index 497f07f..d749d00 100644
--- a/WinProwl/Module1.vb
+++ b/WinProwl/Module1.vb
@@ -1,134 +1,134 @@
Module Module1
Sub Main(ByV... |
mcherry/WinProwl | 9fc527e1009b9465b3bba5c839a0950493421747 | project upload | diff --git a/WinProwl.sln b/WinProwl.sln
new file mode 100644
index 0000000..8f4c707
--- /dev/null
+++ b/WinProwl.sln
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinProwl", "WinProwl\WinProwl.vbproj", "{C2... |
brantb/VanaTime | 973447f11d17517d5514b1aa6aa5b19ccd846f0a | OCD compliance | diff --git a/vanatime.js b/vanatime.js
index 3ec9980..79b26fa 100644
--- a/vanatime.js
+++ b/vanatime.js
@@ -1,327 +1,327 @@
// VanaTime.js: A JavaScript library for Final Fantasy XI timekeeping.
(function (window) {
////////////////
// Constants
// Earth time : 2002/06/23 16:00 GMT
// Vana'... |
brantb/VanaTime | ebe815f73d6bab249dcb3c419324cf337893301f | Added a demo page | diff --git a/demo.html b/demo.html
new file mode 100644
index 0000000..390fef6
--- /dev/null
+++ b/demo.html
@@ -0,0 +1,57 @@
+<!doctype html>
+<html>
+<head>
+ <title>VanaTime demo</title>
+ <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
+ <script type="... |
brantb/VanaTime | f1193e60791df838d67922d31cb067a017bb6088 | Fixed next() and previous() not working if you didn't pass a parameter | diff --git a/vanatime.js b/vanatime.js
index e0a69c4..3ec9980 100644
--- a/vanatime.js
+++ b/vanatime.js
@@ -1,327 +1,327 @@
// VanaTime.js: A JavaScript library for Final Fantasy XI timekeeping.
(function (window) {
////////////////
// Constants
// Earth time : 2002/06/23 16:00 GMT
// Vana'... |
brantb/VanaTime | 89ff951bb7ff221df027f197bcf4ae925401d108 | Fixed more formatting | diff --git a/README.md b/README.md
index c83232f..e5aa8fa 100644
--- a/README.md
+++ b/README.md
@@ -1,146 +1,148 @@
-VanaTime
-========
-
-VanaTime is a JavaScript library that tracks FFXI game time. It was written by me (Rahskala/Bahamut) in mid-2010 for a never-finished Windows Sidebar gadget. I no longer play FF... |
brantb/VanaTime | 74a4c41f6dcae14e2c8d47dd972d596f416d1b30 | Fixed markdown, again | diff --git a/README.md b/README.md
index 7b166eb..c83232f 100644
--- a/README.md
+++ b/README.md
@@ -1,145 +1,146 @@
VanaTime
========
VanaTime is a JavaScript library that tracks FFXI game time. It was written by me (Rahskala/Bahamut) in mid-2010 for a never-finished Windows Sidebar gadget. I no longer play FF... |
brantb/VanaTime | 81d9ca7afdd658f1cd8e772e27ab2601ba0a8efb | God dammit, markdown. | diff --git a/README.md b/README.md
index f8e3489..7b166eb 100644
--- a/README.md
+++ b/README.md
@@ -1,143 +1,145 @@
VanaTime
========
VanaTime is a JavaScript library that tracks FFXI game time. It was written by me (Rahskala/Bahamut) in mid-2010 for a never-finished Windows Sidebar gadget. I no longer play FF... |
brantb/VanaTime | e9e4e4f97b6b5fc644589a159f52b97b556b53af | Added some docs | diff --git a/README b/README
new file mode 100644
index 0000000..f8e3489
--- /dev/null
+++ b/README
@@ -0,0 +1,143 @@
+VanaTime
+========
+
+VanaTime is a JavaScript library that tracks FFXI game time. It was written by me (Rahskala/Bahamut) in mid-2010 for a never-finished Windows Sidebar gadget. I no longer play F... |
brantb/VanaTime | d13cf0a67b448035c96d62e0e8aea0a6c7ed7c8f | fixed line endings, I think | diff --git a/vanatime.js b/vanatime.js
index e0a69c4..a9b8ac6 100644
--- a/vanatime.js
+++ b/vanatime.js
@@ -1,327 +1,327 @@
-// VanaTime.js: A JavaScript library for Final Fantasy XI timekeeping.
-
-(function (window) {
- ////////////////
- // Constants
- // Earth time : 2002/06/23 16:00 GMT
- // Vana'... |
SandyWalsh/FindYourTeammate | 00343b247f77868211c8ed65867d0200592ab3d9 | Fixed endless loop (last minute tweak) | diff --git a/FindYourTeammate.py b/FindYourTeammate.py
index 6e99861..d6a13c0 100644
--- a/FindYourTeammate.py
+++ b/FindYourTeammate.py
@@ -1,293 +1,293 @@
# Find Your Teammate
# (c) Dark Secret Software Inc, 2010
# Distributed under Apache Commons License.
import random
import unittest
import sys
from jinj... |
SandyWalsh/FindYourTeammate | 34276cdecd1bbf3a27de88d8f08bbfcfe543997d | Comment cleanup | diff --git a/FindYourTeammate.py b/FindYourTeammate.py
index 11bf57e..6e99861 100644
--- a/FindYourTeammate.py
+++ b/FindYourTeammate.py
@@ -1,291 +1,293 @@
# Find Your Teammate
# (c) Dark Secret Software Inc, 2010
# Distributed under Apache Commons License.
import random
import unittest
import sys
from jinj... |
SandyWalsh/FindYourTeammate | 22e32c5b68b5367aeb3b0b92c1c0fbebb546a471 | Slight formatting issues | diff --git a/FindYourTeammate.py b/FindYourTeammate.py
index 96e0f30..11bf57e 100644
--- a/FindYourTeammate.py
+++ b/FindYourTeammate.py
@@ -1,289 +1,291 @@
# Find Your Teammate
# (c) Dark Secret Software Inc, 2010
-#
+# Distributed under Apache Commons License.
+
import random
import unittest
import sys
+
from ... |
SandyWalsh/FindYourTeammate | afcefcc53df574212397ef115715efd337a68d54 | Added README | diff --git a/README b/README
new file mode 100644
index 0000000..5eb75d0
--- /dev/null
+++ b/README
@@ -0,0 +1,2 @@
+Built using Python 2.6+
+Requires Jinja for output ... http://jinja.pocoo.org/
\ No newline at end of file
|
walker/wlk_rsscloud | 8d46ffbbfb6fc12dbfe1f6219e78dae35563e478 | Incremented version number, minor changes, specified CURL neede | diff --git a/README.txt b/README.txt
index ce38922..3f42cfc 100644
--- a/README.txt
+++ b/README.txt
@@ -1,7 +1,7 @@
This is a plugin for Textpattern built by Walker Hamilton (http://walkerhamilton.com) that enables the use of RSSCloud. Portions of this plugin are based on the plugin initially implemented by Joseph Sc... |
walker/wlk_rsscloud | 57e6b4c27f01553c1b7fa3cf7a97229710b273a4 | Added new compressed | diff --git a/wlk_rsscloud.txt b/wlk_rsscloud.txt
index 332c93a..baf172c 100644
--- a/wlk_rsscloud.txt
+++ b/wlk_rsscloud.txt
@@ -1,331 +1,326 @@
# wlk_rsscloud v0.2
# A down and dirty RSSCloud plugin.
# Walker Hamilton
# http://walkerhamilton.com
# .............................................................. |
walker/wlk_rsscloud | 6e8da3d5b9992ad223bb8b8cfe1858242f0f45a1 | Fixed RSS Feed header | diff --git a/wlk_rsscloud.php b/wlk_rsscloud.php
index 0dffe9d..99d55b1 100644
--- a/wlk_rsscloud.php
+++ b/wlk_rsscloud.php
@@ -1,476 +1,490 @@
<?php
$plugin['version'] = '0.2';
$plugin['author'] = 'Walker Hamilton';
$plugin['author_uri'] = 'http://walkerhamilton.com';
$plugin['description'] = 'A down and dirty R... |
walker/wlk_rsscloud | 66cd4070ae0375691b1458badfdd10f3d65c99a9 | Minor tweaks | diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..ce38922
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,7 @@
+This is a plugin for Textpattern built by Walker Hamilton (http://walkerhamilton.com) that enables the use of RSSCloud. Portions of this plugin are based on the plugin initially implemented b... |
josegomez/GOLang-Samples | e545f966faa38e48c3dd956e82089a22888613ba | adding Hello Golang | diff --git a/golang-hello.go b/golang-hello.go
new file mode 100644
index 0000000..e7d5295
--- /dev/null
+++ b/golang-hello.go
@@ -0,0 +1,13 @@
+package main
+
+import (
+ "fmt"
+)
+
+
+func main() {
+ fmt.Printf("Hello GOLang\nYou are awesome!")
+}
+
+// Reformatted by jose Wed Sep 29 11:08:25 EDT 2010
+
|
jri/deepamehta3-importer | 6f7f79f1798aff4d8c6dd7491b631294305a4c04 | Adapt to upcoming DeepaMehta 4.0.3 | diff --git a/.gitignore b/.gitignore
index cd82fc7..c238cd0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,6 @@
.DS_Store
commit-message.txt
+
target/
+runner/
+deepamehta-db/
diff --git a/README.md b/README.md
index 4a63eec..445c768 100644
--- a/README.md
+++ b/README.md
@@ -1,44 +1,48 @@
-DeepaMehta 3 Impor... |
jri/deepamehta3-importer | 31516369d00d0e9119d2ca016f5ac2d08701f2f8 | Adapt to current version of deepamehta3-core | diff --git a/pom.xml b/pom.xml
index 13e957f..927521c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,43 +1,33 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>DeepaMehta 3 Importer</name>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta3-importer</artifactId>
<version>0.4.3-SNAPSHOT<... |
jri/deepamehta3-importer | ea2dc307a8f5b459e4a82f0fd976c1dcc07fb535 | Fix: class ClientContext imported. | diff --git a/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java b/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java
index 6ab18dc..4516222 100644
--- a/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java
+++ b/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java
@@ ... |
jri/deepamehta3-importer | b1fb3b469360bf1dddece49eaa9f53968391c04c | 1) Adapted to current version of deepamehta3-core (new class ClientContext). 2) Version number changed from 0.4.2 to 0.4.3-SNAPSHOT. | diff --git a/pom.xml b/pom.xml
index 59e0c66..13e957f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,43 +1,43 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>DeepaMehta 3 Importer</name>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta3-importer</artifactId>
- <version>0.4.2</version>... |
jri/deepamehta3-importer | 5b55f4b10cc21a512e6b9e8dc27f0a82097aca04 | DeepaMehta 3 v0.4.3 release: POM Version number updated. README updated. | diff --git a/README.md b/README.md
index 65a48ea..4a63eec 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,44 @@
-DeepaMehta 3
-============
+DeepaMehta 3 Importer
+=====================
-DeepaMehta 3 is a platform for collaboration and knowledge management.
+This plugin demonstrates DeepaMehta 3's file upload fa... |
jri/deepamehta3-importer | 2a0f712845ad4eb288af4f694f289eb067dff8aa | 1) Adapted to current version of deepamehta3-client. 2) POM updated: version number changed from 0.4.1 to 0.4.2-SNAPSHOT. | diff --git a/pom.xml b/pom.xml
index 6470530..e1b66da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,43 +1,43 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>DeepaMehta 3 Importer</name>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta3-importer</artifactId>
- <version>0.4.1</version>... |
jri/deepamehta3-importer | 262e5875129e775ece1d02a3fc9c761778a52a7d | v0.4.1: version bumped. README updated. | diff --git a/README.md b/README.md
index 9d2d89f..65a48ea 100644
--- a/README.md
+++ b/README.md
@@ -1,71 +1,17 @@
DeepaMehta 3
============
-DeepaMehta is a platform for collaboration and knowledge management.
+DeepaMehta 3 is a platform for collaboration and knowledge management.
-Technologically DeepaMehta i... |
jri/deepamehta3-importer | 50bcf44bafdab0ed3aa7746e90947d82011f0e81 | 1) Adapted to current version of deepamehta3-client. 2) version number bumped to 0.4.1-SNAPSHOT. | diff --git a/pom.xml b/pom.xml
index 0bae6ec..9629ee5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,43 +1,43 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>DeepaMehta 3 Importer</name>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta3-importer</artifactId>
- <version>0.4</version>
+... |
jri/deepamehta3-importer | 29c0cebfd826da4c9cd97eb37ff2da68aaa971d4 | version dependencies are set via properties in the parent pom | diff --git a/pom.xml b/pom.xml
index 6f3317d..0bae6ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,43 +1,43 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>DeepaMehta 3 Importer</name>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta3-importer</artifactId>
<version>0.4</version>
... |
jri/deepamehta3-importer | 17593c5f9ea3c37dace12a5d65c0efb9271a32f1 | v0.4 release: bumped version number. | diff --git a/pom.xml b/pom.xml
index 2129009..6f3317d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,43 +1,43 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>DeepaMehta 3 Importer</name>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta3-importer</artifactId>
- <version>0.4-SNAPSHOT</v... |
jri/deepamehta3-importer | c07bcd2ac21fd4d978c13109a11dee2fb7d9a904 | Adapted to current version of DeepaMehta 3 Core. | diff --git a/src/main/resources/plugin.properties b/src/main/resources/plugin.properties
index 6296a2b..98cb33a 100644
--- a/src/main/resources/plugin.properties
+++ b/src/main/resources/plugin.properties
@@ -1 +1 @@
-clientSidePlugin = dm3_importer.js
+clientSidePluginFile = dm3_importer.js
|
jri/deepamehta3-importer | 5843f1c629e60bec2a81103c8f68891743d5345c | Adapted to current version of DeepaMehta 3 Core. | diff --git a/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java b/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java
index 0e935fb..d4e18a5 100644
--- a/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java
+++ b/src/main/java/de/deepamehta/plugins/importer/ImporterPlugin.java
@@ ... |
jri/deepamehta3-importer | 517852436d8c7a03d5d8ff3253b73746cf1b74d3 | The server response is now received. Import not yet functional. | diff --git a/src/main/resources/web/script/dm3_importer.js b/src/main/resources/web/script/dm3_importer.js
index fc58bd6..0f28a84 100644
--- a/src/main/resources/web/script/dm3_importer.js
+++ b/src/main/resources/web/script/dm3_importer.js
@@ -1,32 +1,32 @@
function dm3_importer() {
/**********************... |
jri/deepamehta3-importer | 7121f5fb6db0f87e642b0b17c3ce2188f9fda1e1 | Importer plugin for DeepaMehta 3: creates a bunch of topics and relations by importing a text file. Not yet functional. | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..cd82fc7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+.DS_Store
+commit-message.txt
+target/
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9d2d89f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,71 @@
+
+DeepaMehta 3
+=========... |
timurvafin/tumblr-dashboard-rss-sinatra-app | b1f4c42d5747f8ef32881faa2135b2224050f9eb | Use 1.9.2 | diff --git a/.rvmrc b/.rvmrc
index 46e6d7e..bc05402 100644
--- a/.rvmrc
+++ b/.rvmrc
@@ -1 +1 @@
-rvm use ree-1.8.7-2010.02@tumblr-dashboard-rss-sinatra-app
+rvm use ruby-1.9.2-p0@tumblr-dashboard-rss-sinatra-app
diff --git a/config.ru b/config.ru
index 3112760..7aaffd7 100644
--- a/config.ru
+++ b/config.ru
@@ -1,2 +1... |
timurvafin/tumblr-dashboard-rss-sinatra-app | dfbddab0851b8f73de226c5a24b4f08448e7108a | Added index page | diff --git a/app/tumbler_rss.rb b/app/tumbler_rss.rb
index 6d6bb68..f9b0744 100644
--- a/app/tumbler_rss.rb
+++ b/app/tumbler_rss.rb
@@ -1,8 +1,12 @@
require 'rubygems'
require 'bundler/setup'
require 'sinatra'
require 'tumblr_dashboard_rss'
+get '/' do
+ File.read(File.join('public', 'index.html'))
+end
+
get ... |
timurvafin/tumblr-dashboard-rss-sinatra-app | fdeeb5b373835846195d13a2ac2695c79ca629d0 | Added config.ru for rackup | diff --git a/config.ru b/config.ru
new file mode 100644
index 0000000..3112760
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,2 @@
+require 'app/tumbler_rss'
+run Sinatra::Application
|
tuxsoul/wiki-httpbl | b3115321dc0d93578fbb4ab58e737fe8a79a4cd7 | * Delete: "config.httpbl.php" * Rename: "core.httpbl.php" to "httpbl.core.php" * Rename: "object.httpbl.php" to "httpbl.object.php" * Add: "$wgWikiHttpBLKey", set key access to Http:BL (Project Honey Pot) * Add: "$wgWikiHttpBLTrap", set quicklink (url trap) * Add: "$wgWikiHttpBLTrapWord", set word to work whith quickli... | diff --git a/CHANGELOG b/CHANGELOG
index 0478535..dd27291 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,22 +1,36 @@
================================================================================
CHANGELOG
================================================================================
+---------------------------... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.