1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-20 07:31:53 +02:00
Commit Graph

615 Commits

Author SHA1 Message Date
Chaoyi Zha
dd9ce80b82 Restructure installation doc 2015-11-14 14:25:56 -05:00
Chaoyi Zha
0f3140e5d7 Add doc structure + add API docs 2015-11-14 12:58:18 -05:00
Chaoyi Zha
11ecb0e99f Add tentative doc structure 2015-11-14 00:04:12 -05:00
Chaoyi Zha
61c65c9cc1 Automatically switch to correct tab with pagination and reduce number of results per page 2015-11-13 23:54:32 -05:00
Chaoyi Zha
6cf7f3d828 Implement pagination and table snippets for admin panel 2015-11-13 23:51:01 -05:00
Chaoyi Zha
227cf5c23e Add admin panel tab structure 2015-11-08 19:49:45 -05:00
Chaoyi Zha
47744ef271 Complete sign up workflow, todo activation 2015-11-08 18:13:35 -05:00
Chaoyi Zha
72f221ccd0 add docs 2015-11-06 22:05:35 -05:00
Chaoyi Zha
82be265af8 Allow Lumen to use custom error handlers 2015-11-06 21:56:09 -05:00
Chaoyi Zha
6086e32c1c Implement core components of registration 2015-11-06 21:44:50 -05:00
Chaoyi Zha
0a0f6f335c change boilerplate on README 2015-11-06 20:27:11 -05:00
Chaoyi Zha
8c50b2f881 Correct bugs for LinkController 2015-11-06 20:25:48 -05:00
Chaoyi Zha
f36791039c Implement secret URLs 2015-11-06 18:47:57 -05:00
Chaoyi Zha
a844d92ffa Add frontend elements of shorten result pagE 2015-11-06 17:48:06 -05:00
Chaoyi Zha
8006bdff78 Implement shortener helpers and core functions, tweaks to static pages 2015-11-06 17:19:39 -05:00
Chaoyi Zha
b8c7e2c87e fix broken badge links 2015-11-05 19:17:46 -05:00
Chaoyi Zha
c82257d353 Add URL shortening structure 2015-11-05 18:16:55 -05:00
Chaoyi Zha
1f1ccdb85a Snapshot, better error handling and login process 2015-11-05 17:34:43 -05:00
Chaoyi Zha
5e5dea4907 add logo 2015-11-04 18:22:41 -05:00
Chaoyi Zha
b5d6cba2c5 allow GH to recache images 2015-11-03 22:11:15 -05:00
Chaoyi Zha
ec09701bec remove broken links to svg 2015-11-03 22:10:26 -05:00
Chaoyi Zha
6736736807 add unstable devel button 2015-11-03 21:32:50 -05:00
Chaoyi Zha
db71c85b23 add v2 devel README 2015-11-03 21:25:30 -05:00
Chaoyi Zha
fa93feeeec Correctly run migrations 2015-11-03 20:59:39 -05:00
Chaoyi Zha
5810db8405 Add templates, write migrations and models 2015-11-03 20:56:03 -05:00
Chaoyi Zha
4da8aac36e Add vendored files 2015-11-02 23:17:51 -05:00
Chaoyi Zha
6b06047a29 use file store for sessions 2015-11-02 23:16:06 -05:00
Chaoyi Zha
f0162c7559 2.0 init commit 2015-11-02 23:13:32 -05:00
Chaoyi Zha
eb85f2466e Clean directory for 2.0 2015-11-02 23:11:25 -05:00
Chaoyi Zha
926a76d1eb clarify file usage 2015-11-01 16:01:16 -05:00
Chaoyi Zha
35d1ab9984 Merge pull request #115 from cydrobolt/feature/better-redirects
Add option to redirect hidden shorteners to another site
2015-11-01 15:57:50 -05:00
Chaoyi Zha
3a19efda8e Make some adjustments to redirect modification
PHP takes the prize for the weirdest concat symbol
2015-11-01 15:50:13 -05:00
Chaoyi Zha
1b68443628 add option to redirect front page 2015-11-01 15:36:49 -05:00
Chaoyi Zha
cf9f990bc1 added "users" list 2015-10-29 19:19:12 -04:00
Chaoyi Zha
6a134d7686 Revert "don't autofill http://"
This reverts commit 0dcfebf1f1.
2015-10-29 15:45:50 -04:00
Srijay Kasturi (TechFilmer)
0dcfebf1f1 don't autofill http://
gets really annoying when copying urls so let's just remove it all together.
2015-10-28 23:01:23 -04:00
Chaoyi Zha
b9e7e22fc5 use bootstrap input boxes for password change boxes 2015-10-27 20:15:28 -04:00
Chaoyi Zha
898d3bf855 move password change input boxes onto two different lines 2015-10-27 20:14:59 -04:00
Chaoyi Zha
5f1a1c9319 redirect to correct UCP link 2015-10-27 20:10:01 -04:00
Chaoyi Zha
f1c765abd2 Merge pull request #112 from azman0101/master
Fix syntax error with nginx config
2015-10-21 09:42:31 -04:00
azman0101
e8363a26f0 fix syntax error 2015-10-21 13:57:56 +02:00
Chaoyi Zha
e0b94717a7 Merge pull request #110 from castanley/patch-2
Update createurl.php
2015-10-19 18:31:07 -04:00
Christopher Stanley
19a3223b2c Update createurl.php
Added the sites current URL to the list of "Already Shortened" URLs
2015-10-19 18:11:49 -04:00
Christopher Stanley
fdb7feaa08 Update createurl.php
Added the installed site URL to the list of URLs that are already shortened to prevent any redirect loops.
2015-10-19 17:48:30 -04:00
Chaoyi Zha
b48ff99a6d Use int rather than smallint to stop overflow
smallint overflows at 2^15-1 (32,767)
int overflows at 2^31-1 (2,147,483,647)
2015-10-18 11:08:32 -04:00
Chaoyi Zha
9d2a333e65 remove leading spaces that break AJAX calls 2015-10-14 18:27:13 -04:00
Chaoyi Zha
cc7354c8a5 correctly indent file 2015-10-14 18:06:12 -04:00
Chaoyi Zha
1bede6921f Merge pull request #103 from mihawk90/setup-write-config
[setup] Various cleanups
2015-10-14 17:44:18 -04:00
Tarulia
6a76c43ed9 Extend path check for empty string, string length and trailing slash 2015-10-10 00:39:11 +02:00
Chaoyi Zha
14e0f213d4 deprecate cheery theme 2015-09-27 16:17:31 -04:00