Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
43a36357
Commit
43a36357
authored
Apr 03, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move documentation markdown to system directory.
parent
1f6e5f87
Hide whitespace changes
Inline
Side-by-side
Showing
44 changed files
with
12 additions
and
2 deletions
+12
-2
bundles/docs/routes.php
+12
-2
laravel/documentation/artisan/commands.md
+0
-0
laravel/documentation/artisan/tasks.md
+0
-0
laravel/documentation/auth/config.md
+0
-0
laravel/documentation/auth/usage.md
+0
-0
laravel/documentation/bundles.md
+0
-0
laravel/documentation/cache/config.md
+0
-0
laravel/documentation/cache/usage.md
+0
-0
laravel/documentation/changes.md
+0
-0
laravel/documentation/config.md
+0
-0
laravel/documentation/contents.md
+0
-0
laravel/documentation/controllers.md
+0
-0
laravel/documentation/database/config.md
+0
-0
laravel/documentation/database/eloquent.md
+0
-0
laravel/documentation/database/fluent.md
+0
-0
laravel/documentation/database/migrations.md
+0
-0
laravel/documentation/database/raw.md
+0
-0
laravel/documentation/database/redis.md
+0
-0
laravel/documentation/database/schema.md
+0
-0
laravel/documentation/encryption.md
+0
-0
laravel/documentation/events.md
+0
-0
laravel/documentation/files.md
+0
-0
laravel/documentation/home.md
+0
-0
laravel/documentation/input.md
+0
-0
laravel/documentation/install.md
+0
-0
laravel/documentation/ioc.md
+0
-0
laravel/documentation/loading.md
+0
-0
laravel/documentation/localization.md
+0
-0
laravel/documentation/logging.md
+0
-0
laravel/documentation/models.md
+0
-0
laravel/documentation/requests.md
+0
-0
laravel/documentation/routing.md
+0
-0
laravel/documentation/session/config.md
+0
-0
laravel/documentation/session/usage.md
+0
-0
laravel/documentation/strings.md
+0
-0
laravel/documentation/testing.md
+0
-0
laravel/documentation/urls.md
+0
-0
laravel/documentation/validation.md
+0
-0
laravel/documentation/views/assets.md
+0
-0
laravel/documentation/views/forms.md
+0
-0
laravel/documentation/views/home.md
+0
-0
laravel/documentation/views/html.md
+0
-0
laravel/documentation/views/pagination.md
+0
-0
laravel/documentation/views/templating.md
+0
-0
No files found.
bundles/docs/routes.php
View file @
43a36357
...
...
@@ -6,6 +6,16 @@
require_once
__DIR__
.
'/libraries/markdown.php'
;
/**
* Get the root path for the documentation Markdown.
*
* @return string
*/
function
doc_root
()
{
return
path
(
'sys'
)
.
'documentation/'
;
}
/**
* Get the parsed Markdown contents of a given page.
*
* @param string $page
...
...
@@ -13,7 +23,7 @@ require_once __DIR__.'/libraries/markdown.php';
*/
function
document
(
$page
)
{
return
Markdown
(
file_get_contents
(
__DIR__
.
'/pages/'
.
$page
.
'.md'
));
return
Markdown
(
file_get_contents
(
doc_root
()
.
$page
.
'.md'
));
}
/**
...
...
@@ -24,7 +34,7 @@ function document($page)
*/
function
document_exists
(
$page
)
{
return
file_exists
(
__DIR__
.
'/pages/'
.
$page
.
'.md'
);
return
file_exists
(
doc_root
()
.
$page
.
'.md'
);
}
/**
...
...
bundles/docs/pages
/artisan/commands.md
→
laravel/documentation
/artisan/commands.md
View file @
43a36357
File moved
bundles/docs/pages
/artisan/tasks.md
→
laravel/documentation
/artisan/tasks.md
View file @
43a36357
File moved
bundles/docs/pages
/auth/config.md
→
laravel/documentation
/auth/config.md
View file @
43a36357
File moved
bundles/docs/pages
/auth/usage.md
→
laravel/documentation
/auth/usage.md
View file @
43a36357
File moved
bundles/docs/pages
/bundles.md
→
laravel/documentation
/bundles.md
View file @
43a36357
File moved
bundles/docs/pages
/cache/config.md
→
laravel/documentation
/cache/config.md
View file @
43a36357
File moved
bundles/docs/pages
/cache/usage.md
→
laravel/documentation
/cache/usage.md
View file @
43a36357
File moved
bundles/docs/pages
/changes.md
→
laravel/documentation
/changes.md
View file @
43a36357
File moved
bundles/docs/pages
/config.md
→
laravel/documentation
/config.md
View file @
43a36357
File moved
bundles/docs/pages
/contents.md
→
laravel/documentation
/contents.md
View file @
43a36357
File moved
bundles/docs/pages
/controllers.md
→
laravel/documentation
/controllers.md
View file @
43a36357
File moved
bundles/docs/pages
/database/config.md
→
laravel/documentation
/database/config.md
View file @
43a36357
File moved
bundles/docs/pages
/database/eloquent.md
→
laravel/documentation
/database/eloquent.md
View file @
43a36357
File moved
bundles/docs/pages
/database/fluent.md
→
laravel/documentation
/database/fluent.md
View file @
43a36357
File moved
bundles/docs/pages
/database/migrations.md
→
laravel/documentation
/database/migrations.md
View file @
43a36357
File moved
bundles/docs/pages
/database/raw.md
→
laravel/documentation
/database/raw.md
View file @
43a36357
File moved
bundles/docs/pages
/database/redis.md
→
laravel/documentation
/database/redis.md
View file @
43a36357
File moved
bundles/docs/pages
/database/schema.md
→
laravel/documentation
/database/schema.md
View file @
43a36357
File moved
bundles/docs/pages
/encryption.md
→
laravel/documentation
/encryption.md
View file @
43a36357
File moved
bundles/docs/pages
/events.md
→
laravel/documentation
/events.md
View file @
43a36357
File moved
bundles/docs/pages
/files.md
→
laravel/documentation
/files.md
View file @
43a36357
File moved
bundles/docs/pages
/home.md
→
laravel/documentation
/home.md
View file @
43a36357
File moved
bundles/docs/pages
/input.md
→
laravel/documentation
/input.md
View file @
43a36357
File moved
bundles/docs/pages
/install.md
→
laravel/documentation
/install.md
View file @
43a36357
File moved
bundles/docs/pages
/ioc.md
→
laravel/documentation
/ioc.md
View file @
43a36357
File moved
bundles/docs/pages
/loading.md
→
laravel/documentation
/loading.md
View file @
43a36357
File moved
bundles/docs/pages
/localization.md
→
laravel/documentation
/localization.md
View file @
43a36357
File moved
bundles/docs/pages
/logging.md
→
laravel/documentation
/logging.md
View file @
43a36357
File moved
bundles/docs/pages
/models.md
→
laravel/documentation
/models.md
View file @
43a36357
File moved
bundles/docs/pages
/requests.md
→
laravel/documentation
/requests.md
View file @
43a36357
File moved
bundles/docs/pages
/routing.md
→
laravel/documentation
/routing.md
View file @
43a36357
File moved
bundles/docs/pages
/session/config.md
→
laravel/documentation
/session/config.md
View file @
43a36357
File moved
bundles/docs/pages
/session/usage.md
→
laravel/documentation
/session/usage.md
View file @
43a36357
File moved
bundles/docs/pages
/strings.md
→
laravel/documentation
/strings.md
View file @
43a36357
File moved
bundles/docs/pages
/testing.md
→
laravel/documentation
/testing.md
View file @
43a36357
File moved
bundles/docs/pages
/urls.md
→
laravel/documentation
/urls.md
View file @
43a36357
File moved
bundles/docs/pages
/validation.md
→
laravel/documentation
/validation.md
View file @
43a36357
File moved
bundles/docs/pages
/views/assets.md
→
laravel/documentation
/views/assets.md
View file @
43a36357
File moved
bundles/docs/pages
/views/forms.md
→
laravel/documentation
/views/forms.md
View file @
43a36357
File moved
bundles/docs/pages
/views/home.md
→
laravel/documentation
/views/home.md
View file @
43a36357
File moved
bundles/docs/pages
/views/html.md
→
laravel/documentation
/views/html.md
View file @
43a36357
File moved
bundles/docs/pages
/views/pagination.md
→
laravel/documentation
/views/pagination.md
View file @
43a36357
File moved
bundles/docs/pages
/views/templating.md
→
laravel/documentation
/views/templating.md
View file @
43a36357
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment