Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Add notes to web page?

Here you can discuss every aspect of Debian. Note: not for support requests!
Post Reply
Message
Author
arabianights
Posts: 57
Joined: 2011-02-07 06:15

Add notes to web page?

#1 Post by arabianights »

hi, i'd like to add a notes feature to my personal web page running on home httpd server.

is there an application (java etc?) for this purpose?

nickmdowson
Posts: 84
Joined: 2013-08-18 22:24

Re: Add notes to web page?

#2 Post by nickmdowson »

Hi Arabiannights,
I'm not sure exactly what you mean by a notes function?
In Firefox you can install an add on called Floatnotes that will allow you to make notes on aany website - obviously you'll only be able to see those from the same browser.
If you want to install a webapp on your server to access from other computers, you could have a look at owncloud and its notes plugin - I don't know if that would do what you want.
Hope some of that is helpful.

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: Add notes to web page?

#3 Post by debiman »

if those pages are running on your own server, why don't you simply add the info to the web pages' code?

millpond
Posts: 698
Joined: 2014-06-25 04:56

Re: Add notes to web page?

#4 Post by millpond »

arabianights wrote:hi, i'd like to add a notes feature to my personal web page running on home httpd server.

is there an application (java etc?) for this purpose?
What website software are you running.

If Wordpress, there are thousands of addons. Search and i'm sure there will be one that fits your needs.


Personally I find forum software better suited to taking notes, and saving numerous types of data, including files. MyBB has a large amount of addons to make it both a blog and a data storage system.

If you have a masochistic streak there is Drupal, which can do anything under the sun. At the price of your sanity, trying to decipher their lingo.

arabianights
Posts: 57
Joined: 2011-02-07 06:15

Re: Add notes to web page?

#5 Post by arabianights »

millpond wrote:
arabianights wrote:
What website software are you running.

If Wordpress, there are thousands of addons. Search and i'm sure there will be one that fits your needs.


Personally I find forum software better suited to taking notes, and saving numerous types of data, including files. MyBB has a large amount of addons to make it both a blog and a data storage system.
i'm running an embedded linux system based on busybox with 'httpd'. my homepage is located on the embedded system and served by httpd. i'd like to make and save note on my homepage so it's accessable everwhere i go with internet access. is there a way to do it?

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Add notes to web page?

#6 Post by GarryRicketson »

It is not clear about some things, and this is a rather old thread,
One thing, does the OP want to keep the "notes" private ?
No fancy applications are needed, I would avoid anything
using
an application (java etc?) for this purpose?
as it just complicates some thing that really could be simple,
not counting the security issues with "java scripts".
All ready mentioned, installing a very simple, BBS or forum software,..
would be easy, and simple, connect, login, and "post" your notes.
Most forum and bbs software is easy to configure, and you can
make it public or private,...
A simpler option, just use 'html' and make a "form" that
allows you to post comments or notes,..
http://www.w3schools.com/html/html_forms.asp

Some searches will show there are 1000s of ways to do this,
it is just up to the OP to decide which method they want to use.
I would use the one easiest and simplest for me to understand.
Yes there are also "java scripts", and perl scripts, cgi, and other
more complicated ways to do it as well.
As for me, I find just using "ssh" and nano , the easiest way to
add notes or make changes to my web site pages.
I log in via the terminal, 'cd' to the appropriate directory,
example:

Code: Select all

ssh me@siteaddress.me
cd /web/site/dir/notes.html
nano notes.html
#edit or add my notes, what ever,
save
and

exit
Same way I do it on my PC, except on the PC I like
to use 'leafpad'

Code: Select all

~$ leafpad notes.txt
#opens the editer and my notes.txt file, I then type in my notes,
#click "save",
#and wow,...that is all there is to it.
garry@debian:~$ 
If I am finished using the terminal, I type exit,
and close it.
Any text editor will work for taking notes, there is no need for "fancy applications"
to do that. Of course a "text editor"
is a application, and some are quite elaborate , fancy, to the extent that they
become quite useless, but really all one needs is a simple text editor, to make notes.
Just for fun I started a
"notes page"
I don't really need the feature, but it might come in handy,
if and when I want to anounce something,...
I just used 'ssh" and nano,....

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Add notes to web page?

#7 Post by GarryRicketson »

Another option , if you really want a "javascript", or other type of script
is something called a "shoutbox", it is a easy way
to leave notes on a website via any browser.
Shoutboxes
============================
This is the first hit, but there are many more listed in the results
from the above link
https://www.disabled-world.com/communic ... tboxes.php

Something to keep in mind, you do need some kind of way
to control access, and keep spammers out,
other wise they will trash it and fill it with spam.
But that is another topic.

User avatar
pylkko
Posts: 1802
Joined: 2014-11-06 19:02

Re: Add notes to web page?

#8 Post by pylkko »

it's also pretty easy to write a javascript page that asks for input and injects it into an html page (few lines), so if you don't require anything complicated you can just write it. But do you want to add some kind of level of security, so that only some people can read then notes or make notes? What kind of meta-data do you need for the notes? Date? User? Tags? For something more complicated you can try using Redis database with Node or any ready made applications using these.

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Add notes to web page?

#9 Post by GarryRicketson »

I just stumbled on to this,
Add notes to web page?
If you are using "chromium"
The first hit,
https://chrome.google.com/webstore/deta ... aeapefmjbh

Then in the results, there are others similar for fire fox,............

User avatar
pylkko
Posts: 1802
Joined: 2014-11-06 19:02

Re: Add notes to web page?

#10 Post by pylkko »

I think that the second post in this thread basically said that, Garry.

Post Reply